Skip to content

Commit

Permalink
upgrade open to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 25, 2021
1 parent 64a5589 commit 98c859c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### v2.14.3

* upgrade `open` crate to v2

#### v2.14.2

* `Ctrl-T` to trash (instead of removal) is now an optional default feature, allowing it to be
Expand Down
22 changes: 9 additions & 13 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 @@ -35,7 +35,7 @@ unicode-segmentation = { version = "1.3.0", optional = true }
crosstermion = { optional = true, version = "0.7.0", default-features = false }
tui = { version = "0.15.0", optional = true, default-features = false }
tui-react = { version = "0.15.0", optional = true }
open = { version = "1.2.2", optional = true }
open = { version = "2.0.0", optional = true }
wild = "2.0.4"

[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/aggregate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use crate::{crossdev, InodeFilter, WalkOptions, WalkResult};
use anyhow::Result;
use colored::{Color, Colorize};
use filesize::PathExt;
use std::time::Duration;
use std::{
borrow::Cow,
io,
Expand All @@ -12,6 +11,7 @@ use std::{
Arc,
},
thread,
time::Duration,
};

/// Aggregate the given `paths` and write information about them to `out` in a human-readable format.
Expand Down

0 comments on commit 98c859c

Please sign in to comment.