forked from pchampin/sophia_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (52 loc) · 1.6 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
[workspace]
members = [
"api",
"c14n",
"inmem",
"iri",
"isomorphism",
"jsonld",
"resource",
"rio",
"sophia",
"term",
"turtle",
"xml",
]
resolver = "2"
[workspace.package]
version = "0.8.0-alpha.3"
authors = ["Pierre-Antoine Champin <[email protected]>"]
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-alpha.3", path = "./api" }
sophia_c14n = { version = "0.8.0-alpha.3", path = "./c14n" }
sophia_inmem = { version = "0.8.0-alpha.3", path = "./inmem" }
sophia_iri = { version = "0.8.0-alpha.3", path = "./iri" }
sophia_isomorphism = { version = "0.8.0-alpha.3", path = "./isomorphism" }
sophia_jsonld = { version = "0.8.0-alpha.3", path = "./jsonld" }
sophia_resource = { version = "0.8.0-alpha.3", path = "./resource" }
sophia_rio = { version = "0.8.0-alpha.3", path = "./rio" }
sophia_term = { version = "0.8.0-alpha.3", path = "./term" }
sophia_turtle = { version = "0.8.0-alpha.3", path = "./turtle" }
sophia_xml = { version = "0.8.0-alpha.3", path = "./xml" }
criterion = "0.5"
futures-util = "0.3.28"
lazy_static = "1.4.0"
mownstr = "0.2.1"
oxiri = "0.2.2"
regex = "1.6.0"
resiter = "0.5.0"
rio_api = { version = "0.8", features = ["generalized"] }
rio_turtle = { version = "0.8", features = ["generalized"] }
rio_xml = { version = "0.8" }
test-case = "3.1.0"
thiserror = "1.0.32"
tokio = { version="1.33.0", features = ["rt"] }
url = "2.4.1"
[profile.release]
lto = true