Skip to content

Commit

Permalink
Merge pull request conjure-cp#83 from gskorokhod/issue-73
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgurakgun authored Jan 29, 2024
2 parents 4828e4d + ac6a5df commit a875ea0
Show file tree
Hide file tree
Showing 7 changed files with 623 additions and 17 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,10 @@ fabric.properties

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

# IDEA config files - idk if we actually need these?
.idea/vcs.xml
.idea/misc.xml
.idea/inspectionProfiles
.idea/.gitignore
.idea/conjure-oxide.iml
8 changes: 1 addition & 7 deletions conjure_oxide/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,7 @@ struct Cli {
}

pub fn main() -> AnyhowResult<()> {
println!(
"Rules: {:?}",
conjure_rules::get_rules()
.iter()
.map(|r| r.name)
.collect::<Vec<_>>()
);
println!("Rules: {:?}", conjure_rules::get_rules());

let cli = Cli::parse();
println!("Input file: {}", cli.input_file.display());
Expand Down
Loading

0 comments on commit a875ea0

Please sign in to comment.