mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 04:28:02 +00:00
76d6a154c1
* Fix the OS FD error * Cache the compiler versions * Allow for auto display impl in declare wrapper type macro * Better logging and fix concurrency issues * Fix tests * Format * Make the code even more concurrent
31 lines
859 B
TOML
31 lines
859 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 }
|
|
dashmap = { workspace = true }
|
|
foundry-compilers-artifacts = { workspace = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|