1[package]
2name = "native-tls"
3version = "0.2.11"
4authors = ["Steven Fackler <sfackler@gmail.com>"]
5license = "MIT/Apache-2.0"
6description = "A wrapper over a platform's native TLS implementation"
7repository = "https://github.com/sfackler/rust-native-tls"
8readme = "README.md"
9
10[package.metadata.docs.rs]
11features = ["alpn"]
12rustdoc-args = ["--cfg", "docsrs"]
13
14[features]
15vendored = ["openssl/vendored"]
16alpn = ["security-framework/alpn"]
17
18[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
19security-framework = "2.0.0"
20security-framework-sys = "2.0.0"
21lazy_static = "1.4.0"
22libc = "0.2"
23tempfile = "3.1.0"
24
25[target.'cfg(target_os = "windows")'.dependencies]
26schannel = "0.1.17"
27
28[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios")))'.dependencies]
29log = "0.4.5"
30openssl = "0.10.29"
31openssl-sys = "0.9.55"
32openssl-probe = "0.1"
33
34[dev-dependencies]
35tempfile = "3.0"
36test-cert-gen = "0.7"
37