We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58fbaea commit 4036348Copy full SHA for 4036348
src/blob_tree/mod.rs
@@ -292,8 +292,7 @@ impl AbstractTree for BlobTree {
292
}
293
last_key = Some(key.clone());
294
295
- // NOTE: Values are 32-bit max
296
- #[allow(clippy::cast_possible_truncation)]
+ #[expect(clippy::cast_possible_truncation, reason = "values are 32-bit max")]
297
let value_size = value.len() as u32;
298
299
if value_size >= separation_threshold {
0 commit comments