From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id D533D1F4B4 for ; Sat, 3 Oct 2020 23:12:46 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] manifest: favor Cpanel::JSON::XS Date: Sat, 3 Oct 2020 23:12:46 +0000 Message-Id: <20201003231246.7871-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 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. --- There is more JSON on the way... 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;