-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
59 lines (53 loc) · 2.1 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
58
[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="b61981e9f1a537192ea85f45437c88423fc025d3", features = ["rdf-star"]}
query_processing = { git = "https://github.com/DataTreehouse/maplib", rev="b61981e9f1a537192ea85f45437c88423fc025d3" }
pydf_io = { git = "https://github.com/DataTreehouse/maplib", rev="b61981e9f1a537192ea85f45437c88423fc025d3" }
representation = { git = "https://github.com/DataTreehouse/maplib", rev="b61981e9f1a537192ea85f45437c88423fc025d3", features = ["rdf-star"] }
templates = { git = "https://github.com/DataTreehouse/maplib", rev="b61981e9f1a537192ea85f45437c88423fc025d3" }
sparesults = { version = "0.2.3", features = ["rdf-star"] }
oxrdf = { version = "0.2.2", features = ["rdf-star"] }
oxrdfio = { version= "0.1.2", features = ["rdf-star"] }
polars = "0.44.2"
tonic = "0.12.3"
tokio = "1.32.1"
arrow-flight = "53.1.0"
futures = "0.3.31"
bincode = "1.3.3"
log = "0.4.21"
pyo3 = "0.22.6"
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"
backoff = "0.4.0"
gcp-bigquery-client = "0.23.0"
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 = "0.23.18"
[patch.crates-io]
polars = { git = "https://github.com/pola-rs/polars.git", rev = "5515b2c2e5dec59671eeff4821738234ee2892e4"}
polars-core = { git = "https://github.com/pola-rs/polars.git", rev = "5515b2c2e5dec59671eeff4821738234ee2892e4"}