diff --git a/card_game/Cargo.toml b/card_game/Cargo.toml index 0fa0496..bfdae9f 100644 --- a/card_game/Cargo.toml +++ b/card_game/Cargo.toml @@ -10,3 +10,6 @@ keywords = ["card", "cards", "solitaire", "klondike"] [dependencies] arrayvec = "0.7.6" + +[lints] +workspace = true diff --git a/klondike-cli/Cargo.toml b/klondike-cli/Cargo.toml index 4b254ce..a4769cd 100644 --- a/klondike-cli/Cargo.toml +++ b/klondike-cli/Cargo.toml @@ -7,3 +7,6 @@ edition = "2024" card_game.workspace = true klondike.workspace = true rand = { version = "0.10.1", default-features = false, features = ["thread_rng"] } + +[lints] +workspace = true diff --git a/klondike/Cargo.toml b/klondike/Cargo.toml index daa83dd..e64c361 100644 --- a/klondike/Cargo.toml +++ b/klondike/Cargo.toml @@ -6,3 +6,6 @@ edition = "2024" [dependencies] card_game.workspace = true rand = { version = "0.10.1", default-features = false, features = ["std_rng"] } + +[lints] +workspace = true