-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (45 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (45 loc) · 1.09 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "sslx"
version = "0.4.0"
edition = "2021"
description = "The modern way to work with certificates and TLS"
license = "MIT"
repository = "https://github.com/glincker/sslx"
homepage = "https://github.com/glincker/sslx"
keywords = ["tls", "ssl", "certificate", "x509", "openssl"]
categories = ["command-line-utilities", "cryptography"]
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
clap_mangen = "0.3"
# Certificate parsing & generation
x509-parser = { version = "0.18", features = ["verify"] }
rcgen = "0.14"
# TLS
rustls = "0.23"
webpki-roots = "1.0"
# Serialization (--json output)
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# PKCS12 parsing
p12 = "0.6"
# Error handling
anyhow = "1"
# Base64 decoding
base64 = "0.22"
# SHA-256 (ring is already pulled in by rustls, just making it explicit)
ring = "0.17"
# Time (used by rcgen, shared dep)
time = "0.3"
[dev-dependencies]
tempfile = "3"
serde_json = "1"
[[bench]]
name = "benchmark"
harness = false
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"