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