-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
45 lines (40 loc) · 1.4 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
[package]
name = "polars_ds"
version = "0.7.0"
edition = "2021"
[lib]
name = "_polars_ds"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pyo3 = {version = "0.21", features = ["abi3-py39", "extension-module"]}
pyo3-polars = {version = "0.18", features = ["derive", "dtype-array", "dtype-struct"]}
polars = {version = "0.44.2", features = ["performant", "lazy",
"diff", "array_count", "abs", "cross_join", "rank", "ndarray", "log",
"cum_agg", "round_series", "nightly","dtype-array", "dtype-struct"], default-features = false}
num = "0.4.1"
faer = {version = "0.19", features = ["nightly"]}
faer-ext = {version = "0.2.0", features = ["ndarray"]}
serde = {version = "*", features=["derive"]}
ndarray = {version="0.15.6"}
hashbrown = {version = "0.15", features=["nightly"]}
itertools = "0.12.0"
rand = "0.8.5"
rand_distr = "0.4.3"
realfft = "3.3.0"
rapidfuzz = "0.5.0"
inflections = "1.1.1"
ordered-float = "4.2.0"
approx = "*"
ahash = ">=0.8.5"
unicode-normalization = "0.1.23"
# Update to 0.22, when pyo3-polars supports pyo3 0.22
numpy = "0.21"
cfavml = {version = "0.3.0", features=["nightly"]}
# Remove this part once I update polars dependency
[target.'cfg(target_os = "linux")'.dependencies]
jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
[profile.release]
codegen-units = 1
strip = "symbols"
lto = "fat"