From 9f7aef7832f12daa07f63b083f500f170f2299f9 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 28 May 2019 20:16:10 +0100 Subject: [PATCH] Move bignum under the "experimental" feature flag Previously it was the "bignum" feature flag --- Cargo.toml | 2 +- circle.yml | 4 ++++ src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b68eff0..ce9bc0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,4 +14,4 @@ wee_alloc = "0.4.4" default = [ "std" ] std = [] debug = [] -bignum = [] +experimental = [] diff --git a/circle.yml b/circle.yml index c1c1c1f..402a919 100644 --- a/circle.yml +++ b/circle.yml @@ -30,3 +30,7 @@ jobs: cargo build --release --no-default-features cargo build --release --features debug cargo build --release --no-default-features --features debug + cargo build --release --features experimental + cargo build --release --no-default-features --features experimental + cargo build --release --features experimental,debug + cargo build --release --no-default-features --features experimental,debug diff --git a/src/lib.rs b/src/lib.rs index 46c61cb..145c623 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,7 +31,7 @@ mod utils; #[cfg(feature = "debug")] pub mod debug; -#[cfg(feature = "bignum")] +#[cfg(feature = "experimental")] pub mod bignum; #[cfg(not(feature = "std"))]