mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
parent
cbfd5d94ee
commit
c534ef0f98
@ -3,6 +3,10 @@
|
|||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
|
||||||
|
|
||||||
|
## 0.5.3 - 2020-11-19
|
||||||
|
* Fix version spec for `derive_more` dependency.
|
||||||
|
|
||||||
|
|
||||||
## 0.5.2 - 2020-11-15
|
## 0.5.2 - 2020-11-15
|
||||||
* Ensure `tinyvec` is using the correct features.
|
* Ensure `tinyvec` is using the correct features.
|
||||||
* Bump `futures-util` minimum version to `0.3.7` to avoid `RUSTSEC-2020-0059`.
|
* Bump `futures-util` minimum version to `0.3.7` to avoid `RUSTSEC-2020-0059`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-cors"
|
name = "actix-cors"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
authors = [
|
authors = [
|
||||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||||
"Rob Ede <robjtede@icloud.com>",
|
"Rob Ede <robjtede@icloud.com>",
|
||||||
@ -20,7 +20,7 @@ path = "src/lib.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = { version = "3.0.0", default-features = false }
|
actix-web = { version = "3.0.0", default-features = false }
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.5"
|
||||||
futures-util = { version = "0.3.7", default-features = false }
|
futures-util = { version = "0.3.7", default-features = false }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
> Cross-origin resource sharing (CORS) for Actix Web.
|
> Cross-origin resource sharing (CORS) for Actix Web.
|
||||||
|
|
||||||
[![crates.io](https://img.shields.io/crates/v/actix-cors)](https://crates.io/crates/actix-cors)
|
[![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.2)](https://docs.rs/actix-cors/0.5.2)
|
[![Documentation](https://docs.rs/actix-cors/badge.svg?version=0.5.3)](https://docs.rs/actix-cors/0.5.3)
|
||||||
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors)
|
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-cors)
|
||||||
[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.2/status.svg)](https://deps.rs/crate/actix-cors/0.5.2)
|
[![Dependency Status](https://deps.rs/crate/actix-cors/0.5.3/status.svg)](https://deps.rs/crate/actix-cors/0.5.3)
|
||||||
[![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)
|
[![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
|
## Documentation & Resources
|
||||||
|
Loading…
Reference in New Issue
Block a user