diff --git a/Cargo.toml b/Cargo.toml index f4c7569..1871390 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-walkdir" -version = "1.1.0" +version = "2.0.0" authors = ["Ririsoft "] edition = "2021" description = "Asynchronous directory traversal for Rust." diff --git a/src/error.rs b/src/error.rs index 0f32188..e80c43c 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,5 +1,7 @@ use std::{ - error, fmt, io, ops::Deref, path::{Path, PathBuf} + error, fmt, io, + ops::Deref, + path::{Path, PathBuf}, }; /// A wrapper around [`io::Error`] that includes the associated path. diff --git a/src/lib.rs b/src/lib.rs index 9f1cb7c..7159a92 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ // Copyright 2020 Ririsoft +// Copyright 2024 Jordan Danford // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.