-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (35 loc) · 1.03 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
[package]
name = "yarws"
version = "0.3.1"
description = "Yet Another Rust WebSocket library"
authors = ["Igor Anic <[email protected]>"]
repository = "https://github.com/ianic/yarws"
homepage = "https://github.com/ianic/yarws"
documentation = "https://docs.rs/yarws/0.3.1"
readme = "README.md"
categories = ["web-programming::websocket", "network-programming"]
keywords = ["websocket", "tokio"]
license = "MIT"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sha-1 = "0.8.2"
hex-literal = "0.2.1"
base64 = "0.12.0"
tokio = { version = "0.2", features = ["full"] }
tokio-tls = "0.3.0"
futures = "0.3"
inflate = "0.4.5"
miniz_oxide = "0.3.6"
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_warn"] }
slog-term = "2.5.0"
slog-async = "2.5.0"
slog-stdlog = "4.0.0"
failure = "0.1.7"
structopt = "0.3.14"
rand = "0.7.3"
url = "2.1.1"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.52"
colored = "1.9"
native-tls = "0.2.4"