[dependencies.siphasher]
version = "1.0.1"
[features]
default = ["random"]
random = ["getrandom"]
serde = ["siphasher/serde_std"]
[lib]
name = "bloomfilter"
path = "src/lib.rs"
[package]
authors = ["Frank Denis <github@pureftpd.org>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Bloom filter implementation"
edition = "2018"
homepage = "https://github.com/jedisct1/rust-bloom-filter"
keywords = ["bloom", "filter"]
license = "ISC"
name = "bloomfilter"
readme = "README.md"
repository = "https://github.com/jedisct1/rust-bloom-filter"
version = "3.0.1"
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.getrandom]
features = ["js"]
optional = true
version = "0.2"
[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies.getrandom]
optional = true
version = "0.2"
[[test]]
name = "bloom"
path = "tests/bloom.rs"