From a79024468c5a585354178494bd886c1a6a059230 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 22 Jan 2020 13:02:04 -0800 Subject: [PATCH] Raise minimum supported rustc to 1.31 --- .travis.yml | 6 ------ README.md | 6 +++--- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 474ad4a..fc5a566 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,12 +10,6 @@ matrix: - cargo test --features raw_value - cargo test --features unbounded_depth - - rust: 1.30.0 - script: - - cargo build --manifest-path tests/crate/Cargo.toml - - cargo build --manifest-path tests/crate/Cargo.toml --features preserve_order - - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision - - rust: stable - rust: beta - rust: 1.31.0 diff --git a/README.md b/README.md index 98340fd..7f8adf2 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Serde JSON   [![Build Status]][travis] [![Latest Version]][crates.io] [![Rustc Version 1.30+]][rustc] +# Serde JSON   [![Build Status]][travis] [![Latest Version]][crates.io] [![Rustc Version 1.31+]][rustc] [Build Status]: https://api.travis-ci.org/serde-rs/json.svg?branch=master [travis]: https://travis-ci.org/serde-rs/json [Latest Version]: https://img.shields.io/crates/v/serde_json.svg [crates.io]: https://crates.io/crates/serde\_json -[Rustc Version 1.30+]: https://img.shields.io/badge/rustc-1.30+-lightgray.svg -[rustc]: https://blog.rust-lang.org/2018/10/25/Rust-1.30.0.html +[Rustc Version 1.31+]: https://img.shields.io/badge/rustc-1.31+-lightgray.svg +[rustc]: https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html **Serde is a framework for *ser*ializing and *de*serializing Rust data structures efficiently and generically.**