From 9c782dc088672abe6c0546f8aab43c8336fe8414 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 01:11:25 +0000 Subject: [PATCH] Bump poise from 0.6.1 to 0.6.2 Bumps [poise](https://github.com/serenity-rs/poise) from 0.6.1 to 0.6.2. - [Release notes](https://github.com/serenity-rs/poise/releases) - [Changelog](https://github.com/serenity-rs/poise/blob/current/CHANGELOG.md) - [Commits](https://github.com/serenity-rs/poise/compare/v0.6.1...v0.6.2) --- updated-dependencies: - dependency-name: poise dependency-version: 0.6.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 +++++++++++++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7472c3..b492066 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1442,31 +1442,21 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "poise" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1819d5a45e3590ef33754abce46432570c54a120798bdbf893112b4211fa09a6" +checksum = "711433114bca9ff68582aa58af5cbcf573e83250a8714c2dca1c36f453cad3ae" dependencies = [ "async-trait", "derivative", "futures-util", + "indexmap", "parking_lot", - "poise_macros", "regex", "serenity", + "serenity_poise_macros", "tokio", "tracing", -] - -[[package]] -name = "poise_macros" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fa2c123c961e78315cd3deac7663177f12be4460f5440dbf62a7ed37b1effea" -dependencies = [ - "darling", - "proc-macro2", - "quote", - "syn 2.0.104", + "trim-in-place", ] [[package]] @@ -1972,6 +1962,18 @@ dependencies = [ "url", ] +[[package]] +name = "serenity_poise_macros" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bc8407893be0d973a7bb48325e10e0160a0db44f4099467c83179688220e5f5" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sha1" version = "0.10.6" @@ -2713,6 +2715,12 @@ dependencies = [ "tracing-log", ] +[[package]] +name = "trim-in-place" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc" + [[package]] name = "triomphe" version = "0.1.14" diff --git a/Cargo.toml b/Cargo.toml index 03bf2da..c536283 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ serenity = { version = "0.12.5", default-features = false, features = [ "native_tls_backend", "cache", ] } -poise = "0.6.1" +poise = "0.6.2" indoc = "2.0.7"