-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 923 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 923 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
29
30
31
32
33
[package]
name = "pqready"
version = "0.1.2"
edition = "2021"
description = "A cross-platform CLI tool to test for quantum-secure TLS/HTTPS encryption support"
authors = ["Devin Egan <github@devinegan.com>"]
license = "MIT"
repository = "https://github.com/degan/pqready"
homepage = "https://github.com/degan/pqready"
documentation = "https://docs.rs/pqready"
keywords = ["quantum", "cryptography", "tls", "security", "post-quantum"]
categories = ["command-line-utilities", "cryptography", "network-programming"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.43", features = ["full"] }
rustls = "0.21"
tokio-rustls = "0.24"
webpki-roots = "0.25"
colored = "2.2"
anyhow = "1.0"
url = "2.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4"
base64 = "0.22"
[profile.release]
strip = true
lto = true
opt-level = "z"
panic = "abort"
codegen-units = 1