From 2b48df892587dc1383b9659fc0b65f553ca2f49f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 7 Apr 2019 16:36:49 -0700 Subject: [PATCH] Test only compilation on rust 1.18 This is bincode's current minimum supported Rust version but we have dev-dependencies that require a newer version. --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c61982..7ceff6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,10 @@ rust: - stable - beta - nightly - - 1.18.0 + +script: cargo test + +matrix: + include: + - rust: 1.18.0 + script: cargo build