This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch pedantic-clock
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/pedantic-clock by this push:
new ea8d4c1bc chore(clock): enable pedantic and nursery clippy lints
ea8d4c1bc is described below
commit ea8d4c1bcd6a02fdf9811342d2cbea0df3c7d2cd
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Thu Mar 5 12:31:17 2026 +0100
chore(clock): enable pedantic and nursery clippy lints
---
core/clock/Cargo.toml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/core/clock/Cargo.toml b/core/clock/Cargo.toml
index 674f5bf8a..34856a6f2 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 = "deny"