Rocket/contrib/lib/Cargo.toml

76 lines
2.8 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 = []
2018-08-18 23:50:55 +00:00
# Internal use only.
templates = ["serde", "serde_json", "glob"]
# Database pooling features.
2018-09-03 11:57:20 +00:00
# Internal use only.
database_pool_codegen = ["rocket_contrib_codegen", "rocket_contrib_codegen/database_attribute"]
database_pool = ["r2d2", "database_pool_codegen"]
# External features.
diesel_postgres_pool = ["database_pool", "diesel/postgres", "diesel/r2d2"]
diesel_sqlite_pool = ["database_pool", "diesel/sqlite", "diesel/r2d2"]
diesel_mysql_pool = ["database_pool", "diesel/mysql", "diesel/r2d2"]
postgres_pool = ["database_pool", "postgres", "r2d2_postgres"]
mysql_pool = ["database_pool", "mysql", "r2d2_mysql"]
sqlite_pool = ["database_pool", "rusqlite", "r2d2_sqlite"]
cypher_pool = ["database_pool", "rusted_cypher", "r2d2_cypher"]
redis_pool = ["database_pool", "redis", "r2d2_redis"]
[dependencies]
rocket = { version = "0.4.0-dev", path = "../../core/lib/" }
log = "0.4"
2017-01-10 21:33:30 +00:00
# UUID dependencies.
2018-09-09 20:20:11 +00:00
uuid = { version = "0.7", 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
# Database dependencies
diesel = { version = "1.0", default-features = false, optional = true }
postgres = { version = "0.15", optional = true }
r2d2 = { version = "0.8", optional = true }
r2d2_postgres = { version = "0.14", optional = true }
mysql = { version = "14", optional = true }
r2d2_mysql = { version = "9", optional = true }
rusqlite = { version = "0.13.0", optional = true }
r2d2_sqlite = { version = "0.5", optional = true }
rusted_cypher = { version = "1", optional = true }
r2d2_cypher = { version = "0.4", optional = true }
2018-08-18 23:50:55 +00:00
redis = { version = "0.9", optional = true }
r2d2_redis = { version = "0.8", optional = true }
# Contrib codegen dependencies
rocket_contrib_codegen = { path = "../codegen", optional = true }
[target.'cfg(debug_assertions)'.dependencies]
notify = { version = "^4.0" }
2017-06-30 09:41:00 +00:00
[package.metadata.docs.rs]
all-features = true