diff --git a/CHANGELOG.md b/CHANGELOG.md index 77b0ece..a9bcf94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.3] - 2021-10-13 +## [0.1.3] - 2021-10-18 + +### Security +- remove time v0.1 dependency + ### Fixed - Handle the `hyper::Error(IncompleteMessage)` as a `Retryable::Transient`. diff --git a/reqwest-retry/Cargo.toml b/reqwest-retry/Cargo.toml index d11984d..976bfe3 100644 --- a/reqwest-retry/Cargo.toml +++ b/reqwest-retry/Cargo.toml @@ -14,7 +14,7 @@ reqwest-middleware = { version = "0.1.2", path = "../reqwest-middleware" } anyhow = "1" async-trait = "0.1.51" -chrono = "0.4" +chrono = { version = "0.4.19", features = ["clock"], default-features = false } futures = "0.3" http = "0.2" hyper = "0.14"