2019-06-15 05:34:16 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2020-12-31 14:11:04 +01:00
|
|
|
version = "0.5.4"
|
2020-10-19 06:51:31 +02:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
2020-10-20 00:09:42 +02:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
2020-10-19 06:51:31 +02:00
|
|
|
]
|
2020-10-07 12:32:27 +02:00
|
|
|
description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web"
|
2019-06-15 05:34:16 +02:00
|
|
|
readme = "README.md"
|
2020-09-11 22:22:55 +02:00
|
|
|
keywords = ["actix", "cors", "web", "security", "crossorigin"]
|
2019-06-15 05:34:16 +02:00
|
|
|
homepage = "https://actix.rs"
|
2020-01-30 10:08:20 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2019-06-15 05:34:16 +02:00
|
|
|
documentation = "https://docs.rs/actix-cors/"
|
2020-07-14 12:16:32 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-06-15 05:34:16 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_cors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-08 12:50:56 +02:00
|
|
|
actix-web = { version = "3.0.0", default-features = false }
|
2020-11-19 01:52:49 +01:00
|
|
|
derive_more = "0.99.5"
|
2020-11-15 23:24:18 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|
2020-10-19 06:51:31 +02:00
|
|
|
log = "0.4"
|
|
|
|
once_cell = "1"
|
2020-11-15 23:24:18 +01:00
|
|
|
tinyvec = { version = "1", features = ["alloc"] }
|
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"
|