From 56b1c2122fe4d8213e1e63cc8f819757d85c0890 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Dec 2021 04:18:18 +0000 Subject: [PATCH] chore(deps): bump mongodb from 2.0.0 to 2.1.0 Bumps [mongodb](https://github.com/mongodb/mongo-rust-driver) from 2.0.0 to 2.1.0. - [Release notes](https://github.com/mongodb/mongo-rust-driver/releases) - [Commits](https://github.com/mongodb/mongo-rust-driver/compare/v2.0.0...v2.1.0) --- updated-dependencies: - dependency-name: mongodb dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5e48c7b49abd..552a9a2c76536 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,9 +770,9 @@ dependencies = [ [[package]] name = "bson" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dcc15cd0b9aff8e8326561dcf0bb6e56d0e559f3a4897f615b4a5075ab54c46" +checksum = "41539b5c502b7c4e7b8af8ef07e5c442fe79ceba62a2aad8e62bd589b9454745" dependencies = [ "ahash", "base64 0.13.0", @@ -3799,9 +3799,9 @@ checksum = "717e29a243b81f8130e31e24e04fb151b04a44b5a7d05370935f7d937e9de06d" [[package]] name = "mongodb" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b465d2f8add538efbaa3f22ae63be191b871ca511413405a59b8247cf2f6ef9" +checksum = "bacb6f8cee6bf010d7bc57550d859f6a4ffe255eb8c9a7014637fe988eaece64" dependencies = [ "async-trait", "base64 0.13.0", @@ -3822,6 +3822,7 @@ dependencies = [ "percent-encoding", "rand 0.8.4", "rustls 0.19.1", + "rustls-pemfile", "serde", "serde_bytes", "serde_with", @@ -5696,6 +5697,15 @@ dependencies = [ "security-framework", ] +[[package]] +name = "rustls-pemfile" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9" +dependencies = [ + "base64 0.13.0", +] + [[package]] name = "rustversion" version = "1.0.5" @@ -7299,7 +7309,7 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "static_assertions", ] diff --git a/Cargo.toml b/Cargo.toml index 66e7c9195fbdb..598314689ed6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -246,7 +246,7 @@ maxminddb = { version = "0.21.0", default-features = false, optional = true } md-5 = { version = "0.9", optional = true } # make sure to update the external docs when the Lua version changes mlua = { version = "0.6.5", default-features = false, features = ["lua54", "send", "vendored"], optional = true } -mongodb = { version = "2.0.0", default-features = false, features = ["tokio-runtime"], optional = true } +mongodb = { version = "2.1.0", default-features = false, features = ["tokio-runtime"], optional = true } async-nats = { version = "0.10.1", default-features = false, optional = true } no-proxy = { version = "0.3.1", default-features = false, features = ["serialize"] } nom = { version = "7.0.0", default-features = false, optional = true }