forked from sfackler/rust-native-tls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 790 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
30
[package]
name = "native-tls"
version = "0.2.4"
authors = ["Steven Fackler <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A wrapper over a platform's native TLS implementation"
repository = "https://github.com/sfackler/rust-native-tls"
readme = "README.md"
[features]
vendored = ["openssl/vendored"]
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
security-framework = "0.4.1"
security-framework-sys = "0.4.1"
lazy_static = "1.0"
libc = "0.2"
tempfile = "3.0"
[target.'cfg(target_os = "windows")'.dependencies]
schannel = "0.1.16"
[target.'cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios")))'.dependencies]
log = "0.4.5"
openssl = "0.10.29"
openssl-sys = "0.9.55"
openssl-probe = "0.1"
[dev-dependencies]
hex = "0.3"