Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
# 1.81 is the MSRV
rust-version: ["1.81"]
# 1.85 is the MSRV
rust-version: ["1.85"]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<!-- next-header -->
## Unreleased - ReleaseDate

### Changed

- Bumped MSRV to Rust 1.85.

## [0.1.7] - 2026-05-15

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
[workspace.package]
edition = "2021"
repository = "https://github.com/oxidecomputer/daft"
rust-version = "1.81.0"
rust-version = "1.85.0"
license = "MIT OR Apache-2.0"
keywords = ["diff", "difference", "semantic-diff", "structural-diff"]

Expand Down
2 changes: 1 addition & 1 deletion daft-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/daft-derive.svg?)
[![crates.io](https://img.shields.io/crates/v/daft-derive.svg?logo=rust)](https://crates.io/crates/daft-derive)
[![docs.rs](https://img.shields.io/docsrs/daft-derive.svg?logo=docs.rs)](https://docs.rs/daft-derive)
[![Rust: ^1.81.0](https://img.shields.io/badge/rust-^1.81.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
[![Rust: ^1.85.0](https://img.shields.io/badge/rust-^1.85.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
<!-- cargo-sync-rdme ]] -->
<!-- cargo-sync-rdme rustdoc [[ -->
Derive macro for daft (internal crate).
Expand Down
4 changes: 2 additions & 2 deletions daft/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/daft.svg?)
[![crates.io](https://img.shields.io/crates/v/daft.svg?logo=rust)](https://crates.io/crates/daft)
[![docs.rs](https://img.shields.io/docsrs/daft.svg?logo=docs.rs)](https://docs.rs/daft)
[![Rust: ^1.81.0](https://img.shields.io/badge/rust-^1.81.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
[![Rust: ^1.85.0](https://img.shields.io/badge/rust-^1.85.0-93450a.svg?logo=rust)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
<!-- cargo-sync-rdme ]] -->
<!-- cargo-sync-rdme rustdoc [[ -->
Daft is a library to perform semantic diffs of Rust data structures.
Expand Down Expand Up @@ -427,7 +427,7 @@ Implementations for third-party types, all **disabled** by default:

## Minimum supported Rust version (MSRV)

The minimum supported Rust version is **1.81.0**. At any time, at least the
The minimum supported Rust version is **1.85.0**. At any time, at least the
last three stable versions of Rust are supported.

While this crate is a pre-release (0.x.x) it may have its MSRV bumped in a
Expand Down
2 changes: 1 addition & 1 deletion daft/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
//!
//! # Minimum supported Rust version (MSRV)
//!
//! The minimum supported Rust version is **1.81.0**. At any time, at least the
//! The minimum supported Rust version is **1.85.0**. At any time, at least the
//! last three stable versions of Rust are supported.
//!
//! While this crate is a pre-release (0.x.x) it may have its MSRV bumped in a
Expand Down
Loading