summaryrefslogtreecommitdiffstats
path: root/examples/global/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/global/src/main.rs')
-rw-r--r--examples/global/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/global/src/main.rs b/examples/global/src/main.rs
index 8e0e068..f338e84 100644
--- a/examples/global/src/main.rs
+++ b/examples/global/src/main.rs
@@ -1,11 +1,11 @@
#[macro_use]
extern crate lazy_static;
-extern crate config;
+extern crate config_maint;
use std::error::Error;
use std::sync::RwLock;
-use config::Config;
+use config_maint::Config;
lazy_static! {
static ref SETTINGS: RwLock<Config> = RwLock::new(Config::default());