From dad7a847982ea6869b4019a66b332cf2e21e6d2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 12:26:03 -0700 Subject: [PATCH] Bump tokio from 1.39.2 to 1.39.3 in /src/wasm-lib (#3511) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.2 to 1.39.3. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.39.3) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src/wasm-lib/Cargo.lock | 4 ++-- src/wasm-lib/Cargo.toml | 4 ++-- src/wasm-lib/kcl-test-server/Cargo.toml | 2 +- src/wasm-lib/kcl/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index 9c92077dc..be0afa01a 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -3056,9 +3056,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 36e4b4816..cd68fcee4 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -17,7 +17,7 @@ gloo-utils = "0.2.0" kcl-lib = { path = "kcl" } kittycad.workspace = true serde_json = "1.0.125" -tokio = { version = "1.39.2", features = ["sync"] } +tokio = { version = "1.39.3", features = ["sync"] } toml = "0.8.19" uuid = { version = "1.10.0", features = ["v4", "js", "serde"] } wasm-bindgen = "0.2.91" @@ -30,7 +30,7 @@ image = { version = "0.25.1", default-features = false, features = ["png"] } kittycad = { workspace = true, default-features = true } pretty_assertions = "1.4.0" reqwest = { version = "0.11.26", default-features = false } -tokio = { version = "1.39.2", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.39.3", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.8" uuid = { version = "1.10.0", features = ["v4", "js", "serde"] } diff --git a/src/wasm-lib/kcl-test-server/Cargo.toml b/src/wasm-lib/kcl-test-server/Cargo.toml index c97466087..32002bac9 100644 --- a/src/wasm-lib/kcl-test-server/Cargo.toml +++ b/src/wasm-lib/kcl-test-server/Cargo.toml @@ -12,4 +12,4 @@ kcl-lib = { version = "0.2", path = "../kcl" } pico-args = "0.5.0" serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0.125" -tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 8ab2c7aa8..ce3e7bcea 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -50,7 +50,7 @@ zip = { version = "2.0.0", default-features = false } [target.'cfg(target_arch = "wasm32")'.dependencies] js-sys = { version = "0.3.69" } -tokio = { version = "1.39.2", features = ["sync", "time"] } +tokio = { version = "1.39.3", features = ["sync", "time"] } tower-lsp = { version = "0.20.0", default-features = false, features = ["runtime-agnostic"] } wasm-bindgen = "0.2.91" wasm-bindgen-futures = "0.4.42" @@ -59,7 +59,7 @@ web-sys = { version = "0.3.69", features = ["console"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] approx = "0.5" bson = { version = "2.11.0", features = ["uuid-1", "chrono"] } -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.39.3", features = ["full"] } tokio-tungstenite = { version = "0.23.1", features = ["rustls-tls-native-roots"] } tower-lsp = { version = "0.20.0", features = ["proposed"] }