-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (62 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
75 lines (62 loc) · 1.25 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "paq"
version = "1.4.1"
authors = ["Gregory Langlais <_@gregorylanglais.com>"]
edition = "2021"
description = "Hash file or directory recursively."
license = "MIT"
readme = "README.md"
keywords = [
"hash",
"blake3",
"directories",
"directory-traversal",
"cryptographic",
]
repository = "https://github.com/gregl83/paq"
homepage = "https://crates.io/crates/paq"
[lib]
name = "paq"
path = "src/lib.rs"
[[bin]]
name = "paq"
path = "src/bin.rs"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
panic = "abort"
strip = true
[[bench]]
name = "hash_by_file_size"
harness = false
[[bench]]
name = "hash_list_sort"
harness = false
[[bench]]
name = "hash_list_hash"
harness = false
[[bench]]
name = "hash_using_jwalk"
harness = false
[[bench]]
name = "hash_using_walkdir"
harness = false
[[bench]]
name = "functional"
harness = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayvec = "0.7.6"
blake3 = "1.8.5"
clap = { version = "4.6.1", features = ["cargo", "unstable-styles"] }
memmap2 = "0.9.10"
rayon = "1.12"
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = "2.2.2"
criterion = "0.8.2"
jwalk = "0.8.1"
[features]
default = ["test-cleanup"]
test-cleanup = []