Skip to content

Commit 42553b1

Browse files
committed
Drop fromwat and wabt as a dependency
1 parent 6cd5856 commit 42553b1

File tree

4 files changed

+0
-113
lines changed

4 files changed

+0
-113
lines changed

.circleci/config.yml

-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,11 @@ jobs:
3636
cargo build --release
3737
# Explicitly move into the libchisel directory to properly build with features
3838
# FIXME: make this work in workspace
39-
cd libchisel && cargo build --release --features wabt && cd ..
4039
cd libchisel && cargo build --release --features binaryen && cd ..
4140
- run:
4241
name: Test
4342
command: |
4443
cargo test
4544
# Explicitly move into the libchisel directory to properly build with features
4645
# FIXME: make this work in workspace
47-
cd libchisel && cargo test --features wabt && cd ..
4846
cd libchisel && cargo test --features binaryen && cd ..

libchisel/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ edition = "2018"
1414
binaryen = { version = "0.8", optional = true }
1515
parity-wasm = "^0.40.2"
1616
failure = "0.1.5"
17-
wabt = { version = "0.8.0", optional = true }
1817
wasm-snip = "0.2.0"
1918

2019
[features]

libchisel/src/fromwat.rs

-108
This file was deleted.

libchisel/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ pub mod checkfloat;
1010
pub mod checkstartfunc;
1111
pub mod deployer;
1212
pub mod dropsection;
13-
#[cfg(feature = "wabt")]
14-
pub mod fromwat;
1513
pub mod remapimports;
1614
pub mod remapstart;
1715
pub mod repack;

0 commit comments

Comments
 (0)