-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.15 KB
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
[package]
name = "rustls-cng"
version = "0.8.0-dev"
authors = ["Dmitry Pankratov <dmitry@pankratov.net>"]
description = "Windows CNG API bridge for rustls"
license = "MIT/Apache-2.0"
repository = "https://github.com/rustls/rustls-cng"
documentation = "https://docs.rs/rustls-cng"
readme = "README.md"
keywords = ["cng", "tls", "rustls", "windows"]
edition = "2024"
publish = false
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
no-default-features = true
features = ["time"]
[dependencies]
rustls = { git = "https://github.com/rustls/rustls.git", default-features = false }
time = { version = "0.3", default-features = false, optional = true }
bitflags = "2"
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security_Cryptography"] }
[dev-dependencies]
rustls-aws-lc-rs = { git = "https://github.com/rustls/rustls.git" }
rustls-util = { git = "https://github.com/rustls/rustls.git" }
rustls-native-certs = "0.8"
asn1 = "0.23"
[features]
default = ["rustls-log", "rustls-webpki"]
time = ["dep:time"]
rustls-webpki= ["rustls/webpki"]
rustls-log = ["rustls/log"]
rustls-brotli = ["rustls/brotli"]
rustls-zlib = ["rustls/zlib"]