mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
2217c1e9a1
* WiP. * Implement offchain storage APIs. * Change compare_and_set to return bool. * Add offchain http test. * Fix tests. * Bump spec version. * Fix warnings and test. * Fix compilation. * Remove unused code. * Introduce Local (fork-aware) and Persistent storage. * Fix borked merge. * Prevent warning on depreacated client.backend * Fix long lines. * Clean up dependencies. * Update core/primitives/src/offchain.rs Co-Authored-By: André Silva <andre.beat@gmail.com> * Update core/primitives/src/offchain.rs Co-Authored-By: André Silva <andre.beat@gmail.com>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "substrate-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.14.0"
|
|
parity-codec = "4.1.1"
|
|
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" }
|
|
wasmi = { version = "0.4.3" }
|
|
byteorder = "1.1"
|
|
lazy_static = "1.0"
|
|
parking_lot = "0.8.0"
|
|
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.2.0"
|
|
substrate-client = { path = "../client" }
|
|
substrate-offchain = { path = "../offchain/" }
|
|
|
|
[features]
|
|
default = []
|
|
wasm-extern-trace = []
|