diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index dff94a43c..f9ac6525e 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -4061,9 +4061,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 4f62ec2d8..6b438e408 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -25,7 +25,7 @@ image = "0.24.9" kittycad = { workspace = true, default-features = true } pretty_assertions = "1.4.0" reqwest = { version = "0.11.26", default-features = false } -tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.7" uuid = { version = "1.8.0", features = ["v4", "js", "serde"] } diff --git a/src/wasm-lib/grackle/Cargo.toml b/src/wasm-lib/grackle/Cargo.toml index 3f928518e..61aa47e84 100644 --- a/src/wasm-lib/grackle/Cargo.toml +++ b/src/wasm-lib/grackle/Cargo.toml @@ -15,7 +15,7 @@ kittycad-execution-plan-macros = { workspace = true } kittycad-modeling-cmds = { workspace = true } kittycad-modeling-session = { workspace = true } thiserror = "1.0.58" -tokio = { version = "1.36.0", features = ["macros", "rt"] } +tokio = { version = "1.37.0", features = ["macros", "rt"] } twenty-twenty = "0.7.0" uuid = "1.8" diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 4891838e2..4a1aad57d 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -50,7 +50,7 @@ web-sys = { version = "0.3.69", features = ["console"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] approx = "0.5" bson = { version = "2.9.0", features = ["uuid-1", "chrono"] } -tokio = { version = "1.36.0", features = ["full"] } +tokio = { version = "1.37.0", features = ["full"] } tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-native-roots"] } tower-lsp = { version = "0.20.0", features = ["proposed"] } @@ -75,7 +75,7 @@ image = "0.24.9" insta = { version = "1.38.0", features = ["json"] } itertools = "0.12.1" pretty_assertions = "1.4.0" -tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros", "time"] } +tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "time"] } twenty-twenty = "0.7.0" [[bench]]