solutions/node/Cargo.toml

117 lines
2.8 KiB
TOML
Raw Normal View History

2020-06-10 16:47:28 +00:00
[build-dependencies.substrate-build-script-utils]
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
[[bin]]
name = 'node-template'
2020-03-05 16:53:25 +00:00
[package]
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
2020-03-05 16:53:25 +00:00
build = 'build.rs'
description = 'Substrate node template'
2020-03-05 16:53:25 +00:00
edition = '2018'
homepage = 'https://substrate.io'
2020-03-05 16:53:25 +00:00
license = 'Unlicense'
name = 'node-template'
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
2020-06-10 16:47:28 +00:00
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
2020-04-15 11:33:19 +00:00
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
2020-03-05 16:53:25 +00:00
[dependencies]
2020-04-15 11:33:19 +00:00
futures = '0.3.4'
2020-03-05 16:53:25 +00:00
log = '0.4.8'
parking_lot = '0.10.0'
2020-03-05 16:53:25 +00:00
structopt = '0.3.8'
[dependencies.node-template-runtime]
path = '../runtime'
2020-06-10 16:47:28 +00:00
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-cli]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-client-api]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
[dependencies.sc-consensus]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-consensus-aura]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-executor]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-04-15 11:33:19 +00:00
[dependencies.sc-finality-grandpa]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-network]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-service]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sc-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-consensus]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-consensus-aura]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
2020-04-15 11:33:19 +00:00
[dependencies.sp-finality-grandpa]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-inherents]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'
2020-03-05 16:53:25 +00:00
[dependencies.sp-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
2020-06-10 16:47:28 +00:00
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'