-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
33 lines (31 loc) · 884 Bytes
/
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
[package]
name = "denormalized-python"
version = "0.0.13"
edition = "2021"
homepage = "https://github.com/probably-nothing-labs/denormalized.git"
repository = "https://github.com/probably-nothing-labs/denormalized.git"
[lib]
name = "denormalized_python"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { workspace = true, features = [
"extension-module",
"abi3",
"abi3-py311",
] }
chrono = { workspace = true }
denormalized = { workspace = true, features = ["python"] }
datafusion = { workspace = true, features = [
"pyarrow",
"avro",
"unicode_expressions",
] }
# datafusion-python = { path = "../../datafusion-python/" }
datafusion-python = { git = "https://github.com/probably-nothing-labs/datafusion-python", branch = "denormalized-tweaks" }
tokio = { workspace = true, features = [
"macros",
"rt",
"rt-multi-thread",
"sync",
] }
futures = { workspace = true }