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

difftreelog

source

pallets/evm-transaction-payment/Cargo.toml1.5 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-evm-transaction-payment"5version = "0.1.1"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }12frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }15sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "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[features]21default = ["std"]22std = [23	"fp-evm/std",24	"frame-support/std",25	"frame-system/std",26	"pallet-evm/std",27	"sp-core/std",28	"sp-runtime/std",29	"sp-std/std",30	"up-sponsorship/std",31]32try-runtime = ["frame-support/try-runtime"]