1brc/src/main/rust/Cargo.toml

53 lines
845 B
TOML
Raw Normal View History

2024-07-23 13:23:26 +02:00
[package]
name = "onebrc"
2024-07-23 13:23:26 +02:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bstr = "1.9.1"
fast-float = "0.2.0"
memchr = "2.7.4"
memmap = "0.7.0"
polars = { version = "0.36.2", features = ["csv", "lazy", "nightly", "streaming"]}
rayon = "1.10.0"
rustc-hash = "2.0.0"
libc = "0.2.155"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[features]
json = []
2024-07-31 14:00:00 +02:00
unsafe = []
[[bench]]
name = "reference_impl"
harness = false
[[bench]]
name = "single_thread"
harness = false
[[bench]]
name = "multi_threaded"
harness = false
[[bench]]
name = "polars"
harness = false
[[bench]]
name = "flare_flo"
harness = false
[[bench]]
name = "phcs"
harness = false
2024-07-23 13:23:26 +02:00
[profile.release]
lto = "fat"
strip = "symbols"
panic = "abort"