openbmclapi-rs/tests/socket-test/Cargo.toml

21 lines
540 B
TOML
Raw Normal View History

2024-02-08 23:59:36 +08:00
[package]
name = "socket-test"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-10 12:31:42 +08:00
rust_socketio = { version = "0.4.4", features = ["async"]}
2024-02-08 23:59:36 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.112"
toml = "0.8.8"
2024-02-09 14:16:49 +08:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
2024-02-10 12:31:42 +08:00
[patch.crates-io]
rust_socketio = { git = "https://github.com/shenjackyuanjie/rust-socketio.git", branch = "mult_payload" }