mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
8676c25ef4
* executor: Use non wasmi-specific execution in tests. * executor: Move all runtime execution tests into tests file. * executor: Use test_case macro to easily execute tests with different Wasm execution methods. * executor: Convert errors to strings with Display, not Debug. * node-executor: Rewrite benchmarks with criterion. They were not passing compilation before and criterion seems to be more widely used in Substrate. * executor: Begin implementation of Wasm runtime. The implementation demonstrates the outline of the execution, but does not link against the external host functions. * executor: Define and implement basic FunctionExecutor. The SandboxCapabilities::invoke is still left unimplemented. * executor: Implement host function trampoline generation. * executor: Instantiate and link runtime module to env module. * executor: Provide input data during wasmtime execution. * executor: Implement SandboxCapabilites::invoke for wasmtime executor. * executor: Integrate and test wasmtime execution method. * executor: Improve FunctionExecution error messages. * Scope the unsafe blocks to be smaller. * Rename TrampolineState to EnvState. * Let EnvState own its own compiler instead of unsafe lifetime cast. * Refactor out some common wasmi/wasmtime logic. * Typos and cosmetic changes. * More trampoline comments. * Cargo.lock update. * cli: CLI option for running Substrate with compiled Wasm execution. * executor: Switch dependency from fork to official wasmtime repo. * Quiet down cranelift logs. * Explicitly catch panics during host calls. We do this to ensure that panics do not cross language boundaries. * Additional checks and clarifications in make_trampoline. * Fixes after merge from master and panic safety for wasmtime instantiation.
46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
name = "substrate-cli"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate CLI interface."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
derive_more = "0.15.0"
|
|
env_logger = "0.7.0"
|
|
log = "0.4.8"
|
|
atty = "0.2.13"
|
|
regex = "1.3.1"
|
|
time = "0.1.42"
|
|
ansi_term = "0.12.1"
|
|
lazy_static = "1.4.0"
|
|
app_dirs = "1.2.1"
|
|
tokio = "0.1.22"
|
|
futures = "0.1.29"
|
|
futures03 = { package = "futures-preview", version = "=0.3.0-alpha.19", features = ["compat"] }
|
|
fdlimit = "0.1.1"
|
|
exit-future = "0.1.4"
|
|
serde_json = "1.0.41"
|
|
panic-handler = { package = "substrate-panic-handler", path = "../../core/panic-handler" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
header-metadata = { package = "substrate-header-metadata", path = "../../core/client/header-metadata" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
service = { package = "substrate-service", path = "../../core/service", default-features = false }
|
|
state-machine = { package = "substrate-state-machine", path = "../../core/state-machine" }
|
|
substrate-telemetry = { path = "../../core/telemetry" }
|
|
keyring = { package = "substrate-keyring", path = "../keyring" }
|
|
names = "0.11.0"
|
|
structopt = "0.3.3"
|
|
rpassword = "4.0.1"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|
|
|
|
[features]
|
|
wasmtime = [
|
|
"service/wasmtime",
|
|
]
|