summaryrefslogtreecommitdiffstats
path: root/examples/glob/src/main.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-13 11:07:56 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-13 11:07:59 +0100
commitbd121fa310ac8ab7e76e25eeea5294826f215fcb (patch)
treeb9ebd8f7fd7ce7e4b6c13f24d63a3e756f410174 /examples/glob/src/main.rs
parent9f430e86c7bc0dcd9bd6e42cb27bb1e68d68f0dd (diff)
Fix imports for new crate name
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Tested-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'examples/glob/src/main.rs')
-rw-r--r--examples/glob/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/glob/src/main.rs b/examples/glob/src/main.rs
index 112335c..e653b77 100644
--- a/examples/glob/src/main.rs
+++ b/examples/glob/src/main.rs
@@ -1,9 +1,9 @@
extern crate glob;
-extern crate config;
+extern crate config_maint;
use std::path::Path;
use std::collections::HashMap;
-use config::*;
+use config_maint::*;
use glob::glob;
fn main() {