forked from tomtomwombat/fastbloom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "fastbloom"
version = "0.7.1"
edition = "2021"
authors = ["tomtomwombat"]
description = "The fastest Bloom filter in Rust. No accuracy compromises. Compatible with any hasher."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/tomtomwombat/fastbloom/"
repository = "https://github.com/tomtomwombat/fastbloom/"
keywords = ["bloom", "filter", "data-structures", "bloom-filter", "bloomfilter"]
categories = ["data-structures", "caching", "algorithms"]
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["rand"]
rand = ["dep:rand"]
serde = ["dep:serde", "siphasher/serde_std"]
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
[dependencies]
getrandom = "0.2"
rand = { version = "0.8.5", optional = true }
serde = { version = "1.0.203", features = ["derive"], optional = true }
siphasher = "1.0.0"
wide = "0.7.15"
[dev-dependencies]
rand = "0.8.5"
rand_regex = "0.16.0"
ahash = "0.8.6"