17 lines
393 B
TOML
17 lines
393 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"
|
|
|
|
[[bin]]
|
|
name = "app_operation_system"
|
|
path = "src/main.rs"
|