Skip to content

Commit

Permalink
ci: bump MSRV to Rust 1.30.0
Browse files Browse the repository at this point in the history
This simplifies testing quickcheck_macros on Rust stable and keeps the
trains running.
  • Loading branch information
BurntSushi committed Jan 5, 2019
1 parent da0687a commit 2f95838
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
@@ -1,14 +1,12 @@
language: rust
rust:
- 1.24.1
- 1.30.0
- stable
- beta
- nightly
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
- if [ "$TRAVIS_RUST_VERSION" != "1.24.1" ]; then
cargo build --verbose --manifest-path quickcheck_macros/Cargo.toml;
cargo test --verbose --manifest-path quickcheck_macros/Cargo.toml;
fi
- cargo build --verbose --manifest-path quickcheck_macros/Cargo.toml
- cargo test --verbose --manifest-path quickcheck_macros/Cargo.toml
3 changes: 3 additions & 0 deletions Cargo.toml
Expand Up @@ -12,6 +12,9 @@ categories = ["development-tools::testing"]
license = "Unlicense/MIT"
exclude = ["/.travis.yml", "/Makefile", "/ctags.rust", "/session.vim"]

[workspace]
members = ["quickcheck_macros"]

[features]
default = ["regex", "use_logging"]
unstable = []
Expand Down

0 comments on commit 2f95838

Please sign in to comment.