mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 06:47:56 +00:00
c6eb04b04e
* Basic zombie node definition * [WIP] - Impl EthereumNode for zombie node * Remove unused imports * [WIP] Support substrate node in zombienet network * Impl zombie node resolver && node for zombie node * Spawn eth-rpc on top of collator node * Implement ZombienetPlatform and integrate zombie node with eth rpc * Add wourkaround to run tests * Add few comments * fmt * Replace default transaction request in test * Merge - Fix conficts with main * fmt * Clippy fix * Add polkadot and parachain node to ci * CI - Fetch polkadot binaries from releases * Fix unit test assertion * Minor doc improvements * Change names from ZombieNet to Zombienet and switch from Command to Process * Refactor ZombieNode to cache provider using OnceCell * CI: Cache polkadot binaries and use them if available * Fix conficts with main * Refactor shared_node to return static reference and add shared_state for context access * fmt * Rename ZombienetConfiguration to PolkadotParachainConfiguration and update related usage
40 lines
990 B
TOML
40 lines
990 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 }
|
|
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 }
|
|
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
serde_yaml_ng = { workspace = true }
|
|
|
|
sp-core = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
zombienet-sdk = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
temp-dir = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|