From: Eric Wong Date: Sat, 3 Oct 2020 23:12:46 +0000 (+0000) Subject: manifest: favor Cpanel::JSON::XS X-Git-Tag: v1.7.0~1713 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=4c10137458c95adf45babd388c639c1344b62211;p=public-inbox.git manifest: favor Cpanel::JSON::XS JSON::MaybeXS already favors Cpanel::JSON::XS (and has for many years, now). Allow users to skip installing JSON::MaybeXS if they want an XS-based JSON implementation. --- diff --git a/lib/PublicInbox/ManifestJsGz.pm b/lib/PublicInbox/ManifestJsGz.pm index f98d9d01..16d2a87c 100644 --- a/lib/PublicInbox/ManifestJsGz.pm +++ b/lib/PublicInbox/ManifestJsGz.pm @@ -16,7 +16,7 @@ use HTTP::Date qw(time2str); *try_cat = \&PublicInbox::Inbox::try_cat; our $json; -for my $mod (qw(JSON::MaybeXS JSON JSON::PP)) { +for my $mod (qw(Cpanel::JSON::XS JSON::MaybeXS JSON JSON::PP)) { eval "require $mod" or next; # ->ascii encodes non-ASCII to "\uXXXX" $json = $mod->new->ascii(1) and last;