-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
62 lines (51 loc) · 1.47 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "tls-async"
edition = "2018"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.3.0-alpha.8"
license = "MIT"
readme = "README.md"
description = """
TLS support for AsyncRead/AsyncWrite using native-tls
"""
authors = ["Danny Browning <[email protected]>", "Carl Lerche <[email protected]>"]
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/tls-async/"
repository = "https://github.com/dbcfd/tls-async"
[dependencies]
native-tls = "0.2"
[dev-dependencies.futures-tokio-compat]
git = "https://github.com/Nemo157/futures-tokio-compat.git"
[dependencies.futures]
version = "0.3.0-alpha.18"
package = "futures-preview"
[dev-dependencies]
tokio = "=0.2.0-alpha.4"
tokio-net = { version = "=0.2.0-alpha.4", features = ["tcp", "async-traits"] }
cfg-if = "0.1"
env_logger = { version = "0.6", default-features = false }
[target.'cfg(all(not(target_os = "macos"), not(windows), not(target_os = "ios")))'.dev-dependencies]
openssl = "0.10"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dev-dependencies]
security-framework = "0.2"
[target.'cfg(windows)'.dev-dependencies]
schannel = "0.1"
[target.'cfg(windows)'.dev-dependencies.winapi]
version = "0.3"
features = [
"lmcons",
"basetsd",
"minwinbase",
"minwindef",
"ntdef",
"sysinfoapi",
"timezoneapi",
"wincrypt",
"winerror",
]
[package.metadata.docs.rs]
all-features = true