From ac072355a2b646dcf371c68a556fa96e91a369f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 13:37:03 +0100 Subject: [PATCH] build(deps): bump the bot group in /app/bot with 3 updates (#65) Bumps the bot group in /app/bot with 3 updates: [anyhow](https://github.com/dtolnay/anyhow), [aws-sdk-dynamodb](https://github.com/awslabs/aws-sdk-rust) and [serde](https://github.com/serde-rs/serde). Updates `anyhow` from 1.0.91 to 1.0.92 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.91...1.0.92) Updates `aws-sdk-dynamodb` from 1.51.0 to 1.52.0 - [Release notes](https://github.com/awslabs/aws-sdk-rust/releases) - [Commits](https://github.com/awslabs/aws-sdk-rust/commits) Updates `serde` from 1.0.213 to 1.0.214 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.213...v1.0.214) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: bot - dependency-name: aws-sdk-dynamodb dependency-type: direct:production update-type: version-update:semver-minor dependency-group: bot - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: bot ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- app/bot/Cargo.lock | 16 ++++++++-------- app/bot/Cargo.toml | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/bot/Cargo.lock b/app/bot/Cargo.lock index 1e328a4..3742417 100644 --- a/app/bot/Cargo.lock +++ b/app/bot/Cargo.lock @@ -43,9 +43,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" +checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13" [[package]] name = "aquamarine" @@ -158,9 +158,9 @@ dependencies = [ [[package]] name = "aws-sdk-dynamodb" -version = "1.51.0" +version = "1.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e896ff0a1711722e7411ec92bad66613506199c4c9ac810140b975bc8da5c27" +checksum = "473aa619c2a3581ab00d9000e66a11982f6354d0150797518b8d459c7f9a6b5c" dependencies = [ "aws-credential-types", "aws-runtime", @@ -1861,18 +1861,18 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.213" +version = "1.0.214" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1" +checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.213" +version = "1.0.214" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5" +checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" dependencies = [ "proc-macro2", "quote", diff --git a/app/bot/Cargo.toml b/app/bot/Cargo.toml index 0b890ad..58c8968 100644 --- a/app/bot/Cargo.toml +++ b/app/bot/Cargo.toml @@ -4,16 +4,16 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.91" +anyhow = "1.0.92" aws-config = "1.5.9" -aws-sdk-dynamodb = "1.51.0" +aws-sdk-dynamodb = "1.52.0" chrono = "0.4.38" chrono-tz = "0.10.0" edit-distance = "2.1.3" fastrand = "2.1.1" lambda_runtime = "0.13.0" openssl = { version = "0.10.68", features = ["vendored"] } -serde = "1.0.213" +serde = "1.0.214" serde_dynamo = "4.2.14" serde_json = "1.0.132" teloxide = { version = "0.13.0", features = ["macros"] }