Skip to content

Commit

Permalink
Merge pull request #66 from matthiasbeyer/revert-to-directories
Browse files Browse the repository at this point in the history
Revert to use directories instead of directories-next
  • Loading branch information
deg4uss3r authored Sep 8, 2022
2 parents c6b6203 + 1058ac0 commit d4678c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/rust-cli/confy"
edition = "2018"

[dependencies]
directories-next = "^2.0"
directories = "^2.0"
serde = "^1.0"
serde_yaml = { version = "0.8", optional = true }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
mod utils;
use utils::*;

use directories_next::ProjectDirs;
use directories::ProjectDirs;
use serde::{de::DeserializeOwned, Serialize};
use std::fs::{self, File, OpenOptions};
use std::io::{ErrorKind::NotFound, Write};
Expand Down

0 comments on commit d4678c3

Please sign in to comment.