diff --git a/Cargo.lock b/Cargo.lock index 0bb8aa7..77f700a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,19 +134,21 @@ dependencies = [ [[package]] name = "async-process" -version = "2.0.1" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c1cd5d253ecac3d3cf15e390fd96bd92a13b1d14497d81abf077304794fb04" +checksum = "cad07b3443bfa10dcddf86a452ec48949e8e7fedf7392d82de3969fda99e90ed" dependencies = [ "async-channel", "async-io", "async-lock 3.3.0", "async-signal", + "async-task", "blocking", "cfg-if 1.0.0", - "event-listener 4.0.3", + "event-listener 5.3.0", "futures-lite", "rustix", + "tracing", "windows-sys 0.52.0", ] @@ -816,6 +818,17 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "event-listener" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + [[package]] name = "event-listener-strategy" version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 7c94141..840c81c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ futures = "0.3" env_logger = "0.10.2" rand = "0.8.5" tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread", "time"] } -async-process = "2.0.0" +async-process = "2.2.1" [[test]] name = "bsud-tests"