-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (73 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
81 lines (73 loc) · 2.03 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
76
77
78
79
80
81
[package]
name = "filepack"
version = "0.0.9"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
autotests = false
categories = ["authentication", "command-line-utilities", "cryptography"]
description = "file verification utility"
edition = "2024"
homepage = "https://filepack.com"
keywords = ["checksum", "verification"]
license = "CC0-1.0"
repository = "https://github.com/casey/filepack"
include = ["CHANGELOG.md", "CONTRIBUTING", "LICENSE", "README.md", "src", "tests"]
[dependencies]
bech32 = "0.11.1"
blake3 = { version = "1.5.4", features = ["mmap", "rayon", "serde"] }
camino = { version = "1.1.9", features = ["serde1"] }
chrono = { version = "0.4.43", features = ["serde"] }
clap = { version = "4.5.16", features = ["derive"] }
clap_mangen = "0.2.23"
dirs = "6.0.0"
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
hex = "0.4.3"
indicatif = "0.18.0"
lexiclean = "0.0.1"
num-traits = "0.2.19"
owo-colors = "4"
rand = "0.8.5"
regex = "1.10.6"
serde = { version = "1.0.209", features = ["derive"] }
serde_ignored = "0.1.14"
serde_json = "1.0.127"
serde_with = "3.11.0"
serde_yaml = "0.9.34"
sha2 = "0.10"
snafu = "0.8.4"
strum = { version = "0.27.2", features = ["derive"] }
url = { version = "2.5.8", features = ["serde"] }
usized = "0.0.2"
walkdir = "2.5.0"
[dev-dependencies]
pretty_assertions = "1.4.1"
tempfile = "3.24.0"
[lib]
doctest = false
[lints.clippy]
all = { level = "deny", priority = -1 }
arbitrary-source-item-ordering = "deny"
enum-glob-use = "allow"
float-cmp = "allow"
large_enum_variant = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
must-use-candidate = "allow"
needless-pass-by-value = "allow"
pedantic = { level = "deny", priority = -1 }
result-large-err = "allow"
similar-names = "allow"
struct-field-names = "allow"
too-many-lines = "allow"
unused-async = "allow"
wildcard-imports = "allow"
[lints.rust]
mismatched-lifetime-syntaxes = "allow"
unreachable_pub = "deny"
[profile.release]
codegen-units = 1
lto = true
[workspace]
members = [".", "crates/*"]
[[test]]
name = "integration"
path = "tests/lib.rs"