63 lines
1.0 KiB
TOML
63 lines
1.0 KiB
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"
|
|
easy-parallel = "3.3.1"
|
|
clap = { version = "4.5.13", features = ["derive"] }
|
|
colored = "2.1.0"
|
|
ptr_hash = { git = "https://github.com/ragnargrootkoerkamp/ptrhash", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5.1", features = ["html_reports"] }
|
|
|
|
[features]
|
|
json = []
|
|
unsafe = []
|
|
no_pdep = []
|
|
|
|
[[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"
|
|
|
|
[profile.flamegraph]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = "none"
|