-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (45 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
54 lines (45 loc) · 791 Bytes
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 = "md5-tools"
version = "0.0.0"
authors = ["Ciprian Dorin Craciun <ciprian@volution.ro>"]
edition = "2018"
[features]
default = [
# "profile",
]
profile = ["cpuprofiler"]
[dependencies]
libc = "*"
digest = "*"
md-5 = "*"
sha-1 = "*"
sha2 = "*"
sha3 = "*"
walkdir = "*"
crossbeam = "*"
regex = "*"
cpio = "*"
argparse = "*"
chrono = "*"
atty = "*"
indicatif = "*"
cpuprofiler = { version = "*", optional = true }
[[bin]]
name = "md5-create"
path = "./sources/bin/md5-create.rs"
[[bin]]
name = "md5-diff"
path = "./sources/bin/md5-diff.rs"
[[bin]]
name = "md5-cpio"
path = "./sources/bin/md5-cpio.rs"
[lib]
name = "md5_tools"
path = "./sources/lib/lib.rs"
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
debug = false
incremental = false
panic = "abort"