-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 907 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
31
32
33
34
35
[package]
name = "async-rustls"
version = "0.2.0"
authors = [
"Alex Crichton <[email protected]>",
"quininer kel <[email protected]>",
"Stjepan Glavina <[email protected]>",
]
edition = "2018"
description = "Async TLS/SSL streams using rustls"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-rustls"
homepage = "https://github.com/smol-rs/async-rustls"
documentation = "https://docs.rs/async-rustls"
keywords = ["rustls", "tls", "ssl", "synchronization"]
categories = ["asynchronous", "cryptography", "network-programming"]
[features]
default = ["logging"]
logging = ["rustls/logging"]
dangerous_configuration = ["rustls/dangerous_configuration"]
quic = ["rustls/quic"]
[dependencies]
futures-lite = "1.10.1"
webpki = "0.21"
[dependencies.rustls]
version = "0.19"
default-features = false
[dev-dependencies]
lazy_static = "1"
smol = "1.2.3"
webpki-roots = "0.20"