2019-06-15 09:34:16 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2022-10-28 23:49:28 +01:00
|
|
|
version = "0.6.4"
|
2020-10-19 05:51:31 +01:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
2020-10-19 23:09:42 +01:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
2020-10-19 05:51:31 +01:00
|
|
|
]
|
2020-10-07 11:32:27 +01:00
|
|
|
description = "Cross-Origin Resource Sharing (CORS) controls for Actix Web"
|
2020-09-11 21:22:55 +01:00
|
|
|
keywords = ["actix", "cors", "web", "security", "crossorigin"]
|
2019-06-15 09:34:16 +06:00
|
|
|
homepage = "https://actix.rs"
|
2021-10-21 15:47:56 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2023-09-16 00:30:38 +01:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2019-06-15 09:34:16 +06:00
|
|
|
|
2022-10-28 23:44:21 +01:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
|
|
|
|
|
|
|
[features]
|
2023-04-09 19:56:43 +01:00
|
|
|
draft-private-network-access = []
|
2019-06-15 09:34:16 +06:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-08 07:29:12 +00:00
|
|
|
actix-utils = "3"
|
2022-02-25 23:05:11 +00:00
|
|
|
actix-web = { version = "4", default-features = false }
|
2021-04-02 10:22:32 +01:00
|
|
|
|
2023-01-07 01:08:01 +00:00
|
|
|
derive_more = "0.99.7"
|
2020-11-15 22:24:18 +00:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|
2020-10-19 05:51:31 +01:00
|
|
|
log = "0.4"
|
|
|
|
once_cell = "1"
|
2022-02-03 22:11:59 +00:00
|
|
|
smallvec = "1.6.1"
|
2019-11-26 11:25:50 +06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-22 20:51:14 +00:00
|
|
|
actix-web = { version = "4", default-features = false, features = ["macros"] }
|
2023-01-07 01:08:01 +00:00
|
|
|
env_logger = "0.10"
|
2020-10-19 05:51:31 +01:00
|
|
|
regex = "1.4"
|