From b840d56725e01e728e4730e456f9537d6ab9ce9e Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Mon, 18 May 2026 15:43:32 -0700 Subject: [PATCH] use workspace lints --- card_game/Cargo.toml | 3 +++ klondike-cli/Cargo.toml | 3 +++ klondike/Cargo.toml | 3 +++ 3 files changed, 9 insertions(+) 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