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

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.2.1"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]35try-runtime = ["frame-support/try-runtime"]36limit-testing = ["up-data-structs/limit-testing"]37stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]3839################################################################################40# Standart Dependencies4142[dependencies.serde]43default-features = false44features = ['derive']45version = '1.0.130'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.36"6566[dependencies.frame-support]67default-features = false68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.36"7071[dependencies.frame-system]72default-features = false73git = "https://github.com/paritytech/substrate"74branch = "polkadot-v0.9.36"7576[dependencies.sp-std]77default-features = false78git = "https://github.com/paritytech/substrate"79branch = "polkadot-v0.9.36"8081[dependencies.sp-runtime]82default-features = false83git = "https://github.com/paritytech/substrate"84branch = "polkadot-v0.9.36"8586[dependencies.sp-core]87default-features = false88git = "https://github.com/paritytech/substrate"89branch = "polkadot-v0.9.36"9091[dependencies.sp-io]92default-features = false93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.36"9596################################################################################97# Local Dependencies98[dependencies]99up-data-structs = { default-features = false, path = "../../primitives/data-structs" }100scale-info = { version = "2.0.1", default-features = false, features = [101    "derive",102] }103pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }104pallet-common = { default-features = false, path = "../common" }105evm-coder = { default-features = false, path = '../../crates/evm-coder' }106pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }107pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }108pallet-refungible = { default-features = false, path = '../../pallets/refungible' }