mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 10:28:00 +00:00
0513a4befb
This commit updates how logging is done in the differential testing harness to use `tracing` instead of using the `log` crate. This allows us to be able to better associate logs with the cases being executed which makes it easier to debug and understand what the harness is doing.
32 lines
869 B
TOML
32 lines
869 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-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 }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
rayon = { workspace = true }
|
|
revive-solc-json-interface = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
temp-dir = { workspace = true }
|