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

difftreelog

source

node/Cargo.toml2.9 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 = 'node-template'9repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'10version = '2.0.0-rc4'11[package.metadata.docs.rs]12targets = ['x86_64-unknown-linux-gnu']1314[[bin]]15name = 'node-template'1617[dependencies]18futures = '0.3.4'19log = '0.4.8'20parking_lot = '0.10.0'21structopt = '0.3.8'2223[dependencies.nft-runtime]24path = '../runtime'25version = '2.0.0-rc4'2627[dependencies.sc-basic-authorship]28git = 'https://github.com/paritytech/substrate.git'29tag = 'v2.0.0-rc4'30version = '0.8.0-rc4'3132[dependencies.sc-cli]33features = ['wasmtime']34git = 'https://github.com/paritytech/substrate.git'35tag = 'v2.0.0-rc4'36version = '0.8.0-rc4'3738[dependencies.sc-client-api]39git = 'https://github.com/paritytech/substrate.git'40tag = 'v2.0.0-rc4'41version = '2.0.0-rc4'4243[dependencies.sc-consensus]44git = 'https://github.com/paritytech/substrate.git'45tag = 'v2.0.0-rc4'46version = '0.8.0-rc4'4748[dependencies.sc-consensus-aura]49git = 'https://github.com/paritytech/substrate.git'50tag = 'v2.0.0-rc4'51version = '0.8.0-rc4'5253[dependencies.sc-executor]54features = ['wasmtime']55git = 'https://github.com/paritytech/substrate.git'56tag = 'v2.0.0-rc4'57version = '0.8.0-rc4'5859[dependencies.sc-finality-grandpa]60git = 'https://github.com/paritytech/substrate.git'61tag = 'v2.0.0-rc4'62version = '0.8.0-rc4'6364[dependencies.sc-network]65git = 'https://github.com/paritytech/substrate.git'66tag = 'v2.0.0-rc4'67version = '0.8.0-rc4'6869[dependencies.sc-service]70features = ['wasmtime']71git = 'https://github.com/paritytech/substrate.git'72tag = 'v2.0.0-rc4'73version = '0.8.0-rc4'7475[dependencies.sc-transaction-pool]76git = 'https://github.com/paritytech/substrate.git'77tag = 'v2.0.0-rc4'78version = '2.0.0-rc4'7980[dependencies.sp-consensus]81git = 'https://github.com/paritytech/substrate.git'82tag = 'v2.0.0-rc4'83version = '0.8.0-rc4'8485[dependencies.sp-consensus-aura]86git = 'https://github.com/paritytech/substrate.git'87tag = 'v2.0.0-rc4'88version = '0.8.0-rc4'8990[dependencies.sp-core]91git = 'https://github.com/paritytech/substrate.git'92tag = 'v2.0.0-rc4'93version = '2.0.0-rc4'9495[dependencies.sp-finality-grandpa]96git = 'https://github.com/paritytech/substrate.git'97tag = 'v2.0.0-rc4'98version = '2.0.0-rc4'99100[dependencies.sp-inherents]101git = 'https://github.com/paritytech/substrate.git'102tag = 'v2.0.0-rc4'103version = '2.0.0-rc4'104105[dependencies.sp-runtime]106git = 'https://github.com/paritytech/substrate.git'107tag = 'v2.0.0-rc4'108version = '2.0.0-rc4'109110[dependencies.sp-transaction-pool]111git = 'https://github.com/paritytech/substrate.git'112tag = 'v2.0.0-rc4'113version = '2.0.0-rc4'114[build-dependencies.substrate-build-script-utils]115git = 'https://github.com/paritytech/substrate.git'116tag = 'v2.0.0-rc4'117version = '2.0.0-rc4'