diff --git a/Cargo.lock b/Cargo.lock index fcc40a170..f28425682 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -596,6 +596,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + [[package]] name = "brotli" version = "8.0.2" @@ -1005,11 +1014,11 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.5.0" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "881c5d0a13b2f1498e2306e82cbada78390e152d4b1378fb28a84f4dcd0dc4f3" +checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790" dependencies = [ - "dispatch", + "dispatch2", "nix", "windows-sys 0.61.2", ] @@ -1162,10 +1171,16 @@ dependencies = [ ] [[package]] -name = "dispatch" -version = "0.2.0" +name = "dispatch2" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags", + "block2", + "libc", + "objc2", +] [[package]] name = "displaydoc" @@ -2701,6 +2716,21 @@ dependencies = [ "autocfg", ] +[[package]] +name = "objc2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" +dependencies = [ + "objc2-encode", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + [[package]] name = "oid-registry" version = "0.8.1" diff --git a/THIRD_PARTY_NOTICES.md b/THIRD_PARTY_NOTICES.md index b140c2065..35bb5197d 100644 --- a/THIRD_PARTY_NOTICES.md +++ b/THIRD_PARTY_NOTICES.md @@ -313,6 +313,12 @@ Distributed under the following license(s): * MIT * Apache-2.0 +## block2 + +Distributed under the following license(s): + +* MIT + ## brotli Distributed under the following license(s): @@ -642,10 +648,12 @@ Distributed under the following license(s): * MIT * Apache-2.0 -## dispatch +## dispatch2 Distributed under the following license(s): +* Zlib +* Apache-2.0 * MIT ## displaydoc @@ -1443,6 +1451,18 @@ Distributed under the following license(s): * MIT * Apache-2.0 +## objc2 + +Distributed under the following license(s): + +* MIT + +## objc2-encode + +Distributed under the following license(s): + +* MIT + ## oid-registry Distributed under the following license(s): diff --git a/agent-control/Cargo.toml b/agent-control/Cargo.toml index eac1bc984..f2725b148 100644 --- a/agent-control/Cargo.toml +++ b/agent-control/Cargo.toml @@ -18,7 +18,7 @@ thiserror = { workspace = true } nix = { workspace = true, features = ["signal", "user", "hostname"] } tracing-subscriber = { workspace = true, features = ["env-filter", "chrono"] } tracing = { workspace = true, features = ["attributes"] } -ctrlc = { version = "3.5.0", features = ["termination"] } +ctrlc = { version = "3.5.1", features = ["termination"] } serde_yaml = { workspace = true } regex = { workspace = true } futures = { version = "0.3.31" }