From 57fba95841e2482ec7cae58ee59628eda4ae2287 Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Thu, 29 Nov 2018 16:39:54 -0800 Subject: [PATCH] turn off `slice-deque` feature of `buf_redux` --- .travis.yml | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9cb4f92..9d7f2df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,8 +27,7 @@ script: - | if [ ${TRAVIS_RUST_VERSION} = "1.22.1" ]; then # we can't test because `env_logger` uses `lazy_static 1.2.0` which needs Rust 1.26 - cargo build --no-default-features --features "mock,client,server"; - exit 0; + cargo build --no-default-features --features "mock,client,server" && exit 0; fi - cargo build --verbose $ARGS; - cargo test --verbose $ARGS -- --test-threads=1; diff --git a/Cargo.toml b/Cargo.toml index 7dfd244..2b89343 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ tempdir = "0.3" clippy = { version = ">=0.0, <0.1", optional = true} #Server Dependencies -buf_redux = { version = "0.7", optional = true } +buf_redux = { version = "0.7", optional = true, default-features = false } httparse = { version = "1.2", optional = true } twoway = { version = "0.1", optional = true } quick-error = { version = "1.2", optional = true }