in reply to Removing unused Perl modules

Not even you can determine if something from one of those modules is used without careful inspection (which amounts to running the code in your mind) or running the code, carefully probing for breakage. You will need to reason through all of your code to determine if you need a module or not. A good way to cheat is to avoid any exports via use MODULE::NAME (); You are asking to do something that could potentially be undecidable.

Replies are listed 'Best First'.
Re^2: Removing unused Perl modules
by no longer just digit (Beadle) on Apr 22, 2021 at 06:19 UTC
      That sounds very reasonable.