2a7a2ffc99
All checks were successful
build / build-rust (push) Successful in 3m0s
实现配置项相关的CRUD 调整草稿数据管理接口
39 lines
959 B
TOML
39 lines
959 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"
|
|
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"
|
|
sqlx = { version = "0.8", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"json",
|
|
"chrono",
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.125"
|
|
anyhow = "1.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", features = ["derive"] }
|
|
enum_dispatch = "0.3"
|
|
anyhow = { workspace = true }
|