HTML::Restrict 2.1.5 breaks with Moo 1.002000 (see RT#85088)
[gitmo/Moo.git] / lib / Moo / Conflicts.pm
CommitLineData
4b46a4be 1package # hide from PAUSE
2 Moo::Conflicts;
3
4use strict;
5use warnings;
6
7use Dist::CheckConflicts
8 -dist => 'Moo',
9 -conflicts => {
10 # enter conflicting downstream deps here, with the version indicating
11 # the last *broken* version that *does not work*.
040b2738 12 'HTML::Restrict' => '2.1.5',
4b46a4be 13 },
14
15 # these dists' ::Conflicts modules (if they exist) are also checked for
16 # more incompatibilities -- should include all runtime prereqs here.
17 -also => [ qw(
18 Carp
19 Class::Method::Modifiers
20 strictures
21 Module::Runtime
22 Role::Tiny
23 Devel::GlobalDestruction
24 ) ],
25;
26
271;