Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump mongodb and poise versions #24

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion poem/mongodb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions poise/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion poise/hello-world/src/main.rs
Original file line number Diff line number Diff line change
@@ -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<dyn std::error::Error + Send + Sync>;
Expand Down