Migration vers une forme unifiée des cargos
This commit is contained in:
@@ -13,16 +13,16 @@ async-trait = { version = "0.1", optional = true }
|
||||
reqwest = { version = "0.12", features = ["json", "cookies"] }
|
||||
|
||||
# Gestion asynchrone
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
tokio = { workspace = true }
|
||||
|
||||
# Sérialisation/Désérialisation JSON
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serde_yaml = "0.9"
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
serde_yaml = { workspace = true }
|
||||
|
||||
# Gestion des erreurs
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
anyhow = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
|
||||
# Hashing pour les clés de cache et signatures
|
||||
sha1 = "0.10"
|
||||
@@ -33,10 +33,10 @@ md-5 = "0.10"
|
||||
moka = { version = "0.12", features = ["future"] }
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing = { workspace = true }
|
||||
|
||||
# Gestion du temps
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
chrono = { workspace = true }
|
||||
|
||||
# Configuration
|
||||
pmoconfig = { path = "../pmoconfig" }
|
||||
|
||||
Reference in New Issue
Block a user