mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 11:38:01 +00:00
e9c756dced
* updated direct dependencies to parity-wasm * fixed tests and incremented impl_version of the runtime * update wasmi to 0.5.1 in sr-sandbox, bringing all parity-wasm deps up to 0.40
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.14.0"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
runtime_io = { package = "sr-io", path = "../sr-io" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
trie = { package = "substrate-trie", path = "../trie" }
|
|
serializer = { package = "substrate-serializer", path = "../serializer" }
|
|
runtime_version = { package = "sr-version", path = "../sr-version" }
|
|
panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }
|
|
wasm-interface = { package = "substrate-wasm-interface", path = "../wasm-interface" }
|
|
wasmi = "0.5.0"
|
|
parity-wasm = "0.40.1"
|
|
lazy_static = "1.3"
|
|
parking_lot = "0.9.0"
|
|
log = "0.4"
|
|
libsecp256k1 = "0.2.1"
|
|
tiny-keccak = "1.4.2"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.1"
|
|
wabt = "~0.7.4"
|
|
hex-literal = "0.2.0"
|
|
runtime-test = { package = "substrate-runtime-test", path = "runtime-test" }
|
|
substrate-client = { path = "../client" }
|
|
substrate-offchain = { path = "../offchain/" }
|
|
state_machine = { package = "substrate-state-machine", path = "../state-machine" }
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|