git.delta.rocks / unique-network / refs/commits / 2c3d5fce3d0a

difftreelog

source

pallets/evm-coder-substrate/Cargo.toml918 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-coder-substrate"5version = "0.1.3"67[dependencies]8parity-scale-codec = { workspace = true }9scale-info = { workspace = true }1011evm-coder = { workspace = true }12evm-core = { workspace = true }1314frame-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 }20sp-weights = { workspace = true }21up-data-structs = { workspace = true }2223evm-coder-substrate-procedural = { path = "./procedural" }24spez = "0.1.2"2526[features]27default = ["std"]28runtime-benchmarks = ['frame-benchmarking']29std = [30	"evm-coder/std",31	"frame-support/std",32	"frame-system/std",33	"pallet-evm/std",34	"sp-core/std",35	"sp-std/std",36	"sp-weights/std",37	'frame-benchmarking/std',38]39try-runtime = ["frame-support/try-runtime"]