Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the log crate to dev-dependencies.
Browse files Browse the repository at this point in the history
whitequark committed Jan 31, 2017
1 parent aa7981c commit 3e78039
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -2,21 +2,22 @@ language: rust
matrix:
include:
- rust: stable
env: FEATURES='use_std'
env: FEATURES='use_std' SKIP_TESTS=''
- rust: beta
env: FEATURES='use_std'
env: FEATURES='use_std' SKIP_TESTS=''
- rust: nightly
env: FEATURES='use_std'
env: FEATURES='use_std' SKIP_TESTS=''
- rust: nightly
env: FEATURES='use_std use_log'
env: FEATURES='use_std use_log' SKIP_TESTS=''
- rust: nightly
env: FEATURES='use_alloc use_collections'
env: FEATURES='use_alloc use_collections' SKIP_TESTS='true'
- rust: nightly
env: FEATURES=''
env: FEATURES='' SKIP_TESTS='true'
allow_failures:
- rust: stable # until 1.15 comes out
script:
- cargo test --no-default-features --features "$FEATURES"
- cargo build --no-default-features --features "$FEATURES"
- ${SKIP_TESTS} cargo test --no-default-features --features "$FEATURES"
notifications:
irc:
channels:
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ log = { version = "0.3", default-features = false, optional = true }
libc = { version = "0.2.18", optional = true }

[dev-dependencies]
log = "0.3"
env_logger = "0.4"
getopts = "0.2"

0 comments on commit 3e78039

Please sign in to comment.