1[package]2name = "pallet-evm-migration"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9 "derive",10] }11ethereum = { version = "0.14.0", default-features = false }12frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }13frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }14frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }15sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }17sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }19pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }20fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }2122[dependencies.codec]23default-features = false24features = ['derive']25package = 'parity-scale-codec'26version = '3.1.2'2728[features]29default = ["std", "runtime-benchmarks"]30std = [31 "frame-support/std",32 "frame-system/std",33 "frame-benchmarking/std",34 "sp-runtime/std",35 "sp-std/std",36 "sp-io/std",37 "sp-core/std",38 "pallet-evm/std",39 "fp-evm/std",40]41runtime-benchmarks = ["frame-benchmarking"]42try-runtime = ["frame-support/try-runtime"]