diff options
author | Ava Hahn <a.hahn@f5.com> | 2024-09-23 11:44:46 -0700 |
---|---|---|
committer | Ava Hahn <110854134+avahahn@users.noreply.github.com> | 2024-09-24 10:53:32 -0700 |
commit | 1c75aab380a24c3b8ebbac9059e9dc288812a83b (patch) | |
tree | 68fa343070e31a27d1d3da90a133b77ae1c11c52 /tools/unitctl/unit-client-rs/Cargo.toml | |
parent | a9d687e77059e801e956e7b7bb59637aa4708483 (diff) | |
download | unit-1c75aab380a24c3b8ebbac9059e9dc288812a83b.tar.gz unit-1c75aab380a24c3b8ebbac9059e9dc288812a83b.tar.bz2 |
tools/unitctl: use hyper-rustls instead of hyper-tls
Signed-off-by: Ava Hahn <a.hahn@f5.com>
Diffstat (limited to 'tools/unitctl/unit-client-rs/Cargo.toml')
-rw-r--r-- | tools/unitctl/unit-client-rs/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
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" |