From 1927149ce959a19be6a8b04a4a90fbbcc63dec69 Mon Sep 17 00:00:00 2001 From: Per Stark Date: Tue, 26 May 2026 15:30:00 +0200 Subject: [PATCH] lint: inherit workspace clippy config in json-stream-parser and evaluations Both crates were missing the [lints] workspace = true directive, bypassing workspace clippy rules (unwrap_used, expect_used, etc.). --- evaluations/Cargo.toml | 3 +++ json-stream-parser/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/evaluations/Cargo.toml b/evaluations/Cargo.toml index 36fcf0c..34d36f7 100644 --- a/evaluations/Cargo.toml +++ b/evaluations/Cargo.toml @@ -3,6 +3,9 @@ name = "evaluations" version = "0.1.0" edition = "2021" +[lints] +workspace = true + [dependencies] anyhow = { workspace = true } async-openai = { workspace = true } diff --git a/json-stream-parser/Cargo.toml b/json-stream-parser/Cargo.toml index 78ec3ee..3db2628 100644 --- a/json-stream-parser/Cargo.toml +++ b/json-stream-parser/Cargo.toml @@ -4,5 +4,8 @@ version = "0.1.0" edition = "2021" license = "MIT" +[lints] +workspace = true + [dependencies] serde_json = { workspace = true }