Closed utkarshgupta137 closed 1 year ago
Fixes #84.
PS: You can add #[warn(unused)] & then run cargo clippy --fix to automatically remove many other unused imports as well. I'm not doing it here since this is breaking our CI, so we need a quick fix first.
#[warn(unused)]
cargo clippy --fix
Just ran into this as well with the latest version of regex (1.9.0). Would be nice to merge this change
1.9.0
Thanks for this PR. This fix will be released soon.
Fixes #84.
PS: You can add
#[warn(unused)]
& then runcargo clippy --fix
to automatically remove many other unused imports as well. I'm not doing it here since this is breaking our CI, so we need a quick fix first.