mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
82d6ca3484
* Bump codec * Fix tests * Patricia trie builds * Introduce trie * Some yak shaving. * Some fixes * Remove RLP ref * Fixes * It builds! * Some tests fixed * Another test fix * Rejig more hashes * substrate-trie::iterator_works test * Update lock * Polish * Docs * Undo incorrect "fix" for tests * Fix nits
34 lines
824 B
TOML
34 lines
824 B
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
parity-codec = { version = "2.0" }
|
|
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 = "0.4"
|
|
byteorder = "1.1"
|
|
trie-root = { git = "https://github.com/paritytech/trie" }
|
|
twox-hash = "1.1.0"
|
|
lazy_static = "1.0"
|
|
parking_lot = "*"
|
|
log = "0.3"
|
|
hash-db = { git = "https://github.com/paritytech/trie" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.1"
|
|
wabt = "0.4"
|
|
hex-literal = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|