mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 13:57:59 +00:00
56c2fe8c0c
* Parallelize over cases * Rename the state and driver * Parallelize execution * Update the default config of the tool * Make codebase async * Fix machete * Fix tests & clear node directories before startup * Cleanup the cleanup logic * Rename geth node
34 lines
918 B
TOML
34 lines
918 B
TOML
[package]
|
|
name = "revive-dt-core"
|
|
description = "revive differential testing core utility"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "retester"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
revive-dt-common = { workspace = true }
|
|
revive-dt-compiler = { workspace = true }
|
|
revive-dt-config = { workspace = true }
|
|
revive-dt-format = { workspace = true }
|
|
revive-dt-node = { workspace = true }
|
|
revive-dt-node-interaction = { workspace = true }
|
|
revive-dt-report = { workspace = true }
|
|
|
|
alloy = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
futures = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
semver = { workspace = true }
|
|
temp-dir = { workspace = true }
|