mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
0849bcce0e
* emit a custom section from impl_runtime_apis! This change emits a custom section from the impl_runtime_apis! proc macro. Each implemented API will result to emitting a link section `runtime_apis`. During linking all sections with this name will be concatenated and placed into the final wasm binary under the same name. * Introduce `runtime_version` proc macro This macro takes an existing `RuntimeVersion` const declaration, parses it and emits the version information in form of a linking section. Ultimately such a linking section will result into a custom wasm section. * Parse custom wasm section for runtime version * Apply suggestions from code review Co-authored-by: David <dvdplm@gmail.com> * Fix sc-executor integration tests * Nits Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Refactor apis section deserialization * Fix version decoding * Reuse uncompressed value for CallInWasm * Log on decompression error * Simplify if * Reexport proc-macro from sp_version * Merge ReadRuntimeVersionExt * Export `read_embedded_version` * Fix test * Simplify searching for custom section Co-authored-by: David <dvdplm@gmail.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
26 lines
1013 B
TOML
26 lines
1013 B
TOML
[package]
|
|
name = "sp-runtime-interface-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-runtime-interface = { version = "3.0.0", path = "../" }
|
|
sc-executor = { version = "0.9.0", path = "../../../client/executor" }
|
|
sc-executor-common = { version = "0.9.0", path = "../../../client/executor/common" }
|
|
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "../test-wasm" }
|
|
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0", path = "../test-wasm-deprecated" }
|
|
sp-state-machine = { version = "0.9.0", path = "../../state-machine" }
|
|
sp-runtime = { version = "3.0.0", path = "../../runtime" }
|
|
sp-core = { version = "3.0.0", path = "../../core" }
|
|
sp-io = { version = "3.0.0", path = "../../io" }
|
|
tracing = "0.1.25"
|
|
tracing-core = "0.1.17"
|