summaryrefslogtreecommitdiffstats
path: root/core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r--core/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index 0fb66062..f5a26e3a 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -18,11 +18,11 @@
/// # }
/// ```
+extern crate dirs;
extern crate tempdir;
#[macro_use]
extern crate failure;
-use std::env;
use std::fmt;
use std::fs;
use std::io;
@@ -217,7 +217,7 @@ impl Config {
} else {
if home_not_set {
c.home =
- env::home_dir().ok_or(
+ dirs::home_dir().ok_or(
format_err!("Failed to get users home directory"))?
.join(".sequoia");
}