1
0
mirror of https://github.com/pcvolkmer/cert-tools.git synced 2025-07-01 22:12:55 +00:00

Initial commit

This commit is contained in:
2025-01-03 13:14:39 +01:00
commit 5127cf168d
7 changed files with 1316 additions and 0 deletions

23
Cargo.toml Normal file
View File

@ -0,0 +1,23 @@
[package]
name = "cert-tools"
description = "Application to show and merge content of PEM files"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["Paul-Christian Volkmer"]
[dependencies]
openssl = { version = "0.10"}
clap = { version = "4.5", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
console = "0.15"
itertools = "0.14"
[target.'cfg(windows)'.dependencies]
openssl-sys = { version = "0.9", features = ["vendored"] }
[profile.release]
opt-level = "s"
codegen-units = 1
lto = "thin"
strip = true
panic = "abort"