-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
46 lines (39 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "fastbloom_rs"
version = "0.5.9"
edition = "2021"
authors = ["Yan Kun <[email protected]>"]
description = "Some fast bloom filter implemented by Rust for Python and Rust! 10x faster than pybloom!"
documentation = "https://github.com/yankun1992/fastbloom"
readme = "README.md"
homepage = "https://github.com/yankun1992/fastbloom"
repository = "https://github.com/yankun1992/fastbloom"
license-file = "LICENSE"
keywords = ["bloom-filter", "bloom", "filter", "bloomfilter", "probabilistic data structure", "counting-bloom-filter"]
categories = ["bloom-filter"]
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "fastbloom_rs"
crate-type = ["cdylib"]
[dependencies]
fastbloom-rs = { path = "fastbloom-rs" }
[dependencies.pyo3]
version = "0.20"
features = ["extension-module", "abi3-py37"]
[dev-dependencies]
criterion = "0.5"
getrandom = { version = "0.2.7" }
siphasher = "1.0.0"
fastmurmur3 = "0.2.0"
fxhash = "0.2.1"
crc32fast = "1.3.2"
twox-hash = "1.6.3"
xxhash-rust = { version = "0.8", features = ["xxh3", "const_xxh3"] }
rand = "0.8"
[workspace]
members = ["fastbloom-rs"]
exclude = ["fastbloomjvm/native"]
[[bench]]
name = "fastbloom"
harness = false