diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2022-10-28 10:06:34 +0200 |
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2022-10-28 10:06:34 +0200 |
| commit | 9e187f32172ffa7223418a5154dce4ab5fe6d866 (patch) | |
| tree | b4b2678d7ccfd7566d36f8db1deaea2750b690e7 | |
| parent | a3c0318d45d170fab930b693a9977123f2cbaebd (diff) | |
List::MoreUtils and List::Util are required for bin/hafas-m
| -rw-r--r-- | Build.PL | 2 | ||||
| -rw-r--r-- | cpanfile | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,8 @@ Module::Build->new( 'Digest::MD5' => 0, 'Getopt::Long' => 0, 'JSON' => 0, + 'List::MoreUtils' => 0, + 'List::Util' => 0, 'LWP::UserAgent' => 0, 'LWP::Protocol::https' => 0, }, @@ -4,6 +4,8 @@ requires 'DateTime::Format::Strptime'; requires 'Digest::MD5'; requires 'Getopt::Long'; requires 'JSON'; +requires 'List::MoreUtils'; +requires 'List::Util'; requires 'LWP::UserAgent'; requires 'LWP::Protocol::https'; |
