summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorthajohns <thajohns@clarkson.edu>2021-09-09 01:16:04 -0400
committerGraham Northup <grahamnorthup@yahoo.com>2021-09-10 04:05:55 -0400
commit911a4a80eb7e4d98a96b813ebff3e659d50f040c (patch)
tree7f3c0964b49f2f0d03d18da16f367c5fe8ff1a1d /src/lib.rs
parentd6e399973e9bc6447a28b80cacffcbc6a768f1ed (diff)
formatted some more
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index abcd44c..def8457 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,7 +2,8 @@ extern crate byteorder;
extern crate rand;
extern crate unicode_xid;
extern crate xml;
-#[macro_use] extern crate failure;
+#[macro_use]
+extern crate failure;
pub mod types;
pub use types::*;
@@ -10,8 +11,8 @@ pub use types::*;
pub mod client;
pub mod lang;
pub mod monitor;
-pub mod seq;
pub mod proto;
+pub mod seq;
pub mod synth;
#[cfg(feature = "graphics")]