2017-07-13 07:37:15 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_cors"
|
2019-03-12 07:05:40 +00:00
|
|
|
version = "0.5.0"
|
2018-07-18 06:39:28 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-07-13 07:37:15 +00:00
|
|
|
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
|
|
|
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
|
|
|
homepage = "https://github.com/lawliet89/rocket_cors"
|
|
|
|
repository = "https://github.com/lawliet89/rocket_cors"
|
2018-10-31 02:58:23 +00:00
|
|
|
documentation = "https://docs.rs/rocket_cors/"
|
2017-07-13 07:37:15 +00:00
|
|
|
keywords = ["rocket", "cors"]
|
|
|
|
categories = ["web-programming"]
|
2018-11-21 04:17:40 +00:00
|
|
|
edition = "2018"
|
2017-07-13 07:37:15 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "lawliet89/rocket_cors" }
|
|
|
|
|
2017-09-05 06:11:28 +00:00
|
|
|
[features]
|
|
|
|
default = ["serialization"]
|
|
|
|
|
|
|
|
# Serialization and deserialization support for settings
|
2019-03-12 01:58:51 +00:00
|
|
|
serialization = ["serde", "serde_derive", "unicase_serde"]
|
2017-09-05 06:11:28 +00:00
|
|
|
|
2017-07-13 07:37:15 +00:00
|
|
|
[dependencies]
|
2019-03-12 07:05:40 +00:00
|
|
|
regex = "1.1"
|
2018-12-12 21:23:51 +00:00
|
|
|
rocket = "0.4.0"
|
2017-07-13 07:37:15 +00:00
|
|
|
log = "0.3"
|
2017-07-17 08:22:45 +00:00
|
|
|
unicase = "2.0"
|
2018-12-19 00:35:08 +00:00
|
|
|
url = "1.7.2"
|
2017-09-05 06:11:28 +00:00
|
|
|
|
|
|
|
# Optional dependencies that are activated by the various features
|
|
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
serde_derive = { version = "1.0", optional = true }
|
|
|
|
unicase_serde = { version = "0.1.0", optional = true }
|
2017-07-13 07:37:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hyper = "0.10"
|
|
|
|
serde_json = "1.0"
|
2017-07-17 08:22:45 +00:00
|
|
|
serde_test = "1.0"
|
2017-09-05 06:11:28 +00:00
|
|
|
|
2017-09-05 06:59:51 +00:00
|
|
|
[[example]]
|
|
|
|
name = "fairing"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "guard"
|
|
|
|
|
2017-09-05 06:11:28 +00:00
|
|
|
[[example]]
|
|
|
|
name = "json"
|
|
|
|
required-features = ["serialization"]
|
|
|
|
|
2017-09-05 06:59:51 +00:00
|
|
|
[[example]]
|
|
|
|
name = "manual"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "mix"
|
|
|
|
|
2017-09-05 06:11:28 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|