From 4715dba40b09c71c4e2d57fdf671c9645e21e7c6 Mon Sep 17 00:00:00 2001 From: Tsvetomir Dimitrov Date: Wed, 4 Jan 2023 16:01:42 +0200 Subject: [PATCH] Add dev-dependencies for the try-runtime test --- Cargo.lock | 3 +++ runtime/rococo/Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 57ef6419d940..c748b5d956ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8046,6 +8046,7 @@ dependencies = [ "beefy-merkle-tree", "frame-benchmarking", "frame-executive", + "frame-remote-externalities", "frame-support", "frame-system", "frame-system-benchmarking", @@ -8118,12 +8119,14 @@ dependencies = [ "sp-session", "sp-staking", "sp-std", + "sp-tracing", "sp-transaction-pool", "sp-trie", "sp-version", "static_assertions", "substrate-wasm-builder", "tiny-keccak", + "tokio", "xcm", "xcm-builder", "xcm-executor", diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 09c431b189bf..dda042a6e5ce 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -93,9 +93,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] tiny-keccak = { version = "2.0.2", features = ["keccak"] } keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", package = "frame-remote-externalities" } sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } separator = "0.4.1" serde_json = "1.0.81" +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tokio = { version = "1.22.0", features = ["macros"] } [build-dependencies] substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }