mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 02:07:56 +00:00
97d0cf1d1c
* Add an optional `targets` field to cases. This PR adds an optional `targets` field to cases which takes presence over that same field in the `Metadata`. The hope from this is to allow us to limit specific tests so that they only run on specific platforms only. * Update the resolc tests submodule * Update the default resolc version to use * Update the default heap-size and stack-size in the cli * Update the report processor
27 lines
602 B
TOML
27 lines
602 B
TOML
[package]
|
|
name = "revive-dt-report-processor"
|
|
description = "revive differential testing report processor utility"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "report-processor"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
revive-dt-report = { workspace = true }
|
|
revive-dt-common = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
strum = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|