From 3f6c08ebae6c69cf32b98db1d3fe8e22e7c64df1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 07:24:43 +0000 Subject: [PATCH] chore(deps): bump bson from 2.15.0 to 3.1.0 Bumps [bson](https://github.com/mongodb/bson-rust) from 2.15.0 to 3.1.0. - [Release notes](https://github.com/mongodb/bson-rust/releases) - [Commits](https://github.com/mongodb/bson-rust/compare/v2.15.0...v3.1.0) --- updated-dependencies: - dependency-name: bson dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 35 +++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 13f1caff..3db1185d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -789,7 +789,6 @@ dependencies = [ "ahash", "base64 0.22.1", "bitvec", - "chrono", "getrandom 0.2.17", "getrandom 0.3.4", "hex", @@ -804,6 +803,28 @@ dependencies = [ "uuid", ] +[[package]] +name = "bson" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3f109694c4f45353972af96bf97d8a057f82e2d6e496457f4d135b9867a518c" +dependencies = [ + "ahash", + "base64 0.22.1", + "bitvec", + "chrono", + "getrandom 0.3.4", + "hex", + "indexmap 2.13.0", + "js-sys", + "rand 0.9.2", + "serde_bytes", + "simdutf8", + "thiserror 2.0.18", + "time", + "uuid", +] + [[package]] name = "bumpalo" version = "3.20.2" @@ -3093,7 +3114,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da0cd419a51a5fb44819e290fbdb0665a54f21dead8923446a799c7f4d26ad9" dependencies = [ - "bson", + "bson 2.15.0", "mongocrypt-sys", "once_cell", "serde", @@ -3113,7 +3134,7 @@ checksum = "2c5941683db2ab2697f71e58dc0319024e808d3b28e7cf20f4bfb445fe54a30b" dependencies = [ "base64 0.22.1", "bitflags", - "bson", + "bson 2.15.0", "derive-where", "derive_more", "futures-core", @@ -3306,7 +3327,7 @@ dependencies = [ "aws-sdk-kms", "axum", "base64 0.22.1", - "bson", + "bson 3.1.0", "bytes", "chrono", "clap", @@ -4845,6 +4866,12 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + [[package]] name = "simple_asn1" version = "0.6.4" diff --git a/Cargo.toml b/Cargo.toml index 3476997e..55a25cc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/ChronoAIProject/NyxID" axum = { version = "0.8.8", features = ["macros", "ws"] } tokio = { version = "1.51", features = ["full"] } mongodb = "3.5.2" -bson = { version = "2.15", features = ["uuid-1", "chrono-0_4"] } +bson = { version = "3.1", features = ["uuid-1", "chrono-0_4"] } futures = "0.3.31" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149"