diff options
author | Till Hoeppner | 2014-11-03 16:39:57 +0100 |
---|---|---|
committer | Till Hoeppner | 2014-11-03 16:39:57 +0100 |
commit | 55b915a75f49957eaddefa74cbbf572ad186ee2f (patch) | |
tree | e18b0bb361802261db96f719eae7f0c9d3f3dbf3 /src/lib.rs | |
parent | fc27f8cee888acf70683badca9edadb45544822c (diff) | |
download | irsc-55b915a75f49957eaddefa74cbbf572ad186ee2f.tar.gz irsc-55b915a75f49957eaddefa74cbbf572ad186ee2f.tar.xz irsc-55b915a75f49957eaddefa74cbbf572ad186ee2f.zip |
API improvements, but more copying
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,10 +1,11 @@ -#![feature(globs, phase, slicing_syntax, macro_rules)] +#![feature(globs, phase, slicing_syntax, macro_rules, unboxed_closures)] #[phase(plugin)] extern crate regex_macros; extern crate regex; pub mod server; -pub mod events; pub mod color; pub mod ident; +pub mod callback; +pub mod event; |