-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
52 lines (41 loc) · 1.13 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
[package]
name = "integrity-checker"
version = "0.2.2"
authors = ["Elliott Slaughter <[email protected]>"]
description = "integrity checker for backups and filesystems"
documentation = "https://github.com/elliottslaughter/integrity-checker"
homepage = "https://github.com/elliottslaughter/integrity-checker"
repository = "https://github.com/elliottslaughter/integrity-checker"
readme = "README.md"
keywords = ["backup", "integrity"]
categories = ["command-line-utilities", "filesystem"]
license = "Apache-2.0"
include = ["Cargo.lock", "Cargo.toml", "FORMAT.md", "LICENSE.txt", "README.md", "benches/**/*.rs", "examples/**/*.rs", "src/**/*.rs", "tests/**/*.rs", "schema/*.json"]
edition = "2018"
[features]
default = []
asm = ["sha2/asm"]
[dependencies]
clap = { version = "3", features = ["cargo"] }
ignore = "0.4"
time = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
base64 = "0.20"
flate2 = "1.0"
digest = "0.10"
sha2 = "0.10"
blake2 = "0.10"
[dev-dependencies]
criterion = "0.4"
num_cpus = "1"
tempfile = "3"
valico = "4"
[[bin]]
name = "ick"
path = "src/main.rs"
bench = false
[[bench]]
name = "build"
harness = false