35 lines
962 B
TOML
35 lines
962 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"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_with = "3.0"
|
|
chrono = "0.4"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "chrono", "uuid", "json"] }
|
|
uuid = { version = "1.21", features = ["serde", "v4"] }
|
|
async-stream = "0.3"
|
|
async-opcua = { version = "0.18", features = ["client"] }
|
|
validator = { version = "0.20", features = ["derive"] }
|
|
anyhow = "1.0"
|
|
|
|
[dev-dependencies]
|
|
tower = { version = "0.5", features = ["util"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tray-icon = "0.15"
|
|
winit = "0.30"
|
|
webbrowser = "0.8"
|
|
|
|
[[bin]]
|
|
name = "app_feeder_distributor"
|
|
path = "src/main.rs"
|