-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.07 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
[workspace.package]
license = "MIT"
edition = "2024"
version = "0.4.2"
repository = "https://github.com/luminvent/linked-data-sparql"
[workspace]
members = ["derive", "tests"]
[package]
name = "linked-data-sparql"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "SPARQL query generation for linked data"
readme = "README.md"
[workspace.dependencies]
iref = "3"
linked-data-next = "0.1"
rdf-types = "0.22"
spargebra = "0.4"
xsd-types = "0.9"
[features]
rdf12 = [
"oxrdf/rdf-12",
"oxrdfio/rdf-12",
"oxttl/rdf-12",
"spareval/sparql-12",
"sparopt/sparql-12",
"sparesults/sparql-12",
"spargebra/sparql-12",
]
[dependencies]
langtag = "0.4.0"
linked-data-next.workspace = true
linked-data-sparql-derive = { path = "derive", version = "0.4" }
oxigraph = "0.5"
oxrdf = "0.3"
oxrdfio = "0.2"
oxttl = "0.2"
reqwest = "0.12"
rdf-types.workspace = true
serde = { version = "1", features = ["derive"] }
spareval = "0.2"
sparopt = "0.3"
sparesults = "0.3"
spargebra.workspace = true
xsd-types.workspace = true