1[package]2name = "pallet-evm-contract-helpers"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9 "derive",10] }11log = { default-features = false, version = "0.4.14" }121314frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }15frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }16sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }17sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }18sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }192021pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }22fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }23up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.24" }242526evm-coder = { default-features = false, path = '../../crates/evm-coder' }27pallet-common = { default-features = false, path = '../../pallets/common' }28pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }29up-data-structs = { default-features = false, path = '../../primitives/data-structs', features = ['serde1'] }3031[dependencies.codec]32default-features = false33features = ['derive']34package = 'parity-scale-codec'35version = '3.1.2'3637[features]38default = ["std"]39std = [40 "frame-support/std",41 "frame-system/std",42 "sp-runtime/std",43 "sp-std/std",44 "sp-core/std",45 "evm-coder/std",46 "pallet-evm-coder-substrate/std",47 "pallet-evm/std",48 "up-sponsorship/std",49]