forked from rudof-project/rudof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (69 loc) · 2.16 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
68
69
70
71
72
73
74
[workspace]
resolver = "2"
members = [
"dctap",
"rbe",
"rbe_testsuite",
"iri_s",
"prefixmap",
"srdf",
"shex_ast",
"shex_compact",
"rudof_cli",
"shex_testsuite",
"shex_validation",
"shapemap",
"shacl_ast",
"shacl_validation",
"shacl_testsuite",
"shapes_converter",
"sparql_service",
"python",
]
exclude = [
"shex_compact_winnow"
]
default-members = [
"rudof_cli"
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "RDF data shapes implementation in Rust"
repository = "https://github.com/rudof-project/rudof"
homepage = "https://rudof-project.github.io/rudof"
readme = "./README.md"
keywords = ["rdf", "linked-data", "semantic-web", "shex"]
categories = ["database"]
authors = [
"Jose Emilio Labra Gayo <[email protected]>",
"Ángel Iglesias Préstamo <[email protected]>",
"Marc-Antoine Arnaud <[email protected]>",
]
[workspace.dependencies]
iri_s = { version = "0.1.8", path = "./iri_s" }
dctap = { version = "0.1.0", path = "./dctap" }
prefixmap = { version = "0.1.0", path = "./prefixmap" }
rbe = { version = "0.1.7", path = "./rbe" }
rbe_testsuite = { version = "0.1.7", path = "./rbe_testsuite" }
rudof_cli = { version = "0.1.12", path = "./rudof_cli" }
shex_ast = { version = "0.1.0", path = "./shex_ast" }
shapemap = { version = "0.1.0", path = "./shapemap" }
shacl_ast = { version = "0.1.0", path = "./shacl_ast" }
shacl_validation = { version = "0.1.0", path = "./shacl_validation" }
shapes_converter = { version = "0.1.6", path = "./shapes_converter" }
shex_testsuite = { version = "0.1.0", path = "./shex_testsuite" }
shex_validation = { version = "0.1.0", path = "./shex_validation" }
shex_compact = { version = "0.1.0", path = "./shex_compact" }
srdf = { version = "0.1.0", path = "./srdf" }
sparql_service = { version = "0.1.15", path = "./sparql_service" }
# [dependencies]
# External dependencies
clap = { version = "4.2.1", features = ["derive"] }
anyhow = "1.0"
oxrdf = "0.2.0-alpha.5"
serde_json = "1.0"
regex = "1.10.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
supports-color = "3.0.0"