Skip to content

Commit

Permalink
bump clippy to rust version 1.59.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lederstrumpf committed Feb 27, 2022
1 parent 6a44a23 commit c5bdd53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
msrv = "1.55.0"
msrv = "1.59.0"
enum-variant-size-threshold = 4000
2 changes: 1 addition & 1 deletion src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl Opts {
let mut me = self.clone();

me.data_dir = PathBuf::from(
shellexpand::tilde(&me.data_dir.to_string_lossy().to_string()).to_string(),
shellexpand::tilde(&me.data_dir.to_string_lossy()).to_string(),
);
fs::create_dir_all(&me.data_dir).expect("Unable to access data directory");

Expand Down

0 comments on commit c5bdd53

Please sign in to comment.