2025-09-23 20:54:50 +02:00
|
|
|
|
|
|
|
|
[package]
|
|
|
|
|
name = "pmoconfig"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
pmoutils ={ path = "../pmoutils" }
|
|
|
|
|
|
2025-12-30 16:12:30 +01:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
2025-09-23 20:54:50 +02:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
dirs = "6.0.0"
|
|
|
|
|
log = "0.4.20"
|
|
|
|
|
anyhow = "1.0.75"
|
2025-12-30 16:12:30 +01:00
|
|
|
uuid = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2025-12-08 22:32:42 +01:00
|
|
|
aes-gcm = "0.10"
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
base64 = "0.22"
|
2025-10-21 18:37:56 +02:00
|
|
|
|
|
|
|
|
# Async
|
2025-12-30 16:12:30 +01:00
|
|
|
tokio = { workspace = true, optional = true }
|
2025-10-21 18:37:56 +02:00
|
|
|
|
|
|
|
|
# Serveur HTTP (pour l'API REST)
|
|
|
|
|
axum = { version = "0.8", optional = true }
|
|
|
|
|
utoipa = { version = "5.3", features = ["axum_extras"], optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
api = ["dep:tokio", "dep:axum", "dep:utoipa"]
|