summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2018-07-01 21:37:41 -0400
committerGraham Northup <grissess@nexusg.org>2018-07-01 21:37:41 -0400
commita2d24ef36dd6c4197b1306a84eec4fb290d0d5ce (patch)
tree59c63edb720b95d50ed14fb13b861acc06632a99 /src/lib.rs
parent22cb7d7cbcacbfe3a7d3a2d454e6b8cf49ae989c (diff)
Partial commit toward IV/seq implementation!
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4e1c372..68cf62e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,6 +3,7 @@
extern crate byteorder;
extern crate rand;
extern crate unicode_xid;
+extern crate xml;
pub mod types;
pub use types::*;
@@ -12,6 +13,7 @@ pub mod proto;
pub mod lang;
pub mod client;
pub mod monitor;
+pub mod seq;
#[cfg(feature = "graphics")]
pub mod graphics;