Skip to content

Commit

Permalink
Bump trash from 3.0.5 to 3.0.6
Browse files Browse the repository at this point in the history
Bumps [trash](https://github.com/ArturKovacs/trash) from 3.0.5 to 3.0.6.
- [Release notes](https://github.com/ArturKovacs/trash/releases)
- [Changelog](https://github.com/Byron/trash-rs/blob/master/CHANGELOG.md)
- [Commits](Byron/trash-rs@v3.0.5...v3.0.6)

---
updated-dependencies:
- dependency-name: trash
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Correspondingly, enable the dispose test for a symlink to a filled
directory on Windows as the bug that caused this test to be disabled on
Windows has been fixed in the trash crate.

_This commit was originally authored by Dependabot_
  • Loading branch information
ericcornelissen committed Jul 13, 2023
1 parent 20a3d57 commit 7c58848
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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
Expand Up @@ -31,7 +31,7 @@ anstream = "0.3.2"
clap = { version = "4.3.11", features = ["derive"] }
log = "0.4.19"
owo-colors = "3.5.0"
trash = { version = "3.0.5", optional = true }
trash = { version = "3.0.6", optional = true }

[dev-dependencies]
assert_cmd = { version = "2.0.8", features = ["color-auto"] }
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2619,7 +2619,7 @@ mod rm {

#[test]
#[cfg_attr(
any(not(feature = "test-trash"), windows),
any(not(feature = "test-trash"), all(windows, not(feature = "test-symlink"))),
ignore = "Only run with the test-trash feature"
)]
fn symlink_to_filled_dir() -> TestResult {
Expand Down

0 comments on commit 7c58848

Please sign in to comment.