Skip to content

Commit b1f0da7

Browse files
committed
Remove debug feature
1 parent f20b516 commit b1f0da7

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ qimalloc = { version = "0.1", optional = true }
1515
[features]
1616
default = ["std", "wee_alloc"]
1717
std = []
18-
debug = []
1918
experimental = []
2019
eth2 = []

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ Other modules are available as well, outside of the prelude. Refer to the docume
3737
`ewasm-rust-api` builds with various feature sets:
3838
- `default`: Builds with `wee_alloc` as the global allocator and with the Rust standard library.
3939
- `qimalloc`: Builds with [qimalloc](https://github.com/wasmx/qimalloc) as the global allocator.
40-
- `debug`: Exposes the debugging interface.
4140
- `experimental`: Exposes the experimental bignum system library API.
4241

4342
To enable specific features include the dependency as follows:

circle.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,9 @@ jobs:
3737
cargo build --release --no-default-features --features qimalloc
3838
# different feature sets
3939
cargo build --release --no-default-features
40-
cargo build --release --features debug
41-
cargo build --release --no-default-features --features debug
4240
cargo build --release --features experimental
4341
cargo build --release --no-default-features --features experimental
44-
cargo build --release --features experimental,debug
45-
cargo build --release --no-default-features --features experimental,debug
4642
cargo build --release --features eth2
4743
cargo build --release --no-default-features --features eth2
44+
cargo build --release --features experimental,eth2
45+
cargo build --release --no-default-features --features experimental,eth2

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
//! library.
1111
//! - `qimalloc`: Builds with [qimalloc](https://github.com/wasmx/qimalloc) as the global
1212
//! allocator.
13-
//! - `debug`: Exposes the debugging interface.
1413
//! - `experimental`: Exposes the experimental bignum system library API.
1514
//!
1615
//! # Examples
@@ -58,7 +57,6 @@ mod utils;
5857

5958
pub mod types;
6059

61-
#[cfg(feature = "debug")]
6260
pub mod debug;
6361

6462
#[cfg(feature = "experimental")]
@@ -86,7 +84,6 @@ pub mod prelude {
8684
#[cfg(not(feature = "std"))]
8785
pub use crate::convert::*;
8886

89-
#[cfg(feature = "debug")]
9087
pub use crate::debug;
9188

9289
#[cfg(feature = "experimental")]

0 commit comments

Comments
 (0)