From bd121fa310ac8ab7e76e25eeea5294826f215fcb Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 13 Mar 2021 11:07:56 +0100 Subject: Fix imports for new crate name Signed-off-by: Matthias Beyer Tested-by: Matthias Beyer --- examples/global/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/global/src/main.rs') 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 = RwLock::new(Config::default()); -- cgit v1.2.3