2019-06-15 09:34:16 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2020-09-11 21:22:55 +01:00
|
|
|
version = "0.3.0"
|
2019-06-15 09:34:16 +06:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-09-11 21:22:55 +01:00
|
|
|
description = "Cross-origin resource sharing (CORS) controls for Actix web"
|
2019-06-15 09:34:16 +06:00
|
|
|
readme = "README.md"
|
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"
|
2020-01-30 18:08:20 +09:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2019-06-15 09:34:16 +06:00
|
|
|
documentation = "https://docs.rs/actix-cors/"
|
2020-07-14 19:16:32 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-06-15 09:34:16 +06:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_cors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-11 16:26:15 +01:00
|
|
|
actix-web = { version = "3.0.0", default_features = false }
|
2020-09-11 21:22:55 +01:00
|
|
|
actix-service = "1.0.6"
|
2019-11-25 17:59:14 +06:00
|
|
|
derive_more = "0.99.2"
|
2020-03-12 05:43:48 +09:00
|
|
|
futures-util = { version = "0.3.4", default-features = false }
|
2019-11-26 11:25:50 +06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-09-11 16:26:15 +01:00
|
|
|
actix-rt = "1.1.1"
|