-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 loc) · 1.03 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
[package]
name = "treeldr-layouts"
description = "TreeLDR Layouts"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[features]
default = []
# CBOR extension.
cbor = []
# Implements conversion functions between `Value` and `serde_cbor::Value`.
serde_cbor = ["cbor", "dep:serde_cbor"]
[dependencies]
educe.workspace = true
num-traits.workspace = true
num-bigint.workspace = true
num-rational.workspace = true
iref = { workspace = true, features = ["serde"] }
static-iref.workspace = true
langtag = "0.4.0"
rdf-types = { workspace = true, features = ["serde"] }
xsd-types.workspace = true
btree-range-map.workspace = true
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
locspan.workspace = true
serde_json = "1.0"
json-syntax.workspace = true
lazy_static = "1.4.0"
static_assertions = "1.1.0"
serde_cbor = { workspace = true, optional = true }
[dev-dependencies]
nquads-syntax.workspace = true
serde_json.workspace = true
paste = "1.0"