mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 06:47:56 +00:00
10bfaed461
* wip Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * save to file after all tasks done Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * error out early if the workdir does not exist Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * the compiler statistics Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * allow compiler statistics per implementation Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * save compiler problems Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * add flag whether to extract compiler errors Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> * whitespace Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com> --------- Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
64 lines
2.2 KiB
TOML
64 lines
2.2 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Parity Technologies <admin@parity.io>",
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2024"
|
|
repository = "https://github.com/paritytech/revive-differential-testing.git"
|
|
rust-version = "1.85.0"
|
|
|
|
[workspace.dependencies]
|
|
revive-dt-compiler = { version = "0.1.0", path = "crates/compiler" }
|
|
revive-dt-config = { version = "0.1.0", path = "crates/config" }
|
|
revive-dt-core = { version = "0.1.0", path = "crates/core" }
|
|
revive-dt-format = { version = "0.1.0", path = "crates/format" }
|
|
revive-dt-node = { version = "0.1.0", path = "crates/node" }
|
|
revive-dt-node-interaction = { version = "0.1.0", path = "crates/node-interaction" }
|
|
revive-dt-node-pool = { version = "0.1.0", path = "crates/node-pool" }
|
|
revive-dt-report = { version = "0.1.0", path = "crates/report" }
|
|
revive-dt-solc-binaries = { version = "0.1.0", path = "crates/solc-binaries" }
|
|
|
|
anyhow = "1.0"
|
|
clap = { version = "4", features = ["derive"] }
|
|
env_logger = "0.11.7"
|
|
hex = "0.4.3"
|
|
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
|
|
log = "0.4.26"
|
|
once_cell = "1.21"
|
|
rayon = { version = "1.10" }
|
|
semver = { version = "1.0", features = ["serde"] }
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
serde_json = { version = "1.0", default-features = false, features = ["arbitrary_precision", "std"] }
|
|
sha2 = { version = "0.10.8" }
|
|
temp-dir = { version = "0.1.14" }
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
|
|
|
|
# revive compiler
|
|
revive-solc-json-interface = { git = "https://github.com/paritytech/revive", rev = "3389865af7c3ff6f29a586d82157e8bc573c1a8e" }
|
|
revive-common = { git = "https://github.com/paritytech/revive", rev = "3389865af7c3ff6f29a586d82157e8bc573c1a8e" }
|
|
revive-differential = { git = "https://github.com/paritytech/revive", rev = "3389865af7c3ff6f29a586d82157e8bc573c1a8e" }
|
|
|
|
[workspace.dependencies.alloy]
|
|
version = "0.13.0"
|
|
default-features = false
|
|
features = [
|
|
"json-abi",
|
|
"providers",
|
|
"provider-ipc",
|
|
"provider-debug-api",
|
|
"reqwest",
|
|
"rpc-types",
|
|
"signer-local",
|
|
"std",
|
|
]
|
|
|
|
[profile.bench]
|
|
inherits = "release"
|
|
lto = true
|
|
codegen-units = 1
|