-
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) · 850 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 850 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 = "QuantaSeek"
version = "0.1.0"
authors = ["Mehrnoush <Mehrnoush.vaseghi@gmail.com>"]
edition = "2021"
[[bin]]
name = "quantaseek"
path = "src/main.rs"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
hex = "0.4"
ring = "0.17"
webpki = "0.22"
base64 = "0.21"
chrono = { version = "0.4", features = ["serde"] }
x509-parser = "0.17.0"
rustls = { version = "0.23", features = ["prefer-post-quantum"] }
webpki-roots = "0.25"
tokio-rustls = "0.26"
oqs = "0.11.0"
quinn = "0.11"
quinn-proto = "0.11"
reqwest = { version = "0.12", features = ["rustls-tls", "json"] }
url = "2.5"
# Pin to fix cargo audit: RUSTSEC-2026-0007 (bytes), RUSTSEC-2026-0009 (time)
bytes = "1.11.1"
time = "0.3.47"