Migration vers une forme unifiée des cargos

This commit is contained in:
2025-12-30 16:12:30 +01:00
parent 64450185c5
commit a4301140d8
45 changed files with 989 additions and 132 deletions

View File

@@ -11,14 +11,14 @@ categories = ["multimedia"]
[dependencies]
# Gestion des erreurs
thiserror = "1.0"
anyhow = "1.0"
thiserror = { workspace = true }
anyhow = { workspace = true }
# Async traits
async-trait = "0.1"
async-trait = { workspace = true }
# Async runtime
tokio = { version = "1.0", features = ["sync", "time"] }
tokio = { workspace = true, features = ["sync", "time"] }
# DIDL-Lite support
pmodidl = { path = "../pmodidl" }
@@ -32,8 +32,8 @@ pmocovers = { path = "../pmocovers", optional = true }
pmocache = { path = "../pmocache", optional = true }
# Serialization (required for cache metadata)
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde = { workspace = true }
serde_json = { workspace = true }
# Server extension (optional)
pmoserver = { path = "../pmoserver", optional = true }