mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 00:17:56 +00:00
7711f5266e
* Statically register host WASM functions * Fix `substrate-test-client` compilation * Move `ExtendedHostFunctions` to `sp-wasm-interface` * Fix `sp-runtime-interface` tests' compilation * Fix `sc-executor-wasmtime` tests' compilation * Use `runtime_interface` macro in `test-runner` * Fix `sc-executor` tests' compilation * Reformatting/`rustfmt` * Add an extra comment regarding the `H` generic arg in `create_runtime` * Even more `rustfmt` * Depend on `wasmtime` without default features in `sp-wasm-interface` * Bump version of `sp-wasm-interface` to 4.0.1 * Bump `sp-wasm-interface` in `Cargo.lock` too * Bump all of the `sp-wasm-interface` requirements to 4.0.1 Maybe this will appease cargo-unleash? * Revert "Bump all of the `sp-wasm-interface` requirements to 4.0.1" This reverts commit 0f7ccf8e0f371542861121b145ab87af6541ac30. * Make `cargo-unleash` happy (maybe) * Use `cargo-unleash` to bump the crates' versions * Align to review comments
60 lines
2.3 KiB
TOML
60 lines
2.3 KiB
TOML
[package]
|
|
name = "test-runner"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
# client deps
|
|
sc-executor = { path = "../../client/executor" }
|
|
sc-service = { path = "../../client/service" }
|
|
sc-informant = { path = "../../client/informant" }
|
|
sc-network = { path = "../../client/network" }
|
|
sc-cli = { path = "../../client/cli" }
|
|
sc-basic-authorship = { path = "../../client/basic-authorship" }
|
|
sc-rpc = { path = "../../client/rpc" }
|
|
sc-transaction-pool = { path = "../../client/transaction-pool" }
|
|
grandpa = { package = "sc-finality-grandpa", path = "../../client/finality-grandpa" }
|
|
sp-finality-grandpa = { path = "../../primitives/finality-grandpa" }
|
|
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
|
|
sc-consensus-babe = { path = "../../client/consensus/babe" }
|
|
sc-consensus = { path = "../../client/consensus/common" }
|
|
sc-transaction-pool-api = { path = "../../client/transaction-pool/api" }
|
|
sc-client-api = { path = "../../client/api" }
|
|
sc-rpc-server = { path = "../../client/rpc-servers" }
|
|
manual-seal = { package = "sc-consensus-manual-seal", path = "../../client/consensus/manual-seal" }
|
|
|
|
# primitive deps
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-block-builder = { path = "../../primitives/block-builder" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-session = { path = "../../primitives/session" }
|
|
sp-offchain = { path = "../../primitives/offchain" }
|
|
sp-inherents = { path = "../../primitives/inherents" }
|
|
sp-keyring = { path = "../../primitives/keyring" }
|
|
|
|
sp-externalities = { path = "../../primitives/externalities" }
|
|
sp-state-machine = { path = "../../primitives/state-machine" }
|
|
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
|
|
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
|
|
|
|
# pallets
|
|
frame-system = { path = "../../frame/system" }
|
|
|
|
log = "0.4.8"
|
|
futures = "0.3.16"
|
|
tokio = { version = "1.13", features = ["signal"] }
|
|
# Calling RPC
|
|
jsonrpc-core = "18.0"
|
|
num-traits = "0.2.14"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
# This is here so that we can use the `runtime_interface` procedural macro
|
|
std = []
|