mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
c132e84572
* Additional externs for ecdsa recovery and keccak * Update core/executor/src/wasm_executor.rs Co-Authored-By: gavofyork <github@gavwood.com> * Update core/executor/src/wasm_executor.rs Co-Authored-By: gavofyork <github@gavwood.com> * Fix grumble * Grumble.
34 lines
756 B
TOML
34 lines
756 B
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
parity-codec = "2.2"
|
|
sr-io = { path = "../sr-io" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
substrate-trie = { path = "../trie" }
|
|
substrate-serializer = { path = "../serializer" }
|
|
substrate-state-machine = { path = "../state-machine" }
|
|
sr-version = { path = "../sr-version" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
wasmi = { version = "0.4.3" }
|
|
byteorder = "1.1"
|
|
lazy_static = "1.0"
|
|
parking_lot = "0.7.1"
|
|
log = "0.4"
|
|
fnv = "1.0.6"
|
|
libsecp256k1 = "0.2.1"
|
|
tiny-keccak = "1.4.2"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.1"
|
|
wabt = "~0.7.4"
|
|
hex-literal = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|