From 294ed6299ae14e38a13b226717e8a8b640ef9762 Mon Sep 17 00:00:00 2001 From: Joey Beauvais-Feisthauer Date: Mon, 20 Nov 2023 22:07:50 -0500 Subject: [PATCH] Prepare for future features for `fp` (say that 5 times fast) --- ext/crates/fp/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/crates/fp/Cargo.toml b/ext/crates/fp/Cargo.toml index 30cb2209c..dc61e8939 100644 --- a/ext/crates/fp/Cargo.toml +++ b/ext/crates/fp/Cargo.toml @@ -28,9 +28,13 @@ build_const = "0.2.2" [features] default = ["odd-primes"] + concurrent = ["rayon"] json = ["serde_json", "serde"] + +large-primes = ["odd-primes"] odd-primes = [] +prime-powers = [] [[bench]] name = "criterion"