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

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, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }9frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }10sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }11sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }12sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }13sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }14pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }15fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }16pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12" }17up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring" } 18up-evm-mapping = { default-features = false, path = "../../primitives/evm-mapping" }1920[dependencies.codec]21default-features = false22features = ['derive']23package = 'parity-scale-codec'24version = '2.3.0'2526[features]27default = ["std"]28std = [29    "frame-support/std",30    "frame-system/std",31    "sp-runtime/std",32    "sp-std/std",33    "sp-io/std",34    "sp-core/std",35    "pallet-evm/std",36    "pallet-ethereum/std",37    "fp-evm/std",38    "up-sponsorship/std",39    "up-evm-mapping/std",40]