Update rocket to latest master

Downgrade rust version to fix cargo issue
Set rustup profile to minimal
This commit is contained in:
Daniel García
2019-10-24 23:21:04 +02:00
parent 57b1d3f850
commit fccc0a4b05
17 changed files with 74 additions and 43 deletions

View File

@@ -76,7 +76,8 @@ impl<'a, 'r> FromRequest<'a, 'r> for DbConn {
type Error = ();
fn from_request(request: &'a Request<'r>) -> request::Outcome<DbConn, ()> {
let pool = request.guard::<State<Pool>>()?;
// https://github.com/SergioBenitez/Rocket/commit/e3c1a4ad3ab9b840482ec6de4200d30df43e357c
let pool = try_outcome!(request.guard::<State<Pool>>());
match pool.get() {
Ok(conn) => Outcome::Success(DbConn(conn)),
Err(_) => Outcome::Failure((Status::ServiceUnavailable, ())),