2019-06-15 09:34:16 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2020-03-12 05:48:04 +09:00
|
|
|
version = "0.3.0-alpha.1"
|
2019-06-15 09:34:16 +06:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-01-30 01:50:18 +00:00
|
|
|
description = "Cross-origin resource sharing (CORS) for actix-web applications."
|
2019-06-15 09:34:16 +06:00
|
|
|
readme = "README.md"
|
2020-01-30 02:06:00 +00:00
|
|
|
keywords = ["cors", "web", "framework"]
|
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/"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_cors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-03-12 05:46:58 +09:00
|
|
|
actix-web = "3.0.0-alpha.1"
|
2019-12-22 16:39:25 +04:00
|
|
|
actix-service = "1.0.1"
|
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]
|
2019-12-11 19:20:20 +06:00
|
|
|
actix-rt = "1.0.0"
|