Changeset View
Changeset View
Standalone View
Standalone View
Cargo.toml
| [package] | [package] | ||||
| name = "limiting-factor" | name = "limiting-factor" | ||||
| version = "0.7.2" | version = "0.8.0" | ||||
| authors = [ | authors = [ | ||||
| "Sébastien Santoro <dereckson@espace-win.org>", | "Sébastien Santoro <dereckson@espace-win.org>", | ||||
| ] | ] | ||||
| description = "Library to create a REST API with Diesel and Rocket" | description = "Library to create a REST API with Diesel and Rocket" | ||||
| readme = "README.md" | readme = "README.md" | ||||
| keywords = [ | keywords = [ | ||||
| "Diesel", | "Diesel", | ||||
| "API", | "API", | ||||
| "Rocket", | "Rocket", | ||||
| "REST", | "REST", | ||||
| ] | ] | ||||
| categories = [ | categories = [ | ||||
| "web-programming", | "web-programming", | ||||
| ] | ] | ||||
| license = "BSD-2-Clause" | license = "BSD-2-Clause" | ||||
| repository = "https://devcentral.nasqueron.org/source/limiting-factor/" | repository = "https://devcentral.nasqueron.org/source/limiting-factor/" | ||||
| [dependencies] | [dependencies] | ||||
| diesel = { version = "^1.4.8", features = ["postgres", "r2d2", "chrono"], optional = true } | diesel = { version = "^1.4.8", features = ["postgres", "r2d2", "chrono"], optional = true } | ||||
| dotenv = "^0.15.0" | dotenv = "^0.15.0" | ||||
| log = "^0.4.14" | log = "^0.4.14" | ||||
| r2d2 = { version = "^0.8.10", optional = true } | r2d2 = { version = "^0.8.10", optional = true } | ||||
| rocket = "^0.4.11" | rocket = "^0.4.11" | ||||
| rocket_contrib = { version = "^0.4.11", features = [ "json" ] } | rocket_contrib = { version = "^0.4.11", features = [ "json" ] } | ||||
| serde = { version = "^1.0.159", optional = true } | serde = { version = "^1.0.159", features = [ "derive" ], optional = true } | ||||
| [features] | [features] | ||||
| default = ["minimal"] | default = ["minimal"] | ||||
| minimal = ["serialization"] | minimal = ["serialization"] | ||||
| full = ["pgsql", "serialization"] | full = ["pgsql", "serialization"] | ||||
| pgsql = ["diesel", "r2d2"] | pgsql = ["diesel", "r2d2"] | ||||
| serialization = ["serde"] | serialization = ["serde"] | ||||
Nasqueron DevCentral · If it had been much bigger the moon would have had a core of ice. · Powered by Phabricator