git.delta.rocks / unique-network / refs/commits / 89d693c101e5

difftreelog

source

node/Cargo.toml3.1 KiBsourcehistory
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'23jsonrpc-core = '14.0.5'2425[dependencies.pallet-contracts-rpc]26git = 'https://github.com/paritytech/substrate.git'27version = '0.8.0-rc4'28tag = 'v2.0.0-rc4'2930[dependencies.sc-rpc]31git = 'https://github.com/paritytech/substrate.git'32tag = 'v2.0.0-rc4'3334[dependencies.nft-runtime]35path = '../runtime'36version = '2.0.0-rc4'3738[dependencies.sc-basic-authorship]39git = 'https://github.com/paritytech/substrate.git'40tag = 'v2.0.0-rc4'41version = '0.8.0-rc4'4243[dependencies.sc-cli]44features = ['wasmtime']45git = 'https://github.com/paritytech/substrate.git'46tag = 'v2.0.0-rc4'47version = '0.8.0-rc4'4849[dependencies.sc-client-api]50git = 'https://github.com/paritytech/substrate.git'51tag = 'v2.0.0-rc4'52version = '2.0.0-rc4'5354[dependencies.sc-consensus]55git = 'https://github.com/paritytech/substrate.git'56tag = 'v2.0.0-rc4'57version = '0.8.0-rc4'5859[dependencies.sc-consensus-aura]60git = 'https://github.com/paritytech/substrate.git'61tag = 'v2.0.0-rc4'62version = '0.8.0-rc4'6364[dependencies.sc-executor]65features = ['wasmtime']66git = 'https://github.com/paritytech/substrate.git'67tag = 'v2.0.0-rc4'68version = '0.8.0-rc4'6970[dependencies.sc-finality-grandpa]71git = 'https://github.com/paritytech/substrate.git'72tag = 'v2.0.0-rc4'73version = '0.8.0-rc4'7475[dependencies.sc-network]76git = 'https://github.com/paritytech/substrate.git'77tag = 'v2.0.0-rc4'78version = '0.8.0-rc4'7980[dependencies.sc-service]81features = ['wasmtime']82git = 'https://github.com/paritytech/substrate.git'83tag = 'v2.0.0-rc4'84version = '0.8.0-rc4'8586[dependencies.sc-transaction-pool]87git = 'https://github.com/paritytech/substrate.git'88tag = 'v2.0.0-rc4'89version = '2.0.0-rc4'9091[dependencies.sp-consensus]92git = 'https://github.com/paritytech/substrate.git'93tag = 'v2.0.0-rc4'94version = '0.8.0-rc4'9596[dependencies.sp-consensus-aura]97git = 'https://github.com/paritytech/substrate.git'98tag = 'v2.0.0-rc4'99version = '0.8.0-rc4'100101[dependencies.sp-core]102git = 'https://github.com/paritytech/substrate.git'103tag = 'v2.0.0-rc4'104version = '2.0.0-rc4'105106[dependencies.sp-finality-grandpa]107git = 'https://github.com/paritytech/substrate.git'108tag = 'v2.0.0-rc4'109version = '2.0.0-rc4'110111[dependencies.sp-inherents]112git = 'https://github.com/paritytech/substrate.git'113tag = 'v2.0.0-rc4'114version = '2.0.0-rc4'115116[dependencies.sp-runtime]117git = 'https://github.com/paritytech/substrate.git'118tag = 'v2.0.0-rc4'119version = '2.0.0-rc4'120121[dependencies.sp-transaction-pool]122git = 'https://github.com/paritytech/substrate.git'123tag = 'v2.0.0-rc4'124version = '2.0.0-rc4'125[build-dependencies.substrate-build-script-utils]126git = 'https://github.com/paritytech/substrate.git'127tag = 'v2.0.0-rc4'128version = '2.0.0-rc4'