7226904e04
2, 添加mqtt客户端crate,提供订阅、发布、发送请求等功能
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "rtss_simulation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[workspace]
|
|
members = ["crates/*"]
|
|
|
|
[workspace.dependencies]
|
|
bevy_app = "0.14"
|
|
bevy_core = "0.14"
|
|
bevy_ecs = "0.14"
|
|
bevy_time = "0.14"
|
|
rayon = "1.10"
|
|
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
|
|
thiserror = "1.0.64"
|
|
sqlx = { version = "0.8", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"json",
|
|
"chrono",
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.131"
|
|
anyhow = "1.0.90"
|
|
async-trait = "0.1.83"
|
|
bytes = "1.7.2"
|
|
lazy_static = "1.5.0"
|
|
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
|
|
rtss_log = { path = "crates/rtss_log" }
|
|
rtss_api = { path = "crates/rtss_api" }
|
|
rtss_db = { path = "crates/rtss_db" }
|
|
serde = { workspace = true }
|
|
config = "0.14.0"
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
enum_dispatch = "0.3"
|
|
anyhow = { workspace = true }
|