mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
1ccb590d18
* Add Arch Linux installation instructions * Enable tracing heap size * Extract heap * Replace linear allocator with buddy allocator * Fix test The purose of this big block is for the tests to test a failure when the block is too big though. The improved buddy allocation strategy results in this block fitting on the heap now. Hence the increase. * Get rid of memcpy in to_vec() * fixup: Style and comments * fixup: Split Linux instructions by distribution To prevent misunderstandings of people executing both. * fixup: Remove unnecessary types and code * fixup: Make Pointers start from 1, remove some panics, code improvements * fixup: Return 0 on errors * fixup: Move loop to separate function * fixup: Use FnvHashMap instead of HashMap * fixup: Fix error handling * fixup: Use current_size() instead of used_size() * fixup: Fix and document allocation offset * fixup: Remove unnecessary multiplication * fixup: Fix comments * fixup: Remove Arch installation instructions * Revert "Fix test" This reverts commit 292c177df8efaa4658293748a13b1ab1c0b76ea8. * fixup: Remove unused code, improve import * fixup: Proper alignment * fixup: Do not use internal constant in public description * fixup: Add comment regarding invariants * fixup: Move assertion to compile-time check
32 lines
711 B
TOML
32 lines
711 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"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.1"
|
|
wabt = "~0.7.4"
|
|
hex-literal = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|