-
Most of my crates are small. I like having
use super::*
at the top of most of my modules. -
I know about
#[allow(unused_import)]
for a single line and#![allow(unused_import)]
for entire crate. -
My question is: is there a way to sa
for all use super::*
, allow unused_import; for other use lines, behave as normal