From 843aa26b2ade3715921a29f450d36760ad6917a1 Mon Sep 17 00:00:00 2001 From: Steven Roose Date: Fri, 22 May 2020 10:13:44 +0100 Subject: [PATCH] Support MSRV of 1.32 --- .travis.yml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index a3ce2365..bb6692ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - 1.40.0 + - 1.32.0 - stable - beta - nightly diff --git a/README.md b/README.md index 56246918..1355d5f0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ of the JSON data model that is small and very fast to parse. ## Usage -Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`: +Serde CBOR supports Rust 1.32 and up. Add this to your `Cargo.toml`: ```toml [dependencies] serde_cbor = "0.11.1" diff --git a/src/lib.rs b/src/lib.rs index 55668541..64a193ad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ //! //! # Usage //! -//! Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`: +//! Serde CBOR supports Rust 1.32 and up. Add this to your `Cargo.toml`: //! ```toml //! [dependencies] //! serde_cbor = "0.10"