2024-08-08 15:58:56 +08:00
|
|
|
[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
|
|
|
|
|
2024-08-19 20:45:44 +08:00
|
|
|
[workspace]
|
|
|
|
members = ["crates/*"]
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-08-13 19:44:14 +08:00
|
|
|
bevy_app = "0.14.1"
|
|
|
|
bevy_core = "0.14.1"
|
|
|
|
bevy_ecs = "0.14.1"
|
|
|
|
bevy_time = "0.14.1"
|
2024-08-19 20:45:44 +08:00
|
|
|
rayon = "1.10.0"
|
2024-08-23 16:31:49 +08:00
|
|
|
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
|
|
|
|
thiserror = "1.0.63"
|
2024-08-19 20:45:44 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-23 16:31:49 +08:00
|
|
|
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
|
2024-08-19 20:45:44 +08:00
|
|
|
rtss_log = { path = "crates/rtss_log" }
|
2024-08-23 16:31:49 +08:00
|
|
|
rtss_api = { path = "crates/rtss_api" }
|