-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 1.37 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
50
51
52
53
54
55
56
[package]
name = "rustls-cng-crypto"
authors = ["Tom Fay <[email protected]>"]
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Rustls crypto provider for CNG"
homepage = "https://github.com/tofay/rustls-cng-crypto"
repository = "https://github.com/tofay/rustls-cng-crypto"
readme = "README.md"
[dependencies]
once_cell = "1.8.0"
pkcs1 = { version = "0.7.5", features = ["std"] }
pkcs8 = "0.10.2"
rustls = { version = "0.23.0", default-features = false, features = ["std"] }
rustls-webpki = { version = "0.102.2", default-features = false }
sec1 = "0.7.3"
windows = { version = "0.58.0", features = [
"Win32_Security_Cryptography",
"Win32_System_WinRT",
] }
zeroize = "1.8.1"
[features]
default = ["tls12"]
fips = []
tls12 = ["rustls/tls12"]
[dev-dependencies]
aws-lc-rs = { version = "1.11.1", features = ["prebuilt-nasm"] }
hex = "0.4.3"
rcgen = { version = "0.13.1", default-features = false, features = [
"crypto",
"aws_lc_rs",
"pem",
] }
rstest = "0.23.0"
# Use aws_lc_rs to test our provider
rustls = { version = "0.23.0", features = [
"aws-lc-rs",
], default-features = false }
rustls-pemfile = "2"
webpki-roots = "0.26"
wycheproof = { version = "0.6.0", default-features = false, features = [
"aead",
"ecdsa",
"ecdh",
"hkdf",
"mac",
"rsa_sig",
"xdh",
] }
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"