# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "bloomfilter" version = "1.0.16" authors = ["Frank Denis "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Bloom filter implementation" homepage = "https://github.com/jedisct1/rust-bloom-filter" readme = "README.md" keywords = [ "bloom", "filter", ] license = "ISC" repository = "https://github.com/jedisct1/rust-bloom-filter" [lib] name = "bloomfilter" path = "src/lib.rs" [[test]] name = "bloom" path = "tests/bloom.rs" [dependencies.bit-vec] version = "0.7.0" [dependencies.siphasher] version = "1.0.1" [features] default = ["random"] random = ["getrandom"] serde = [ "siphasher/serde_std", "bit-vec/serde", ] [target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.getrandom] version = "0.2" features = ["js"] optional = true [target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies.getrandom] version = "0.2" optional = true