2019-06-15 05:34:16 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2024-01-06 22:13:26 +01:00
|
|
|
version = "0.7.0"
|
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"
|
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"
|
2024-01-06 22:13:26 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras/tree/master/actix-cors"
|
2023-09-16 01:30:38 +02:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2019-06-15 05:34:16 +02:00
|
|
|
|
2022-10-29 00:44:21 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
|
|
|
|
|
|
|
[features]
|
2023-04-09 20:56:43 +02:00
|
|
|
draft-private-network-access = []
|
2019-06-15 05:34:16 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-08 08:29:12 +01:00
|
|
|
actix-utils = "3"
|
2022-02-26 00:05:11 +01:00
|
|
|
actix-web = { version = "4", default-features = false }
|
2021-04-02 11:22:32 +02:00
|
|
|
|
2023-01-07 02:08:01 +01:00
|
|
|
derive_more = "0.99.7"
|
2023-09-16 04:14:04 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2020-10-19 06:51:31 +02:00
|
|
|
log = "0.4"
|
|
|
|
once_cell = "1"
|
2023-09-16 04:14:04 +02:00
|
|
|
smallvec = "1"
|
2019-11-26 06:25:50 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4", default-features = false, features = ["macros"] }
|
2023-01-07 02:08:01 +01:00
|
|
|
env_logger = "0.10"
|
2020-10-19 06:51:31 +02:00
|
|
|
regex = "1.4"
|