47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "pmocontrol"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
pmoupnp = { path = "../pmoupnp" }
|
|
pmodidl = { path = "../pmodidl" }
|
|
quick-xml = "0.38.4"
|
|
thiserror = "2.0.17"
|
|
ureq = "3.1.4"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = "0.3"
|
|
tracing-log = "0.1"
|
|
anyhow = "1.0"
|
|
xmltree = "0.11.0"
|
|
crossbeam-channel = "0.5"
|
|
ratatui = { version = "0.26", default-features = false, features = ["crossterm"] }
|
|
crossterm = "0.27"
|
|
rust_cast = "0.19"
|
|
mdns = "3.0"
|
|
async-std = "1.12"
|
|
futures-util = "0.3"
|
|
|
|
# pmoserver extension support (optional)
|
|
pmoserver = { path = "../pmoserver", optional = true }
|
|
utoipa = { version = "5.4.0", optional = true }
|
|
axum = { version = "0.8.4", optional = true }
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
tokio = { version = "1", features = ["sync", "rt"], optional = true }
|
|
tokio-util = { version = "0.7", optional = true }
|
|
async-trait = { version = "0.1", optional = true }
|
|
tokio-stream = { version = "0.1", features = ["sync"], optional = true }
|
|
async-stream = { version = "0.3", optional = true }
|
|
chrono = { version = "0.4", features = ["serde"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
percent-encoding = "2.3"
|
|
|
|
[features]
|
|
default = []
|
|
# Active l'API REST pmoserver
|
|
pmoserver = ["dep:pmoserver", "dep:utoipa", "dep:axum", "dep:serde", "dep:serde_json", "dep:tokio", "dep:tokio-util", "dep:async-trait", "dep:tokio-stream", "dep:async-stream", "dep:chrono"]
|