From cfd025b5289bc305470a96657868c982a2b13bc2 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sat, 30 Mar 2019 16:48:36 +0000 Subject: Add rustfmt style guide --- src/lib.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 64d554ca..92ccb5a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,8 +17,10 @@ #![cfg_attr(feature = "nightly", feature(core_intrinsics))] #![cfg_attr(all(test, feature = "bench"), feature(test))] -#[macro_use] extern crate log; -#[macro_use] extern crate serde_derive; +#[macro_use] +extern crate log; +#[macro_use] +extern crate serde_derive; #[cfg(target_os = "macos")] #[macro_use] @@ -37,6 +39,7 @@ pub mod index; pub mod input; pub mod locale; pub mod logging; +pub mod message_bar; pub mod meter; pub mod panic; pub mod renderer; @@ -44,10 +47,9 @@ pub mod selection; pub mod sync; pub mod term; pub mod tty; +mod url; pub mod util; pub mod window; -pub mod message_bar; -mod url; pub use crate::grid::Grid; pub use crate::term::Term; -- cgit