1234[package]5authors = ['Unique Network <support@uniquenetwork.io>']6build = 'build.rs'7description = 'Substrate node nft'8edition = '2018'9homepage = 'https://unique.network'10license = 'All Rights Reserved'11name = 'nft-runtime'12repository = 'https://github.com/usetech-llc/nft_private/'13version = '0.9.12'1415[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']1718[features]19default = ['std']20runtime-benchmarks = [21 'hex-literal',22 'frame-benchmarking',23 'frame-support/runtime-benchmarks',24 'frame-system-benchmarking',25 'frame-system/runtime-benchmarks',26 'pallet-ethereum/runtime-benchmarks',27 'pallet-evm-migration/runtime-benchmarks',28 'pallet-evm-coder-substrate/runtime-benchmarks',29 'pallet-balances/runtime-benchmarks',30 'pallet-timestamp/runtime-benchmarks',31 'pallet-common/runtime-benchmarks',32 'pallet-fungible/runtime-benchmarks',33 'pallet-refungible/runtime-benchmarks',34 'pallet-nonfungible/runtime-benchmarks',35 'pallet-nft/runtime-benchmarks',36 'pallet-inflation/runtime-benchmarks',37 'pallet-xcm/runtime-benchmarks',38 'sp-runtime/runtime-benchmarks',39 'xcm-builder/runtime-benchmarks',40]41std = [42 'codec/std',43 'cumulus-pallet-aura-ext/std',44 'cumulus-pallet-parachain-system/std',45 'cumulus-pallet-xcm/std',46 'cumulus-pallet-xcmp-queue/std',47 'cumulus-primitives-core/std',48 'cumulus-primitives-utility/std',49 'frame-executive/std',50 'frame-support/std',51 'frame-system/std',52 'frame-system-rpc-runtime-api/std',53 'pallet-aura/std',54 'pallet-balances/std',55 56 57 58 59 'pallet-randomness-collective-flip/std',60 'pallet-sudo/std',61 'pallet-timestamp/std',62 'pallet-transaction-payment/std',63 'pallet-transaction-payment-rpc-runtime-api/std',64 'pallet-treasury/std',65 66 'pallet-evm/std',67 'pallet-evm-migration/std',68 'pallet-evm-contract-helpers/std',69 'pallet-evm-transaction-payment/std',70 'pallet-evm-coder-substrate/std',71 'pallet-ethereum/std',72 'fp-rpc/std',73 'up-rpc/std',74 'up-evm-mapping/std',75 'fp-self-contained/std',76 'parachain-info/std',77 'serde',78 'pallet-inflation/std',79 'pallet-common/std',80 'pallet-fungible/std',81 'pallet-refungible/std',82 'pallet-nonfungible/std',83 'pallet-nft/std',84 'pallet-unq-scheduler/std',85 'pallet-nft-charge-transaction/std',86 'nft-data-structs/std',87 'sp-api/std',88 'sp-block-builder/std',89 "sp-consensus-aura/std",90 'sp-core/std',91 'sp-inherents/std',92 'sp-io/std',93 'sp-offchain/std',94 'sp-runtime/std',95 'sp-session/std',96 'sp-std/std',97 'sp-transaction-pool/std',98 'sp-version/std',99 'xcm/std',100 'xcm-builder/std',101 'xcm-executor/std',102103 "orml-vesting/std",104]105limit-testing = ['pallet-nft/limit-testing', 'nft-data-structs/limit-testing']106107108109110[dependencies.codec]111default-features = false112features = ['derive']113package = 'parity-scale-codec'114version = '2.3.0'115116[dependencies.frame-benchmarking]117default-features = false118git = 'https://github.com/paritytech/substrate.git'119optional = true120branch = 'polkadot-v0.9.12'121122[dependencies.frame-executive]123default-features = false124git = 'https://github.com/paritytech/substrate.git'125branch = 'polkadot-v0.9.12'126127[dependencies.frame-support]128default-features = false129git = 'https://github.com/paritytech/substrate.git'130branch = 'polkadot-v0.9.12'131132[dependencies.frame-system]133default-features = false134git = 'https://github.com/paritytech/substrate.git'135branch = 'polkadot-v0.9.12'136137[dependencies.frame-system-benchmarking]138default-features = false139git = 'https://github.com/paritytech/substrate.git'140optional = true141branch = 'polkadot-v0.9.12'142143[dependencies.frame-system-rpc-runtime-api]144default-features = false145git = 'https://github.com/paritytech/substrate.git'146branch = 'polkadot-v0.9.12'147148[dependencies.hex-literal]149optional = true150version = '0.3.3'151152[dependencies.serde]153default-features = false154features = ['derive']155optional = true156version = '1.0.130'157158[dependencies.pallet-aura]159default-features = false160git = 'https://github.com/paritytech/substrate.git'161branch = 'polkadot-v0.9.12'162163[dependencies.pallet-balances]164default-features = false165git = 'https://github.com/paritytech/substrate.git'166branch = 'polkadot-v0.9.12'167168169170171172173174175176177178179180181182183184185186187[dependencies.pallet-randomness-collective-flip]188default-features = false189git = 'https://github.com/paritytech/substrate.git'190branch = 'polkadot-v0.9.12'191192[dependencies.pallet-sudo]193default-features = false194git = 'https://github.com/paritytech/substrate.git'195branch = 'polkadot-v0.9.12'196197[dependencies.pallet-timestamp]198default-features = false199git = 'https://github.com/paritytech/substrate.git'200branch = 'polkadot-v0.9.12'201202[dependencies.pallet-transaction-payment]203default-features = false204git = 'https://github.com/paritytech/substrate.git'205branch = 'polkadot-v0.9.12'206207[dependencies.pallet-transaction-payment-rpc-runtime-api]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.12'211212[dependencies.pallet-treasury]213default-features = false214git = 'https://github.com/paritytech/substrate.git'215branch = 'polkadot-v0.9.12'216217218219220221222[dependencies.sp-arithmetic]223default-features = false224git = 'https://github.com/paritytech/substrate.git'225branch = 'polkadot-v0.9.12'226227[dependencies.sp-api]228default-features = false229git = 'https://github.com/paritytech/substrate.git'230branch = 'polkadot-v0.9.12'231232[dependencies.sp-block-builder]233default-features = false234git = 'https://github.com/paritytech/substrate.git'235branch = 'polkadot-v0.9.12'236237[dependencies.sp-core]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.12'241242[dependencies.sp-consensus-aura]243default-features = false244git = 'https://github.com/paritytech/substrate.git'245branch = 'polkadot-v0.9.12'246247[dependencies.sp-inherents]248default-features = false249git = 'https://github.com/paritytech/substrate.git'250branch = 'polkadot-v0.9.12'251252[dependencies.sp-io]253default-features = false254git = 'https://github.com/paritytech/substrate.git'255branch = 'polkadot-v0.9.12'256257[dependencies.sp-offchain]258default-features = false259git = 'https://github.com/paritytech/substrate.git'260branch = 'polkadot-v0.9.12'261262[dependencies.sp-runtime]263default-features = false264git = 'https://github.com/paritytech/substrate.git'265branch = 'polkadot-v0.9.12'266267[dependencies.sp-session]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.12'271272[dependencies.sp-std]273default-features = false274git = 'https://github.com/paritytech/substrate.git'275branch = 'polkadot-v0.9.12'276277[dependencies.sp-transaction-pool]278default-features = false279git = 'https://github.com/paritytech/substrate.git'280branch = 'polkadot-v0.9.12'281282[dependencies.sp-version]283default-features = false284git = 'https://github.com/paritytech/substrate.git'285branch = 'polkadot-v0.9.12'286287[dependencies.smallvec]288version = '1.6.1'289290291292293[dependencies.parachain-info]294default-features = false295git = 'https://github.com/paritytech/cumulus.git'296branch = 'polkadot-v0.9.12'297298[dependencies.cumulus-pallet-aura-ext]299git = 'https://github.com/paritytech/cumulus.git'300branch = 'polkadot-v0.9.12'301default-features = false302303[dependencies.cumulus-pallet-parachain-system]304git = 'https://github.com/paritytech/cumulus.git'305branch = 'polkadot-v0.9.12'306default-features = false307308[dependencies.cumulus-primitives-core]309git = 'https://github.com/paritytech/cumulus.git'310branch = 'polkadot-v0.9.12'311default-features = false312313[dependencies.cumulus-pallet-xcm]314git = 'https://github.com/paritytech/cumulus.git'315branch = 'polkadot-v0.9.12'316default-features = false317318[dependencies.cumulus-pallet-dmp-queue]319git = 'https://github.com/paritytech/cumulus.git'320branch = 'polkadot-v0.9.12'321default-features = false322323[dependencies.cumulus-pallet-xcmp-queue]324git = 'https://github.com/paritytech/cumulus.git'325branch = 'polkadot-v0.9.12'326default-features = false327328[dependencies.cumulus-primitives-utility]329git = 'https://github.com/paritytech/cumulus.git'330branch = 'polkadot-v0.9.12'331default-features = false332333[dependencies.cumulus-primitives-timestamp]334git = 'https://github.com/paritytech/cumulus.git'335branch = 'polkadot-v0.9.12'336default-features = false337338339340341[dependencies.polkadot-parachain]342git = 'https://github.com/paritytech/polkadot'343branch = 'release-v0.9.12'344default-features = false345346[dependencies.xcm]347git = 'https://github.com/paritytech/polkadot'348branch = 'release-v0.9.12'349default-features = false350351[dependencies.xcm-builder]352git = 'https://github.com/paritytech/polkadot'353branch = 'release-v0.9.12'354default-features = false355356[dependencies.xcm-executor]357git = 'https://github.com/paritytech/polkadot'358branch = 'release-v0.9.12'359default-features = false360361[dependencies.pallet-xcm]362git = 'https://github.com/paritytech/polkadot'363branch = 'release-v0.9.12'364default-features = false365366[dependencies.orml-vesting]367git = 'https://github.com/UniqueNetwork/open-runtime-module-library'368version = "0.4.1-dev" 369default-features = false370371372373374[dependencies]375scale-info = { version = "1.0.0", default-features = false, features = [376 "derive",377] }378derivative = "2.2.0"379pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }380up-rpc = { path = "../primitives/rpc", default-features = false }381up-evm-mapping = { path = "../primitives/evm-mapping", default-features = false }382pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }383nft-data-structs = { path = '../primitives/nft', default-features = false, version = '0.9.0' }384pallet-common = { default-features = false, path = "../pallets/common" }385pallet-fungible = { default-features = false, path = "../pallets/fungible" }386pallet-refungible = { default-features = false, path = "../pallets/refungible" }387pallet-nonfungible = { default-features = false, path = "../pallets/nonfungible" }388pallet-unq-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }389390pallet-nft-charge-transaction = { git = "https://github.com/UniqueNetwork/pallet-sponsoring", package = "pallet-template-transaction-payment", default-features = false, version = '3.0.0' }391pallet-evm-migration = { path = '../pallets/evm-migration', default-features = false }392pallet-evm-contract-helpers = { path = '../pallets/evm-contract-helpers', default-features = false }393pallet-evm-transaction-payment = { path = '../pallets/evm-transaction-payment', default-features = false }394pallet-evm-coder-substrate = { default-features = false, path = "../pallets/evm-coder-substrate" }395396pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }397pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }398fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }399fp-self-contained = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.12-weights" }400401402403404[build-dependencies.substrate-wasm-builder]405git = 'https://github.com/paritytech/substrate.git'406branch = 'polkadot-v0.9.12'