diff options
author | thajohns <thajohns@clarkson.edu> | 2021-09-09 01:16:04 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2021-09-10 04:05:55 -0400 |
commit | 911a4a80eb7e4d98a96b813ebff3e659d50f040c (patch) | |
tree | 7f3c0964b49f2f0d03d18da16f367c5fe8ff1a1d /src/lib.rs | |
parent | d6e399973e9bc6447a28b80cacffcbc6a768f1ed (diff) |
formatted some more
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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")] |