-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
22 lines (21 loc) · 915 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
[package]
name = "wsbroad"
description = "Websocket server that broadcasts each message to other clients connected to the same URL"
version = "0.3.0"
authors = ["Vitaly _Vi Shukela <[email protected]>"]
keywords = ["websocket", "websockets", "rfc6455", "broadcast", "nightly"]
repository = "https://github.com/vi/wsbroad"
include = ["src","Cargo.toml","LICENSE","README.md"]
categories = ["command-line-utilities", "network-programming", "web-programming", "web-programming::websocket"]
license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
anyhow = "1.0.36"
futures = "0.3.8"
rand = { version = "0.8.5", features = ["small_rng"] }
slab = "0.4.2"
tokio = {version = "1", features=["net","rt","macros","sync"]}
tokio-listener = { version = "0.2.1", default-features = false, features = ["user_facing_default"] }
tokio-tungstenite = "0.20"
tungstenite = {version="0.20", default_features=false}
xflags = "0.3.1"