1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-contract-helpers"5version = "0.3.0"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }91011frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }151617pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }18up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }192021codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }22evm-coder = { default-features = false, path = "../../crates/evm-coder" }23pallet-common = { default-features = false, path = "../../pallets/common" }24pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }25pallet-evm-transaction-payment = { default-features = false, path = "../../pallets/evm-transaction-payment" }26up-data-structs = { default-features = false, path = "../../primitives/data-structs", features = ['serde1'] }2728[features]29default = ["std"]30std = [31 "evm-coder/std",32 "frame-support/std",33 "frame-system/std",34 "pallet-common/std",35 "pallet-evm-coder-substrate/std",36 "pallet-evm/std",37 "sp-core/std",38 "sp-std/std",39 "up-sponsorship/std",40]41stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]42try-runtime = ["frame-support/try-runtime"]