clippy.toml

1allow-private-module-inception = true
2avoid-breaking-exported-api = false
3ignore-interior-mutability = [
4    # Suppresses clippy::mutable_key_type, which is a false positive as the Eq
5    # and Hash impls do not use fields with interior mutability.
6    "agent::context::AgentContextKey"
7]