1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-cors/Cargo.toml

34 lines
828 B
TOML
Raw Normal View History

[package]
name = "actix-cors"
2020-10-07 12:34:49 +02:00
version = "0.4.1"
2020-10-19 06:51:31 +02:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>"
]
2020-10-07 12:32:27 +02:00
description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web"
readme = "README.md"
2020-09-11 22:22:55 +02:00
keywords = ["actix", "cors", "web", "security", "crossorigin"]
homepage = "https://actix.rs"
2020-01-30 10:08:20 +01:00
repository = "https://github.com/actix/actix-extras.git"
documentation = "https://docs.rs/actix-cors/"
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
name = "actix_cors"
path = "src/lib.rs"
[dependencies]
actix-web = { version = "3.0.0", default-features = false }
2019-11-25 12:59:14 +01:00
derive_more = "0.99.2"
2020-03-11 21:43:48 +01:00
futures-util = { version = "0.3.4", default-features = false }
2020-10-19 06:51:31 +02:00
log = "0.4"
once_cell = "1"
tinyvec = "1.0.0"
2019-11-26 06:25:50 +01:00
[dev-dependencies]
2020-10-19 06:51:31 +02:00
actix-service = "1"
actix-rt = "1"
pretty_env_logger = "0.4"
regex = "1.4"