1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00

40 lines
983 B
TOML
Raw Normal View History

[package]
name = "actix-cors"
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
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[features]
draft-private-network-access = []
[dependencies]
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
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"] }
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