Skip to content

Commit

Permalink
build: use double quotes in TOML
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverNChalk committed Sep 11, 2024
1 parent 6ba57bd commit d2eb7d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
readme = "README.md"

[lints.clippy]
cast_possible_truncation = 'warn'
cast_possible_wrap = 'warn'
cast_sign_loss = 'warn'
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
# See `clippy.toml`.
disallowed_methods = 'warn'
disallowed_methods = "warn"

[dependencies]
clap = { version = "4.2.7", features = ["derive"] }
Expand Down

0 comments on commit d2eb7d9

Please sign in to comment.