From 7e68e68e0fcbc5d747f8c4452a182836c84d6439 Mon Sep 17 00:00:00 2001 From: shimun Date: Sat, 24 Dec 2022 17:00:40 +0100 Subject: [PATCH] fix: remove optional --- client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 52690d4..74563a3 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -13,7 +13,7 @@ axum-extra = { version = "0.4.1", features = ["typed-routing"] } chrono = "0.4.23" clap = { version = "4.0.29", features = ["env", "derive"] } rand = "0.8.5" -reqwest = { version = "0.11.13", optional = true } +reqwest = { version = "0.11.13" } serde = { version = "1.0.148", features = ["derive"] } ssh-key = { version = "0.5.1", features = ["ed25519", "p256", "p384", "rsa", "signature"] } thiserror = "1.0.37"