Fixed the library to use the new Rust 2018 module system.
This commit is contained in:
parent
483ccd455c
commit
f1ebfc465f
@ -7,6 +7,7 @@ license = ""
|
|||||||
repository = "https://gitlab.com/CyberMages/Core/scribe.git"
|
repository = "https://gitlab.com/CyberMages/Core/scribe.git"
|
||||||
documentation = ""
|
documentation = ""
|
||||||
keywords = ["scribe", "logging"]
|
keywords = ["scribe", "logging"]
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use ::levels::Levels;
|
use crate::levels::Levels;
|
||||||
use ::logger::Logger;
|
use crate::logger::Logger;
|
||||||
use ::record::Record;
|
use crate::record::Record;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
|
use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
|
||||||
|
|
||||||
use ::logger::Logger;
|
use crate::logger::Logger;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use ::levels::Levels;
|
use crate::levels::Levels;
|
||||||
use ::record::Record;
|
use crate::record::Record;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use ::levels::Levels;
|
use crate::levels::Levels;
|
||||||
use ::location::Location;
|
use crate::location::Location;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user