Fix no-default-features.

This commit is contained in:
Tomasz Drwięga
2017-11-20 11:02:48 +01:00
committed by Tomasz Drwięga
parent b49c44a198
commit dcdde49d91
2 changed files with 5 additions and 3 deletions

View File

@@ -195,9 +195,7 @@ mod server {
pub struct Middleware;
impl RequestMiddleware for Middleware {
fn on_request(
&self, _req: &hyper::server::Request<hyper::net::HttpStream>, _control: &hyper::Control
) -> RequestMiddlewareAction {
fn on_request(&self, _req: hyper::Request) -> RequestMiddlewareAction {
unreachable!()
}
}

View File

@@ -24,6 +24,10 @@ esac
set -e
# Validate chainspecs
./scripts/validate_chainspecs.sh
cargo test -j 8 $OPTIONS --features "$FEATURES" --all --exclude evmjit $1
# Validate --no-default-features build
cargo check --no-default-features