mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 20:48:01 +00:00
d2f76b645f
Signed-off-by: xermicus <cyrill@parity.io>
29 lines
671 B
TOML
29 lines
671 B
TOML
[package]
|
|
name = "revive-benchmarks"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
description = "revive compiler benchmarks"
|
|
|
|
[features]
|
|
default = ["bench-pvm-interpreter"]
|
|
bench-pvm-interpreter = ["revive-runner"]
|
|
bench-evm = ["revive-differential"]
|
|
|
|
[dependencies]
|
|
hex = { workspace = true }
|
|
alloy-primitives = { workspace = true }
|
|
|
|
revive-integration = { workspace = true }
|
|
revive-differential = { workspace = true, optional = true }
|
|
revive-runner = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "execute"
|
|
harness = false
|