Skip to content

Commit

Permalink
refactor: Adds bench tag to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Rosenfield Boeira committed Jan 30, 2025
1 parent 9ab2154 commit 544114c
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,17 @@ assert_cmd = "2.0.16"
assert_fs = "1.1"
criterion = { version = "0.5", features = ["html_reports"] }

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }

[lints.clippy]
use_self = { level = "allow"}
missing_const_for_fn = { level = "warn" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }

[lints.clippy]
use_self = { level = "allow"}
missing_const_for_fn = { level = "warn" }

[[bench]]
name = "algorithms"
harness = false

[[bench]]
name = "formatters"
harness = false

0 comments on commit 544114c

Please sign in to comment.