From 08a3d3a0c274dda4d59ede34d8672fa60fe49d6e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 24 May 2024 13:14:27 -0400 Subject: [PATCH] assistant: Add missing `lints.workspace` (#12253) This PR adds the missing `lints.workspace` setting to the `assistant` crate's `Cargo.toml`. Release Notes: - N/A --- crates/assistant/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/assistant/Cargo.toml b/crates/assistant/Cargo.toml index aed2a2ccd3..1023296255 100644 --- a/crates/assistant/Cargo.toml +++ b/crates/assistant/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "GPL-3.0-or-later" +[lints] +workspace = true + [lib] path = "src/assistant.rs" doctest = false