From: Matt S Trout Date: Sat, 20 Jul 2013 17:43:59 +0000 (+0000) Subject: switch to JSON::MaybeXS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f4837d9590958eb0d048243469ea5d22e3812f01;p=scpubgit%2FApp-SCS.git switch to JSON::MaybeXS --- diff --git a/Makefile.PL b/Makefile.PL index f719b51..1c366b0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,7 @@ WriteMakefile( 'Safe::Isa' => 0, 'Syntax::Keyword::Gather' => 0, 'Try::Tiny' => 0, - JSON => 0, + 'Plack::Middleware::SSI' => '0.12', + 'JSON::MaybeXS' => 0, } ); diff --git a/lib/App/SCS/PageSet.pm b/lib/App/SCS/PageSet.pm index 2b4ccf0..26fbe6a 100644 --- a/lib/App/SCS/PageSet.pm +++ b/lib/App/SCS/PageSet.pm @@ -9,7 +9,7 @@ use IO::All; use Try::Tiny; use List::Util qw(reduce); use Module::Runtime qw(use_module); -use JSON; +use JSON::MaybeXS; use Moo; with 'App::SCS::Role::PageChildren';