diff --git a/Cargo.lock b/Cargo.lock index 735b231..a73687c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -893,12 +893,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[package]] -name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - [[package]] name = "hmac" version = "0.12.1" @@ -1329,9 +1323,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7" [[package]] name = "libc" -version = "0.2.182" +version = "0.2.184" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" +checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af" [[package]] name = "libz-rs-sys" @@ -1455,14 +1449,13 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" dependencies = [ - "hermit-abi", "libc", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -2197,12 +2190,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "socket2" -version = "0.6.0" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -2437,9 +2430,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.49.0" +version = "1.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd" dependencies = [ "bytes", "libc", @@ -2454,9 +2447,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" dependencies = [ "proc-macro2", "quote", diff --git a/axoupdater-cli/Cargo.toml b/axoupdater-cli/Cargo.toml index c9af687..3792a95 100644 --- a/axoupdater-cli/Cargo.toml +++ b/axoupdater-cli/Cargo.toml @@ -23,7 +23,7 @@ axoasset = { version = "2.0.0", default-features = false, features = [ axoprocess = "0.2.0" camino = { version = "1.1.10", features = ["serde1"] } tempfile = "3.25.0" -tokio = { version = "1.49.0", features = ["full"] } +tokio = { version = "1.51.0", features = ["full"] } [[bin]] name = "axoupdater" diff --git a/axoupdater/Cargo.toml b/axoupdater/Cargo.toml index d692dbc..b6f5035 100644 --- a/axoupdater/Cargo.toml +++ b/axoupdater/Cargo.toml @@ -26,7 +26,7 @@ tempfile = "3.10.1" url = "2.5.7" # blocking API -tokio = { version = "1.48.0", features = ["full"], optional = true } +tokio = { version = "1.51.0", features = ["full"], optional = true } # errors miette = "7.2.0" @@ -36,6 +36,6 @@ thiserror = "2.0.0" self-replace = "1.5.0" [dev-dependencies] -tokio = { version = "1.49.0", features = ["test-util"] } +tokio = { version = "1.51.0", features = ["test-util"] } httpmock = "0.8.3" serial_test = "3.3.1"