[package] name = "rocket_contrib" version = "0.4.0" authors = ["Sergio Benitez "] description = "Community contributed libraries for the Rocket web framework." documentation = "https://api.rocket.rs/v0.4/rocket_contrib/" homepage = "https://rocket.rs" repository = "https://github.com/SergioBenitez/Rocket" readme = "../../README.md" keywords = ["rocket", "web", "framework", "contrib", "contributed"] license = "MIT/Apache-2.0" [features] # Internal use only. templates = ["serde", "serde_json", "glob"] databases = ["r2d2", "rocket_contrib_codegen/database_attribute"] # User-facing features. default = ["json", "serve"] json = ["serde", "serde_json"] msgpack = ["serde", "rmp-serde"] tera_templates = ["tera", "templates"] handlebars_templates = ["handlebars", "templates"] helmet = ["time"] serve = [] # The barage of user-facing database features. diesel_sqlite_pool = ["databases", "diesel/sqlite", "diesel/r2d2"] diesel_postgres_pool = ["databases", "diesel/postgres", "diesel/r2d2"] diesel_mysql_pool = ["databases", "diesel/mysql", "diesel/r2d2"] postgres_pool = ["databases", "postgres", "r2d2_postgres"] mysql_pool = ["databases", "mysql", "r2d2_mysql"] sqlite_pool = ["databases", "rusqlite", "r2d2_sqlite"] cypher_pool = ["databases", "rusted_cypher", "r2d2_cypher"] redis_pool = ["databases", "redis", "r2d2_redis"] mongodb_pool = ["databases", "mongodb", "r2d2-mongodb"] memcache_pool = ["databases", "memcache", "r2d2-memcache"] [dependencies] # Global dependencies. rocket_contrib_codegen = { version = "0.4.0", path = "../codegen", optional = true } rocket = { version = "0.4.0", path = "../../core/lib/", default-features = false } log = "0.4" # 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. handlebars = { version = "1.0", optional = true } glob = { version = "0.2", optional = true } tera = { version = "0.11", optional = true } # UUID dependencies. uuid = { version = "0.7", optional = true } # 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.14.0", optional = true } r2d2_sqlite = { version = "0.6", optional = true } rusted_cypher = { version = "1", optional = true } r2d2_cypher = { version = "0.4", optional = true } redis = { version = "0.9", optional = true } r2d2_redis = { version = "0.8", optional = true } mongodb = { version = "0.3.12", optional = true } r2d2-mongodb = { version = "0.2.0", optional = true } memcache = { version = "0.11", optional = true } r2d2-memcache = { version = "0.3", optional = true } # SpaceHelmet dependencies time = { version = "0.1.40", optional = true } [target.'cfg(debug_assertions)'.dependencies] notify = { version = "^4.0.6" } [package.metadata.docs.rs] all-features = true