This is an automated email from the ASF dual-hosted git repository.

hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new 734264945 chore(clock, journal): enable pedantic and nursery clippy 
lints (#2874)
734264945 is described below

commit 7342649450ba124ba8d0e737642be0cc21ba102e
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Mon Mar 9 09:59:16 2026 +0100

    chore(clock, journal): enable pedantic and nursery clippy lints (#2874)
---
 .github/workflows/_common.yml | 2 ++
 core/clock/Cargo.toml         | 5 +++++
 core/journal/Cargo.toml       | 5 +++++
 3 files changed, 12 insertions(+)

diff --git a/.github/workflows/_common.yml b/.github/workflows/_common.yml
index 5d9c82783..046e81e18 100644
--- a/.github/workflows/_common.yml
+++ b/.github/workflows/_common.yml
@@ -77,6 +77,7 @@ jobs:
             bench
             ci
             cli
+            clock
             connector
             connectors
             cpp
@@ -89,6 +90,7 @@ jobs:
             integration
             io_uring
             java
+            journal
             js
             mcp
             partitions
diff --git a/core/clock/Cargo.toml b/core/clock/Cargo.toml
index 674f5bf8a..844c65071 100644
--- a/core/clock/Cargo.toml
+++ b/core/clock/Cargo.toml
@@ -22,3 +22,8 @@ edition = "2024"
 
 [dependencies]
 iggy_common = { workspace = true }
+
+[lints.clippy]
+enum_glob_use = "deny"
+pedantic = "deny"
+nursery = "warn"
diff --git a/core/journal/Cargo.toml b/core/journal/Cargo.toml
index dd01a0f1a..32b46aff4 100644
--- a/core/journal/Cargo.toml
+++ b/core/journal/Cargo.toml
@@ -28,3 +28,8 @@ repository = "https://github.com/apache/iggy";
 readme = "../../../README.md"
 
 [dependencies]
+
+[lints.clippy]
+enum_glob_use = "deny"
+pedantic = "deny"
+nursery = "warn"

Reply via email to