mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-25 14:07:58 +00:00
d9a304d162
Signed-off-by: xermicus <cyrill@parity.io>
27 lines
743 B
TOML
27 lines
743 B
TOML
[package]
|
|
name = "revive-integration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
polkavm = { workspace = true }
|
|
alloy-primitives = { workspace = true }
|
|
alloy-sol-types = { workspace = true }
|
|
hex = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
log = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
revive-solidity = { path = "../solidity" }
|
|
revive-differential = { path = "../differential" }
|
|
revive-llvm-context = { path = "../llvm-context" }
|
|
revive-common = { path = "../common" }
|
|
|
|
[dev-dependencies]
|
|
sha1 = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rayon = { workspace = true }
|