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

difftreelog

source

pallets/unique/Cargo.toml2.7 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    'serde-json-core/std',24    'frame-support/std',25    'frame-system/std',26    'pallet-evm/std',27    'pallet-common/std',28    'up-data-structs/std',29    'sp-std/std',30    'sp-runtime/std',31    'frame-benchmarking/std',32]33limit-testing = ["up-data-structs/limit-testing"]3435################################################################################36# Substrate Dependencies3738[dependencies.codec]39default-features = false40features = ['derive']41package = 'parity-scale-codec'42version = '3.1.2'4344[dependencies.frame-benchmarking]45default-features = false46optional = true47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.21"4950[dependencies.frame-support]51default-features = false52git = "https://github.com/paritytech/substrate"53branch = "polkadot-v0.9.21"5455[dependencies.frame-system]56default-features = false57git = "https://github.com/paritytech/substrate"58branch = "polkadot-v0.9.21"5960[dependencies.sp-std]61default-features = false62git = "https://github.com/paritytech/substrate"63branch = "polkadot-v0.9.21"6465# [dependencies.pallet-transaction-payment]66# default-features = false67# git = "https://github.com/paritytech/substrate"68# branch = "polkadot-v0.9.21"6970[dependencies.serde]71default-features = false72features = ['derive']73version = '1.0.130'7475[dependencies.serde-json-core]76default-features = false77version = "0.4"7879[dependencies.sp-runtime]80default-features = false81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.21"8384[dependencies.sp-core]85default-features = false86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.21"8889[dependencies.sp-io]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.21"939495################################################################################96# Local Dependencies97[dependencies]98up-data-structs = { default-features = false, path = "../../primitives/data-structs" }99scale-info = { version = "2.0.1", default-features = false, features = [100    "derive",101] }102pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }103pallet-common = { default-features = false, path = "../common" }