-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
41 lines (35 loc) · 1.16 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
38
39
40
41
[package]
name = "routerify-websocket"
version = "3.0.0"
description = "The websocket support for the Routerify library."
homepage = "https://github.com/routerify/routerify-websocket"
repository = "https://github.com/routerify/routerify-websocket"
keywords = ["routerify", "hyper-rs", "hyper", "websocket", "ws"]
categories = ["asynchronous", "web-programming", "web-programming::websocket"]
authors = ["Rousan Ali <[email protected]>"]
readme = "README.md"
license = "MIT"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[package.metadata.playground]
features = ["all"]
[features]
default = []
all = ["json"]
json = ["serde", "serde_json"]
[dependencies]
log = "0.4"
derive_more = "0.99"
routerify = "3.0"
hyper = "0.14"
headers = "0.3"
tokio-tungstenite = { version = "0.16", default-features = false }
futures = { version = "0.3", default-features = false }
tokio = { version = "1.0", features = ["rt"] }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
tokio-tungstenite = { version = "0.16" }