mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
bf49b00c90
* Link substrate issue tracker in panic * Replace allocator with freeing-bump allocator * Revert me: Panic on double allocate/free * Revert me: Add shallow benchmark for a first impression * Revert "Revert me: Add shallow benchmark for a first impression" This reverts commit 5f0d4df39395eb55c9ec2d6fe1ed992533475fec. * Revert "Revert me: Panic on double allocate/free" This reverts commit a114df7d6cfc21d60af396ccca02e5c8205db6ce. * Rename heap to FreeingBumpHeapAllocator * Rename heap.rs to allocator.rs * Use sandbox heap * Move functions * Move variables into constructor * Revert "Move variables into constructor" This reverts commit f46fa0d0cdf4ea97760ccce58003b0d33f433743. * Remove unnecessary casts * Add comment for new parameter * Improve typing * Move variables into constructor * Avoid dynamic allocation * Remove unused variables * Revert "Link substrate issue tracker in panic" This reverts commit 32dfa1d02bcf881d1d514a930fcc0fdf3c5f8e08. In the meantime this was fixed in https://github.com/paritytech/substrate/pull/1667. * Improve naming * Only assert in debug mode * Remove dynamic allocation
35 lines
988 B
TOML
35 lines
988 B
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
parity-codec = "3.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" }
|
|
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" }
|
|
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"
|
|
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 = []
|