1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-migration"5version = "0.1.1"67[dependencies]8ethereum = { workspace = true }9frame-benchmarking = { workspace = true, optional = true }10frame-support = { workspace = true }11frame-system = { workspace = true }12pallet-evm = { workspace = true }13parity-scale-codec = { workspace = true }14scale-info = { workspace = true }15sp-core = { workspace = true }16sp-io = { workspace = true }17sp-std = { workspace = true }1819[features]20default = ["runtime-benchmarks", "std"]21runtime-benchmarks = ["frame-benchmarking"]22std = [23 "frame-benchmarking/std",24 "frame-support/std",25 "frame-system/std",26 "pallet-evm/std",27 "sp-core/std",28 "sp-io/std",29 "sp-std/std",30]31try-runtime = ["frame-support/try-runtime"]