-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
49 lines (45 loc) · 1.63 KB
/
Cargo.toml
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
[package]
name = "rustls-provider-rustcrypto"
version = "0.0.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aead = "0.5.2"
aes-gcm = "0.10.2"
ccm = "0.5.0"
chacha20poly1305 = "0.10.0"
constcat = "0.3.0"
der = "0.7.0"
ecdsa = "0.16.8"
ed25519-dalek = { version = "2.0.0", features = ["pkcs8"] }
env_logger = "0.10"
hmac = "0.12.0"
p256 = "0.13.2"
p384 = "0.13.0"
p521 = "0.13.0"
pkcs8 = { version = "0.10.2", features = ["pem", "pkcs5"] }
pki-types = { package = "rustls-pki-types", version = "0.2.1", default-features = false }
rand_core = "0.6.0"
rsa = { version = "0.9.0", features = ["sha2"] }
rustls = { git = "https://github.com/stevefan1999-personal/rustls", branch = "jbp-generalise-crypto-usage-pt4", version = "0.22.0-alpha.2", default-features = false }
sha2 = "0.10.0"
signature = "2.1.0"
vc-ltl = "5.0.8"
webpki = { package = "rustls-webpki", version = "0.102.0-alpha.2", default-features = false }
webpki-roots = "0.25.0"
x25519-dalek = "2"
[features]
default = ["logging", "dangerous_configuration", "std", "tls12"]
logging = ["rustls/logging"]
dangerous_configuration = ["rustls/dangerous_configuration"]
tls12 = ["rustls/tls12"]
quic = ["rustls/quic"]
asm = ["sha2/asm"]
std = ["rustls/std", "webpki/std", "pki-types/std"]
alloc = ["webpki/alloc", "pki-types/alloc"]
[dev-dependencies]
eyre = "0.6.8"
hyper = "0.14.27"
hyper-rustls = { git = "https://github.com/stevefan1999-personal/hyper-rustls", branch = "part-4", features = ["http2"] }
rcgen = "0.11.1"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "io-std", "io-util", "net"] }