[package]
name = "sc-executor"
version = "0.22.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "A crate that provides means of executing/dispatching calls into the runtime."
documentation = "https://docs.rs/sc-executor"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
lru = "0.8.1"
parking_lot = "0.12.1"
tracing = "0.1.29"
wasmi = "0.13.2"
codec = { package = "parity-scale-codec", version = "3.2.2" }
sc-executor-common = { version = "0.20.0" }
sc-executor-wasmi = { version = "0.20.0" }
sc-executor-wasmtime = { version = "0.20.0" }
sp-api = { version = "16.0.0" }
sp-core = { version = "18.0.0" }
sp-externalities = { version = "0.18.0" }
sp-io = { version = "19.0.0" }
sp-panic-handler = { version = "7.0.0" }
sp-runtime-interface = { version = "15.0.0" }
sp-trie = { version = "18.0.0" }
sp-version = { version = "18.0.0" }
sp-wasm-interface = { version = "12.0.0" }
[dev-dependencies]
array-bytes = "4.1"
assert_matches = "1.3.0"
wat = "1.0"
sc-runtime-test = { path = "runtime-test" }
substrate-test-runtime = { path = "../../test-utils/runtime" }
sp-state-machine = { version = "0.24.0" }
sp-runtime = { version = "20.0.0" }
sp-maybe-compressed-blob = { version = "5.0.0" }
sc-tracing = { path = "../tracing" }
sp-tracing = { version = "9.0.0" }
tracing-subscriber = "0.2.19"
paste = "1.0"
regex = "1.6.0"
criterion = "0.4.0"
env_logger = "0.9"
num_cpus = "1.13.1"
tempfile = "3.3.0"
[[bench]]
name = "bench"
harness = false
[features]
default = ["std"]
std = []
wasm-extern-trace = []