Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dandxy89 committed Nov 18, 2024
1 parent 425df6e commit 3e574d2
Show file tree
Hide file tree
Showing 5 changed files with 929 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ serde = { version = "1", features = ["derive"], optional = true }
thiserror = "2.0"
unique_id = "0.1"

nom = "7.1.3"

[dev-dependencies]
float_eq = "1.0"
insta = { version = "1.41", features = ["yaml", "redactions"] }
Expand Down
8 changes: 5 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@

use pest_derive::Parser;

#[derive(Parser)]
#[grammar = "lp_file_format.pest"]
pub struct LParser;

pub mod common;
pub mod model;
pub mod parse;

#[derive(Parser)]
#[grammar = "lp_file_format.pest"]
pub struct LParser;
pub mod nom;
Loading

0 comments on commit 3e574d2

Please sign in to comment.