From a654d3951e05c878c16358e040877252114939ac Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Fri, 4 Feb 2022 14:59:03 +0100 Subject: [PATCH] Bump serde_urlencoded to 0.7.1 (#1457) serde_urlencoded 0.7.0 has an incorrect serde version dependency. This causes issues in `cargo update -Z minimal-versions` builds. It's not noticeable while testing in CI because cookie_store depends on serde 1.0.126, however because this is an optional dependency there is a possibility that a project using reqwest won't enable it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b7bbe800b..c2cce975f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ http = "0.2" url = "2.2" bytes = "1.0" serde = "1.0" -serde_urlencoded = "0.7" +serde_urlencoded = "0.7.1" # Optional deps...