ipfs-upload/Makefile.PL

20 lines
531 B
Makefile
Raw Permalink Normal View History

2022-11-04 15:03:31 -05:00
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION => '0.01',
PREREQ_PM => {
2022-11-04 19:31:41 -05:00
'Mojolicious' => '9.27',
'Mojolicious::Plugin::OpenAPI' => '5.07',
'Mojo::Pg' => '4.27',
2023-02-22 23:35:46 -06:00
'Mojo::SQLite' => '3.009',
2022-11-09 18:27:35 -06:00
'Crypt::Random' => '1.25',
'Crypt::Argon2' => '0.013',
'Bytes::Random::Secure' => '0.29',
2023-02-06 23:43:37 -06:00
'Number::Bytes::Human' => '0.11',
2022-11-04 15:03:31 -05:00
},
test => {TESTS => 't/*.t'}
);