summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-02-12 23:36:38 -0500
committerGraham Northup <grissess@nexusg.org>2019-02-12 23:36:38 -0500
commit5c39a9c26ddd9d7aa4a4fa1af0244348daab0011 (patch)
tree7cc0c140ed8c801d276f87a7663c67be75a842ee /src/lib.rs
parent9f2b13aaf422014cb1988a8d91b55aef9c964f12 (diff)
parent23c79cc00eb5d8e76148d79af83a9ab838e602f3 (diff)
Merge branch 'work' into nogfx
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 28560f4..0e9672a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,8 @@
extern crate byteorder;
extern crate rand;
extern crate unicode_xid;
+extern crate xml;
+#[macro_use] extern crate failure;
pub mod types;
pub use types::*;
@@ -10,6 +12,7 @@ pub mod proto;
pub mod lang;
pub mod client;
pub mod monitor;
+pub mod seq;
#[cfg(feature = "graphics")]
pub mod graphics;