mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
9d23d2a25a
* bump crates to v2.0.0 * fix crate authors * bump node runtime spec_version * remove unused import for no-std
33 lines
953 B
TOML
33 lines
953 B
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
parity-codec = "3.3"
|
|
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" }
|
|
state_machine = { package = "substrate-state-machine", path = "../state-machine" }
|
|
runtime_version = { package = "sr-version", path = "../sr-version" }
|
|
panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }
|
|
wasmi = { version = "0.4.3" }
|
|
byteorder = "1.1"
|
|
lazy_static = "1.0"
|
|
parking_lot = "0.7.1"
|
|
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"
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|