fixup dependency versions
[scpubgit/Object-Remote.git] / Makefile.PL
CommitLineData
9e72f0cf 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7WriteMakefile(
8885b26f 8 NAME => 'Object::Remote',
9e72f0cf 9 VERSION_FROM => 'lib/Object/Remote.pm',
10 PREREQ_PM => {
f6d11d2f 11 Moo => 1.000005,
12 'Module::Runtime' => 0.013,
13 'JSON::PP' => 2.27200,
14 'CPS::Future' => 0.17,
15 'Class::C3' => 0.24, # required to fatpack Moo
9e72f0cf 16 },
80d18f39 17 EXE_FILES => [
18 'bin/object-remote-node',
19 'bin/object-remote-slave',
20 'bin/remoterepl',
21 ],
9e72f0cf 22);