From eb6b628cbe355b5588f559e8f6312685d243f624 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 25 Aug 2024 12:21:52 -0700 Subject: [PATCH] Raise required compiler to Rust 1.61 Required by recent versions of `syn` --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 122c5ea..d1bff4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.60.0] + rust: [nightly, beta, stable, 1.61.0] timeout-minutes: 45 steps: - uses: actions/checkout@v4 diff --git a/Cargo.toml b/Cargo.toml index 492ebcf..2315771 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] keywords = ["serde", "serialization"] license = "MIT OR Apache-2.0" repository = "https://github.com/serde-rs/bench" -rust-version = "1.56" +rust-version = "1.61" [dependencies] byteorder = "1.4.3"