From 6358bdd7cd13e5ac865483cae1bfb4c624bbc97c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 21:38:27 -0700 Subject: [PATCH] Bump uuid from 1.8.0 to 1.9.1 in /src/wasm-lib (#2787) Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.8.0 to 1.9.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.1) --- updated-dependencies: - dependency-name: uuid 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> Co-authored-by: Jess Frazelle --- src/wasm-lib/Cargo.lock | 11 ++--------- src/wasm-lib/Cargo.toml | 4 ++-- src/wasm-lib/kcl/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index d51864760..c33384d21 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -183,12 +183,6 @@ dependencies = [ "syn 2.0.68", ] -[[package]] -name = "atomic" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba" - [[package]] name = "auto_impl" version = "1.2.0" @@ -3423,11 +3417,10 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ - "atomic", "getrandom", "serde", "wasm-bindgen", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 4ad575199..daaef6487 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -18,7 +18,7 @@ kittycad.workspace = true serde_json = "1.0.116" tokio = { version = "1.38.0", features = ["sync"] } toml = "0.8.14" -uuid = { version = "1.8.0", features = ["v4", "js", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "js", "serde"] } wasm-bindgen = "0.2.91" wasm-bindgen-futures = "0.4.42" @@ -31,7 +31,7 @@ pretty_assertions = "1.4.0" reqwest = { version = "0.11.26", default-features = false } tokio = { version = "1.38.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.8" -uuid = { version = "1.8.0", features = ["v4", "js", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "js", "serde"] } [target.'cfg(target_arch = "wasm32")'.dependencies] console_error_panic_hook = "0.1.7" diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index ef6d2e1f3..451ecbc64 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -39,7 +39,7 @@ thiserror = "1.0.61" toml = "0.8.14" ts-rs = { version = "9.0.0", features = ["uuid-impl", "url-impl", "chrono-impl", "no-serde-warnings", "serde-json-impl"] } url = { version = "2.5.2", features = ["serde"] } -uuid = { version = "1.8.0", features = ["v4", "js", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "js", "serde"] } validator = { version = "0.18.1", features = ["derive"] } winnow = "0.5.40" zip = { version = "2.0.0", default-features = false }