organic/src/lib.rs
Tom Alexander 7de72cab23
Move the sexp parser into the parser crate.
We need to parse sexp for diary sexp.
2023-04-21 20:32:51 -04:00

13 lines
268 B
Rust

#![feature(round_char_boundary)]
#![feature(exit_status_error)]
#[cfg(feature = "compare")]
mod compare;
#[cfg(feature = "compare")]
pub use compare::compare_document;
#[cfg(feature = "compare")]
pub use compare::emacs_parse_org_document;
mod error;
pub mod parser;