-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
71 lines (63 loc) · 1.69 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
[package]
name = "tldr"
description = "TreeLDR Command Line Interface"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
version.workspace = true
license.workspace = true
[workspace]
members = [
"layouts",
"generators/rust/treeldr-rs",
"generators/rust/treeldr-rs-macros",
"generators/rust/generator"
]
resolver = "2"
[workspace.package]
authors = ["Spruce Systems Inc."]
edition = "2021"
rust-version = "1.74.0"
version = "0.2.0"
license = "Apache-2.0 OR MIT"
[workspace.dependencies]
treeldr-layouts = { path = "layouts", version = "0.2.0" }
treeldr-macros = { path = "generators/rust/treeldr-rs-macros", version = "0.2.0" }
treeldr-gen-rust = { path = "generators/rust/generator", version = "0.2.0" }
log = "0.4"
educe = "0.4.23"
num-traits = "0.2"
num-bigint = "0.4"
num-rational = "0.4"
iref = "3.1.4"
static-iref = "3.0"
rdf-types = "0.22.4"
xsd-types = "0.9.2"
btree-range-map = { version = "0.7.2", features = ["serde"] }
langtag = "0.4.0"
thiserror = "1.0.50"
serde = "1.0.192"
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
json-syntax = "0.12.3"
serde_cbor = "0.11.2"
codespan-reporting = "0.11.1"
locspan = "0.8.2"
nquads-syntax = "0.19.0"
clap = "4.0"
stderrlog = "0.6"
syn = "2.0.29"
proc-macro2 = "1.0.66"
quote = "1.0.33"
[dependencies]
treeldr-layouts = { workspace = true, features = ["serde_cbor"] }
clap = { workspace = true, features = ["derive"] }
stderrlog.workspace = true
nquads-syntax.workspace = true
json-syntax.workspace = true
serde_cbor = { workspace = true, features = ["tags"] }
codespan-reporting.workspace = true
thiserror.workspace = true
iref.workspace = true
rdf-types.workspace = true
locspan.workspace = true
utf8-decode = "1.0.1"