22 lines
488 B
TOML
22 lines
488 B
TOML
[package]
|
|
name = "app_feeder_distributor"
|
|
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"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tray-icon = "0.15"
|
|
winit = "0.30"
|
|
webbrowser = "0.8"
|
|
|
|
[[bin]]
|
|
name = "app_feeder_distributor"
|
|
path = "src/main.rs"
|