rocket_cors/Cargo.toml

57 lines
1.3 KiB
TOML
Raw Normal View History

2017-07-13 07:37:15 +00:00
[package]
name = "rocket_cors"
2020-03-18 06:52:18 +00:00
version = "0.5.2"
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"
documentation = "https://docs.rs/rocket_cors/"
2017-07-13 07:37:15 +00:00
keywords = ["rocket", "cors"]
categories = ["web-programming"]
edition = "2018"
2017-07-13 07:37:15 +00:00
[badges]
travis-ci = { repository = "lawliet89/rocket_cors" }
[features]
default = ["serialization"]
# Serialization and deserialization support for settings
serialization = ["serde", "serde_derive", "unicase_serde"]
2017-07-13 07:37:15 +00:00
[dependencies]
regex = "1.1"
rocket = { rev="3a3d0ce51850368880fa3565f9fc96f7b4dcf06b", git = "https://github.com/SergioBenitez/Rocket.git", default-features = false }
2020-03-18 06:52:18 +00:00
log = "0.4"
unicase = "2.0"
url = "2.1.0"
# 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]
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