Start reimplementing parser
This commit is contained in:
parent
fd6ba4a005
commit
91918cf645
@ -11,3 +11,9 @@ keywords = ["logic"]
|
||||
categories = ["data-structures", "science"]
|
||||
license = "MIT"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
nom = {version = "5.1", optional = true}
|
||||
|
||||
[features]
|
||||
parse = ["nom"]
|
||||
|
@ -1,4 +1,6 @@
|
||||
mod ast;
|
||||
pub mod format;
|
||||
#[cfg(feature = "parse")]
|
||||
pub mod parse;
|
||||
|
||||
pub use ast::*;
|
||||
|
1080
src/parse.rs
Normal file
1080
src/parse.rs
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user