From 02c43a5bf2ef3d498cf4ac2407ad55a8c876dc72 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 25 Jul 2024 19:52:24 -0400 Subject: [PATCH] Add missing workspace lints (#15237) This PR adds the missing workspace lint configuration for the following crates that were missing it: - `google_ai` - `open_ai` - `tab_switcher` Release Notes: - N/A --- crates/google_ai/Cargo.toml | 3 +++ crates/open_ai/Cargo.toml | 3 +++ crates/tab_switcher/Cargo.toml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/crates/google_ai/Cargo.toml b/crates/google_ai/Cargo.toml index 9fecd8f708..1495f55a31 100644 --- a/crates/google_ai/Cargo.toml +++ b/crates/google_ai/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "GPL-3.0-or-later" +[lints] +workspace = true + [lib] path = "src/google_ai.rs" diff --git a/crates/open_ai/Cargo.toml b/crates/open_ai/Cargo.toml index 76ba7c4b50..db9c77bac6 100644 --- a/crates/open_ai/Cargo.toml +++ b/crates/open_ai/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "GPL-3.0-or-later" +[lints] +workspace = true + [lib] path = "src/open_ai.rs" diff --git a/crates/tab_switcher/Cargo.toml b/crates/tab_switcher/Cargo.toml index b67c4a3bf1..b36798fe8b 100644 --- a/crates/tab_switcher/Cargo.toml +++ b/crates/tab_switcher/Cargo.toml @@ -5,6 +5,9 @@ edition = "2021" publish = false license = "GPL-3.0-or-later" +[lints] +workspace = true + [lib] path = "src/tab_switcher.rs" doctest = false