-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (52 loc) · 2 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
[workspace]
resolver = "1"
members = [
"lib/chrontext",
"lib/virtualization",
"lib/postgres",
"lib/virtualized_query",
"py_chrontext",
"lib/flight",
"lib/sparql_database"
]
[workspace.dependencies]
#spargebra = { path = "../maplib/lib/spargebra", features = ["rdf-star"]}
#query_processing = { path = "../maplib/lib/query_processing"}
#pydf_io = { path = "../maplib/lib/pydf_io"}
#representation = { path = "../maplib/lib/representation", features = ["rdf-star"]}
#templates = { path = "../maplib/lib/templates"}
spargebra = { git = "https://github.com/DataTreehouse/maplib", rev="02df7b582260fa728807fc3cef50ce8c8af690b6" }
query_processing = { git = "https://github.com/DataTreehouse/maplib", rev="02df7b582260fa728807fc3cef50ce8c8af690b6" }
pydf_io = { git = "https://github.com/DataTreehouse/maplib", rev="02df7b582260fa728807fc3cef50ce8c8af690b6" }
representation = { git = "https://github.com/DataTreehouse/maplib", rev="02df7b582260fa728807fc3cef50ce8c8af690b6" }
templates = { git = "https://github.com/DataTreehouse/maplib", rev="02df7b582260fa728807fc3cef50ce8c8af690b6" }
sparesults = { version = "0.2.3" }
oxrdf = { version = "0.2.2" }
oxrdfio = { version = "0.1.5" }
polars = "0.45.1"
tonic = "0.12.3"
tokio = "1.32.1"
arrow-flight = "54.1.0"
futures = "0.3.31"
bincode = "1.3.3"
log = "0.4.21"
pyo3 = { version="0.22.6", features = ["abi3-py39"] }
reqwest = "0.12.5"
env_logger = "0.11.3"
thiserror = "1.0.58"
async-recursion = "1.1.0"
async-trait = "0.1.81"
chrono = "0.4.37"
filesize = "0.2.0"
serde = "1.0.203"
serde_json = "1.0.117"
secrecy = "=0.10.3"
gcp-bigquery-client = "0.25.1"
rayon = "1.10.0"
opcua = {version="0.12.0", features = ["vendored-openssl"]}
url = "2.5.2"
uuid = {version = "1.10.0", features = ["fast-rng", "v4"]}
rustls = {version = "0.23.18"}
[patch.crates-io]
polars = { git = 'https://github.com/pola-rs/polars', rev="841c387d99d7024037556c4ef79d96bf2caac397" }
polars-core = { git = 'https://github.com/pola-rs/polars', rev="841c387d99d7024037556c4ef79d96bf2caac397" }