From 55f51360402ae72feb70219aad8db4687389cccb Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sat, 25 Apr 2026 21:19:08 +0200 Subject: [PATCH] chore: separate Cargo lint configuration Keep the workspace lint configuration in its own Cargo metadata table instead of letting it follow the dependency table directly. This makes the manifest layout explicit for future dependency additions and keeps lint policy visibly separate from package dependencies. There is no runtime behavior change. Users should see the same binary behavior, while maintainers get a clearer manifest structure. Test Plan: - cargo clippy - cargo clippy --benches - cargo clippy --tests - cargo +nightly fmt - cargo clippy - cargo clippy --benches - cargo clippy --tests Refs: none --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index a45fdd3..33fcbad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ edition = "2024" [dependencies] +[lints] [lints.rust] unsafe_code = "forbid"