From 6f286375f9b5c9838dc9b8e16727125bec2d14f5 Mon Sep 17 00:00:00 2001 From: "Aode (lion)" Date: Mon, 22 Nov 2021 17:09:55 -0600 Subject: [PATCH] request: remove default features --- http-signature-normalization-reqwest/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http-signature-normalization-reqwest/Cargo.toml b/http-signature-normalization-reqwest/Cargo.toml index b88bba0..ee06492 100644 --- a/http-signature-normalization-reqwest/Cargo.toml +++ b/http-signature-normalization-reqwest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "http-signature-normalization-reqwest" description = "An HTTP Signatures library that leaves the signing to you" -version = "0.2.0" +version = "0.2.1" authors = ["asonix "] license-file = "LICENSE" readme = "README.md" @@ -27,7 +27,7 @@ futures = "0.3.1" chrono = "0.4.10" http = "0.2.0" http-signature-normalization = { version = "0.5.1", path = ".." } -reqwest = "0.11" +reqwest = { version = "0.11", default-features = false, features = ["json"] } sha2 = { version = "0.9", optional = true } sha3 = { version = "0.9", optional = true } thiserror = "1.0"