1[package]2name = "pallet-evm-coder-substrate"3version = "0.1.3"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9 "derive",10] }11sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }12sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }13ethereum = { version = "0.12.0", default-features = false }14evm-coder = { default-features = false, path = "../../crates/evm-coder" }15pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }16pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }17frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }20up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2122[dependencies.codec]23default-features = false24features = ['derive']25package = 'parity-scale-codec'26version = '3.1.2'2728[features]29default = ["std"]30std = [31 "sp-std/std",32 "sp-core/std",33 "ethereum/std",34 "evm-coder/std",35 "pallet-ethereum/std",36 "pallet-evm/std",37 "frame-support/std",38 "frame-system/std",39 'frame-benchmarking/std',40]41runtime-benchmarks = ['frame-benchmarking']42try-runtime = ["frame-support/try-runtime"]