From 8cb6cf1b8abf337dc6d16878c9c810ae75d11fc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 19:40:26 +0000 Subject: [PATCH] Bump bson from 2.7.0 to 2.9.0 in /src/wasm-lib (#1381) Bumps [bson](https://github.com/mongodb/bson-rust) from 2.7.0 to 2.9.0. - [Release notes](https://github.com/mongodb/bson-rust/releases) - [Commits](https://github.com/mongodb/bson-rust/compare/v2.7.0...v2.9.0) --- updated-dependencies: - dependency-name: bson 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> --- src/wasm-lib/Cargo.lock | 6 +++--- src/wasm-lib/Cargo.toml | 2 +- src/wasm-lib/kcl/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index 10ddac790..210ef8205 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -413,16 +413,16 @@ 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", "base64 0.13.1", "bitvec", "chrono", "hex", - "indexmap 1.9.3", + "indexmap 2.2.2", "js-sys", "once_cell", "rand 0.8.5", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 00047a30d..5e77b3631 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.73" crate-type = ["cdylib"] [dependencies] -bson = { version = "2.7.0", features = ["uuid-1", "chrono"] } +bson = { version = "2.9.0", features = ["uuid-1", "chrono"] } gloo-utils = "0.2.0" kcl-lib = { path = "kcl" } kittycad = { workspace = true } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 17cb00acf..e22b364c7 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -42,7 +42,7 @@ web-sys = { version = "0.3.68", features = ["console"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] approx = "0.5" -bson = { version = "2.7.0", features = ["uuid-1", "chrono"] } +bson = { version = "2.9.0", features = ["uuid-1", "chrono"] } futures = { version = "0.3.29" } reqwest = { version = "0.11.24", default-features = false } tokio = { version = "1.34.0", features = ["full"] }