2019-06-15 05:34:16 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
2019-11-20 18:33:22 +01:00
|
|
|
version = "0.2.0-alpha.1"
|
2019-06-15 05:34:16 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Cross-origin resource sharing (CORS) for Actix applications."
|
|
|
|
readme = "README.md"
|
2019-06-15 17:47:06 +02:00
|
|
|
keywords = ["web", "framework"]
|
2019-06-15 05:34:16 +02:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
|
|
documentation = "https://docs.rs/actix-cors/"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
2019-11-20 18:33:22 +01:00
|
|
|
workspace = ".."
|
2019-06-15 05:34:16 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_cors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-21 05:54:07 +01:00
|
|
|
actix-web = "2.0.0-alpha.1"
|
|
|
|
actix-service = "1.0.0-alpha.1"
|
2019-11-25 12:59:14 +01:00
|
|
|
derive_more = "0.99.2"
|
2019-11-20 18:33:22 +01:00
|
|
|
futures = "0.3.1"
|