1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-migration"5version = "0.1.1"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9ethereum = { version = "0.14.0", default-features = false }10frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }11frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }14scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }15sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1718[features]19default = ["runtime-benchmarks", "std"]20runtime-benchmarks = ["frame-benchmarking"]21std = ["frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-evm/std", "sp-core/std", "sp-std/std"]22try-runtime = ["frame-support/try-runtime"]