2019-06-15 03:34:16 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-cors"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Cross-origin resource sharing (CORS) for Actix applications."
|
|
|
|
readme = "README.md"
|
2019-06-15 15:47:06 +00:00
|
|
|
keywords = ["web", "framework"]
|
2019-06-15 03:34:16 +00: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-06-15 15:47:06 +00:00
|
|
|
#workspace = ".."
|
2019-06-15 03:34:16 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_cors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = "1.0.0"
|
|
|
|
actix-service = "0.4.0"
|
2019-06-19 10:41:42 +00:00
|
|
|
derive_more = "0.15.0"
|
2019-06-15 03:34:16 +00:00
|
|
|
futures = "0.1.25"
|