Skip to content

Commit

Permalink
fix: clippy lints in Cargo.toml (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli authored Aug 2, 2024
1 parent ec95c3e commit 3985e89
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
@@ -1,6 +1,6 @@
[package]
name = "sudoku-dioxus"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["Jose Storopoli <[email protected]>"]
description = "Sudoku PWA with Dioxus"
Expand Down Expand Up @@ -28,9 +28,9 @@ unsafe_code = "forbid" # Forbid unsafe code

[lints.clippy]
enum_glob_use = "deny" # Deny `use Enum::*`
pedantic = "deny" # Deny a bunch of stuff
nursery = "deny" # Deny another bunch of stuff
unwrap_used = "deny" # Deny `.unwrap()`
pedantic = { level = "deny", priority = -1 } # Deny a bunch of stuff
nursery = { level = "deny", priority = -1 } # Deny another bunch of stuff
unwrap_used = "deny" # Deny `.unwrap()`

[profile.release]
opt-level = "z" # Optimized for size, use 3 for speed
Expand Down

0 comments on commit 3985e89

Please sign in to comment.