-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
53 lines (48 loc) · 895 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
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
[package]
name = "hash-roll"
version = "0.3.0"
authors = ["Cody P Schafer <[email protected]>"]
description = "Rolling hashes & Content Defined Chunking (cdc)"
keywords = [ "hash", "rolling", "incremental", "split" , "cdc"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/jmesmon/hash-roll.git"
documentation = "https://docs.rs/hash-roll"
include = ["Cargo.toml", "**/*.rs", "README.md", "COMPARE.md"]
edition = "2018"
[features]
default = [
"bup",
"buzhash",
"fastcdc",
"gear",
"gzip",
"mii",
"pigz",
"ram",
"zpaq",
"zstd"
]
bup = []
buzhash = []
fastcdc = []
gear = []
gzip = []
mii = []
pigz = []
ram = []
zpaq = []
zstd = []
[dependencies]
fmt-extra = "0.2"
#circbuf = "0.1.4"
[dev-dependencies]
rand = "0.7.3"
histogram = "0.6"
quickcheck = "0.9"
rollsum = "0.3"
criterion = "0.3"
rand_pcg = "0.2.1"
proptest = "0.10.0"
[[bench]]
name = "compare"
harness = false