Bump MSRV to 1.60

This commit is contained in:
Jonas Platte 2022-06-01 14:52:02 +02:00
parent 34b549f89f
commit 07af61d784
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C
16 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
msrv = "1.59"
msrv = "1.60"
avoid-breaking-exported-api = false
disallowed-methods = [
# https://github.com/serde-rs/json/issues/160

View File

@ -1,4 +1,4 @@
name: Rust 1.59
name: Rust 1.60
env:
CARGO_TERM_COLOR: always
@ -35,11 +35,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2
- name: Install rust 1.59 toolchain
- name: Install rust 1.60 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.59"
toolchain: "1.60"
# Used to compile xtask
- name: Install rust stable toolchain
@ -54,7 +54,7 @@ jobs:
# A stable compiler update should automatically not reuse old caches.
# Add the MSRV as a stable cache key too so bumping it also gets us a
# fresh cache.
sharedKey: msrv1.59
sharedKey: msrv1.60
- name: Run checks
uses: actions-rs/cargo@v1

View File

@ -53,7 +53,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
## Minimum Rust version
Ruma currently requires Rust 1.59. In general, we will never require beta or
Ruma currently requires Rust 1.60. In general, we will never require beta or
nightly for crates.io releases of our crates, and we will try to avoid releasing
crates that depend on features that were only just stabilized.

View File

@ -9,7 +9,7 @@ readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.6.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.14.1"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.9.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -8,7 +8,7 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.5.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -6,7 +6,7 @@ repository = "https://github.com/ruma/ruma"
license = "MIT"
version = "0.8.1"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -8,7 +8,7 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.9.2"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[lib]
proc-macro = true

View File

@ -8,7 +8,7 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -1,4 +1,4 @@
msrv = "1.59"
msrv = "1.60"
avoid-breaking-exported-api = false
disallowed-methods = [
# https://github.com/serde-rs/json/issues/160

View File

@ -9,7 +9,7 @@ readme = "README.md"
license = "MIT"
version = "0.7.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ readme = "README.md"
license = "MIT"
version = "0.6.3"
edition = "2021"
rust-version = "1.59"
rust-version = "1.60"
[package.metadata.docs.rs]
all-features = true

View File

@ -9,7 +9,7 @@ mod spec_links;
use spec_links::check_spec_links;
const MSRV: &str = "1.59";
const MSRV: &str = "1.60";
const NIGHTLY: &str = "nightly";
#[derive(Args)]