Skip to content

Commit

Permalink
Increment version and update fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturKovacs committed Jan 24, 2021
1 parent ff7cf3b commit 6d2270a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trash"
version = "1.2.0"
version = "1.3.0"
authors = ["Artur Kovacs <kovacs.artur.barnabas@gmail.com>"]
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

[![Crates.io](https://img.shields.io/crates/v/trash.svg)](https://crates.io/crates/trash)
[![Crates.io](https://img.shields.io/crates/v/trash?color=mediumvioletred)](https://crates.io/crates/trash)
[![Docs.rs](https://docs.rs/trash/badge.svg)](https://docs.rs/trash)



## About

The `trash` is a Rust library for moving files and folders to the operating system's Recycle Bin or Trash or Rubbish Bin or what have you :D
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl fmt::Display for Error {
match self {
Self::Unknown => write!(f, "Unknown error"),
Self::TargetedRoot => write!(f, "One of the target items was a root folder"),
Self::CouldNotAccess {target} => {
Self::CouldNotAccess { target } => {
write!(f, "The following does not exist or the process has insufficient permissions to access it: '{}'", target)
}
Self::CanonicalizePath { code } => {
Expand Down

0 comments on commit 6d2270a

Please sign in to comment.