git.delta.rocks / unique-network / refs/commits / f7d05a5f7609

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]7scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }8frame-support = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }9frame-system = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }10sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }11sp-std = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }12sp-io = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }13sp-core = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.11' }14pallet-evm = { default-features = false, version = "6.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.11" }15fp-evm = { default-features = false, version = "3.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.11" }16pallet-ethereum = { default-features = false, version = "4.0.0-dev", git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.11" }17up-sponsorship = { default-features = false, path = '../../primitives/sponsorship' }1819[dependencies.codec]20default-features = false21features = ['derive']22package = 'parity-scale-codec'23version = '2.3.0'2425[features]26default = ["std"]27std = [28    "frame-support/std",29    "frame-system/std",30    "sp-runtime/std",31    "sp-std/std",32    "sp-io/std",33    "sp-core/std",34    "pallet-evm/std",35    "pallet-ethereum/std",36    "fp-evm/std",37    "up-sponsorship/std",38]