Skip to content

Commit

Permalink
add json parser + tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-codecov committed Feb 14, 2024
1 parent efaa75d commit f04b4fa
Show file tree
Hide file tree
Showing 4 changed files with 669 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,12 @@ diesel = { version = "2.1.4", features = ["sqlite"] }
diesel_migrations = "2.1.0"
diesel-derive-enum = { version = "2.1.0", features = ["sqlite"] }

winnow = "0.5.34"

[dev-dependencies]
tempfile = "3.9.0"

[features]
default = ["pyreport_shim"]

pyreport_shim = []
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
#![feature(trait_alias)]

pub mod report;

pub mod parsers;
1 change: 1 addition & 0 deletions src/parsers.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod json;
Loading

0 comments on commit f04b4fa

Please sign in to comment.