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"
Marshall Bowers created
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(+)
@@ -5,6 +5,9 @@ edition = "2021"
publish = false
license = "GPL-3.0-or-later"
+[lints]
+workspace = true
+
[lib]
path = "src/google_ai.rs"
@@ -5,6 +5,9 @@ edition = "2021"
publish = false
license = "GPL-3.0-or-later"
+[lints]
+workspace = true
+
[lib]
path = "src/open_ai.rs"
@@ -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