git.delta.rocks / unique-network / refs/commits / 8a829ea38883

difftreelog

source

pallets/evm-contract-helpers/Cargo.toml1.9 KiBsourcehistory
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"] }910# Substrate11frame-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" }1516# Unique17pallet-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" }1920# Locals21codec = { 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"]