From b1cb72d08803a6cb6d53dc2ed23a0dede058bff1 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 13 Aug 2019 11:03:24 -0700 Subject: [PATCH] update url crate --- CHANGES.md | 4 +++- Cargo.toml | 4 ++-- actix-files/Cargo.toml | 2 +- awc/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 62eb0ef9..3aadc8f1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,7 +12,9 @@ * `Query` payload made `pub`. Allows user to pattern-match the payload. -* Update serde_urlencoded to "0.6.1" +* Update serde_urlencoded to 0.6.1 + +* Update url to 2.1 ## [1.0.5] - 2019-07-18 diff --git a/Cargo.toml b/Cargo.toml index 49889def..3e4d6fde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ actix-utils = "0.4.4" actix-router = "0.1.5" actix-rt = "0.2.4" actix-web-codegen = "0.1.2" -actix-http = "0.2.7" +actix-http = "0.2.9" actix-server = "0.6.0" actix-server-config = "0.1.2" actix-threadpool = "0.1.1" @@ -98,7 +98,7 @@ serde = { version = "1.0", features=["derive"] } serde_json = "1.0" serde_urlencoded = "0.6.1" time = "0.1.42" -url = { version="1.7", features=["query_encoding"] } +url = "2.1" # ssl support openssl = { version="0.10", optional = true } diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index a25ce17b..8f36cddc 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -19,7 +19,7 @@ path = "src/lib.rs" [dependencies] actix-web = { version = "1.0.2", default-features = false } -actix-http = "0.2.4" +actix-http = "0.2.9" actix-service = "0.4.1" bitflags = "1" bytes = "0.4" diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 42534cb1..eb81cbdd 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -44,7 +44,7 @@ flate2-rust = ["actix-http/flate2-rust"] [dependencies] actix-codec = "0.1.2" actix-service = "0.4.1" -actix-http = "0.2.8" +actix-http = "0.2.9" base64 = "0.10.1" bytes = "0.4" derive_more = "0.15.0"