-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 758 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 758 Bytes
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
[package]
name = "certreplace"
version = "1.0.1"
edition = "2021"
authors = ["Linus <linuskirkwood@gmail.com>"]
description = "CLI tool for replacing x509 certificates and their private keys."
repository = "https://github.com/lirkwood/certreplace"
keywords = ["x509", "ssl", "certificate", "tls"]
categories = ["command-line-utilities", "config", "filesystem", "parsing"]
license = "GPL-3.0-or-later"
[dependencies]
clap = { version = "4", features = ["derive"] }
openssl = { version = "0.10", features = ["vendored"] }
time = { version ="0.3", features = ["formatting"] }
jwalk = "0.8"
regex = "1"
anyhow = "1"
[profile.dist]
inherits = "release"
lto = true
codegen-units = 1
opt-level = "z"
debug = false
strip = true
incremental = false
panic = "abort"