git.delta.rocks / unique-network / refs/commits / f7d05a5f7609

difftreelog

source

pallets/evm-migration/Cargo.toml1.9 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, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }9frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }10frame-benchmarking = { default-features = false, version = '4.0.0-dev', optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }11sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }12sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }13sp-io = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }14sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }15pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.11" }16fp-evm = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.11" }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"]