allow-private-module-inception = true avoid-breaking-exported-api = false ignore-interior-mutability = [ # Suppresses clippy::mutable_key_type, which is a false positive as the Eq # and Hash impls do not use fields with interior mutability. "agent::context::AgentContextKey" ] disallowed-methods = [ { path = "std::process::Command::spawn", reason = "Spawning `std::process::Command` can block the current thread for an unknown duration", replacement = "smol::process::Command::spawn" }, { path = "std::process::Command::output", reason = "Spawning `std::process::Command` can block the current thread for an unknown duration", replacement = "smol::process::Command::output" }, { path = "std::process::Command::status", reason = "Spawning `std::process::Command` can block the current thread for an unknown duration", replacement = "smol::process::Command::status" }, ] disallowed-types = [ # { path = "std::collections::HashMap", replacement = "collections::HashMap" }, # { path = "std::collections::HashSet", replacement = "collections::HashSet" }, # { path = "indexmap::IndexSet", replacement = "collections::IndexSet" }, # { path = "indexmap::IndexMap", replacement = "collections::IndexMap" }, ]