-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (45 loc) · 962 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
authors = ["The ClamAV Team <[email protected]>"]
edition = "2021"
name = "clam-sigutil"
version = "1.2.0"
[features]
default = []
validate_regex = ["regex"]
[dependencies]
anyhow = "1"
downcast-rs = "1"
enum-variants-strings = "0.2"
enumflags2 = "0.7"
hex = "0.4"
hex-literal = "0.4"
itertools = "0.12"
num-derive = "0.4"
num-traits = "0.2"
openssl = "0.10"
structopt = "0.3"
strum = "0.26"
strum_macros = "0.26"
thiserror = "1"
tinyvec = { version = "1.8", features = ["alloc"] }
url = "2"
log = "0.4"
humantime = "2.1"
flexi_logger = "0.29.4"
clap = { version = "4.5.20", features = ["derive"] }
# Optional crates
regex = { version = "1", optional = true }
[[bin]]
name = "clam-sigutil"
path = "src/cmdline.rs"
[lib]
name = "clam_sigutil"
path = "src/lib.rs"
[build-dependencies]
change-case = "0.2"
[lints.clippy]
all = "warn"
pedantic = "warn"
missing_panics_doc = "allow"
missing_errors_doc = "allow"
doc_markdown = "allow"