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:
23
Cargo.toml
Normal file
23
Cargo.toml
Normal 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"
|
Reference in New Issue
Block a user