1[package]2name = "pallet-evm-coder-substrate"3version = "0.1.0"4edition = "2018"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }8sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }9sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }10ethereum = { version = "0.9", git = "https://github.com/purestake/ethereum", branch = "joshy-scale-info", default-features = false }11evm-coder = { default-features = false, path = "../../crates/evm-coder" }12pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }13pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }14frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }1617[dependencies.codec]18default-features = false19features = ['derive']20package = 'parity-scale-codec'21version = '2.3.0'2223[features]24default = ["std"]25std = [26 "sp-std/std",27 "sp-core/std",28 "ethereum/std",29 "evm-coder/std",30 "pallet-ethereum/std",31 "pallet-evm/std",32 "frame-support/std",33 "frame-system/std",34]