Rocket/contrib/lib/Cargo.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "rocket_contrib"
2017-08-11 16:32:27 +00:00
version = "0.4.0-dev"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = "Community contributed libraries for the Rocket web framework."
documentation = "https://api.rocket.rs/rocket_contrib/"
homepage = "https://rocket.rs"
repository = "https://github.com/SergioBenitez/Rocket"
2018-06-03 17:39:32 +00:00
readme = "../../README.md"
keywords = ["rocket", "web", "framework", "contrib", "contributed"]
license = "MIT/Apache-2.0"
[features]
default = ["json", "static_files"]
json = ["serde", "serde_json"]
2017-02-08 03:40:14 +00:00
msgpack = ["serde", "rmp-serde"]
tera_templates = ["tera", "templates"]
handlebars_templates = ["handlebars", "templates"]
static_files = []
# Internal use only.
templates = ["serde", "serde_json", "glob"]
[dependencies]
rocket = { version = "0.4.0-dev", path = "../../core/lib/" }
log = "0.4"
2017-01-10 21:33:30 +00:00
# UUID dependencies.
uuid = { version = ">= 0.5, <= 0.6", optional = true }
2017-01-10 21:33:30 +00:00
2017-02-08 03:40:14 +00:00
# Serialization and templating dependencies.
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0.26", optional = true }
rmp-serde = { version = "^0.13", optional = true }
# Templating dependencies only.
2018-07-22 09:25:55 +00:00
handlebars = { version = "1.0", optional = true }
glob = { version = "0.2", optional = true }
tera = { version = "0.11", optional = true }
2017-06-30 09:41:00 +00:00
[dev-dependencies]
rocket_codegen = { version = "0.4.0-dev", path = "../../core/codegen" }
[target.'cfg(debug_assertions)'.dependencies]
notify = { version = "^4.0" }
2017-06-30 09:41:00 +00:00
[package.metadata.docs.rs]
all-features = true