1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3build = 'build.rs'4description = 'Substrate Node template'5edition = '2018'6homepage = 'https://substrate.dev'7license = 'Unlicense'8name = 'nft'9repository = 'https://github.com/usetech-llc/nft_parachain/'10version = '2.0.0-rc4'1112[package.metadata.docs.rs]13targets = ['x86_64-unknown-linux-gnu']1415[[bin]]16name = 'nft'1718[dependencies]19futures = '0.3.4'20log = '0.4.8'21parking_lot = '0.10.0'22structopt = '0.3.8'2324[dependencies.nft-runtime]25path = '../runtime'26version = '2.0.0-rc4'2728[dependencies.sc-basic-authorship]29git = 'https://github.com/paritytech/substrate.git'30tag = 'v2.0.0-rc4'31version = '0.8.0-rc4'3233[dependencies.sc-cli]34features = ['wasmtime']35git = 'https://github.com/paritytech/substrate.git'36tag = 'v2.0.0-rc4'37version = '0.8.0-rc4'3839[dependencies.sc-client-api]40git = 'https://github.com/paritytech/substrate.git'41tag = 'v2.0.0-rc4'42version = '2.0.0-rc4'4344[dependencies.sc-consensus]45git = 'https://github.com/paritytech/substrate.git'46tag = 'v2.0.0-rc4'47version = '0.8.0-rc4'4849[dependencies.sc-consensus-aura]50git = 'https://github.com/paritytech/substrate.git'51tag = 'v2.0.0-rc4'52version = '0.8.0-rc4'5354[dependencies.sc-executor]55features = ['wasmtime']56git = 'https://github.com/paritytech/substrate.git'57tag = 'v2.0.0-rc4'58version = '0.8.0-rc4'5960[dependencies.sc-finality-grandpa]61git = 'https://github.com/paritytech/substrate.git'62tag = 'v2.0.0-rc4'63version = '0.8.0-rc4'6465[dependencies.sc-network]66git = 'https://github.com/paritytech/substrate.git'67tag = 'v2.0.0-rc4'68version = '0.8.0-rc4'6970[dependencies.sc-service]71features = ['wasmtime']72git = 'https://github.com/paritytech/substrate.git'73tag = 'v2.0.0-rc4'74version = '0.8.0-rc4'7576[dependencies.sc-transaction-pool]77git = 'https://github.com/paritytech/substrate.git'78tag = 'v2.0.0-rc4'79version = '2.0.0-rc4'8081[dependencies.sp-consensus]82git = 'https://github.com/paritytech/substrate.git'83tag = 'v2.0.0-rc4'84version = '0.8.0-rc4'8586[dependencies.sp-consensus-aura]87git = 'https://github.com/paritytech/substrate.git'88tag = 'v2.0.0-rc4'89version = '0.8.0-rc4'9091[dependencies.sp-core]92git = 'https://github.com/paritytech/substrate.git'93tag = 'v2.0.0-rc4'94version = '2.0.0-rc4'9596[dependencies.sp-finality-grandpa]97git = 'https://github.com/paritytech/substrate.git'98tag = 'v2.0.0-rc4'99version = '2.0.0-rc4'100101[dependencies.sp-inherents]102git = 'https://github.com/paritytech/substrate.git'103tag = 'v2.0.0-rc4'104version = '2.0.0-rc4'105106[dependencies.sp-runtime]107git = 'https://github.com/paritytech/substrate.git'108tag = 'v2.0.0-rc4'109version = '2.0.0-rc4'110111[dependencies.sp-transaction-pool]112git = 'https://github.com/paritytech/substrate.git'113tag = 'v2.0.0-rc4'114version = '2.0.0-rc4'115[build-dependencies.substrate-build-script-utils]116git = 'https://github.com/paritytech/substrate.git'117tag = 'v2.0.0-rc4'118version = '2.0.0-rc4'