-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 838 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
[package]
name = "ws-gonzale"
version = "0.5.0"
authors = ["Christoffer Lantz <christoffer.lantz@filmskaparna.se>"]
edition = "2018"
description = "Naive websocket server implemented using async / await"
repository = "https://github.com/Muqito/ws-gonzale"
keywords = ["websocket-server", "websocket", "async", "non-blocking", "futures"]
categories = ["asynchronous", "network-programming"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3"
async-std = "1.6.2"
async-net = "0.1"
async-channel = "1.1.1"
async-trait = "0.1.36"
sha1 = "0.6.0"
base64 = "0.12.3"
[dev-dependencies]
criterion = "0.3"
hex = "0.4.2"
[[bench]]
name = "my_benchmark"
harness = false
[[example]]
name = "life-cycle"
path = "examples/life-cycle/main.rs"