Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
- Removed the transitional `#![allow(clippy::expect_used)]` quarantine from
`lading_throttle`. All `.expect()` sites in that crate are under
`#[cfg(test)]` or `#[cfg(kani)]`, so the workspace-level
`clippy::expect_used = "deny"` now applies without local overrides.
- Added `clippy::expect_used = "deny"` to the workspace-level lint set,
mirroring the existing `clippy::unwrap_used` policy, and set
`allow-expect-in-tests = true` in `clippy.toml`. Production `.expect()`
Expand Down
3 changes: 0 additions & 3 deletions lading_throttle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
#![deny(clippy::cargo)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::multiple_crate_versions)]
// Quarantine: workspace denies `clippy::expect_used`, but this crate still has
// production `.expect()` sites awaiting cleanup. Remove once cleaned up.
#![allow(clippy::expect_used)]

use async_trait::async_trait;
use serde::{Deserialize, Serialize};
Expand Down
Loading