From 4ac171abfd92e19c2c2d9e8f2ebab096ff3caba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Tue, 3 Dec 2024 01:00:03 -0800 Subject: [PATCH] fix(deps): bump MSRV to get things to pass in CI again --- .github/workflows/ci.yml | 2 +- src/lib.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a80ffa8..12a5736 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - rust: [1.56.0, stable] + rust: [1.70.0, stable] os: [ubuntu-latest, macOS-latest, windows-latest] steps: diff --git a/src/lib.rs b/src/lib.rs index 5cdd20c..ea33e16 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -120,6 +120,10 @@ //! you [`KdlDocument::fmt`] in which case the original representation will be //! thrown away and the actual value will be used when serializing. //! +//! ## Minimum Supported Rust Version (MSRV) +//! +//! This crate requires Rust 1.70.0 or later. +//! //! ## License //! //! The code in this repository is covered by [the Apache-2.0