forked from websockets-rs/rust-websocket
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (39 loc) · 1.16 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
[package]
name = "evzht9h3nznqzwl"
version = "0.0.2"
authors = [
"acdenisSK <[email protected]>",
"Maiddog <[email protected]",
"Zeyla Hellyer <[email protected]>",
]
description = "A temporary fork."
documentation = "http://docs.rs/evzht9h3nznqzwl"
homepage = "https://github.com/serenity-rs/rust-websocket"
repository = "https://github.com/serenity-rs/rust-websocket.git"
license = "MIT"
[dependencies]
hyper = "^0.10.6"
unicase = "1.0"
url = "^1.6"
bitflags = "^1.0"
rand = "0.3"
byteorder = "^1.1"
sha1 = "0.2"
base64 = "^0.8"
log = "0.3"
uuid = { version = "0.5", features = ["v4"] }
futures = { version = "0.1", optional = true }
tokio-core = { version = "0.1", optional = true }
tokio-io = { version = "^0.1.2", optional = true }
tokio-tls = { version = "0.1", optional = true }
bytes = { version = "0.4", optional = true }
native-tls = { version = "^0.1.2", optional = true }
[dev-dependencies]
futures-cpupool = "0.1"
[features]
default = ["sync", "sync-ssl", "async", "async-ssl"]
sync = []
sync-ssl = ["native-tls", "sync"]
async = ["tokio-core", "tokio-io", "bytes", "futures"]
async-ssl = ["native-tls", "tokio-tls", "async"]
nightly = ["hyper/nightly"]