-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
68 lines (60 loc) · 1.73 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
members = [
"api",
"c14n",
"inmem",
"iri",
"isomorphism",
"jsonld",
"resource",
"rio",
"sophia",
"sparql_client",
"term",
"turtle",
"xml",
]
resolver = "2"
[workspace.package]
version = "0.8.0"
authors = ["Pierre-Antoine Champin <pierre-antoine@champin.net>"]
edition = "2021"
repository = "https://github.com/pchampin/sophia_rs"
readme = "./README.md"
license = "CECILL-B"
keywords = ["rdf", "linked-data", "semantic-web", "w3c"] # no more than 5
[workspace.dependencies]
sophia_api = { version = "0.8.0", path = "./api" }
sophia_c14n = { version = "0.8.0", path = "./c14n" }
sophia_inmem = { version = "0.8.0", path = "./inmem" }
sophia_iri = { version = "0.8.0", path = "./iri" }
sophia_isomorphism = { version = "0.8.0", path = "./isomorphism" }
sophia_jsonld = { version = "0.8.0", path = "./jsonld" }
sophia_resource = { version = "0.8.0", path = "./resource" }
sophia_sparql_client = { version = "0.8.0", path = "./sparql_client" }
sophia_rio = { version = "0.8.0", path = "./rio" }
sophia_term = { version = "0.8.0", path = "./term" }
sophia_turtle = { version = "0.8.0", path = "./turtle" }
sophia_xml = { version = "0.8.0", path = "./xml" }
criterion = "0.5"
env_logger = "0.11"
futures-util = "0.3"
lazy_static = "1.5"
log = "0.4"
mownstr = "0.3"
oxiri = "0.2"
regex = "1.11"
resiter = "0.5"
rio_api = { version = "0.8", features = ["generalized"] }
rio_turtle = { version = "0.8", features = ["generalized"] }
rio_xml = { version = "0.8" }
serde = { version = "1.0", features = ["derive"] }
test-case = "3.3"
thiserror = "1.0"
tokio = { version="1.41", features = ["rt", "sync"] }
toml = "0.8"
url = "2.5"
[profile.release]
lto = true
[workspace.lints.clippy]
enum_glob_use = "allow"