-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (31 loc) · 845 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
[package]
name = "paq"
version = "1.1.0"
authors = ["Gregory Langlais <[email protected]>"]
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]
strip = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arrayvec = "0.7.2"
walkdir = "2.3.2"
blake3 = "1.3.1"
rayon = "1.5"
clap = { version = "4.3.0", features = ["cargo", "unstable-styles"] }
[dev-dependencies]
assert_cmd = "2.0.11"
[features]
default = ["test-cleanup"]
test-cleanup = []