File: cpanfile

package info (click to toggle)
libcucumber-tagexpressions-perl 6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: perl: 397; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 553 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl

requires 'perl' => '5.14.4';
requires 'Moo';

# Although List::Util is a core module (better: it's dual life), it only
# grew support for 'any' and 'all' in 1.33, which doesn't come with some
# of the older Perl versions. Specifying the number explicitly makes older
# Perls install this module from CPAN while allowing newer Perls to use the
# version they come with.
requires 'List::Util' => '1.63'; # for 'any' and 'all' functions.

on 'test' => sub {
    requires 'Test2::V0';
    requires 'Test2::Tools::Exception';
    requires 'YAML';
};