-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
21 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "rust-socketio-microserv"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0"
authors = ["Paul Werner <https://github.com/paulpwo>"]
repository = "https://github.com/paulpwo/sockets_server_rust"
description = "High-performance Socket.IO microservice in Rust with real-time broadcasting and metrics"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["ws"] }
socketioxide = "0.13"
tower = "0.4"
tower-http = { version = "0.5", features = ["compression-br", "cors"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sysinfo = "0.30"
chrono = { version = "0.4", features = ["serde"] }