Move the sexp parser into the parser crate.

We need to parse sexp for diary sexp.
This commit is contained in:
Tom Alexander
2023-04-21 20:32:51 -04:00
parent 9d5b078c64
commit 7de72cab23
7 changed files with 4 additions and 8 deletions

View File

@@ -7,8 +7,6 @@ mod compare;
pub use compare::compare_document;
#[cfg(feature = "compare")]
pub use compare::emacs_parse_org_document;
#[cfg(feature = "compare")]
pub use compare::sexp;
mod error;
pub mod parser;