git.delta.rocks / unique-network / refs/commits / 91e514bdbb72

difftreelog

source

pallets/evm-transaction-payment/Cargo.toml2.0 KiBsourcehistory
1[package]2name = "pallet-evm-transaction-payment"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9    "derive",10] }11frame-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-runtime = { 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" }15sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }18fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }19pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }20up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }21fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }2223[dependencies.codec]24default-features = false25features = ['derive']26package = 'parity-scale-codec'27version = '3.1.2'2829[features]30default = ["std"]31std = [32    "frame-support/std",33    "frame-system/std",34    "sp-runtime/std",35    "sp-std/std",36    "sp-io/std",37    "sp-core/std",38    "pallet-evm/std",39    "pallet-ethereum/std",40    "fp-evm/std",41    "up-sponsorship/std",42    "fp-evm-mapping/std",43]44try-runtime = ["frame-support/try-runtime"]