-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
62 lines (56 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
[package]
name = "filepack"
version = "0.0.6"
authors = ["Casey Rodarmor <[email protected]>"]
autotests = false
categories = ["authentication", "command-line-utilities", "cryptography"]
description = "file verification utility"
edition = "2021"
homepage = "https://github.com/casey/filepack"
keywords = ["checksum", "verification"]
license = "CC0-1.0"
repository = "https://github.com/casey/filepack"
include = ["CHANGELOG.md", "CONTRIBUTING", "LICENSE", "README.md", "src", "tests"]
[dependencies]
blake3 = { version = "1.5.4", features = ["mmap", "rayon", "serde"] }
boilerplate = "1.0.1"
camino = { version = "1.1.9", features = ["serde1"] }
clap = { version = "4.5.16", features = ["derive"] }
clap_mangen = "0.2.23"
dirs = "5.0.1"
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
hex = "0.4.3"
html-escaper = "0.2.0"
indicatif = "0.17.8"
lexiclean = "0.0.1"
owo-colors = "4"
rand = "0.8.5"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde_with = "3.11.0"
serde_yaml = "0.9.34"
snafu = "0.8.4"
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = { version = "2.0.16", features = ["color-auto"] }
assert_fs = { version = "1.1.2", features = ["color-auto"] }
predicates = "3.1.2"
pretty_assertions = "1.4.1"
regex = "1.10.6"
[lints.clippy]
all = { level = "deny", priority = -1 }
float-cmp = "allow"
large_enum_variant = "allow"
needless-pass-by-value = "allow"
pedantic = { level = "deny", priority = -1 }
result-large-err = "allow"
too-many-lines = "allow"
wildcard-imports = "allow"
[profile.release]
codegen-units = 1
lto = true
[workspace]
members = [".", "crates/*"]
[[test]]
name = "integration"
path = "tests/lib.rs"