Bump MSRV

This commit is contained in:
Jonas Platte 2019-11-22 11:03:48 +01:00
parent 924cd4c36c
commit 15f875a06e
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
5 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,7 @@
language: "rust" language: "rust"
cache: "cargo" cache: "cargo"
rust: rust:
- 1.34.2 - 1.36.0
- stable - stable
- beta - beta
- nightly - nightly

View File

@ -1,5 +1,9 @@
# [unreleased] # [unreleased]
Breaking changes:
* Our Minimum Supported Rust Version is now 1.36.0
# 0.11.2 # 0.11.2
Improvements: Improvements:

View File

@ -7,7 +7,7 @@ These types can be shared by client and server code for all Matrix APIs.
## Minimum Rust version ## Minimum Rust version
ruma-api requires Rust 1.34.2 or later. ruma-api requires Rust 1.36.0 or later.
## Documentation ## Documentation

View File

@ -9,7 +9,7 @@
// missing_docs, # Uncomment when https://github.com/rust-lang/rust/pull/60562 is released. // missing_docs, # Uncomment when https://github.com/rust-lang/rust/pull/60562 is released.
)] )]
#![allow(clippy::cognitive_complexity)] #![allow(clippy::cognitive_complexity)]
// Since we support Rust 1.34.2, we can't apply this suggestion yet // Since we support Rust 1.36.0, we can't apply this suggestion yet
#![allow(clippy::use_self)] #![allow(clippy::use_self)]
#![recursion_limit = "256"] #![recursion_limit = "256"]

View File

@ -12,7 +12,7 @@
#![warn(rust_2018_idioms)] #![warn(rust_2018_idioms)]
#![deny(missing_copy_implementations, missing_debug_implementations, missing_docs)] #![deny(missing_copy_implementations, missing_debug_implementations, missing_docs)]
// Since we support Rust 1.34.2, we can't apply this suggestion yet // Since we support Rust 1.36.0, we can't apply this suggestion yet
#![allow(clippy::use_self)] #![allow(clippy::use_self)]
use std::{ use std::{