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

difftreelog

source

runtime/Cargo.toml9.5 KiBsourcehistory
1################################################################################2# Package 34[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 = '3.0.0'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-balances/runtime-benchmarks',27    'pallet-timestamp/runtime-benchmarks',28    'pallet-nft/runtime-benchmarks',29    'pallet-inflation/runtime-benchmarks',30    'sp-runtime/runtime-benchmarks',31]32std = [33    'codec/std',34	'cumulus-pallet-aura-ext/std',35	'cumulus-pallet-parachain-system/std',36	'cumulus-pallet-xcm/std',37	'cumulus-pallet-xcmp-queue/std',38	'cumulus-primitives-core/std',39	'cumulus-primitives-utility/std',40    'frame-executive/std',41    'frame-support/std',42    'frame-system/std',43    'frame-system-rpc-runtime-api/std',44	'pallet-aura/std',45    'pallet-balances/std',46    'pallet-contracts/std',47    'pallet-contracts-primitives/std',48    'pallet-contracts-rpc-runtime-api/std',49    'pallet-randomness-collective-flip/std',50    'pallet-sudo/std',51    'pallet-timestamp/std',52    'pallet-transaction-payment/std',53    'pallet-transaction-payment-rpc-runtime-api/std',54    'pallet-treasury/std',55    'pallet-vesting/std',56	'parachain-info/std',57    'serde',58    'sp-api/std',59    'sp-block-builder/std',60	"sp-consensus-aura/std",61    'sp-core/std',62    'sp-inherents/std',63	'sp-io/std',64    'sp-offchain/std',65    'sp-runtime/std',66    'sp-session/std',67    'sp-std/std',68    'sp-transaction-pool/std',69    'sp-version/std',70	'xcm/std',71	'xcm-builder/std',72	'xcm-executor/std',7374    'pallet-inflation/std',75    'pallet-nft/std',76]7778################################################################################79# Substrate Dependencies8081[dependencies.codec]82default-features = false83features = ['derive']84package = 'parity-scale-codec'85version = '2.0.0'8687[dependencies.frame-benchmarking]88default-features = false89git = 'https://github.com/paritytech/substrate.git'90optional = true91branch = 'polkadot-v0.9.3'92version = '3.0.0'9394[dependencies.frame-executive]95default-features = false96git = 'https://github.com/paritytech/substrate.git'97branch = 'polkadot-v0.9.3'98version = '3.0.0'99100[dependencies.frame-support]101default-features = false102git = 'https://github.com/paritytech/substrate.git'103branch = 'polkadot-v0.9.3'104version = '3.0.0'105106[dependencies.frame-system]107default-features = false108git = 'https://github.com/paritytech/substrate.git'109branch = 'polkadot-v0.9.3'110version = '3.0.0'111112[dependencies.frame-system-benchmarking]113default-features = false114git = 'https://github.com/paritytech/substrate.git'115optional = true116branch = 'polkadot-v0.9.3'117version = '3.0.0'118119[dependencies.frame-system-rpc-runtime-api]120default-features = false121git = 'https://github.com/paritytech/substrate.git'122branch = 'polkadot-v0.9.3'123version = '3.0.0'124125[dependencies.hex-literal]126optional = true127version = '0.3.1'128129[dependencies.serde]130features = ['derive']131optional = true132version = '1.0.119'133134[dependencies.pallet-aura]135default-features = false136git = 'https://github.com/paritytech/substrate.git'137branch = 'polkadot-v0.9.3'138version = '3.0.0'139140[dependencies.pallet-balances]141default-features = false142git = 'https://github.com/paritytech/substrate.git'143branch = 'polkadot-v0.9.3'144version = '3.0.0'145146# Contracts specific packages147[dependencies.pallet-contracts]148git = 'https://github.com/paritytech/substrate.git'149default-features = false150branch = 'polkadot-v0.9.3'151version = '3.0.0'152153[dependencies.pallet-contracts-primitives]154git = 'https://github.com/paritytech/substrate.git'155default-features = false156branch = 'polkadot-v0.9.3'157version = '3.0.0'158159[dependencies.pallet-contracts-rpc-runtime-api]160git = 'https://github.com/paritytech/substrate.git'161default-features = false162branch = 'polkadot-v0.9.3'163version = '3.0.0'164165[dependencies.pallet-randomness-collective-flip]166default-features = false167git = 'https://github.com/paritytech/substrate.git'168branch = 'polkadot-v0.9.3'169version = '3.0.0'170171[dependencies.pallet-sudo]172default-features = false173git = 'https://github.com/paritytech/substrate.git'174branch = 'polkadot-v0.9.3'175version = '3.0.0'176177[dependencies.pallet-timestamp]178default-features = false179git = 'https://github.com/paritytech/substrate.git'180branch = 'polkadot-v0.9.3'181version = '3.0.0'182183[dependencies.pallet-transaction-payment]184default-features = false185git = 'https://github.com/paritytech/substrate.git'186branch = 'polkadot-v0.9.3'187version = '3.0.0'188189[dependencies.pallet-transaction-payment-rpc-runtime-api]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.3'193version = '3.0.0'194195[dependencies.pallet-treasury]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.3'199version = '3.0.0'200201[dependencies.pallet-vesting]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.3'205version = '3.0.0'206207[dependencies.sp-arithmetic]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.3'211version = '3.0.0'212213[dependencies.sp-api]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.3'217version = '3.0.0'218219[dependencies.sp-block-builder]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.3'223version = '3.0.0'224225[dependencies.sp-core]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.3'229version = '3.0.0'230231[dependencies.sp-consensus-aura]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.3'235version = '0.9.0'236237[dependencies.sp-inherents]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.3'241version = '3.0.0'242243[dependencies.sp-io]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.3'247version = '3.0.0'248249[dependencies.sp-offchain]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.3'253version = '3.0.0'254255[dependencies.sp-runtime]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.3'259version = '3.0.0'260261[dependencies.sp-session]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.3'265version = '3.0.0'266267[dependencies.sp-std]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.3'271version = '3.0.0'272273[dependencies.sp-transaction-pool]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.3'277version = '3.0.0'278279[dependencies.sp-version]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.3'283version = '3.0.0'284285[dependencies.smallvec]286version = '1.4.1'287288################################################################################289# Cumulus dependencies290291[dependencies.parachain-info]292default-features = false293git = 'https://github.com/paritytech/cumulus.git'294branch = 'polkadot-v0.9.3'295version = '0.1.0'296297[dependencies.cumulus-pallet-aura-ext]298git = 'https://github.com/paritytech/cumulus.git'299branch = 'polkadot-v0.9.3'300default-features = false301302[dependencies.cumulus-pallet-parachain-system]303git = 'https://github.com/paritytech/cumulus.git'304branch = 'polkadot-v0.9.3'305default-features = false306307[dependencies.cumulus-primitives-core]308git = 'https://github.com/paritytech/cumulus.git'309branch = 'polkadot-v0.9.3'310default-features = false311312[dependencies.cumulus-pallet-xcm]313git = 'https://github.com/paritytech/cumulus.git'314branch = 'polkadot-v0.9.3'315default-features = false316317[dependencies.cumulus-pallet-dmp-queue]318git = 'https://github.com/paritytech/cumulus.git'319branch = 'polkadot-v0.9.3'320default-features = false321322[dependencies.cumulus-pallet-xcmp-queue]323git = 'https://github.com/paritytech/cumulus.git'324branch = 'polkadot-v0.9.3'325default-features = false326327[dependencies.cumulus-primitives-utility]328git = 'https://github.com/paritytech/cumulus.git'329branch = 'polkadot-v0.9.3'330default-features = false331332################################################################################333# Polkadot dependencies334335[dependencies.polkadot-parachain]336git = 'https://github.com/paritytech/polkadot'337branch = 'release-v0.9.3'338default-features = false339340[dependencies.xcm]341git = 'https://github.com/paritytech/polkadot'342branch = 'release-v0.9.3'343default-features = false344345[dependencies.xcm-builder]346git = 'https://github.com/paritytech/polkadot'347branch = 'release-v0.9.3'348default-features = false349350[dependencies.xcm-executor]351git = 'https://github.com/paritytech/polkadot'352branch = 'release-v0.9.3'353default-features = false354355[dependencies.pallet-xcm]356git = 'https://github.com/paritytech/polkadot'357branch = 'release-v0.9.3'358default-features = false359360361362################################################################################363# local dependencies364365[dependencies]366pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }367pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }368369################################################################################370# Build Dependencies371372[build-dependencies]373substrate-wasm-builder = '4.0.0'374