There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

DedupeIncludeStatements

In this rule, multiple identical "use" statements of the same module are merged.

For example, this code:

use File::Temp;
use Foobar;
use File::Temp;

... is transformed to:

use File::Temp;
use Foobar;

Two statements are consider identical if, and only if, they are literally the same, character-to-character.