Move `lints` section to the top of `Cargo.toml`, to match the others

Marshall Bowers created

Change summary

crates/anthropic/Cargo.toml      | 6 +++---
crates/semantic_index/Cargo.toml | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

crates/anthropic/Cargo.toml 🔗

@@ -5,6 +5,9 @@ edition = "2021"
 publish = false
 license = "AGPL-3.0-or-later"
 
+[lints]
+workspace = true
+
 [lib]
 path = "src/anthropic.rs"
 
@@ -17,6 +20,3 @@ util.workspace = true
 
 [dev-dependencies]
 tokio.workspace = true
-
-[lints]
-workspace = true

crates/semantic_index/Cargo.toml 🔗

@@ -6,6 +6,9 @@ edition = "2021"
 publish = false
 license = "GPL-3.0-or-later"
 
+[lints]
+workspace = true
+
 [lib]
 path = "src/semantic_index.rs"
 
@@ -43,6 +46,3 @@ project = { workspace = true, features = ["test-support"] }
 tempfile.workspace = true
 util = { workspace = true, features = ["test-support"] }
 worktree = { workspace = true, features = ["test-support"] }
-
-[lints]
-workspace = true