git.delta.rocks / unique-network / refs/commits / 549eb4c11dfd

difftreelog

source

pallets/evm-migration/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "pallet-evm-migration"3version = "0.1.0"4edition = "2018"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }8frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }9frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }10frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }11sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }12sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }13sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }14sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }16fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }1718[dependencies.codec]19default-features = false20features = ['derive']21package = 'parity-scale-codec'22version = '2.3.0'2324[features]25default = ["std", "runtime-benchmarks"]26std = [27    "frame-support/std",28    "frame-system/std",29    "frame-benchmarking/std",30    "sp-runtime/std",31    "sp-std/std",32    "sp-io/std",33    "sp-core/std",34    "pallet-evm/std",35    "fp-evm/std",36]37runtime-benchmarks = ["frame-benchmarking"]