diff --git a/Cargo.lock b/Cargo.lock index 0b81aef..86e56fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ "actix-utils", "futures-core", "futures-util", - "mio", + "mio 0.8.11", "socket2 0.5.5", "tokio", "tracing", @@ -654,7 +654,7 @@ dependencies = [ "bitflags 1.3.2", "crossterm_winapi", "libc", - "mio", + "mio 0.8.11", "parking_lot", "signal-hook", "signal-hook-mio", @@ -1024,9 +1024,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.3.3" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "http" @@ -1496,6 +1496,18 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "mio" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +dependencies = [ + "hermit-abi", + "libc", + "wasi", + "windows-sys 0.52.0", +] + [[package]] name = "mutually_exclusive_features" version = "0.0.3" @@ -2570,7 +2582,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" dependencies = [ "libc", - "mio", + "mio 0.8.11", "signal-hook", ] @@ -2950,22 +2962,21 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", "libc", - "mio", - "num_cpus", + "mio 1.0.1", "parking_lot", "pin-project-lite", "signal-hook-registry", "socket2 0.5.5", "tokio-macros", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -2980,9 +2991,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", diff --git a/skootrs-bin/Cargo.toml b/skootrs-bin/Cargo.toml index 628e785..0528bd9 100644 --- a/skootrs-bin/Cargo.toml +++ b/skootrs-bin/Cargo.toml @@ -21,7 +21,7 @@ skootrs-rest = { version = "0.1.0", path = "../skootrs-rest" } skootrs-statestore = { version = "0.1.0", path = "../skootrs-statestore" } inquire = "0.6.2" octocrab = "0.32.0" -tokio = { version = "1.34.0", features = ["full", "tracing", "macros", "rt-multi-thread"] } +tokio = { version = "1.39.2", features = ["full", "tracing", "macros", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] } serde_json = "1.0.112" skootrs-model = { version = "0.1.0", path = "../skootrs-model" } diff --git a/skootrs-lib/Cargo.toml b/skootrs-lib/Cargo.toml index 22be93a..b433b05 100644 --- a/skootrs-lib/Cargo.toml +++ b/skootrs-lib/Cargo.toml @@ -27,4 +27,4 @@ reqwest = "0.12.3" [dev-dependencies] tempdir = "0.3.7" -tokio = { version = "1.36.0", features = ["rt", "macros"] } +tokio = { version = "1.39.2", features = ["rt", "macros"] }