-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
50 lines (47 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
[workspace.package]
version = "0.15.1"
edition = "2021"
rust-version = "1.75.0"
authors = ["Théodore Prévot <"]
repository = "https://github.com/totodore/socketioxide"
homepage = "https://github.com/totodore/socketioxide"
keywords = ["socketio", "tower", "axum", "hyper", "websocket"]
readme = "README.md"
categories = [
"asynchronous",
"network-programming",
"web-programming::websocket",
]
license = "MIT"
[workspace]
members = ["crates/*", "e2e/*", "crates/*/fuzz"]
default-members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
bytes = { version = "1.7", features = ["serde"] }
futures-core = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
tokio = "1.40"
tokio-tungstenite = "0.24"
serde = { version = "1.0", features = ["derive"] }
smallvec = { version = "1.13", features = ["union"] }
serde_json = "1.0"
tower-layer = "0.3"
tower-service = "0.3"
http = "1.1"
http-body = "1.0"
http-body-util = "0.1"
thiserror = "2.0"
tracing = "0.1"
itoa = "1.0"
hyper-util.version = "0.1"
hyper = "1.5"
pin-project-lite = "0.2"
matchit = "0.8"
# Dev deps
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
criterion = { version = "0.5", features = [
"rayon",
"html_reports",
], default-features = false }
axum = "0.7"