forked from dpbriggs/growable-bloom-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 896 Bytes
/
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
[package]
name = "growable-bloom-filter"
version = "2.1.0"
authors = ["David Briggs <[email protected]>", "Arthur Silva <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Scalable Bloom Filters with serde support"
homepage = "https://github.com/dpbriggs/growable-bloom-filters"
repository = "https://github.com/dpbriggs/growable-bloom-filters"
keywords = ["bloom", "filter", "scalable", "serde"]
categories = ["data-structures"]
documentation = "https://docs.rs/growable-bloom-filter/latest/growable_bloom_filter/struct.GrowableBloom.html"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.8.11"
serde = "1.0.125"
serde_bytes = "0.11"
serde_derive = "1.0.125"
xxhash-rust = {version = "0.8.2", features = ["xxh3"]}
[dev-dependencies]
serde_json = "1.0"
[features]
nightly = []