forked from snapview/tungstenite-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 850 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
36
37
38
[package]
name = "tungstenite"
description = "Lightweight stream-based WebSocket implementation"
categories = ["web-programming::websocket", "network-programming"]
keywords = ["websocket", "io", "web"]
authors = ["Alexey Galakhov"]
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/snapview/tungstenite-rs"
documentation = "https://docs.rs/tungstenite/0.10.1"
repository = "https://github.com/snapview/tungstenite-rs"
version = "0.10.1"
edition = "2018"
[features]
default = ["tls"]
tls = ["native-tls"]
[dependencies]
base64 = "0.11.0"
byteorder = "1.3.2"
bytes = "0.5"
http = "0.2"
httparse = "1.3.4"
input_buffer = "0.3.0"
log = "0.4.8"
rand = "0.7.2"
sha-1 = "0.8.1"
url = "2.1.0"
utf-8 = "0.7.5"
[dependencies.native-tls]
optional = true
version = "0.2.3"
[dev-dependencies]
env_logger = "0.7.1"
net2 = "0.2.33"