git.delta.rocks / unique-network / refs/commits / 448eded3df3f

difftreelog

source

pallets/evm-transaction-payment/Cargo.toml1.9 KiBsourcehistory
1[package]2name = "pallet-evm-transaction-payment"3version = "0.1.0"4edition = "2018"56[dependencies]7frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }8frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }9sp-runtime = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }10sp-std = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }11sp-io = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }12sp-core = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }13pallet-evm = { default-features = false, version = "5.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }14fp-evm = { default-features = false, version = "2.0.0", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }15pallet-ethereum = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "injected-transactions-parachain" }16up-sponsorship = { default-features = false, path = '../../primitives/sponsorship' }1718[dependencies.codec]19default-features = false20features = ['derive']21package = 'parity-scale-codec'22version = '2.0.0'2324[features]25default = ["std"]26std = [27    "frame-support/std",28    "frame-system/std",29    "sp-runtime/std",30    "sp-std/std",31    "sp-io/std",32    "sp-core/std",33    "pallet-evm/std",34    "pallet-ethereum/std",35    "fp-evm/std",36    "up-sponsorship/std",37]