26 lines
482 B
TOML
26 lines
482 B
TOML
[package]
|
|
name = "onebrc"
|
|
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"
|
|
|
|
[features]
|
|
json = []
|
|
unsafe = []
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
strip = "symbols"
|
|
panic = "abort"
|