diff --git a/cuddle-rust-service/Cargo.toml b/cuddle-rust-service/Cargo.toml index 843d88f..6442af4 100644 --- a/cuddle-rust-service/Cargo.toml +++ b/cuddle-rust-service/Cargo.toml @@ -8,7 +8,11 @@ resolver = "2" anyhow = { version = "1" } tokio = { version = "1", features = ["full"] } tracing = { version = "0.1", features = ["log"] } -tracing-subscriber = { version = "0.3.18" } +tracing-subscriber = { version = "0.3" } clap = { version = "4", features = ["derive", "env"] } dotenv = { version = "0.15" } -axum = { version = "0.7" } +axum = { version = "0.8" } +serde = { version = "1", features = ["derive"] } +uuid = { version = "1", features = ["v4"] } +tower-http = { version = "0.6", features = ["cors", "trace"] } +notmad = "0.8" diff --git a/cuddle-rust-service/crates/%%name%%/Cargo.toml b/cuddle-rust-service/crates/%%name%%/Cargo.toml index 397f914..45536f9 100644 --- a/cuddle-rust-service/crates/%%name%%/Cargo.toml +++ b/cuddle-rust-service/crates/%%name%%/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "%%name%%" version = "0.1.0" -edition = "2021" +edition = "2024" [dependencies] anyhow.workspace = true @@ -11,7 +11,7 @@ tracing-subscriber.workspace = true clap.workspace = true dotenv.workspace = true axum.workspace = true - -serde = { version = "1.0.197", features = ["derive"] } -uuid = { version = "1.7.0", features = ["v4"] } -tower-http = { version = "0.6.0", features = ["cors", "trace"] } +serde.workspace = true +uuid.workspace = true +tower-http.workspace = true +notmad.workspace = true