chore: make objects and elements struct public

This commit is contained in:
PoiScript 2019-02-07 23:01:18 +08:00
parent 58ea235ce8
commit aa786e97c1
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "orgize" name = "orgize"
version = "0.1.0" version = "0.1.1"
authors = ["PoiScript <poiscript@gmail.com>"] authors = ["PoiScript <poiscript@gmail.com>"]
description = "A Rust library for parsing orgmode files." description = "A Rust library for parsing orgmode files."
repository = "https://github.com/PoiScript/orgize" repository = "https://github.com/PoiScript/orgize"

View file

@ -12,5 +12,7 @@ mod lines;
mod objects; mod objects;
mod parser; mod parser;
pub use elements::*;
pub use export::{HtmlHandler, Render}; pub use export::{HtmlHandler, Render};
pub use parser::Parser; pub use objects::*;
pub use parser::{Event, Parser};