Skip to content

Commit

Permalink
Bump major version, add copyright header, format code
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanford committed Mar 28, 2024
1 parent c0d82f9 commit ba2f749
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-walkdir"
version = "1.1.0"
version = "2.0.0"
authors = ["Ririsoft <[email protected]>"]
edition = "2021"
description = "Asynchronous directory traversal for Rust."
Expand Down
4 changes: 3 additions & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright 2020 Ririsoft <[email protected]>
// Copyright 2024 Jordan Danford <[email protected]>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down

0 comments on commit ba2f749

Please sign in to comment.