Skip to content

Commit 6d6ed25

Browse files
authored
include std features in primitives imported by nodes (#1259)
1 parent cebd89f commit 6d6ed25

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

chains/orchestrator-relays/node/tanssi-relay-service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ telemetry = { workspace = true }
4343
beefy-primitives = { workspace = true }
4444
consensus_common = { workspace = true }
4545
pallet-transaction-payment = { workspace = true }
46-
sp-api = { workspace = true }
46+
sp-api = { workspace = true, features = [ "std" ] }
4747
sp-authority-discovery = { workspace = true }
4848
sp-block-builder = { workspace = true }
4949
sp-blockchain = { workspace = true }

client/consensus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sc-consensus-slots = { workspace = true }
1919
sc-telemetry = { workspace = true }
2020
sc-transaction-pool = { workspace = true }
2121
sc-transaction-pool-api = { workspace = true }
22-
sp-api = { workspace = true }
22+
sp-api = { workspace = true, features = [ "std" ] }
2323
sp-application-crypto = { workspace = true, features = [ "full_crypto", "std" ] }
2424
sp-block-builder = { workspace = true }
2525
sp-blockchain = { workspace = true }
@@ -60,7 +60,7 @@ polkadot-overseer = { workspace = true }
6060
polkadot-primitives = { workspace = true }
6161

6262
# Nimbus Dependencies
63-
async-backing-primitives = { workspace = true }
63+
async-backing-primitives = { workspace = true, features = [ "std" ] }
6464
nimbus-primitives = { workspace = true, features = [ "std" ] }
6565

6666
# Frontier Dependencies

client/service-container-chain-spawner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ cumulus-primitives-core = { workspace = true }
8282
cumulus-relay-chain-interface = { workspace = true }
8383

8484
# Nimbus
85-
async-backing-primitives = { workspace = true }
85+
async-backing-primitives = { workspace = true, features = [ "std" ] }
8686
nimbus-consensus = { workspace = true }
8787
nimbus-primitives = { workspace = true }
8888

0 commit comments

Comments
 (0)