mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
9607afd629
* Start refactoring state-machine crate * More improvement to state-machine * Fix tests compilation on master and remove warnings * Fix compilation * Apply suggestions from code review Co-Authored-By: Sergei Pepyakin <sergei@parity.io> * Update core/state-machine/src/basic.rs Co-Authored-By: DemiMarie-parity <48690212+DemiMarie-parity@users.noreply.github.com> * Line width * Update core/primitives/src/storage.rs Co-Authored-By: Benjamin Kampmann <ben.kampmann@googlemail.com> * Update core/state-machine/src/error.rs Co-Authored-By: Benjamin Kampmann <ben.kampmann@googlemail.com> * Review feedback
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.31"
|
|
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 = []
|