24 lines
592 B
TOML
24 lines
592 B
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.1"
|
|
bevy_core = "0.14.1"
|
|
bevy_ecs = "0.14.1"
|
|
bevy_time = "0.14.1"
|
|
rayon = "1.10.0"
|
|
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
|
|
thiserror = "1.0.63"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
|
|
rtss_log = { path = "crates/rtss_log" }
|
|
rtss_api = { path = "crates/rtss_api" }
|