2024-10-30 09:47:31 +08:00
|
|
|
[package]
|
|
|
|
name = "simulation"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bevy_core = { workspace = true }
|
|
|
|
bevy_ecs = { workspace = true }
|
|
|
|
bevy_app = { workspace = true }
|
|
|
|
bevy_time = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
config = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
enum_dispatch = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
2024-10-31 15:12:26 +08:00
|
|
|
rtsa_log = { path = "../crates/rtsa_log" }
|
|
|
|
rtsa_dto = { path = "../crates/rtsa_dto" }
|
|
|
|
rtsa_db = { path = "../crates/rtsa_db" }
|
|
|
|
rtsa_mqtt = { path = "../crates/rtsa_mqtt" }
|