From 4f01db048210db92265cbc2c04cd4850d1979e31 Mon Sep 17 00:00:00 2001 From: Vladimir Komendantskiy Date: Wed, 26 Feb 2020 10:17:58 +0000 Subject: [PATCH] fix reqwest json issue --- watchtower/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watchtower/Cargo.toml b/watchtower/Cargo.toml index d414a7a7bd..f7da7df562 100644 --- a/watchtower/Cargo.toml +++ b/watchtower/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://solana.com/" [dependencies] clap = "2.33.0" log = "0.4.8" -reqwest = { version = "0.10.1", default-features = false, features = ["blocking", "rustls-tls"] } +reqwest = { version = "0.10.1", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde_json = "1.0" solana-clap-utils = { path = "../clap-utils", version = "1.1.0" } solana-client = { path = "../client", version = "1.1.0" }