Skip to content

Commit

Permalink
added duplicate checks
Browse files Browse the repository at this point in the history
  • Loading branch information
timbod7 committed Dec 8, 2022
1 parent cdac963 commit 806f5c7
Show file tree
Hide file tree
Showing 8 changed files with 480 additions and 120 deletions.
249 changes: 249 additions & 0 deletions rust/compiler/Cargo.lock

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

2 changes: 2 additions & 0 deletions rust/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ serde = { version = "1.0.130", features=["derive"] }
serde_json = "1.0.68"
nom = "7.0.0"
nom_locate = "4.0.0"
env_logger = "0.10.0"
log = "0.4.17"
1 change: 1 addition & 0 deletions rust/compiler/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use compiler::cli::run_cli;

fn main() {
env_logger::init();
let exit_code = run_cli();
std::process::exit(exit_code);
}
Loading

0 comments on commit 806f5c7

Please sign in to comment.