forked from snapview/tokio-tungstenite
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
52 lines (43 loc) · 1.27 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
[package]
name = "tokio-tungstenite"
description = "Tokio binding for Tungstenite, the Lightweight stream-based WebSocket implementation"
categories = ["web-programming::websocket", "network-programming", "asynchronous", "concurrency"]
keywords = ["websocket", "io", "web"]
authors = ["Daniel Abramov <dabramov@snapview.de>", "Alexey Galakhov <agalakhov@snapview.de>"]
license = "MIT"
homepage = "https://github.com/snapview/tokio-tungstenite"
documentation = "https://docs.rs/tokio-tungstenite/0.9.0"
repository = "https://github.com/snapview/tokio-tungstenite"
version = "0.9.0"
edition = "2018"
[features]
default = ["connect", "tls"]
connect = ["tokio-dns-unofficial", "tokio-tcp", "stream"]
tls = ["tokio-tls", "native-tls", "stream", "tungstenite/tls"]
stream = ["bytes"]
[dependencies]
futures = "0.1.23"
tokio-io = "0.1.7"
[dependencies.tungstenite]
version = "0.9.1"
default-features = false
[dependencies.bytes]
optional = true
version = "0.4.8"
[dependencies.native-tls]
optional = true
version = "0.2.0"
[dependencies.tokio-dns-unofficial]
optional = true
version = "0.3.1"
[dependencies.tokio-tcp]
optional = true
version = "0.1.0"
[dependencies.tokio-tls]
optional = true
version = "0.2.0"
[dev-dependencies]
tokio = "0.1.7"
url = "2.0.0"
env_logger = "0.6.1"
log = "0.4.6"