-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.25 KB
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
[package]
authors = ["Xavier Lau <[email protected]>"]
description = "Rust websocket benchmark."
edition = "2024"
homepage = "https://hack.ink/websocket-benchmark"
license = "GPL-3.0"
name = "websocket-benchmark"
readme = "README.md"
repository = "https://github.com/hack-ink/websocket-benchmark"
version = "0.2.0"
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[dependencies]
# crates.io
color-eyre = { version = "0.6" }
fastwebsockets = { version = "0.10", features = ["unstable-split", "upgrade"] }
futures = { version = "0.3" }
http-body-util = { version = "0.1" }
hyper = { version = "1.8", features = ["client", "http1", "server"] }
hyper-util = { version = "0.1", features = ["server-auto", "tokio"] }
sockudo-ws = { version = "1.7" }
soketto = { version = "0.8" }
tokio = { version = "1.49", features = ["macros", "rt-multi-thread", "sync"] }
tokio-tungstenite = { version = "0.28" }
tokio-util = { version = "0.7", features = ["compat"] }
tokio-websockets = { version = "0.13", features = ["client", "fastrand", "server", "sha1_smol"] }
ws-tool = { version = "0.11", features = ["async"] }