1[package]2name = "pallet-evm-migration"3version = "0.1.0"4edition = "2021"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = [8 "derive",9] }10frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }11frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }12frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }13sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }14sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }15sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }16sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }17pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.16" }18fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.16" }1920[dependencies.codec]21default-features = false22features = ['derive']23package = 'parity-scale-codec'24version = '2.3.0'2526[features]27default = ["std", "runtime-benchmarks"]28std = [29 "frame-support/std",30 "frame-system/std",31 "frame-benchmarking/std",32 "sp-runtime/std",33 "sp-std/std",34 "sp-io/std",35 "sp-core/std",36 "pallet-evm/std",37 "fp-evm/std",38]39runtime-benchmarks = ["frame-benchmarking"]