1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

CORS builder rework (#119)

This commit is contained in:
Rob Ede
2020-10-19 05:51:31 +01:00
committed by GitHub
parent c8e641d4b6
commit 6084c47810
10 changed files with 730 additions and 488 deletions

View File

@ -1,7 +1,10 @@
[package]
name = "actix-cors"
version = "0.4.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>"
]
description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web"
readme = "README.md"
keywords = ["actix", "cors", "web", "security", "crossorigin"]
@ -19,8 +22,12 @@ path = "src/lib.rs"
actix-web = { version = "3.0.0", default-features = false }
derive_more = "0.99.2"
futures-util = { version = "0.3.4", default-features = false }
log = "0.4"
once_cell = "1"
tinyvec = "1.0.0"
[dev-dependencies]
actix-service = "1.0.6"
actix-rt = "1.1.1"
regex = "1.3.9"
actix-service = "1"
actix-rt = "1"
pretty_env_logger = "0.4"
regex = "1.4"