rust-bloom-filter-generator/Cargo.toml

30 lines
510 B
TOML
Raw Normal View History

2024-12-15 13:16:01 +00:00
[package]
name = "bloom_filter_gen"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
bloomfilter = "1"
clap = { version = "4", features = ["derive"] }
[profile.release]
# note that most of these are the default setting anyway
opt-level = 3
debug-assertions = false
overflow-checks = false
incremental = false
rpath = false
# variant for debugging:
# panic = 'unwind'
#
# leads to smaller binaries
panic = 'abort'
# down from 16
codegen-units = 1
# default false
# lto = 'thin'
lto = 'fat'