-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (37 loc) · 1.11 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
[package]
name = "rustls-cng"
version = "0.6.0"
authors = ["Dmitry Pankratov <[email protected]>"]
description = "Windows CNG API bridge for rustls"
license = "MIT/Apache-2.0"
repository = "https://github.com/rustls/rustls-cng"
documentation = "https://rustls.github.io/rustls-cng/doc/rustls_cng"
readme = "README.md"
keywords = ["cng", "tls", "rustls", "windows"]
edition = "2021"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-gnu", "x86_64-pc-windows-msvc"]
[dependencies]
rustls = { git = "https://github.com/rustls/rustls.git", default-features = false, features = [
"std",
] }
sha2 = "0.10"
windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_Security_Cryptography",
] }
aws-lc-rs = { version = "1", optional = true }
[dev-dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
rustls-pki-types = "1"
[features]
default = ["logging", "tls12", "aws-lc-rs"]
aws-lc-rs = ["rustls/aws_lc_rs"]
early-data = []
aws-lc-bindgen = ["aws-lc-rs/bindgen"]
fips = ["rustls/fips"]
logging = ["rustls/logging"]
ring = ["rustls/ring"]
tls12 = ["rustls/tls12"]