forked from rustls/rustls-native-certs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 777 Bytes
/
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
[package]
name = "rustls-native-certs"
version = "0.1.0"
edition = "2018"
authors = ["Joseph Birr-Pixton <[email protected]>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
description = "rustls-native-certs allows rustls to use the platform native certificate store"
homepage = "https://github.com/ctz/rustls-native-certs"
repository = "https://github.com/ctz/rustls-native-certs"
categories = ["network-programming", "cryptography"]
[dependencies]
rustls = "0.16.0"
[dev-dependencies]
webpki = "0.21"
webpki-roots = "0"
ring = "0.16.5"
untrusted = "0.7.0"
[target.'cfg(windows)'.dependencies]
schannel = "0.1.15"
[target.'cfg(target_os = "linux")'.dependencies]
openssl-probe = "0.1.2"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "0.3.2"