mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-23 01:27:58 +00:00
854e8d9690
* Introduce a custom kitchensink network * fix formatting * Added `--dev` to `substrate-node` arguments. This commit adds the `--dev` argument to the `substrate-node` to allow the chain to keep advancing as time goes own. We have found that if this option is not added then the chain won't advance forward. * fix clippy warning * fix clippy warning
29 lines
679 B
TOML
29 lines
679 B
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 }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
revive-dt-node-interaction = { workspace = true }
|
|
revive-dt-config = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
temp-dir = { workspace = true }
|
|
tokio = { workspace = true }
|