53 lines
794 B
TOML
53 lines
794 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.10.0"
|
|
fast-float = "0.2.0"
|
|
memchr = "2.7.4"
|
|
memmap2 = "0.9.4"
|
|
rayon = "1.10.0"
|
|
rustc-hash = "2.0.0"
|
|
libc = "0.2.158"
|
|
smol = "2.0.1"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5.1", features = ["html_reports"] }
|
|
|
|
[features]
|
|
json = []
|
|
unsafe = []
|
|
|
|
[[bench]]
|
|
name = "reference_impl"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "single_thread"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "multi_threaded"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "multi_threaded_smol"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "flare_flo"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "phcs"
|
|
harness = false
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
strip = "symbols"
|
|
panic = "abort"
|