mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 01:08:00 +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
27 lines
802 B
TOML
27 lines
802 B
TOML
[package]
|
|
name = "revive-dt-compiler"
|
|
description = "Library for compiling Solidity contracts to EVM and PVM"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
revive-solc-json-interface = { workspace = true }
|
|
revive-dt-common = { workspace = true }
|
|
revive-dt-config = { workspace = true }
|
|
revive-dt-solc-binaries = { workspace = true }
|
|
revive-common = { workspace = true }
|
|
|
|
alloy = { workspace = true }
|
|
alloy-primitives = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
foundry-compilers-artifacts = { workspace = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|