forked from paritytech/soketto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 984 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
[package]
name = "soketto"
version = "0.4.1"
authors = ["Parity Technologies <[email protected]>", "Jason Ozias <[email protected]>"]
description = "A websocket protocol implementation."
keywords = ["websocket", "codec", "async", "futures"]
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/paritytech/soketto"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
deflate = ["flate2"]
[dependencies]
base64 = "0.12"
bytes = "0.5"
flate2 = { version = "1.0.13", features = ["zlib"], default-features = false, optional = true }
futures = { version = "0.3.1", features = ["unstable", "bilock"] }
httparse = "1.3.4"
log = "0.4.8"
rand = "0.7"
sha-1 = "0.8"
[dev-dependencies]
quickcheck = "0.9"
tokio = { version = "0.2", features = ["dns", "stream", "tcp", "rt-threaded", "macros"] }
tokio-util = { version = "0.3", features = ["compat"] }