Skip to content

Commit 019b74c

Browse files
committed
Remove debug feature
1 parent 7927046 commit 019b74c

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-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
@@ -23,7 +23,6 @@ Other modules are available as well, outside of the prelude. Refer to the docume
2323
`ewasm-rust-api` builds with various feature sets:
2424
- `default`: Builds with `wee_alloc` as the global allocator and with the Rust standard library.
2525
- `qimalloc`: Builds with [qimalloc](https://github.com/wasmx/qimalloc) as the global allocator.
26-
- `debug`: Exposes the debugging interface.
2726
- `experimental`: Exposes the experimental bignum system library API.
2827

2928
Further documentation is available [here](https://docs.rs/ewasm_api/).

circle.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,7 @@ jobs:
3535
cargo build --release --no-default-features --features wee_alloc
3636
cargo build --release --no-default-features --features qimalloc
3737
# different feature sets
38-
cargo build --release --features debug
39-
cargo build --release --no-default-features --features debug
4038
cargo build --release --features experimental
4139
cargo build --release --no-default-features --features experimental
42-
cargo build --release --features experimental,debug
43-
cargo build --release --no-default-features --features experimental,debug
4440
cargo build --release --features eth2
4541
cargo build --release --no-default-features --features 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
@@ -47,7 +46,6 @@ mod utils;
4746

4847
pub mod types;
4948

50-
#[cfg(feature = "debug")]
5149
pub mod debug;
5250

5351
#[cfg(feature = "experimental")]
@@ -75,7 +73,6 @@ pub mod prelude {
7573
#[cfg(not(feature = "std"))]
7674
pub use crate::convert::*;
7775

78-
#[cfg(feature = "debug")]
7976
pub use crate::debug;
8077

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

0 commit comments

Comments
 (0)