1234[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 'frame-support/std',23 'frame-system/std',24 'pallet-evm/std',25 'pallet-common/std',26 'up-data-structs/std',27 'sp-std/std',28 'sp-runtime/std',29 'frame-benchmarking/std',30]31limit-testing = ["up-data-structs/limit-testing"]3233343536[dependencies.codec]37default-features = false38features = ['derive']39package = 'parity-scale-codec'40version = '3.1.2'4142[dependencies.frame-benchmarking]43default-features = false44optional = true45git = "https://github.com/paritytech/substrate"46branch = "polkadot-v0.9.21"4748[dependencies.frame-support]49default-features = false50git = "https://github.com/paritytech/substrate"51branch = "polkadot-v0.9.21"5253[dependencies.frame-system]54default-features = false55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.21"5758[dependencies.sp-std]59default-features = false60git = "https://github.com/paritytech/substrate"61branch = "polkadot-v0.9.21"6263[dependencies.sp-runtime]64default-features = false65git = "https://github.com/paritytech/substrate"66branch = "polkadot-v0.9.21"6768[dependencies.sp-core]69default-features = false70git = "https://github.com/paritytech/substrate"71branch = "polkadot-v0.9.21"7273[dependencies.sp-io]74default-features = false75git = "https://github.com/paritytech/substrate"76branch = "polkadot-v0.9.21"7778798081[dependencies]82up-data-structs = { default-features = false, path = "../../primitives/data-structs" }83scale-info = { version = "2.0.1", default-features = false, features = [84 "derive",85] }86pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }87pallet-common = { default-features = false, path = "../common" }