diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index 3da6e4659..e897f4025 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -3,6 +3,11 @@ ## Unreleased - 2020-xx-xx +## 0.5.2 - 2020-11-15 +* Ensure `tinyvec` is using the correct features. +* Bump `futures-util` minimum version to `0.3.7` to avoid `RUSTSEC-2020-0059`. + + ## 0.5.1 - 2020-11-05 * Fix `allow_any_header` method, now set the correct field. [#121] diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 97dc3c454..3ee49b2e6 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cors" -version = "0.5.1" +version = "0.5.2" authors = [ "Nikolay Kim ", "Rob Ede ", @@ -21,10 +21,10 @@ path = "src/lib.rs" [dependencies] actix-web = { version = "3.0.0", default-features = false } derive_more = "0.99.2" -futures-util = { version = "0.3.4", default-features = false } +futures-util = { version = "0.3.7", default-features = false } log = "0.4" once_cell = "1" -tinyvec = "1.0.0" +tinyvec = { version = "1", features = ["alloc"] } [dev-dependencies] actix-service = "1" diff --git a/actix-cors/README.md b/actix-cors/README.md index ab4fb8759..3618d004b 100644 --- a/actix-cors/README.md +++ b/actix-cors/README.md @@ -3,9 +3,9 @@ > Cross-origin resource sharing (CORS) for Actix Web. [![crates.io](https://img.shields.io/crates/v/actix-cors)](https://crates.io/crates/actix-cors) -[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.1)](https://docs.rs/actix-cors/0.5.1) +[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.2)](https://docs.rs/actix-cors/0.5.2) ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors) -[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.1/status.svg)](https://deps.rs/crate/actix-cors/0.5.1) +[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.2/status.svg)](https://deps.rs/crate/actix-cors/0.5.2) [![Join the chat at https://gitter.im/actix/actix-web](https://badges.gitter.im/actix/actix-web.svg)](https://gitter.im/actix/actix-web?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ## Documentation & Resources