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 = '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 'pallet-evm/std',57 'pallet-ethereum/std',58 'fp-rpc/std',59 'parachain-info/std',60 'serde',61 'pallet-inflation/std',62 'pallet-nft/std',63 'pallet-scheduler/std',64 'pallet-nft-charge-transaction/std',65 'pallet-nft-transaction-payment/std', 66 'nft-data-structs/std',67 'sp-api/std',68 'sp-block-builder/std',69 "sp-consensus-aura/std",70 'sp-core/std',71 'sp-inherents/std',72 'sp-io/std',73 'sp-offchain/std',74 'sp-runtime/std',75 'sp-session/std',76 'sp-std/std',77 'sp-transaction-pool/std',78 'sp-version/std',79 'xcm/std',80 'xcm-builder/std',81 'xcm-executor/std',82]8384858687[dependencies.codec]88default-features = false89features = ['derive']90package = 'parity-scale-codec'91version = '2.0.0'9293[dependencies.frame-benchmarking]94default-features = false95git = 'https://github.com/paritytech/substrate.git'96optional = true97branch = 'polkadot-v0.9.3'98version = '3.0.0'99100[dependencies.frame-executive]101default-features = false102git = 'https://github.com/paritytech/substrate.git'103branch = 'polkadot-v0.9.3'104version = '3.0.0'105106[dependencies.frame-support]107default-features = false108git = 'https://github.com/paritytech/substrate.git'109branch = 'polkadot-v0.9.3'110version = '3.0.0'111112[dependencies.frame-system]113default-features = false114git = 'https://github.com/paritytech/substrate.git'115branch = 'polkadot-v0.9.3'116version = '3.0.0'117118[dependencies.frame-system-benchmarking]119default-features = false120git = 'https://github.com/paritytech/substrate.git'121optional = true122branch = 'polkadot-v0.9.3'123version = '3.0.0'124125[dependencies.frame-system-rpc-runtime-api]126default-features = false127git = 'https://github.com/paritytech/substrate.git'128branch = 'polkadot-v0.9.3'129version = '3.0.0'130131[dependencies.hex-literal]132optional = true133version = '0.3.1'134135[dependencies.serde]136features = ['derive']137optional = true138version = '1.0.119'139140[dependencies.pallet-aura]141default-features = false142git = 'https://github.com/paritytech/substrate.git'143branch = 'polkadot-v0.9.3'144version = '3.0.0'145146[dependencies.pallet-balances]147default-features = false148git = 'https://github.com/paritytech/substrate.git'149branch = 'polkadot-v0.9.3'150version = '3.0.0'151152153[dependencies.pallet-contracts]154git = 'https://github.com/paritytech/substrate.git'155default-features = false156branch = 'polkadot-v0.9.3'157version = '3.0.0'158159[dependencies.pallet-contracts-primitives]160git = 'https://github.com/paritytech/substrate.git'161default-features = false162branch = 'polkadot-v0.9.3'163version = '3.0.0'164165[dependencies.pallet-contracts-rpc-runtime-api]166git = 'https://github.com/paritytech/substrate.git'167default-features = false168branch = 'polkadot-v0.9.3'169version = '3.0.0'170171[dependencies.pallet-randomness-collective-flip]172default-features = false173git = 'https://github.com/paritytech/substrate.git'174branch = 'polkadot-v0.9.3'175version = '3.0.0'176177[dependencies.pallet-sudo]178default-features = false179git = 'https://github.com/paritytech/substrate.git'180branch = 'polkadot-v0.9.3'181version = '3.0.0'182183[dependencies.pallet-timestamp]184default-features = false185git = 'https://github.com/paritytech/substrate.git'186branch = 'polkadot-v0.9.3'187version = '3.0.0'188189[dependencies.pallet-transaction-payment]190default-features = false191git = 'https://github.com/paritytech/substrate.git'192branch = 'polkadot-v0.9.3'193version = '3.0.0'194195[dependencies.pallet-transaction-payment-rpc-runtime-api]196default-features = false197git = 'https://github.com/paritytech/substrate.git'198branch = 'polkadot-v0.9.3'199version = '3.0.0'200201[dependencies.pallet-treasury]202default-features = false203git = 'https://github.com/paritytech/substrate.git'204branch = 'polkadot-v0.9.3'205version = '3.0.0'206207[dependencies.pallet-vesting]208default-features = false209git = 'https://github.com/paritytech/substrate.git'210branch = 'polkadot-v0.9.3'211version = '3.0.0'212213[dependencies.sp-arithmetic]214default-features = false215git = 'https://github.com/paritytech/substrate.git'216branch = 'polkadot-v0.9.3'217version = '3.0.0'218219[dependencies.sp-api]220default-features = false221git = 'https://github.com/paritytech/substrate.git'222branch = 'polkadot-v0.9.3'223version = '3.0.0'224225[dependencies.sp-block-builder]226default-features = false227git = 'https://github.com/paritytech/substrate.git'228branch = 'polkadot-v0.9.3'229version = '3.0.0'230231[dependencies.sp-core]232default-features = false233git = 'https://github.com/paritytech/substrate.git'234branch = 'polkadot-v0.9.3'235version = '3.0.0'236237[dependencies.sp-consensus-aura]238default-features = false239git = 'https://github.com/paritytech/substrate.git'240branch = 'polkadot-v0.9.3'241version = '0.9.0'242243[dependencies.sp-inherents]244default-features = false245git = 'https://github.com/paritytech/substrate.git'246branch = 'polkadot-v0.9.3'247version = '3.0.0'248249[dependencies.sp-io]250default-features = false251git = 'https://github.com/paritytech/substrate.git'252branch = 'polkadot-v0.9.3'253version = '3.0.0'254255[dependencies.sp-offchain]256default-features = false257git = 'https://github.com/paritytech/substrate.git'258branch = 'polkadot-v0.9.3'259version = '3.0.0'260261[dependencies.sp-runtime]262default-features = false263git = 'https://github.com/paritytech/substrate.git'264branch = 'polkadot-v0.9.3'265version = '3.0.0'266267[dependencies.sp-session]268default-features = false269git = 'https://github.com/paritytech/substrate.git'270branch = 'polkadot-v0.9.3'271version = '3.0.0'272273[dependencies.sp-std]274default-features = false275git = 'https://github.com/paritytech/substrate.git'276branch = 'polkadot-v0.9.3'277version = '3.0.0'278279[dependencies.sp-transaction-pool]280default-features = false281git = 'https://github.com/paritytech/substrate.git'282branch = 'polkadot-v0.9.3'283version = '3.0.0'284285[dependencies.sp-version]286default-features = false287git = 'https://github.com/paritytech/substrate.git'288branch = 'polkadot-v0.9.3'289version = '3.0.0'290291[dependencies.smallvec]292version = '1.4.1'293294295296297[dependencies.parachain-info]298default-features = false299git = 'https://github.com/paritytech/cumulus.git'300branch = 'polkadot-v0.9.3'301version = '0.1.0'302303[dependencies.cumulus-pallet-aura-ext]304git = 'https://github.com/paritytech/cumulus.git'305branch = 'polkadot-v0.9.3'306default-features = false307308[dependencies.cumulus-pallet-parachain-system]309git = 'https://github.com/paritytech/cumulus.git'310branch = 'polkadot-v0.9.3'311default-features = false312313[dependencies.cumulus-primitives-core]314git = 'https://github.com/paritytech/cumulus.git'315branch = 'polkadot-v0.9.3'316default-features = false317318[dependencies.cumulus-pallet-xcm]319git = 'https://github.com/paritytech/cumulus.git'320branch = 'polkadot-v0.9.3'321default-features = false322323[dependencies.cumulus-pallet-dmp-queue]324git = 'https://github.com/paritytech/cumulus.git'325branch = 'polkadot-v0.9.3'326default-features = false327328[dependencies.cumulus-pallet-xcmp-queue]329git = 'https://github.com/paritytech/cumulus.git'330branch = 'polkadot-v0.9.3'331default-features = false332333[dependencies.cumulus-primitives-utility]334git = 'https://github.com/paritytech/cumulus.git'335branch = 'polkadot-v0.9.3'336default-features = false337338339340341[dependencies.polkadot-parachain]342git = 'https://github.com/paritytech/polkadot'343branch = 'release-v0.9.3'344default-features = false345346[dependencies.xcm]347git = 'https://github.com/paritytech/polkadot'348branch = 'release-v0.9.3'349default-features = false350351[dependencies.xcm-builder]352git = 'https://github.com/paritytech/polkadot'353branch = 'release-v0.9.3'354default-features = false355356[dependencies.xcm-executor]357git = 'https://github.com/paritytech/polkadot'358branch = 'release-v0.9.3'359default-features = false360361[dependencies.pallet-xcm]362git = 'https://github.com/paritytech/polkadot'363branch = 'release-v0.9.3'364default-features = false365366367368369370371[dependencies]372pallet-nft = { path = '../pallets/nft', default-features = false, version = '3.0.0' }373pallet-inflation = { path = '../pallets/inflation', default-features = false, version = '3.0.0' }374nft-data-structs = { path = '../primitives', default-features = false, version = '0.9.0' }375pallet-scheduler = { path = '../pallets/scheduler', default-features = false, version = '3.0.0' }376pallet-nft-transaction-payment = { path = '../pallets/nft-transaction-payment', default-features = false, version = '3.0.0' }377pallet-nft-charge-transaction = { path = '../pallets/nft-charge-transaction', default-features = false, version = '3.0.0' }378379pallet-evm = { default-features = false, version = "4.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions" }380pallet-ethereum = { default-features = false, version = "2.0.0-dev", git = "https://github.com/usetech-llc/frontier.git", branch = "injected-transactions" }381382383384385[build-dependencies]386substrate-wasm-builder = '4.0.0'