-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 891 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
[package]
name = "clavem"
version = "0.1.0"
edition = "2021"
description = "`clavem` reads a key and displays contained data."
publish = false
rust-version = "1.72"
[dependencies]
pem = "3"
asn1-rs = { version = "0.7", features = ["bigint"] }
base64 = "0.22"
oid-registry = { version = "0.8", features = ["crypto", "kdf"] }
num-bigint = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
thiserror = "2"
# We use bpaf instead of clap because it has smaller size.
bpaf = { version = "0.9", features = ["autocomplete", "derive"] }
[features]
default = ["der", "openssh"]
der = []
openssh = []
[profile.dev]
debug = false
[profile.release]
opt-level = "z"
lto = true
strip = "symbols"
[profile.release-cargo-bloat]
inherits = "release"
strip = "debuginfo" # "symbols" prevents cargo-bloat from displaying crate-wise info.