mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
It transforms "use std::io::{Read, Write}" into
"use std::io::Read; use std::io::Write"
Which later allows to remove just precisely the statements
we do not need, and leave rest be.
The test from the last commit does not pass, but that
is seemingly to do with the test harness setup, since it
works fine locally.
10 lines
248 B
Rust
10 lines
248 B
Rust
mod everybody_loops;
|
|
mod field_deleter;
|
|
mod item_deleter;
|
|
mod privatize;
|
|
mod split_use;
|
|
|
|
pub use self::{
|
|
everybody_loops::EverybodyLoops, field_deleter::FieldDeleter, item_deleter::ItemDeleter,
|
|
privatize::Privatize, split_use::SplitUse,
|
|
};
|