1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-cors/Cargo.toml

36 lines
898 B
TOML
Raw Normal View History

[package]
name = "actix-cors"
2022-10-29 00:49:28 +02:00
version = "0.6.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"
2020-09-11 22:22:55 +02:00
keywords = ["actix", "cors", "web", "security", "crossorigin"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[features]
draft-private-network-access = []
[dependencies]
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"
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"
2022-02-03 23:11:59 +01:00
smallvec = "1.6.1"
2019-11-26 06:25:50 +01:00
[dev-dependencies]
2022-02-26 00:05:11 +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"