diff --git a/Cargo.toml b/Cargo.toml index 7e3226e..1005273 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orgize" -version = "0.1.0" +version = "0.1.1" authors = ["PoiScript "] description = "A Rust library for parsing orgmode files." repository = "https://github.com/PoiScript/orgize" diff --git a/src/lib.rs b/src/lib.rs index 00f0af4..f1110f2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,5 +12,7 @@ mod lines; mod objects; mod parser; +pub use elements::*; pub use export::{HtmlHandler, Render}; -pub use parser::Parser; +pub use objects::*; +pub use parser::{Event, Parser};