forked from abstractqqq/polars_ds_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.13 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
[package]
name = "polars_ds"
version = "0.5.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 = "*", features = ["abi3-py38", "extension-module"]}
pyo3-polars = {version = "0.15", features = ["derive"]}
polars = {version = "0.41.3", features = ["performant", "lazy", "parquet", "dtype-array", "diff", "array_count", "abs", "cross_join", "rank", "ndarray", "log", "cum_agg", "round_series", "nightly"]}
num = "0.4.1"
faer = {version = "0.19", features = ["nightly"]}
faer-ext = {version = "0.2.0", features = ["ndarray"]}
pulp = {version="0.18", features=["nightly"]} # One of Fear's dependency
serde = {version = "*", features=["derive"]}
ndarray = {version="0.15.6"}
hashbrown = {version = "0.14.2", features=["nightly"]}
itertools = "0.12.0"
rand = {version = "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"
[profile.release]
codegen-units = 1
strip = "symbols"
# lto = "fat"