@@ -4,6 +4,11 @@ edition = "2021"
44repository = " https://github.com/zdave-parity/polkadot-bulletin-chain.git"
55
66[workspace .dependencies ]
7+ array-bytes = { version = " 6.1" }
8+ bp-test-utils = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" }
9+ cfg-if = { version = " 1.0" }
10+ clap = { version = " 4.2.5" }
11+ codec = { package = " parity-scale-codec" , version = " 3.7.5" , default-features = false }
712cumulus-pallet-aura-ext = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
813cumulus-pallet-parachain-system = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
914cumulus-pallet-session-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
@@ -13,33 +18,28 @@ cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/polkadot-sdk.
1318cumulus-primitives-aura = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
1419cumulus-primitives-core = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
1520cumulus-primitives-utility = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
16- parachain-info = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " staging-parachain-info" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
17- polkadot-parachain-primitives = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
18- testnet-parachains-constants = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " testnet-parachains-constants" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
19- westend-runtime-constants = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " westend-runtime-constants" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
20- array-bytes = { version = " 6.1" }
21- bp-test-utils = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" }
22- cfg-if = { version = " 1.0" }
23- clap = { version = " 4.2.5" }
24- codec = { package = " parity-scale-codec" , version = " 3.7.5" , default-features = false }
2521futures = { version = " 0.3.21" }
2622hex = { version = " 0.4" }
2723jsonrpsee = { version = " 0.24.3" }
2824log = { version = " 0.4.17" , default-features = false }
25+ parachain-info = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " staging-parachain-info" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
26+ polkadot-parachain-primitives = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
2927scale-info = { version = " 2.11.6" , default-features = false }
3028serde = { version = " 1.0.126" }
3129serde_json = { version = " 1.0.132" , default-features = false }
3230static_assertions = { version = " 1.1" }
31+ testnet-parachains-constants = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " testnet-parachains-constants" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
3332tracing = { version = " 0.1.41" , default-features = false }
33+ westend-runtime-constants = { git = " https://github.com/paritytech/polkadot-sdk.git" , package = " westend-runtime-constants" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
3434
3535# Local workspace members
3636bulletin-polkadot-runtime = { path = " runtimes/bulletin-polkadot" }
37+ bulletin-westend-runtime = { path = " runtimes/bulletin-westend" }
3738pallet-relayer-set = { path = " pallets/relayer-set" , default-features = false }
3839pallet-transaction-storage = { path = " pallets/transaction-storage" , default-features = false }
3940pallet-validator-set = { path = " pallets/validator-set" , default-features = false }
4041pallets-common = { path = " pallets/common" , default-features = false }
4142polkadot-bulletin-chain-runtime = { path = " runtime" }
42- bulletin-westend-runtime = { path = " runtimes/bulletin-westend" }
4343
4444# Polkadot SDK crates (shared git revision)
4545frame-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
@@ -140,19 +140,19 @@ parachains-common = { git = "https://github.com/paritytech/polkadot-sdk.git", re
140140frame-metadata-hash-extension = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
141141
142142# Polkadot runtime common utilities
143+ parachains-runtimes-test-utils = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = true }
143144polkadot-runtime-common = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
144145sp-consensus-aura = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
145146xcm-runtime-apis = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
146- parachains-runtimes-test-utils = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = true }
147147
148148# Additional FRAME pallets used by westend runtime
149149pallet-aura = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
150150pallet-balances = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
151+ pallet-collator-selection = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
151152pallet-message-queue = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
152153pallet-multisig = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
153154pallet-utility = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
154155pallet-xcm-benchmarks = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
155- pallet-collator-selection = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" , default-features = false }
156156
157157# Substrate tooling
158158substrate-build-script-utils = { git = " https://github.com/paritytech/polkadot-sdk.git" , rev = " 41bc46f27067c243d1c0fb7f83260d61c1f97c75" }
0 commit comments