From c5e7a94a610b204d216db2715a5c3010a821442d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 00:01:40 +0800 Subject: [PATCH] chore(deps): bump mongodb from 2.7.1 to 2.8.0 (#4110) Bumps [mongodb](https://github.com/mongodb/mongo-rust-driver) from 2.7.1 to 2.8.0. - [Release notes](https://github.com/mongodb/mongo-rust-driver/releases) - [Commits](https://github.com/mongodb/mongo-rust-driver/compare/v2.7.1...v2.8.0) --- updated-dependencies: - dependency-name: mongodb dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 10 +++++----- core/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e044f78586f7..0b93c06efe0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1113,15 +1113,15 @@ dependencies = [ [[package]] name = "bson" -version = "2.7.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58da0ae1e701ea752cc46c1bb9f39d5ecefc7395c3ecd526261a566d4f16e0c2" +checksum = "ce21468c1c9c154a85696bb25c20582511438edb6ad67f846ba1378ffdd80222" dependencies = [ "ahash 0.8.6", "base64 0.13.1", "bitvec", "hex", - "indexmap 1.9.3", + "indexmap 2.1.0", "js-sys", "once_cell", "rand 0.8.5", @@ -4013,9 +4013,9 @@ dependencies = [ [[package]] name = "mongodb" -version = "2.7.1" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7c926772050c3a3f87c837626bf6135c8ca688d91d31dd39a3da547fc2bc9fe" +checksum = "46c30763a5c6c52079602be44fa360ca3bfacee55fca73f4734aecd23706a7f2" dependencies = [ "async-trait", "base64 0.13.1", diff --git a/core/Cargo.toml b/core/Cargo.toml index 40ffb52de715..44b47a357fb8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -306,7 +306,7 @@ mini-moka = { version = "0.10", optional = true } # for services-moka moka = { version = "0.12", optional = true, features = ["future", "sync"] } # for services-mongodb -mongodb = { version = "2.7.0", optional = true, features = ["tokio-runtime"] } +mongodb = { version = "2.8.0", optional = true, features = ["tokio-runtime"] } # for services-mysql mysql_async = { version = "0.32.2", default-features = false, features = [ "default-rustls",