From 564d61136460ef32fcab072e686d30ffd58a1110 Mon Sep 17 00:00:00 2001 From: kevinpoitra Date: Fri, 21 Feb 2020 05:49:25 -0600 Subject: [PATCH] Upgrade `time` to 0.2.6 --- CHANGES.md | 2 +- Cargo.toml | 2 +- actix-http/CHANGES.md | 2 +- actix-http/Cargo.toml | 2 +- actix-identity/CHANGES.md | 2 +- actix-identity/Cargo.toml | 2 +- actix-session/CHANGES.md | 2 +- actix-session/Cargo.toml | 2 +- test-server/CHANGES.md | 2 +- test-server/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b42635b86..6dc4567c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,7 +9,7 @@ * Skip empty chunks when returning response from a `Stream` #1308 -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.6 ## [2.0.0] - 2019-12-25 diff --git a/Cargo.toml b/Cargo.toml index a6783a6db..1429799ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ regex = "1.3" serde = { version = "1.0", features=["derive"] } serde_json = "1.0" serde_urlencoded = "0.6.1" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.6", default-features = false, features = ["std"] } url = "2.1" open-ssl = { version="0.10", package = "openssl", optional = true } rust-tls = { version = "0.16.0", package = "rustls", optional = true } diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 511ef4f1c..6e4a283a3 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -4,7 +4,7 @@ ### Changed -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.6 ### Fixed diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index cd813e49f..4d2fe639c 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -76,7 +76,7 @@ serde_json = "1.0" sha-1 = "0.8" slab = "0.4" serde_urlencoded = "0.6.1" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.6", default-features = false, features = ["std"] } # for secure cookie ring = { version = "0.16.9", optional = true } diff --git a/actix-identity/CHANGES.md b/actix-identity/CHANGES.md index 0c9809ea1..626cf06d1 100644 --- a/actix-identity/CHANGES.md +++ b/actix-identity/CHANGES.md @@ -2,7 +2,7 @@ ## [Unreleased] - 2020-xx-xx -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.6 ## [0.2.1] - 2020-01-10 diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index efeb24bda..1558b46b1 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -21,7 +21,7 @@ actix-service = "1.0.2" futures = "0.3.1" serde = "1.0" serde_json = "1.0" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.6", default-features = false, features = ["std"] } [dev-dependencies] actix-rt = "1.0.0" diff --git a/actix-session/CHANGES.md b/actix-session/CHANGES.md index f6753ae58..859fc3c09 100644 --- a/actix-session/CHANGES.md +++ b/actix-session/CHANGES.md @@ -2,7 +2,7 @@ ## [Unreleased] - 2020-01-xx -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.6 * [#1292](https://github.com/actix/actix-web/pull/1292) Long lasting auto-prolonged session ## [0.3.0] - 2019-12-20 diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index b279c9d89..53cd3ed5f 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -29,7 +29,7 @@ derive_more = "0.99.2" futures = "0.3.1" serde = "1.0" serde_json = "1.0" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.6", default-features = false, features = ["std"] } [dev-dependencies] actix-rt = "1.0.0" diff --git a/test-server/CHANGES.md b/test-server/CHANGES.md index 617b8092f..2045433f6 100644 --- a/test-server/CHANGES.md +++ b/test-server/CHANGES.md @@ -2,7 +2,7 @@ ## [Unreleased] - 2020-xx-xx -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.6 ## [1.0.0] - 2019-12-13 diff --git a/test-server/Cargo.toml b/test-server/Cargo.toml index b22414e29..94346b8b6 100644 --- a/test-server/Cargo.toml +++ b/test-server/Cargo.toml @@ -51,7 +51,7 @@ serde_json = "1.0" sha1 = "0.6" slab = "0.4" serde_urlencoded = "0.6.1" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.6", default-features = false, features = ["std"] } open-ssl = { version="0.10", package="openssl", optional = true } [dev-dependencies]