From: Marius Gavrilescu Date: Sat, 4 Oct 2014 21:28:42 +0000 (+0300) Subject: Switch to JSON::MaybeXS X-Git-Tag: 5999.000_010~1 X-Git-Url: http://git.ieval.ro/?p=gruntmaster-data.git;a=commitdiff_plain;h=91203bd53e7e96ab65976297ea6e95041d5feaac Switch to JSON::MaybeXS --- diff --git a/Makefile.PL b/Makefile.PL index edfa51e..6d1dc29 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,7 @@ WriteMakefile( File::Slurp 0 IO::Prompter 0 Lingua::EN::Inflect 0 - JSON 0 + JSON::MaybeXS 0 PerlX::Maybe 0 Sub::Name 0/, }, diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index 7afcbb9..a12e476 100644 --- a/lib/Gruntmaster/Data.pm +++ b/lib/Gruntmaster/Data.pm @@ -18,7 +18,7 @@ __PACKAGE__->load_namespaces; our $VERSION = '5999.000_009'; use Lingua::EN::Inflect qw/PL_N/; -use JSON qw/decode_json/; +use JSON::MaybeXS qw/decode_json/; use List::Util qw/sum/; use PerlX::Maybe qw/maybe/; use Sub::Name qw/subname/;