From aa786e97c1e4aa08050c63f7774cd7726b0abedd Mon Sep 17 00:00:00 2001 From: PoiScript Date: Thu, 7 Feb 2019 23:01:18 +0800 Subject: [PATCH] chore: make objects and elements struct public --- Cargo.toml | 2 +- src/lib.rs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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};