diff --git a/Cargo.lock b/Cargo.lock index bc8a7fc..a18a58b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,9 +149,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cfg_aliases" -version = "0.1.1" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "clang-sys" @@ -401,9 +401,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libloading" @@ -526,9 +526,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ "bitflags 2.5.0", "cfg-if", @@ -636,7 +636,7 @@ version = "8.0.1" dependencies = [ "futures", "indexmap", - "nix 0.28.0", + "nix 0.29.0", "remoteprocess", "tokio", "tracing", @@ -838,9 +838,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.37.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "bytes", @@ -855,9 +855,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 3615639..ea26df2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,18 +19,18 @@ rust-version = "1.75.0" [dependencies] futures = { version = "0.3.30", optional = true } indexmap = "2.2.6" -tokio = { version = "1.37.0", features = ["io-util", "macros", "process", "rt"], optional = true } +tokio = { version = "1.38.0", features = ["io-util", "macros", "process", "rt"], optional = true } tracing = { version = "0.1.40", optional = true } [target.'cfg(unix)'.dependencies] -nix = { version = "0.28.0", default-features = false, features = ["fs", "poll", "signal"], optional = true } +nix = { version = "0.29.0", default-features = false, features = ["fs", "poll", "signal"], optional = true } [target.'cfg(windows)'.dependencies] windows = { version = "0.56.0", optional = true } [dev-dependencies] remoteprocess = "0.4.13" -tokio = { version = "1.37.0", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] } +tokio = { version = "1.38.0", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] } [features] default = ["creation-flags", "job-object", "kill-on-drop", "process-group", "process-session", "tracing"]