Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

polkadot v0.9.9-rc1 #3605

Merged
merged 50 commits into from
Aug 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
b0fc0a8
Guard against XCM recursive bombs by setting a recursion limit
KiChjang Aug 2, 2021
db667f6
Add test and set a lower recursion limit
KiChjang Aug 2, 2021
d7601e9
Use u32 instead of usize for recursion limit
KiChjang Aug 2, 2021
bd32a66
Make spellcheck happy
KiChjang Aug 2, 2021
07107bb
Cargo fmt
KiChjang Aug 2, 2021
2ea42b0
Limit XCM decoding depth in UMP message processing
KiChjang Aug 3, 2021
83becb3
Modify test to check for recursion in BuyExecution
KiChjang Aug 3, 2021
76d9c7a
Update xcm/xcm-simulator/example/src/lib.rs
KiChjang Aug 3, 2021
08379ba
Make cargo fmt happy
KiChjang Aug 3, 2021
39181b4
WIP for testing recursion limit in WASM
KiChjang Aug 5, 2021
d0adfc4
Revert "WIP for testing recursion limit in WASM"
KiChjang Aug 5, 2021
6281a80
Remove XCM recursion limit test
KiChjang Aug 5, 2021
0a6037d
Add recursion test for XCM message execution
KiChjang Aug 5, 2021
1550e44
Set a more sensible recursion limit
KiChjang Aug 5, 2021
1c75cdb
Cargo fmt
KiChjang Aug 5, 2021
5b65a65
Merge remote-tracking branch 'origin/master' into kckyeung/harden-xcm
KiChjang Aug 5, 2021
8f12346
Implement successful_origin for benchmarks
KiChjang Aug 5, 2021
c8f67dd
Set recursion limit to 8 and create integration tests directory for x…
KiChjang Aug 5, 2021
b9ba7b9
Cargo fmt
KiChjang Aug 5, 2021
39f327a
Add runtime-benchmarks feature to test-runtime
KiChjang Aug 5, 2021
560c6d0
Give up creating ConvertOriginToLocal and use EnsureXcm
KiChjang Aug 6, 2021
a795199
Re-add ConvertOriginToLocal
KiChjang Aug 6, 2021
62dd306
Fix compilation
bkchr Aug 6, 2021
b14ba31
Update xcm/xcm-executor/src/lib.rs
KiChjang Aug 6, 2021
ff2d0b7
Add decoding limit to all versioned XCM decode calls
KiChjang Aug 6, 2021
bfc97ce
Fix recursion limit test
KiChjang Aug 6, 2021
cba7709
Set a lower recursion count for recursion test
KiChjang Aug 6, 2021
c961264
move integration tests to their own folder, fix recursion check in ex…
shawntabrizi Aug 6, 2021
5255c29
Remove xcm-executor integration tests directory
KiChjang Aug 6, 2021
b20f0dd
fix up
shawntabrizi Aug 6, 2021
b9fcef5
Merge branch 'kckyeung/harden-xcm' of /~https://github.com/paritytech/p…
shawntabrizi Aug 6, 2021
7178a88
Update Cargo.lock
shawntabrizi Aug 6, 2021
411e3fc
Update runtime/parachains/src/ump.rs
shawntabrizi Aug 6, 2021
013cb2b
use proper decode limit
shawntabrizi Aug 6, 2021
1f8a1fc
fix decode depth limit
shawntabrizi Aug 6, 2021
82c3ce3
here too
shawntabrizi Aug 6, 2021
66dcd3a
Remove unused import
KiChjang Aug 6, 2021
216c798
remove dbg
shawntabrizi Aug 6, 2021
805ebed
Merge branch 'kckyeung/harden-xcm' of /~https://github.com/paritytech/p…
shawntabrizi Aug 6, 2021
0eb6603
Make CI happy
KiChjang Aug 6, 2021
70fd5e6
Revert decode_all_with_depth_limit changes
KiChjang Aug 7, 2021
206514c
Remove unused import
KiChjang Aug 7, 2021
6892cad
switch substrate & beefy to polkadot-v0.9.9 branch
s3krit Aug 9, 2021
fbb7c87
Companion to #9514 (Remove Filter and use Contains instead) (#3591)
gavofyork Aug 7, 2021
cbf34a5
fix warnings and staking miner
s3krit Aug 9, 2021
e43189f
Companion for #9512 (Support test-runner to submit unsigned_extrinsic…
zjb0807 Aug 7, 2021
c3da311
Merge remote-tracking branch 'origin/kckyeung/harden-xcm' into mp-v0.…
s3krit Aug 10, 2021
bc7e65b
fix XCM hardening
s3krit Aug 10, 2021
a2893ae
remove old migrations (#3609)
s3krit Aug 10, 2021
1d22663
rustfmt
s3krit Aug 10, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
356 changes: 190 additions & 166 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ members = [
"xcm",
"xcm/xcm-builder",
"xcm/xcm-executor",
"xcm/xcm-executor/integration-tests",
"xcm/xcm-simulator",
"xcm/xcm-simulator/example",
"xcm/pallet-xcm",
Expand Down
54 changes: 27 additions & 27 deletions bridges/bin/millau/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,35 +24,35 @@ pallet-bridge-messages = { path = "../../../modules/messages" }

# Substrate Dependencies

frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.9" }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = []
Expand Down
54 changes: 27 additions & 27 deletions bridges/bin/millau/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,35 +28,35 @@ pallet-shift-session-manager = { path = "../../../modules/shift-session-manager"

# Substrate Dependencies

frame-executive = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-support = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-balances = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-randomness-collective-flip = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-session = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-sudo = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-transaction-payment = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-block-builder = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-offchain = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-session = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-std = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-trie = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-version = { git = "/~https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-executive = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-support = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-system = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
frame-system-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-aura = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-balances = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-grandpa = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-randomness-collective-flip = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-session = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-sudo = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-timestamp = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-transaction-payment = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc-runtime-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-api = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-block-builder = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-offchain = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-session = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-trie = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-wasm-builder = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-wasm-builder = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions bridges/bin/millau/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ parameter_types! {

impl frame_system::Config for Runtime {
/// The basic call filter to use in dispatchable.
type BaseCallFilter = frame_support::traits::AllowAll;
type BaseCallFilter = frame_support::traits::Everything;
/// The identifier used to distinguish between accounts.
type AccountId = AccountId;
/// The aggregated dispatch type that is available for extrinsics.
Expand Down Expand Up @@ -214,7 +214,7 @@ impl pallet_bridge_dispatch::Config for Runtime {
type Event = Event;
type MessageId = (bp_messages::LaneId, bp_messages::MessageNonce);
type Call = Call;
type CallFilter = frame_support::traits::AllowAll;
type CallFilter = frame_support::traits::Everything;
type EncodedCall = crate::rialto_messages::FromRialtoEncodedCall;
type SourceChainAccountId = bp_rialto::AccountId;
type TargetChainAccountPublic = MultiSigner;
Expand Down
54 changes: 27 additions & 27 deletions bridges/bin/rialto/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,35 +25,35 @@ rialto-runtime = { path = "../runtime" }
# Substrate Dependencies


frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
node-inspect = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
pallet-transaction-payment-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-basic-authorship = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-cli = { git = "/~https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.9" }
sc-client-api = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-executor = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-finality-grandpa-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-keystore = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-rpc = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-service = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-telemetry = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sc-transaction-pool = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-consensus-aura = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-core = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-finality-grandpa = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-inherents = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
sp-timestamp = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
substrate-frame-rpc-system = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[build-dependencies]
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
frame-benchmarking-cli = { git = "/~https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }

[features]
default = []
Expand Down
Loading