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

difftreelog

source

pallets/evm-migration/Cargo.toml1.7 KiBsourcehistory
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] }11frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }13frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }14sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }17sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }19fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }2021[dependencies.codec]22default-features = false23features = ['derive']24package = 'parity-scale-codec'25version = '3.1.2'2627[features]28default = ["std", "runtime-benchmarks"]29std = [30    "frame-support/std",31    "frame-system/std",32    "frame-benchmarking/std",33    "sp-runtime/std",34    "sp-std/std",35    "sp-io/std",36    "sp-core/std",37    "pallet-evm/std",38    "fp-evm/std",39]40runtime-benchmarks = ["frame-benchmarking"]41try-runtime = ["frame-support/try-runtime"]