git.delta.rocks / unique-network / refs/commits / 2f9c8d434e2f

difftreelog

source

pallets/unique/Cargo.toml4.5 KiBsourcehistory
1################################################################################2# Package34[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-unique'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = '0.1.0'1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']20std = [21    'codec/std',22    'serde/std',23    'frame-support/std',24    'frame-system/std',25    'pallet-balances/std',26    'pallet-evm/std',27    'pallet-timestamp/std',28    'pallet-randomness-collective-flip/std',29    'pallet-transaction-payment/std',30    'pallet-common/std',31    'pallet-fungible/std',32    'pallet-nonfungible/std',33    'pallet-refungible/std',34    'fp-evm/std',35    'up-data-structs/std',36    'up-sponsorship/std',37    'fp-evm-mapping/std',38    'sp-std/std',39    'sp-api/std',40    'sp-runtime/std',41    'frame-benchmarking/std',42    'ethereum/std',43    'rlp/std',4445    'primitive-types/std',46    'evm-coder/std',47    'pallet-evm-coder-substrate/std',48]49limit-testing = ["up-data-structs/limit-testing"]5051################################################################################52# Substrate Dependencies5354[dependencies.codec]55default-features = false56features = ['derive']57package = 'parity-scale-codec'58version = '3.1.2'5960[dependencies.frame-benchmarking]61default-features = false62optional = true63git = 'https://github.com/paritytech/substrate'64branch = 'master'6566[dependencies.frame-support]67default-features = false68git = 'https://github.com/paritytech/substrate'69branch = 'master'7071[dependencies.frame-system]72default-features = false73git = 'https://github.com/paritytech/substrate'74branch = 'master'7576[dependencies.pallet-balances]77default-features = false78git = 'https://github.com/paritytech/substrate'79branch = 'master'8081[dependencies.pallet-timestamp]82default-features = false83git = 'https://github.com/paritytech/substrate'84branch = 'master'8586[dependencies.pallet-randomness-collective-flip]87default-features = false88git = 'https://github.com/paritytech/substrate'89branch = 'master'9091[dependencies.sp-std]92default-features = false93git = 'https://github.com/paritytech/substrate'94branch = 'master'9596[dependencies.pallet-transaction-payment]97default-features = false98git = 'https://github.com/paritytech/substrate'99branch = 'master'100101[dependencies.serde]102default-features = false103features = ['derive']104version = '1.0.130'105106[dependencies.sp-runtime]107default-features = false108git = 'https://github.com/paritytech/substrate'109branch = 'master'110111[dependencies.sp-core]112default-features = false113git = 'https://github.com/paritytech/substrate'114branch = 'master'115116[dependencies.sp-io]117default-features = false118git = 'https://github.com/paritytech/substrate'119branch = 'master'120121122################################################################################123# Local Dependencies124[dependencies]125up-data-structs = { default-features = false, path = "../../primitives/data-structs" }126127scale-info = { version = "2.0.1", default-features = false, features = [128    "derive",129] }130ethereum = { version = "0.12.0", default-features = false }131rlp = { default-features = false, version = "0.5.0" }132sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }133134up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = 'master' }135fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }136evm-coder = { default-features = false, path = "../../crates/evm-coder" }137pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }138primitive-types = { version = "0.11.1", default-features = false, features = [139    "serde_no_std",140] }141142pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }143pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }144fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }145hex-literal = "0.3.3"146147pallet-common = { default-features = false, path = "../common" }148pallet-fungible = { default-features = false, path = "../fungible" }149pallet-nonfungible = { default-features = false, path = "../nonfungible" }150pallet-refungible = { default-features = false, path = "../refungible" }