-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
55 lines (51 loc) · 1.19 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
[workspace]
resolver = "2"
members = [
"lib/representation",
"lib/maplib",
"lib/triplestore",
"lib/parquet_io",
"lib/pydf_io",
"lib/query_processing",
"lib/spargebra",
"lib/shacl",
"py_maplib",
]
[workspace.package]
rust-version = "1.81.0"
[workspace.dependencies]
pyo3 = {version = "0.22.6", features = ["py-clone"] }
polars = { version = "0.45.1", features = ["nightly", "performant", "cse", "fmt"], default-features = false }
polars-core = { version = "0.45.1", default-features = false }
rayon = "1.10.0"
regex = "1.11.1"
oxrdf = "0.2.2"
oxrdfio = "0.1.2"
oxttl = "0.1.2"
oxiri = "0.2.8"
sparesults = "0.2.3"
oxsdatatypes = "0.2.0"
env_logger = "0.11.5"
log = "0.4.21"
chrono = "0.4.38"
chrono-tz = "0.10.0"
uuid = { version = "1.8.0", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
] }
thiserror = "2.0.3"
nom = { version = "7.1.3" }
serde = { version = "1.0.203" }
peg = "0.8"
rand = "0.8"
oxilangtag = "0.1.5"
datetimeparse = "0.3.0"
fundu = "2.0.0"
memmap2 = "0.9.4"
sprs = "0.11.2"
walkdir = "2.5.0"
itoa = "1.0.11"
ryu = "1.0.18"
#dev-dependencies
rstest = "0.21.0"
serial_test = "3.1.1"