git.delta.rocks / unique-network / refs/commits / 0ba1adb79fd8

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml877 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-coder-substrate"5version = "0.1.3"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" }1011scale-info = { workspace = true }1213evm-coder = { workspace = true }14frame-benchmarking = { workspace = true, optional = true }15frame-support = { workspace = true }16frame-system = { workspace = true }17pallet-evm = { workspace = true }18sp-core = { workspace = true }19sp-std = { workspace = true }20up-data-structs = { workspace = true }2122[features]23default = ["std"]24runtime-benchmarks = ['frame-benchmarking']25std = [26	"evm-coder/std",27	"frame-support/std",28	"frame-system/std",29	"pallet-evm/std",30	"sp-core/std",31	"sp-std/std",32	'frame-benchmarking/std',33]34try-runtime = ["frame-support/try-runtime"]