From 0d6651ddff6fea91469e4cbbfb6327fced05be24 Mon Sep 17 00:00:00 2001 From: jonaro00 <54029719+jonaro00@users.noreply.github.com> Date: Sat, 4 Mar 2023 07:25:40 +0100 Subject: [PATCH 1/2] bump mongodb version --- poem/mongodb/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poem/mongodb/Cargo.toml b/poem/mongodb/Cargo.toml index 2f10c73d..a901802f 100644 --- a/poem/mongodb/Cargo.toml +++ b/poem/mongodb/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -mongodb = "2.4.0" +mongodb = "2.5.0" poem = "1.3.55" shuttle-poem = "0.18.0" shuttle-shared-db = { version = "0.18.0", features = ["mongodb"] } From 2ec48111de4be54c3389d0c4e07e6248a6cd25ad Mon Sep 17 00:00:00 2001 From: jonaro00 <54029719+jonaro00@users.noreply.github.com> Date: Mon, 19 Jun 2023 01:44:11 +0200 Subject: [PATCH 2/2] bump poise versions --- poise/hello-world/Cargo.toml | 6 +++--- poise/hello-world/src/main.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/poise/hello-world/Cargo.toml b/poise/hello-world/Cargo.toml index d8d292e4..17c854e0 100644 --- a/poise/hello-world/Cargo.toml +++ b/poise/hello-world/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" publish = false [dependencies] -anyhow = "1.0.68" -poise = "0.5.2" +anyhow = "1.0.71" +poise = "0.5.5" shuttle-poise = "0.18.0" shuttle-runtime = "0.18.0" shuttle-secrets = "0.18.0" tracing = "0.1.37" -tokio = "1.26.0" +tokio = "1.28.2" diff --git a/poise/hello-world/src/main.rs b/poise/hello-world/src/main.rs index ef3a302a..1219db60 100644 --- a/poise/hello-world/src/main.rs +++ b/poise/hello-world/src/main.rs @@ -1,7 +1,7 @@ use anyhow::Context as _; use poise::serenity_prelude as serenity; -use shuttle_secrets::SecretStore; use shuttle_poise::ShuttlePoise; +use shuttle_secrets::SecretStore; struct Data {} // User data, which is stored and accessible in all command invocations type Error = Box;