30 lines
510 B
TOML
30 lines
510 B
TOML
|
[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'
|