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

difftreelog

source

pallets/evm-migration/Cargo.toml867 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-migration"5version = "0.1.1"67[dependencies]8# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.9codec = { workspace = true, package = "parity-scale-codec" }1011ethereum = { workspace = true }12frame-benchmarking = { workspace = true, optional = true }13frame-support = { workspace = true }14frame-system = { workspace = true }15pallet-evm = { workspace = true }16scale-info = { workspace = true }17sp-core = { workspace = true }18sp-std = { workspace = true }19sp-io = { workspace = true }2021[features]22default = ["runtime-benchmarks", "std"]23runtime-benchmarks = ["frame-benchmarking"]24std = ["frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-evm/std", "sp-core/std", "sp-std/std", "sp-io/std"]25try-runtime = ["frame-support/try-runtime"]