-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 914 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
[package]
name = "snapcd"
version = "0.1.0"
authors = ["5225225 <[email protected]>"]
edition = "2018"
[dependencies]
serde_cbor = "0.11.1"
serde = { version = "1.0.104", features = ["derive"] }
structopt = "0.3.9"
rusqlite = { version = "0.21.0", features = ["trace"] }
bitvec = "0.17.2"
hex = "0.4.1"
log = "0.4.8"
globset = "0.4.4"
dirs = "2.0.2"
either = "1.5.3"
colored = "1.9.2"
gearhash = "0.1.2"
static_assertions = "1.1.0"
serde_bytes = "0.11.3"
blake3 = "0.2.1"
thiserror = "1.0.11"
clap = "2.33.0"
diff = "0.1.12"
anyhow = "1.0.26"
simplelog = {version = "0.7.4", optional = true}
difference = "2.0.0"
patch = "0.5.0"
itertools = "0.8.2"
[features]
default = ["logging"]
logging = ["simplelog"]
[dev-dependencies]
criterion = "0.3.1"
rand = "0.7.3"
rand_chacha = "0.2.1"
proptest = "0.9.5"
proptest-derive = "0.1.2"
[[bench]]
name = "my_benchmark"
harness = false
[profile.release]
debug = true