mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
f10d8e177d
* First effort * API versioning * Introduce validate_transaction * Introduce the API plus fixes. * Docs * Typo * Add longevity parameter to transaction validity info.
33 lines
704 B
TOML
33 lines
704 B
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
parity-codec = { version = "1.1" }
|
|
sr-io = { path = "../sr-io" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
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"
|
|
triehash = "0.2"
|
|
twox-hash = "1.1.0"
|
|
lazy_static = "1.0"
|
|
parking_lot = "*"
|
|
log = "0.3"
|
|
hashdb = "0.2.1"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.1"
|
|
wabt = "0.4"
|
|
hex-literal = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|