Skip to content

Commit

Permalink
Replacing dirs crate (unmaintained) with dirs-next (maintained) #418 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
andynog authored Nov 26, 2020
1 parent 9963c4a commit a7d59da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bech32 = "0.7.2"
itertools = "0.9.0"
dyn-clonable = "0.9.0"
tonic = "0.3.1"
dirs = "3.0.1"
dirs-next = "2.0.0"

[dependencies.tendermint]
version = "=0.17.0-rc3"
Expand Down
2 changes: 1 addition & 1 deletion relayer/src/keyring/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ fn get_address(pk: ExtendedPubKey) -> Vec<u8> {
}

fn get_test_backend_folder(chain_config: &ChainConfig) -> Result<PathBuf, Error> {
let home = dirs::home_dir();
let home = dirs_next::home_dir();
match home {
Some(h) => {
let folder = Path::new(h.as_path())
Expand Down

0 comments on commit a7d59da

Please sign in to comment.