From 1fbc04104ce3b99a91a157cbf776b83211354b3a Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 18 Apr 2024 15:53:48 -0400 Subject: [PATCH] Move `lints` section to the top of `Cargo.toml`, to match the others --- crates/anthropic/Cargo.toml | 6 +++--- crates/semantic_index/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/anthropic/Cargo.toml b/crates/anthropic/Cargo.toml index 7d81209a9b..5a3f9bbd66 100644 --- a/crates/anthropic/Cargo.toml +++ b/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 diff --git a/crates/semantic_index/Cargo.toml b/crates/semantic_index/Cargo.toml index 5010a2fa49..f50f17934d 100644 --- a/crates/semantic_index/Cargo.toml +++ b/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