-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 1.22 KB
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
36
[package]
name = "fastbloom"
version = "0.17.0"
edition = "2021"
rust-version = "1.70"
authors = ["tomtomwombat"]
description = "The fastest Bloom filter in Rust. No accuracy compromises. Full concurrency support and compatible with any hasher."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/tomtomwombat/fastbloom/"
repository = "https://github.com/tomtomwombat/fastbloom/"
keywords = ["data-structures", "bloom-filter", "bloomfilter", "no_std"]
categories = ["data-structures", "caching", "algorithms"]
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["std", "rand"]
std = ["portable-atomic/std"]
loom = ["dep:loom"]
rand = ["std", "dep:rand"]
serde = ["dep:serde", "siphasher/serde_std", "portable-atomic/serde"]
[dependencies]
foldhash = { version = "0.2.0", default-features = false }
loom = { version = "0.7.2", optional = true }
rand = { version = "0.9.0", optional = true }
serde = { version = "1.0.203", features = ["derive"], optional = true }
siphasher = { version = "1.0.0", default-features = false }
libm = "0.2"
portable-atomic = { version = "1.13.1", default-features = false, features = ["fallback"] }
[dev-dependencies]
fastrand = "2.3.0"
serde_cbor = "0.11.2"