diff options
author | Rahul Sharma <rsconceptx@gmail.com> | 2016-04-04 17:46:35 +0530 |
---|---|---|
committer | Rahul Sharma <rsconceptx@gmail.com> | 2016-05-25 10:55:07 +0530 |
commit | b4885fef9a88474737f46b43021acc5800b5cf08 (patch) | |
tree | e28a7c0f4d17201de5d18110e1435681f25ef232 /components/util/lib.rs | |
parent | aa9f50a1d406e72d8b443f79439aaf9fd2ba4425 (diff) | |
download | servo-b4885fef9a88474737f46b43021acc5800b5cf08.tar.gz servo-b4885fef9a88474737f46b43021acc5800b5cf08.zip |
adding default config dirs
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 9039e99c7b7..680e5609da0 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -38,9 +38,11 @@ extern crate rustc_serialize; extern crate serde; extern crate smallvec; extern crate url; +extern crate xdg; use std::sync::Arc; +pub mod basedir; pub mod cache; #[allow(unsafe_code)] pub mod debug_utils; |