forked from Quantco/dataframely
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 650 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 650 Bytes
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
[package]
edition = "2021"
name = "dataframely"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
name = "dataframely"
[dependencies]
itertools = "*"
num-format = "*"
polars = { version = ">=0.50", default-features = false, features = [
"dtype-full",
] }
polars-arrow = ">=0.50"
polars-core = ">=0.50"
pyo3 = { version = ">=0.25", features = ["abi3-py310", "extension-module"] }
pyo3-polars = { version = ">=0.23.1", features = ["derive"] }
rand = { version = "0.9", features = ["std_rng"] }
rayon = "*"
regex = "*"
regex-syntax = "0.8"
serde = "*"
thiserror = "2.0"
[dev-dependencies]
rstest = "*"
[profile.release]
codegen-units = 1
lto = true