2019-06-15 09:34:16 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2024-01-06 21:13:26 +00:00
|
|
|
version = "0.7.0"
|
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"]
|
2024-06-20 02:18:37 +01:00
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
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
|
|
|
|
2024-08-18 22:21:56 +08:00
|
|
|
derive_more = { version = "1", features = ["display", "error"] }
|
2023-09-16 03:14:04 +01:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2020-10-19 05:51:31 +01:00
|
|
|
log = "0.4"
|
|
|
|
once_cell = "1"
|
2023-09-16 03:14:04 +01:00
|
|
|
smallvec = "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"] }
|
2024-01-22 15:56:30 +00:00
|
|
|
env_logger = "0.11"
|
2020-10-19 05:51:31 +01:00
|
|
|
regex = "1.4"
|
2024-06-20 02:14:35 +01:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|