forked from spruceid/linked-data-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (50 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
58 lines (50 loc) · 1.33 KB
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
[package]
name = "linked-data-next"
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.",
"Lum::invent",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/luminvent/linked-data-rs"
edition = "2024"
rust-version = "1.85.0"
version = "0.1.7"
[features]
default = ["derive", "serde"]
derive = ["linked-data-next-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.6"
im = "15.1.0"
iref.workspace = true
thiserror.workspace = true
linked-data-next-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-next-derive = { version = "0.1.7", path = "derive" }
iref = "3.0"
static-iref = "3.0"
thiserror = "2"