diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 3c4abdcd..223dd829 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -23,7 +23,21 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c974ae2da70e455e9e72de59ccc5279afc660ce267ab994474734d3310401f0" dependencies = [ - "ahp-types", + "ahp-types 0.1.0", + "serde", + "serde_json", + "thiserror 2.0.18", + "tokio", + "tracing", +] + +[[package]] +name = "ahp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ff1c5fceb94cf9e8a852eb84dd7f835827a7a2a07b8c23916d192075345e0ea" +dependencies = [ + "ahp-types 0.3.0", "serde", "serde_json", "thiserror 2.0.18", @@ -42,13 +56,24 @@ dependencies = [ "serde_repr", ] +[[package]] +name = "ahp-types" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b556a5958c99e73aee87d8e638baf648bc902ff0dabc00393522f8e6e88830b2" +dependencies = [ + "serde", + "serde_json", + "serde_repr", +] + [[package]] name = "ahp-ws" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "516267592f4f77df2cecb21b4945ae6eb5a7cf2b2d07062e6423fa2e56a1caa6" dependencies = [ - "ahp", + "ahp 0.1.0", "futures-util", "serde_json", "thiserror 2.0.18", @@ -4341,8 +4366,8 @@ dependencies = [ name = "zeus-cli" version = "0.1.0" dependencies = [ - "ahp", - "ahp-types", + "ahp 0.3.0", + "ahp-types 0.1.0", "ahp-ws", "base64", "bytes", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4c8f0852..aa22fbf8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -56,7 +56,7 @@ console = "0.16.3" bytes = "1.11.1" tar = "0.4.45" local-ip-address = "0.6" -ahp = "0.1" +ahp = "0.3" ahp-types = "0.1" ahp-ws = "0.1"