Use more common error type\n\nMove to failure::Error after https://github.com/rust-lang-nursery/failure/pull/283 landed.
[?]
Dec 18, 2018, 7:05 PM
MOXHYSQ35EU5ENKNVE2N75HR2GQRF6QVL4K64CLOV2USASDE5R2QCDependencies
- [2]
EOHEZXX3Move request processing to structure - [3]
X6L47BHQUse different structure for established xmpp connection - [4]
FVVPKFTLInitial commit
Change contents
- replacement in src/main.rs at line 45
type Error = hyper::http::Error;type Error = Box<dyn std::error::Error + Sync + Send>; - replacement in src/main.rs at line 65
.body(Body::from(format!("Unknown destination: {}", err))),.body(Body::from(format!("Unknown destination: {}", err))).map_err(|e| Box::new(e) as Box<dyn std::error::Error + Sync + Send>), - replacement in src/main.rs at line 87
}),}).map_err(|e| Box::new(e) as Box<dyn std::error::Error + Sync + Send>), - replacement in src/main.rs at line 102
type Error = hyper::http::Error;type Error = Box<dyn std::error::Error + Sync + Send>; - replacement in src/main.rs at line 104
type Future = tokio::prelude::future::FutureResult<ServiceCmd, Self::Error>;type Future = tokio::prelude::future::FutureResult<ServiceCmd, Self::MakeError>;