-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 862 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
[package]
name = "hld"
version = "0.3.0"
authors = ["Gaëtan Lehmann <[email protected]>", "Sylvain Joubert <[email protected]>"]
edition = "2018"
[dependencies]
log = { version = "0.4", features = ["std"] }
glob = "0.3"
fs2 = "0.4"
rayon = "1.0"
maplit = "1.0"
bincode = "1.2"
blake2-rfc = "0.2"
directories = "5.0"
reflink-copy = "0.1"
pretty-bytes = "0.2"
filetime = "0.2"
itertools = "0.12"
thiserror = "1.0.56"
clap = { version = "4.4.12", features = ["derive", "env", "string", "wrap_help"] }
clap_complete = "4.4.5"
ocli = "0.1.0"
strum = { version = "0.25.0", features = ["derive"] }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
assert_fs = "1.1"
lipsum = "0.9"
escargot = "0.5"
[features]
kcov = []
simd = ["blake2-rfc/simd_opt"]
[profile.release]
strip = "symbols"
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"