Don't default to use async/await on wasm32

We don't automatically want to make the interface `async` based on the
used architecture, but now require the user to explicitly set the
`async-interface` feature.
This commit is contained in:
Elias Rohrer
2023-01-10 15:05:55 +01:00
parent 2e7a220e39
commit 32912eaa05
4 changed files with 18 additions and 21 deletions

View File

@@ -154,7 +154,7 @@ jobs:
- name: Update toolchain
run: rustup update
- name: Check
run: cargo check --target wasm32-unknown-unknown --features use-esplora-async,dev-getrandom-wasm --no-default-features
run: cargo check --target wasm32-unknown-unknown --features async-interface,use-esplora-async,dev-getrandom-wasm --no-default-features
fmt:
name: Rust fmt