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 9fecd8f708da5bbb3fc9d62340aefeafe1e93161..1495f55a31e0cbcfbdfc163afa9758c9f067bcfe 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 76ba7c4b502350b694dd934418cdd803c58a1752..db9c77bac6bfe45634a2283853a5b4f1f9b3bc88 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 b67c4a3bf114a90ab400fc234e10e8f7fc393ecd..b36798fe8bdc875e9c623460fe54123bfa18fd09 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