57 lines
1.3 KiB
TOML
57 lines
1.3 KiB
TOML
[package]
|
|
name = "rocket_cors"
|
|
version = "0.4.0"
|
|
license = "MIT/Apache-2.0"
|
|
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"
|
|
documentation = "https://lawliet89.github.io/rocket_cors/"
|
|
keywords = ["rocket", "cors"]
|
|
categories = ["web-programming"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "lawliet89/rocket_cors" }
|
|
|
|
[features]
|
|
default = ["serialization"]
|
|
|
|
# Serialization and deserialization support for settings
|
|
serialization = ["serde", "serde_derive", "unicase_serde", "url_serde"]
|
|
|
|
[dependencies]
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master" }
|
|
log = "0.3"
|
|
unicase = "2.0"
|
|
url = "1.5.1"
|
|
|
|
# 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 }
|
|
url_serde = { version = "0.2.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
hyper = "0.10"
|
|
serde_json = "1.0"
|
|
serde_test = "1.0"
|
|
|
|
[[example]]
|
|
name = "fairing"
|
|
|
|
[[example]]
|
|
name = "guard"
|
|
|
|
[[example]]
|
|
name = "json"
|
|
required-features = ["serialization"]
|
|
|
|
[[example]]
|
|
name = "manual"
|
|
|
|
[[example]]
|
|
name = "mix"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|