From 6a99df36076d90d2d74a56409e3ae104014803d2 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.36 --- .travis.yml | 2 +- README.md | 6 +++++- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index a3ce2365..9e661b29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - 1.40.0 + - 1.36.0 - stable - beta - nightly diff --git a/README.md b/README.md index 56246918..f398694e 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,13 @@ of the JSON data model that is small and very fast to parse. [RFC 7049]: https://tools.ietf.org/html/rfc7049 [Serde]: https://github.com/serde-rs/serde +### MSRV + +Serde CBOR supports Rust 1.36 and up. + ## Usage -Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`: +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..2e662041 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.36 and up. Add this to your `Cargo.toml`: //! ```toml //! [dependencies] //! serde_cbor = "0.10"