-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
93 lines (83 loc) · 2.41 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "json-ld"
edition.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
version.workspace = true
documentation.workspace = true
description = "JSON-LD implementation"
readme = "README.md"
[features]
reqwest = ["json-ld-core/reqwest"]
serde = ["json-ld-syntax/serde", "json-ld-core/serde"]
[dependencies]
json-ld-syntax.workspace = true
json-ld-core.workspace = true
json-ld-context-processing.workspace = true
json-ld-expansion.workspace = true
json-ld-compaction.workspace = true
json-ld-serialization.workspace = true
json-syntax.workspace = true
futures.workspace = true
locspan.workspace = true
iref.workspace = true
rdf-types.workspace = true
contextual.workspace = true
thiserror.workspace = true
[dev-dependencies]
json-ld-testing.workspace = true
log.workspace = true
async-std = { workspace = true, features = ["attributes"] }
iref.workspace = true
static-iref.workspace = true
nquads-syntax = "0.19"
stacker = "0.1.15"
[package.metadata.docs.rs]
all-features = true
[workspace]
members = [
"crates/*"
]
resolver = "2"
[workspace.package]
authors = ["Timothée Haudebourg <[email protected]>"]
categories = ["web-programming", "database", "data-structures"]
keywords = ["json-ld", "json", "semantic-web", "linked-data", "rdf"]
repository = "https://github.com/timothee-haudebourg/json-ld"
documentation = "https://docs.rs/json-ld"
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.77.0"
version = "0.21.1"
[workspace.dependencies]
json-ld = { path = ".", version = "0.21.1" }
json-ld-syntax = { path = "crates/syntax", version = "0.21.1" }
json-ld-core = { path = "crates/core", version = "0.21.1" }
json-ld-context-processing = { path = "crates/context-processing", version = "0.21.1" }
json-ld-expansion = { path = "crates/expansion", version = "0.21.1" }
json-ld-compaction = { path = "crates/compaction", version = "0.21.1" }
json-ld-serialization = { path = "crates/serialization", version = "0.21.1" }
json-ld-testing = { path = "crates/testing" }
json-syntax = "0.12"
iref = "3.1.2"
static-iref = "3.0"
langtag = "0.4"
rdf-types = "0.22"
contextual = "0.1.4"
locspan = "0.8"
educe = "0.4.23"
futures = "0.3"
mown = "0.2.2"
hashbrown = "0.13.1"
smallvec = "1.10"
log = "0.4.17"
thiserror = "1.0.38"
serde = "1.0"
indexmap = "2.0"
iref-enum = "3.0"
async-std = "1.12"
linked-data = "0.1"