plc_control/crates/app_operation_system/Cargo.toml

21 lines
557 B
TOML

[package]
name = "app_operation_system"
version = "0.1.0"
edition = "2021"
[dependencies]
plc_platform_core = { path = "../plc_platform_core" }
tokio = { version = "1.49", features = ["full"] }
axum = { version = "0.8", features = ["ws"] }
tower-http = { version = "0.6", features = ["cors", "fs"] }
tracing = "0.1"
dotenv = "0.15"
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "chrono", "uuid", "json"] }
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
[[bin]]
name = "app_operation_system"
path = "src/main.rs"