From 1c75aab380a24c3b8ebbac9059e9dc288812a83b Mon Sep 17 00:00:00 2001 From: Ava Hahn Date: Mon, 23 Sep 2024 11:44:46 -0700 Subject: tools/unitctl: use hyper-rustls instead of hyper-tls Signed-off-by: Ava Hahn --- tools/unitctl/unit-client-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/unitctl/unit-client-rs/Cargo.toml') diff --git a/tools/unitctl/unit-client-rs/Cargo.toml b/tools/unitctl/unit-client-rs/Cargo.toml index 6d873417..6518f620 100644 --- a/tools/unitctl/unit-client-rs/Cargo.toml +++ b/tools/unitctl/unit-client-rs/Cargo.toml @@ -15,7 +15,7 @@ default = ["serde_json/preserve_order"] [dependencies] custom_error = "1.9" hyper = { version = "0.14", features = ["stream"] } -hyper-tls = "0.5" +hyper-rustls = { version = "0.25.0", features = ["rustls-native-certs", "webpki-roots"] } hyperlocal = "0.8" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -- cgit From ac90254870760011203a649ba833445918815703 Mon Sep 17 00:00:00 2001 From: Ava Hahn Date: Mon, 23 Sep 2024 13:39:09 -0700 Subject: tools/unitctl: bump bollard and clarify docker client error Signed-off-by: Ava Hahn --- tools/unitctl/unit-client-rs/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/unitctl/unit-client-rs/Cargo.toml') diff --git a/tools/unitctl/unit-client-rs/Cargo.toml b/tools/unitctl/unit-client-rs/Cargo.toml index 6518f620..7cdd0b9f 100644 --- a/tools/unitctl/unit-client-rs/Cargo.toml +++ b/tools/unitctl/unit-client-rs/Cargo.toml @@ -15,7 +15,7 @@ default = ["serde_json/preserve_order"] [dependencies] custom_error = "1.9" hyper = { version = "0.14", features = ["stream"] } -hyper-rustls = { version = "0.25.0", features = ["rustls-native-certs", "webpki-roots"] } +hyper-rustls = { version = "0.25.0", features = ["rustls-native-certs", "webpki-roots", "http2"] } hyperlocal = "0.8" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" @@ -27,7 +27,7 @@ which = "5.0" unit-openapi = { path = "../unit-openapi" } rustls = "0.23.5" -bollard = "0.16.1" +bollard = "0.17.1" regex = "1.10.4" pbr = "1.1.1" -- cgit From fe9be6cdefe9300a845612e3be772f5eee9dcf40 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Wed, 11 Dec 2024 22:18:47 +0000 Subject: tools/unitctl: Update for version 1.34.0 Signed-off-by: Andrew Clayton --- tools/unitctl/unit-client-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/unitctl/unit-client-rs/Cargo.toml') diff --git a/tools/unitctl/unit-client-rs/Cargo.toml b/tools/unitctl/unit-client-rs/Cargo.toml index 7cdd0b9f..4fd77036 100644 --- a/tools/unitctl/unit-client-rs/Cargo.toml +++ b/tools/unitctl/unit-client-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unit-client-rs" -version = "1.33.0" +version = "1.34.0" authors = ["Elijah Zupancic"] edition = "2021" license = "Apache-2.0" -- cgit