-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.01 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
[package]
name = "blunt"
version = "0.0.8"
authors = ["Nelson J Morais <[email protected]>"]
edition = "2018"
description = "Highly opinionated way to build asynchronous Websocket servers with Rust."
repository = "https://github.com/njasm/blunt/"
homepage = "https://github.com/njasm/blunt/"
license = "MIT OR Apache-2.0 OR MPL-2.0"
keywords = ["websocket", "asynchronous", "async", "tokio", "framework"]
categories = ["web-programming::websocket", "web-programming", "network-programming", "asynchronous"]
exclude = [
".gitignore",
".idea/*",
".github/*",
"examples/*",
"target/*",
"Cargo.lock"
]
[dependencies]
async-trait = "0"
tokio = { version = "1", features = ["full"] }
async-tungstenite = { version = "0.13", features = ["tokio-runtime"] }
futures = "0.3"
uuid = { version = "0.8", features = ["v4"] }
hyper = { version = "0.14", features = ["full"] }
tracing = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
tracing-subscriber = "0.2"
criterion = "0.3"
tungstenite = "0.13"
[[bench]]
name = "bench"
harness = false