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

difftreelog

source

pallets/unique/Cargo.toml3.1 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.3"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-evm/std',26    'pallet-common/std',27    'up-data-structs/std',28    'sp-std/std',29    'sp-runtime/std',30    'frame-benchmarking/std',31    'evm-coder/std',32    'pallet-evm-coder-substrate/std',33    'pallet-nonfungible/std',34]35limit-testing = ["up-data-structs/limit-testing"]3637################################################################################38# Standart Dependencies3940[dependencies.serde]41default-features = false42features = ['derive']43version = '1.0.130'4445[dependencies.ethereum]46version = "0.12.0"47default-features = false4849################################################################################50# Substrate Dependencies5152[dependencies.codec]53default-features = false54features = ['derive']55package = 'parity-scale-codec'56version = '3.1.2'5758[dependencies.frame-benchmarking]59default-features = false60optional = true61git = "https://github.com/paritytech/substrate"62branch = "polkadot-v0.9.27"6364[dependencies.frame-support]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.27"6869[dependencies.frame-system]70default-features = false71git = "https://github.com/paritytech/substrate"72branch = "polkadot-v0.9.27"7374[dependencies.sp-std]75default-features = false76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.27"7879[dependencies.sp-runtime]80default-features = false81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.27"8384[dependencies.sp-core]85default-features = false86git = "https://github.com/paritytech/substrate"87branch = "polkadot-v0.9.27"8889[dependencies.sp-io]90default-features = false91git = "https://github.com/paritytech/substrate"92branch = "polkadot-v0.9.27"9394################################################################################95# Local Dependencies96[dependencies]97up-data-structs = { default-features = false, path = "../../primitives/data-structs" }98scale-info = { version = "2.0.1", default-features = false, features = [99    "derive",100] }101pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }102pallet-common = { default-features = false, path = "../common" }103evm-coder = { default-features = false, path = '../../crates/evm-coder' }104pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }105pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }106pallet-refungible = { default-features = false, path = '../../pallets/refungible' }