git.delta.rocks / unique-network / refs/commits / 9788e4e26312

difftreelog

source

runtime/Cargo.toml4.7 KiBsourcehistory
1[features]2default = ['std']3std = [4    'aura/std',5    'balances/std',6    'codec/std',7    'frame-executive/std',8    'frame-support/std',9    'grandpa/std',10    'randomness-collective-flip/std',11    'serde',12    'sp-api/std',13    'sp-block-builder/std',14    'sp-consensus-aura/std',15    'sp-core/std',16    'sp-inherents/std',17    'sp-io/std',18    'sp-offchain/std',19    'sp-runtime/std',20    'sp-session/std',21    'sp-std/std',22    'sp-transaction-pool/std',23    'sp-version/std',24    'sudo/std',25    'system/std',26    'timestamp/std',27    'transaction-payment/std',28    'nft/std',29]30[dependencies.aura]31default-features = false32git = 'https://github.com/paritytech/substrate.git'33package = 'pallet-aura'34tag = 'v2.0.0-rc4'35version = '2.0.0-rc4'3637[dependencies.balances]38default-features = false39git = 'https://github.com/paritytech/substrate.git'40package = 'pallet-balances'41tag = 'v2.0.0-rc4'42version = '2.0.0-rc4'4344[dependencies.codec]45default-features = false46features = ['derive']47package = 'parity-scale-codec'48version = '1.3.1'4950[dependencies.frame-executive]51default-features = false52git = 'https://github.com/paritytech/substrate.git'53tag = 'v2.0.0-rc4'54version = '2.0.0-rc4'5556[dependencies.frame-support]57default-features = false58git = 'https://github.com/paritytech/substrate.git'59tag = 'v2.0.0-rc4'60version = '2.0.0-rc4'6162[dependencies.grandpa]63default-features = false64git = 'https://github.com/paritytech/substrate.git'65package = 'pallet-grandpa'66tag = 'v2.0.0-rc4'67version = '2.0.0-rc4'6869[dependencies.randomness-collective-flip]70default-features = false71git = 'https://github.com/paritytech/substrate.git'72package = 'pallet-randomness-collective-flip'73tag = 'v2.0.0-rc4'74version = '2.0.0-rc4'7576[dependencies.serde]77features = ['derive']78optional = true79version = '1.0.101'8081[dependencies.sp-api]82default-features = false83git = 'https://github.com/paritytech/substrate.git'84tag = 'v2.0.0-rc4'85version = '2.0.0-rc4'8687[dependencies.sp-block-builder]88default-features = false89git = 'https://github.com/paritytech/substrate.git'90tag = 'v2.0.0-rc4'91version = '2.0.0-rc4'9293[dependencies.sp-consensus-aura]94default-features = false95git = 'https://github.com/paritytech/substrate.git'96tag = 'v2.0.0-rc4'97version = '0.8.0-rc4'9899[dependencies.sp-core]100default-features = false101git = 'https://github.com/paritytech/substrate.git'102tag = 'v2.0.0-rc4'103version = '2.0.0-rc4'104105[dependencies.sp-inherents]106default-features = false107git = 'https://github.com/paritytech/substrate.git'108tag = 'v2.0.0-rc4'109version = '2.0.0-rc4'110111[dependencies.sp-io]112default-features = false113git = 'https://github.com/paritytech/substrate.git'114tag = 'v2.0.0-rc4'115version = '2.0.0-rc4'116117[dependencies.sp-offchain]118default-features = false119git = 'https://github.com/paritytech/substrate.git'120tag = 'v2.0.0-rc4'121version = '2.0.0-rc4'122123[dependencies.sp-runtime]124default-features = false125git = 'https://github.com/paritytech/substrate.git'126tag = 'v2.0.0-rc4'127version = '2.0.0-rc4'128129[dependencies.sp-session]130default-features = false131git = 'https://github.com/paritytech/substrate.git'132tag = 'v2.0.0-rc4'133version = '2.0.0-rc4'134135[dependencies.sp-std]136default-features = false137git = 'https://github.com/paritytech/substrate.git'138tag = 'v2.0.0-rc4'139version = '2.0.0-rc4'140141[dependencies.sp-transaction-pool]142default-features = false143git = 'https://github.com/paritytech/substrate.git'144tag = 'v2.0.0-rc4'145version = '2.0.0-rc4'146147[dependencies.sp-version]148default-features = false149git = 'https://github.com/paritytech/substrate.git'150tag = 'v2.0.0-rc4'151version = '2.0.0-rc4'152153[dependencies.sudo]154default-features = false155git = 'https://github.com/paritytech/substrate.git'156package = 'pallet-sudo'157tag = 'v2.0.0-rc4'158version = '2.0.0-rc4'159160[dependencies.system]161default-features = false162git = 'https://github.com/paritytech/substrate.git'163package = 'frame-system'164tag = 'v2.0.0-rc4'165version = '2.0.0-rc4'166167[dependencies.nft]168default-features = false169package = 'pallet-nft'170path = '../pallets/nft'171version = '2.0.0-rc4'172173[dependencies.timestamp]174default-features = false175git = 'https://github.com/paritytech/substrate.git'176package = 'pallet-timestamp'177tag = 'v2.0.0-rc4'178version = '2.0.0-rc4'179180[dependencies.transaction-payment]181default-features = false182git = 'https://github.com/paritytech/substrate.git'183package = 'pallet-transaction-payment'184tag = 'v2.0.0-rc4'185version = '2.0.0-rc4'186187[package]188authors = ['UseTech']189edition = '2018'190homepage = 'https://usetech.com/blockchain'191license = 'Unlicense'192name = 'nft-runtime'193repository = 'https://github.com/usetech-llc/nft_parachain/'194version = '2.0.0-rc4'195196[package.metadata.docs.rs]197targets = ['x86_64-unknown-linux-gnu']198199[build-dependencies.wasm-builder-runner]200git = 'https://github.com/paritytech/substrate.git'201package = 'substrate-wasm-builder-runner'202tag = 'v2.0.0-rc4'203version = '1.0.5'