Skip to content

Commit

Permalink
Merge pull request #12 from nicolasauler/cli_experimentation
Browse files Browse the repository at this point in the history
Added text reports and CLI
  • Loading branch information
nicolasauler authored Mar 31, 2024
2 parents 47967b9 + 9aa6f4f commit bf2c52a
Show file tree
Hide file tree
Showing 9 changed files with 1,303 additions and 67 deletions.
4 changes: 4 additions & 0 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ coverage:
default:
target: 80% # the required coverage value
threshold: 1% # the leniency in hitting the target
patch:
default:
target: 80%
threshold: 1%


# Test files aren't important for coverage
Expand Down
253 changes: 253 additions & 0 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ license = "MIT OR Apache-2.0"
keywords = ["parser", "cli", "quake"]
categories = ["command-line-utilities", "parsing"]
edition = "2021"
rust-version = "1.60.0"
rust-version = "1.74.0"

[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
tabled = "0.15.0"
table_to_html = "0.4.0"

[dev-dependencies]
proptest = "1.4.0"
Expand Down Expand Up @@ -78,4 +81,6 @@ cargo = { level = "warn", priority = 0 }

# allow list
needless_return = { level = "allow", priority = 6 }
multiple_crate_versions = { level = "allow", priority = 6 } # either clap or tabled are calling some outdated dependencies
module_name_repetitions = { level = "allow", priority = 6 }
#question_mark_used = "allow"
Loading

0 comments on commit bf2c52a

Please sign in to comment.