diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index 7f71b8b7b..15ca29d27 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -3127,9 +3127,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.33.0" +version = "1.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" dependencies = [ "backtrace", "bytes", @@ -3146,9 +3146,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index cd0cbfe4a..eece42dfd 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -25,7 +25,7 @@ image = "0.24.7" kittycad = { workspace = true, default-features = true } pretty_assertions = "1.4.0" reqwest = { version = "0.11.22", default-features = false } -tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.34.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.6.1" uuid = { version = "1.5.0", features = ["v4", "js", "serde"] } diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 02f41a71c..c8f67e17c 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -40,7 +40,7 @@ web-sys = { version = "0.3.64", features = ["console"] } bson = { version = "2.7.0", features = ["uuid-1", "chrono"] } futures = { version = "0.3.29" } reqwest = { version = "0.11.22", default-features = false } -tokio = { version = "1.33.0", features = ["full"] } +tokio = { version = "1.34.0", features = ["full"] } tokio-tungstenite = { version = "0.20.0", features = ["rustls-tls-native-roots"] } tower-lsp = { version = "0.20.0", features = ["proposed"] } @@ -62,7 +62,7 @@ expectorate = "1.1.0" insta = { version = "1.34.0", features = ["json"] } itertools = "0.11.0" pretty_assertions = "1.4.0" -tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.34.0", features = ["rt-multi-thread", "macros", "time"] } [[bench]] name = "compiler_benchmark"