[package] name = "bloomcalc" version = "0.5.0" authors = ["Robert Escriva "] edition = "2021" description = "bloomcalc provides a calculator for bloom filters." license = "Apache-2.0" repository = "https://github.com/rescrv/blue" [features] default = ["binaries"] binaries = ["command_line"] command_line = ["dep:arrrg", "dep:arrrg_derive", "dep:getopts"] [dependencies] getopts = { version = "0.2", optional = true } arrrg = { path = "../arrrg", version = "0.5", optional = true } arrrg_derive = { path = "../arrrg_derive", version = "0.5", optional = true } [[bin]] name = "bloomcalc" path = "src/bin/bloomcalc.rs" required-features=["binaries"]