Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
use app_dirs2
Browse files Browse the repository at this point in the history
  • Loading branch information
rleungx committed Mar 30, 2018
1 parent cab073b commit 435edfd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 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 @@ -26,7 +26,7 @@ toml = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
app_dirs = "1.1.1"
app_dirs2 = "2.0.3"
futures = "0.1"
futures-cpupool = "0.1"
fdlimit = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion parity/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#![warn(missing_docs)]

extern crate ansi_term;
extern crate app_dirs;
extern crate app_dirs2;
extern crate ctrlc;
extern crate docopt;
#[macro_use]
Expand Down
2 changes: 1 addition & 1 deletion util/dir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ authors = ["Parity Technologies <[email protected]>"]
[dependencies]
ethereum-types = "0.2"
journaldb = { path = "../journaldb" }
app_dirs = "1.1.1"
app_dirs2 = "2.0.3"
4 changes: 2 additions & 2 deletions util/dir/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#![warn(missing_docs)]

//! Dir utilities for platform-specific operations
extern crate app_dirs;
extern crate app_dirs2;
extern crate ethereum_types;
extern crate journaldb;

Expand All @@ -27,7 +27,7 @@ use std::path::{PathBuf, Path};
use ethereum_types::{H64, H256};
use journaldb::Algorithm;
use helpers::{replace_home, replace_home_and_local};
use app_dirs::{AppInfo, get_app_root, AppDataType};
use app_dirs2::{AppInfo, get_app_root, AppDataType};
// re-export platform-specific functions
use platform::*;

Expand Down

0 comments on commit 435edfd

Please sign in to comment.