Skip to content
This repository was archived by the owner on Aug 15, 2021. It is now read-only.

Commit 6a99df3

Browse files
committed
Support MSRV of 1.36
1 parent d012830 commit 6a99df3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
rust:
3-
- 1.40.0
3+
- 1.36.0
44
- stable
55
- beta
66
- nightly

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ of the JSON data model that is small and very fast to parse.
1111
[RFC 7049]: https://tools.ietf.org/html/rfc7049
1212
[Serde]: https://github.com/serde-rs/serde
1313

14+
### MSRV
15+
16+
Serde CBOR supports Rust 1.36 and up.
17+
1418
## Usage
1519

16-
Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`:
20+
Add this to your `Cargo.toml`:
1721
```toml
1822
[dependencies]
1923
serde_cbor = "0.11.1"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! # Usage
44
//!
5-
//! Serde CBOR supports Rust 1.40 and up. Add this to your `Cargo.toml`:
5+
//! Serde CBOR supports Rust 1.36 and up. Add this to your `Cargo.toml`:
66
//! ```toml
77
//! [dependencies]
88
//! serde_cbor = "0.10"

0 commit comments

Comments
 (0)