1[package]2name = "pallet-evm-contract-helpers"3version = "0.1.0"4edition = "2021"56[dependencies]7scale-info = { version = "1.0.0", default-features = false, features = [8 "derive",9] }10frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }11frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }12sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }13sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }14sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }15evm-coder = { default-features = false, path = '../../crates/evm-coder' }16pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }17pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.16" }18up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.16' }19log = "0.4.14"2021[dependencies.codec]22default-features = false23features = ['derive']24package = 'parity-scale-codec'25version = '2.3.0'2627[features]28default = ["std"]29std = [30 "frame-support/std",31 "frame-system/std",32 "sp-runtime/std",33 "sp-std/std",34 "sp-core/std",35 "evm-coder/std",36 "pallet-evm-coder-substrate/std",37 "pallet-evm/std",38 "up-sponsorship/std",39]