Skip to content

Commit

Permalink
Add parsers directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lixitrixi committed Oct 30, 2023
1 parent 0606264 commit c132b2b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ edition = "2021"
[workspace]
members = ["solvers/kissat", "solvers/minion", "solvers/chuffed"]
exclude = []

[dependencies]
json = "0.12.4"
1 change: 1 addition & 0 deletions src/common/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub mod ast;
pub mod parse;
1 change: 1 addition & 0 deletions src/common/parse/json.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use json::JsonValue;
1 change: 1 addition & 0 deletions src/common/parse/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod json;
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mod common;
pub use common::ast;
pub use common::*;

0 comments on commit c132b2b

Please sign in to comment.