mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 10:17:56 +00:00
b71445b632
* Modify the structure of the `MinedBlockInformation` * Report the step path to the watcher * Make report format more benchmark friendly * make report more benchmarks friendly * Add more models to the report * Remove corpus from the report * Add step information to the benchmark report * Include the contract information in the report * Add the block information to the report * compute metrics in each report * Cleanup watcher from temp code
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "revive-dt-node"
|
|
description = "abstraction over blockchain nodes"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
alloy = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tower = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
revive-common = { workspace = true }
|
|
revive-dt-common = { workspace = true }
|
|
revive-dt-config = { workspace = true }
|
|
revive-dt-format = { workspace = true }
|
|
revive-dt-node-interaction = { workspace = true }
|
|
revive-dt-report = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
serde_yaml_ng = { workspace = true }
|
|
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
subxt = { workspace = true }
|
|
zombienet-sdk = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
temp-dir = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|