-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (53 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
65 lines (53 loc) · 1.34 KB
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
59
60
61
62
63
64
[package]
name = "columnar_processor"
version = "0.1.0"
edition = "2024"
[lib]
name = "columnar_processor" # same as package name (default, but explicit is clearer)
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "columnar_processor-bin" # or just "main"
path = "src/main.rs"
[features]
default = []
python-bindings = ["pyo3"]
jni-bindings = ["jni", "lazy_static"]
[dependencies]
arrow2 = { version = "0.17.4", features = ["io_ipc"], default-features = false }
dhat = "0.3"
jemallocator = "0.5"
jni = { version = "0.21.1", optional = true }
lazy_static = { version = "1.4", optional = true }
lexical-core = "1.0.6"
lru = "0.16.1"
memchr = "2.7.6"
memmap2 = "0.9.8"
pyo3 = { version = "0.26.0", features = ["extension-module"], optional = true }
rand = "0.9.2"
rayon = "1.7"
tempfile = "3.23.0"
thiserror = "2.0.17"
anyhow="1.0"
atoi="2.0"
atoi_simd="0.16.1"
fast-float="0.2.0"
polars = { version = "0.51", features = ["lazy", "csv"] }
[dev-dependencies]
criterion = { version = "0.7", features = ["html_reports"] }
dhat = "0.3.3"
polars = { version = "0.51", features = ["lazy", "csv"] }
[profile.release]
debug = 1
[[bench]]
name = "benchmark"
harness = false # Use Criterion's harness
[[bench]]
name = "cpu_scaling"
harness = false
[[bench]]
name = "scalability"
harness = false
[[bench]]
name = "polars_comparison"
harness = false