mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
9442c19b48
* implement events handling, implement parent_id for spans & events * add events to sp_io::storage * update test * add tests * adjust limit * let tracing crate handle parent_ids * re-enable current-id tracking * add test for threads with CurrentSpan * fix log level * remove redundant check for non wasm traces * remove duplicate definition in test * Adding conditional events API * prefer explicit parent_id over current, enhance test * limit changes to client::tracing event implementation * remove From impl due to fallback required on parent_id * implement SPAN_LIMIT change event log output * change version of tracing-core * update dependancies * revert limit * remove duplicate dependency * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Matt Rutherford <mattrutherford@users.noreply.github.com> Co-authored-by: Benjamin Kampmann <ben@parity.io> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
24 lines
954 B
TOML
24 lines
954 B
TOML
[package]
|
|
name = "sp-runtime-interface-test"
|
|
version = "2.0.0-rc5"
|
|
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 = "2.0.0-rc5", path = "../" }
|
|
sc-executor = { version = "0.8.0-rc5", path = "../../../client/executor" }
|
|
sp-runtime-interface-test-wasm = { version = "2.0.0-rc5", path = "../test-wasm" }
|
|
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0-rc5", path = "../test-wasm-deprecated" }
|
|
sp-state-machine = { version = "0.8.0-rc5", path = "../../../primitives/state-machine" }
|
|
sp-runtime = { version = "2.0.0-rc5", path = "../../runtime" }
|
|
sp-core = { version = "2.0.0-rc5", path = "../../core" }
|
|
sp-io = { version = "2.0.0-rc5", path = "../../io" }
|
|
tracing = "0.1.18"
|