From 08322ac64501584cb6f24a06a61f61526d9165b1 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Sun, 15 Mar 2026 15:08:55 +0100 Subject: [PATCH] bump edition --- Cargo.toml | 2 +- src/builder.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4c4bd17..5a678bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "testdir" version = "0.9.3" authors = ["Floris Bruynooghe "] -edition = "2021" +edition = "2024" description = "Semi-persistent, scoped test directories" repository = "https://github.com/flub/testdir" documentation = "https://docs.rs/testdir" diff --git a/src/builder.rs b/src/builder.rs index 6f01b6e..a194857 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -10,7 +10,7 @@ use std::sync::Arc; use anyhow::{Context, Error, Result}; -use crate::{NumberedDir, KEEP_DEFAULT, ROOT_DEFAULT}; +use crate::{KEEP_DEFAULT, NumberedDir, ROOT_DEFAULT}; /// Builder to create a [`NumberedDir`]. ///