mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
ensure tinyvec is using alloc feature
This commit is contained in:
parent
a396c1b961
commit
61778d864e
@ -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]
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-cors"
|
||||
version = "0.5.1"
|
||||
version = "0.5.2"
|
||||
authors = [
|
||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||
"Rob Ede <robjtede@icloud.com>",
|
||||
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user