mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 18:37:59 +00:00
8a39be474e
* Move `Externalities` into `substrate-externalities` - `Externalities` now support generic extensions - Split of `primtives-storage` for storage primitive types * Move the externalities scoping into `substrate-externalities` * Fix compilation * Review feedback * Adds macro for declaring extensions * Fix benchmarks * Introduce `ExtensionStore` trait * Last review comments * Implement it for `ExtensionStore`
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.15.0"
|
|
codec = { package = "parity-scale-codec", version = "1.0.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" }
|
|
runtime_version = { package = "sr-version", path = "../sr-version" }
|
|
panic-handler = { package = "substrate-panic-handler", path = "../panic-handler" }
|
|
wasmi = "0.5.1"
|
|
parity-wasm = "0.40.3"
|
|
lazy_static = "1.4.0"
|
|
wasm-interface = { package = "substrate-wasm-interface", path = "../wasm-interface" }
|
|
externalities = { package = "substrate-externalities", path = "../externalities" }
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
libsecp256k1 = "0.3.0"
|
|
tiny-keccak = "1.5.0"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
wabt = "0.9.2"
|
|
hex-literal = "0.2.1"
|
|
runtime-test = { package = "substrate-runtime-test", path = "runtime-test" }
|
|
substrate-client = { path = "../client" }
|
|
substrate-offchain = { path = "../offchain/" }
|
|
state_machine = { package = "substrate-state-machine", path = "../state-machine" }
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|