diff --git a/Cargo.toml b/Cargo.toml index ecffd58..6d8a0b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [workspace] -resolver = "2" +resolver = "3" [workspace.package] repository = "https://github.com/assert-rs/assert_fs.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/fixture/tools.rs b/src/fixture/tools.rs index 8ad364e..25a3f7d 100644 --- a/src/fixture/tools.rs +++ b/src/fixture/tools.rs @@ -4,12 +4,12 @@ use std::fs; use std::io::Write; use std::path; -use super::errors::FixtureError; -use super::errors::FixtureKind; -use super::errors::ResultChainExt; use super::ChildPath; use super::NamedTempFile; use super::TempDir; +use super::errors::FixtureError; +use super::errors::FixtureKind; +use super::errors::ResultChainExt; /// Create empty directories at [`ChildPath`]. ///