1[package]2name = "pallet-evm-contract-helpers"3version = "0.1.0"4edition = "2018"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }8frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }9frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }10sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }11sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }12sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }13evm-coder = { default-features = false, path = '../../crates/evm-coder' }14pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }15pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }16up-sponsorship = { default-features = false, path = '../../primitives/sponsorship' }17log = "0.4.14"1819[dependencies.codec]20default-features = false21features = ['derive']22package = 'parity-scale-codec'23version = '2.3.0'2425[features]26default = ["std"]27std = [28 "frame-support/std",29 "frame-system/std",30 "sp-runtime/std",31 "sp-std/std",32 "sp-core/std",33 "evm-coder/std",34 "pallet-evm-coder-substrate/std",35 "pallet-evm/std",36 "up-sponsorship/std",37]