forked from housleyjk/ws-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (53 loc) · 987 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
authors = ["Jason Housley <[email protected]>"]
description = "Lightweight, event-driven WebSockets for Rust."
documentation = "https://docs.rs/ws/latest/ws/index.html"
keywords = [
"websocket",
"mio",
"event-driven",
"io",
"web",
]
license = "MIT"
name = "ws"
readme = "README.md"
repository = "https://github.com/housleyjk/ws-rs"
version = "0.9.2"
edition = "2018"
[dependencies]
byteorder = "1.2"
bytes = "0.5"
httparse = "1.2"
log = "0.4"
mio = "0.6"
mio-extras = "2.0"
rand = "0.7"
sha-1 = "0.9"
slab = "0.4"
url = "2.1"
[dependencies.libc]
optional = true
version = "0.2"
[dependencies.libz-sys]
optional = true
version = "1.0"
[dependencies.openssl]
optional = true
version = "0.10"
[dependencies.native-tls]
optional = true
version = "0.2"
[dev-dependencies]
clap = "2.33"
env_logger = "0.7"
term = "0.6"
time = "0.1"
[features]
default = []
permessage-deflate = [
"libz-sys",
"libc",
]
ssl = ["openssl"]
nativetls = ["native-tls"]