25 lines
687 B
TOML
25 lines
687 B
TOML
|
[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 }
|
||
|
|
||
|
rtss_log = { path = "../crates/rtss_log" }
|
||
|
rtss_dto = { path = "../crates/rtss_dto" }
|
||
|
rtss_db = { path = "../crates/rtss_db" }
|
||
|
rtss_mqtt = { path = "../crates/rtss_mqtt" }
|