Skip to content

Commit

Permalink
Move bignum under the "experimental" feature flag
Browse files Browse the repository at this point in the history
Previously it was the "bignum" feature flag
  • Loading branch information
axic committed May 28, 2019
1 parent 88c135a commit ee0bbb5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ wee_alloc = "0.4.4"
default = [ "std" ]
std = []
debug = []
bignum = []
experimental = []
4 changes: 4 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))]
Expand Down

0 comments on commit ee0bbb5

Please sign in to comment.