-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
81 lines (65 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
authors = ["ayazhafiz <[email protected]>"]
categories = ["algorithms", "data-structures", "no-std", "caching"]
description = """
Library implementing xor filters - faster and smaller than bloom and cuckoo filters.
"""
documentation = "https://docs.rs/xorf"
edition = "2021"
homepage = "https://github.com/ayazhafiz/xorf"
keywords = ["xor", "filter", "hash", "hashing"]
license = "MIT"
name = "xorf"
readme = "README.md"
repository = "https://github.com/ayazhafiz/xorf"
version = "0.11.0"
[badges.is-it-maintained-issue-resolution]
repository = "ayazhafiz/xorf"
[badges.is-it-maintained-open-issues]
repository = "ayazhafiz/xorf"
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
branch = "master"
repository = "ayazhafiz/xorf"
[dependencies]
libm = { version = "0.2.1", optional = true }
serde = { version = "1.0.104", optional = true, features = ["derive"] }
bincode = { version = "2.0.0-rc.3", default-features = false, optional = true, features = ["std", "derive"]}
num-traits = { version = "0.2.12", optional = true }
rand = { version = "0.8", optional = true }
[dev-dependencies]
criterion = "0.3.0"
criterion-macro = "0.3.0"
rand = "0.8"
[[bench]]
name = "bfuse32"
harness = false
[[bench]]
name = "bfuse16"
harness = false
[[bench]]
name = "bfuse8"
harness = false
[[bench]]
name = "fuse32"
harness = false
[[bench]]
name = "fuse16"
harness = false
[[bench]]
name = "fuse8"
harness = false
[[bench]]
name = "xor32"
harness = false
[[bench]]
name = "xor16"
harness = false
[[bench]]
name = "xor8"
harness = false
[features]
default = ["uniform-random", "binary-fuse"]
uniform-random = ["rand"]
binary-fuse = ["libm"]