diff options
Diffstat (limited to 'src/x509-info/Cargo.toml')
| -rw-r--r-- | src/x509-info/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/x509-info/Cargo.toml b/src/x509-info/Cargo.toml new file mode 100644 index 0000000..24f0478 --- /dev/null +++ b/src/x509-info/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "x509-info" +version = "0.1.0" +edition = "2021" +authors = ["Franck Cuny <franck@fcuny.net>"] +description = "Print summary of x509 certificates." +homepage = "https://github.com/fcuny/x509-info/" +readme = "README.md" + +[dependencies] +anyhow = "1.0.82" +chrono = {version = "0.4.38", features = ["clock"], default-features = false } +clap = {version = "4.5.8", features = ["derive", "cargo"]} +rustls = {version = "0.23.8", features = ["ring"]} +rustls-native-certs = "0.7.0" +webpki-roots = "0.26.3" +x509-parser = "0.16" |
