git.delta.rocks / unique-network / refs/commits / 3b21e2ddf7e4

difftreelog

source

pallets/unique/Cargo.toml3.2 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# Standart Dependencies3738[dependencies.serde]39default-features = false40features = ['derive']41version = '1.0.130'4243[dependencies.serde-json-core]44default-features = false45version = "0.4"4647[dependencies.ethereum]48version = "0.12.0"49default-features = false5051################################################################################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 = "polkadot-v0.9.21"6566[dependencies.frame-support]67default-features = false68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.21"7071[dependencies.frame-system]72default-features = false73git = "https://github.com/paritytech/substrate"74branch = "polkadot-v0.9.21"7576[dependencies.sp-std]77default-features = false78git = "https://github.com/paritytech/substrate"79branch = "polkadot-v0.9.21"8081# [dependencies.pallet-transaction-payment]82# default-features = false83# git = "https://github.com/paritytech/substrate"84# branch = "polkadot-v0.9.21"8586[dependencies.sp-runtime]87default-features = false88git = "https://github.com/paritytech/substrate"89branch = "polkadot-v0.9.21"9091[dependencies.sp-core]92default-features = false93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.21"9596[dependencies.sp-io]97default-features = false98git = "https://github.com/paritytech/substrate"99branch = "polkadot-v0.9.21"100101################################################################################102# Local Dependencies103[dependencies]104up-data-structs = { default-features = false, path = "../../primitives/data-structs" }105scale-info = { version = "2.0.1", default-features = false, features = [106    "derive",107] }108pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }109pallet-common = { default-features = false, path = "../common" }110evm-coder = { default-features = false, path = '../../crates/evm-coder' }111pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }112pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }