Skip to content

Commit fe5cd18

Browse files
committed
fix(ci): remove usage of bitcoin/no-std feature
- remove comment: `# The `no-std` feature it's implied when the `std` feature is disabled.`
1 parent ce16133 commit fe5cd18

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.github/workflows/cont_integration.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ jobs:
5858
- name: Check bdk_chain
5959
working-directory: ./crates/chain
6060
# TODO "--target thumbv6m-none-eabi" should work but currently does not
61-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,hashbrown
61+
run: cargo check --no-default-features --features miniscript/no-std,hashbrown
6262
- name: Check bdk wallet
6363
working-directory: ./crates/wallet
6464
# TODO "--target thumbv6m-none-eabi" should work but currently does not
65-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
65+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
6666
- name: Check esplora
6767
working-directory: ./crates/esplora
6868
# TODO "--target thumbv6m-none-eabi" should work but currently does not
69-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
69+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
7070

7171
check-wasm:
7272
name: Check WASM
@@ -92,10 +92,10 @@ jobs:
9292
uses: Swatinem/[email protected]
9393
- name: Check bdk wallet
9494
working-directory: ./crates/wallet
95-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
95+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
9696
- name: Check esplora
9797
working-directory: ./crates/esplora
98-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,async
98+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,async
9999

100100
fmt:
101101
name: Rust fmt

crates/bitcoind_rpc/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ readme = "README.md"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
# The `no-std` feature it's implied when the `std` feature is disabled.
1716
bitcoin = { version = "0.32.0", default-features = false }
1817
bitcoincore-rpc = { version = "0.19.0" }
1918
bdk_chain = { path = "../chain", version = "0.15", default-features = false }

crates/chain/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ readme = "README.md"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
# The `no-std` feature it's implied when the `std` feature is disabled.
1716
bitcoin = { version = "0.32.0", default-features = false }
1817
serde_crate = { package = "serde", version = "1", optional = true, features = ["derive", "rc"] }
1918

crates/esplora/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ esplora-client = { version = "0.8.0", default-features = false }
1717
async-trait = { version = "0.1.66", optional = true }
1818
futures = { version = "0.3.26", optional = true }
1919

20-
# The `no-std` feature it's implied when the `std` feature is disabled.
2120
bitcoin = { version = "0.32.0", optional = true, default-features = false }
2221
miniscript = { version = "12.0.0", optional = true, default-features = false }
2322

0 commit comments

Comments
 (0)