From 8e8dc10419bcb7c82581d13eaf247aeb5ed2b586 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 25 Oct 2023 17:59:44 +0200 Subject: [PATCH] Bump MSRV to 1.61 (for memchr) --- .github/workflows/rust.yml | 2 +- instant-xml-macros/Cargo.toml | 2 +- instant-xml/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 432d280..3fca812 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,7 +15,7 @@ jobs: - os: ubuntu-latest rust: beta - os: ubuntu-latest - rust: 1.58.0 + rust: 1.61.0 runs-on: ${{ matrix.os }} diff --git a/instant-xml-macros/Cargo.toml b/instant-xml-macros/Cargo.toml index 980a73d..8ab92e3 100644 --- a/instant-xml-macros/Cargo.toml +++ b/instant-xml-macros/Cargo.toml @@ -2,7 +2,7 @@ name = "instant-xml-macros" version = "0.4.0" edition = "2021" -rust-version = "1.58" +rust-version = "1.61" workspace = ".." license = "Apache-2.0 OR MIT" description = "Procedural macros for instant-xml" diff --git a/instant-xml/Cargo.toml b/instant-xml/Cargo.toml index bc92865..a133008 100644 --- a/instant-xml/Cargo.toml +++ b/instant-xml/Cargo.toml @@ -2,7 +2,7 @@ name = "instant-xml" version = "0.4.0" edition = "2021" -rust-version = "1.58" +rust-version = "1.61" workspace = ".." license = "Apache-2.0 OR MIT" description = "A more rigorous way to map XML to Rust types"