forked from websockets-rs/rust-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (28 loc) · 892 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
34
35
36
37
[package]
name = "websocket"
version = "0.26.2"
authors = ["cyderize <[email protected]>", "Michael Eden <[email protected]>"]
edition = "2018"
description = "A WebSocket (RFC6455) library for Rust."
documentation = "https://docs.rs/websocket/"
repository = "https://github.com/websockets-rs/rust-websocket"
readme = "README.md"
keywords = ["websocket", "websockets", "rfc6455", "async", "tokio"]
categories = ["asynchronous", "network-programming", "web-programming", "web-programming::websocket"]
license = "MIT"
[dependencies]
hyper = "^0.10.9"
unicase = "1.0"
url = "2.2.2"
rand = "0.8.3"
websocket-base = { path = "websocket-base", version="0.26.0", default-features=false }
[dev-dependencies]
futures-cpupool = "0.1"
[dev-dependencies.tokio]
version = "0.1"
default-features = false
features = ["codec", "tcp", "rt-full"]
[workspace]
members = [
"websocket-base"
]