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

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    'evm-coder/std',33    'pallet-evm-coder-substrate/std',34    'pallet-nonfungible/std',35]36limit-testing = ["up-data-structs/limit-testing"]3738################################################################################39# Standart Dependencies4041[dependencies.serde]42default-features = false43features = ['derive']44version = '1.0.130'4546[dependencies.serde-json-core]47default-features = false48version = "0.4"4950[dependencies.ethereum]51version = "0.12.0"52default-features = false5354################################################################################55# Substrate Dependencies5657[dependencies.codec]58default-features = false59features = ['derive']60package = 'parity-scale-codec'61version = '3.1.2'6263[dependencies.frame-benchmarking]64default-features = false65optional = true66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.21"6869[dependencies.frame-support]70default-features = false71git = "https://github.com/paritytech/substrate"72branch = "polkadot-v0.9.21"7374[dependencies.frame-system]75default-features = false76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.21"7879[dependencies.sp-std]80default-features = false81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.21"8384# [dependencies.pallet-transaction-payment]85# default-features = false86# git = "https://github.com/paritytech/substrate"87# branch = "polkadot-v0.9.21"8889[dependencies.sp-runtime]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.21"9394[dependencies.sp-core]95default-features = false96git = "https://github.com/paritytech/substrate"97branch = "polkadot-v0.9.21"9899[dependencies.sp-io]100default-features = false101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.21"103104################################################################################105# Local Dependencies106[dependencies]107up-data-structs = { default-features = false, path = "../../primitives/data-structs" }108scale-info = { version = "2.0.1", default-features = false, features = [109    "derive",110] }111pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }112pallet-common = { default-features = false, path = "../common" }113evm-coder = { default-features = false, path = '../../crates/evm-coder' }114pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }115pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }