2023-11-05 19:02:21 +01:00
|
|
|
# prevents a false-positive lint on our types containing bytes::Bytes
|
|
|
|
# https://rust-lang.github.io/rust-clippy/master/index.html#/mutable_key_type
|
|
|
|
ignore-interior-mutability = [
|
2024-08-16 16:32:20 +02:00
|
|
|
# make sure to specify the originating type name, not re-exports!
|
2023-11-05 19:02:21 +01:00
|
|
|
"bytes::Bytes",
|
2024-08-16 16:32:20 +02:00
|
|
|
"tvix_castore::digests::B3Digest",
|
|
|
|
"tvix_castore::path::component::PathComponent"
|
2023-11-05 19:02:21 +01:00
|
|
|
]
|