diff --git a/Cargo.toml b/Cargo.toml index dcc4c46..171b598 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = [ ] categories = ["filesystem"] description = "A safe, reliable implementation of remove_dir_all for Windows" -edition = "2018" +edition = "2021" include = [ "Cargo.toml", "LICENCE-APACHE", @@ -18,7 +18,7 @@ license = "MIT OR Apache-2.0" name = "remove_dir_all" readme = "README.md" repository = "https://github.com/XAMPPRocky/remove_dir_all.git" -version = "0.8.4" +version = "1.0.0" [features] cli = ["dep:clap", "dep:env_logger", "log", "parallel"] diff --git a/README.md b/README.md index 825b179..920e5ca 100644 --- a/README.md +++ b/README.md @@ -30,4 +30,5 @@ fn main() { ``` ## Minimum Rust Version + The minimum rust version for `remove_dir_all` is the latest stable release, and the minimum version may be bumped through patch releases. You can pin to a specific version by setting by add `=` to your version (e.g. `=0.6.0`), or commiting a `Cargo.lock` file to your project.