From 4c10137458c95adf45babd388c639c1344b62211 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 3 Oct 2020 23:12:46 +0000 Subject: [PATCH] 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. --- lib/PublicInbox/ManifestJsGz.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.48.1