diff --git a/Cargo.toml b/Cargo.toml index 8e222ba..902b882 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ resolver = "2" [workspace.package] repository = "https://github.com/assert-rs/assert_cmd.git" license = "MIT OR Apache-2.0" -edition = "2021" -rust-version = "1.74" # MSRV +edition = "2024" +rust-version = "1.85" # MSRV include = [ "build.rs", "src/**/*", diff --git a/src/assert.rs b/src/assert.rs index 52b40a0..61e33f5 100644 --- a/src/assert.rs +++ b/src/assert.rs @@ -11,8 +11,8 @@ use anstream::panic; use predicates::str::PredicateStrExt; use predicates_tree::CaseTreeExt; -use crate::output::output_fmt; use crate::output::DebugBytes; +use crate::output::output_fmt; /// Assert the state of an [`Output`]. ///