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

33 lines
815 B
TOML
Raw Normal View History

[package]
name = "actix-cors"
2022-08-07 20:57:09 +01:00
version = "0.6.2"
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"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
name = "actix_cors"
path = "src/lib.rs"
[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 = "0.99.5"
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]
2022-02-25 23:05:11 +00:00
actix-web = { version = "4", default_features = false, features = ["macros"] }
env_logger = "0.9"
2020-10-19 05:51:31 +01:00
regex = "1.4"