-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
55 lines (47 loc) · 1.3 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
[package]
name = "linked-data"
description = "Linked-Data dateset serialization/deserialization traits"
categories = ["encoding", "web-programming"]
keywords = ["semantic-web", "linked-data", "rdf", "serialization"]
authors.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
version.workspace = true
[workspace.package]
authors = ["Spruce Systems, Inc."]
license = "MIT/Apache-2.0"
repository = "https://github.com/spruceid/linked-data-rs"
edition = "2021"
rust-version = "1.71.1"
version = "0.1.2"
[features]
default = ["derive", "serde"]
derive = ["linked-data-derive"]
[dependencies]
rdf-types = "0.22.1"
xsd-types = "0.9.2"
static-iref = "3.0"
json-syntax = { version = "0.12.2", features = ["canonicalize"] }
educe = "0.4.22"
im = "15.1.0"
iref.workspace = true
thiserror.workspace = true
linked-data-derive = { workspace = true, optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
json-syntax = { version = "0.12.2", features = ["serde"] }
[[example]]
name = "derive"
required-features = ["derive"]
[workspace]
members = [
"derive"
]
resolver = "2"
[workspace.dependencies]
linked-data-derive = { version = "0.1.0", path = "derive" }
iref = "3.0"
static-iref = "3.0"
thiserror = "1.0.47"