-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 854 Bytes
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
[workspace.package]
license = "MIT"
edition = "2024"
version = "0.4.0"
authors = [
"Marc-Antoine Arnaud <marc-antoine.arnaud@luminvent.com>"
]
description = "Generates SHACL from Rust structure"
repository = "https://github.com/luminvent/linked-data-schema"
[workspace]
members = ["derive", "tests"]
[package]
name = "linked-data-schema"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
description.workspace = true
repository.workspace = true
[dependencies]
iri_s = { version = "0.2.14", package = "li_iri_s" }
linked-data-schema-derive = { path = "derive", version = "0.4" }
prefixmap = { version = "0.2.14", package = "li_prefixmap" }
shacl = { version = "0.2.14", package = "li_shacl" }
rudof_rdf = { version = "0.2.14", package = "li_rudof_rdf" }
uuid = { version = "1", features = ["v4"] }