2020-03-05 16:53:25 +00:00
|
|
|
[package]
|
2020-05-16 13:32:11 +00:00
|
|
|
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
|
2020-03-05 16:53:25 +00:00
|
|
|
build = 'build.rs'
|
2020-07-25 12:35:30 +00:00
|
|
|
description = 'A fresh FRAME-based Substrate node, ready for hacking.'
|
2020-03-05 16:53:25 +00:00
|
|
|
edition = '2018'
|
2020-06-27 16:14:55 +00:00
|
|
|
homepage = 'https://substrate.dev'
|
2020-03-05 16:53:25 +00:00
|
|
|
license = 'Unlicense'
|
|
|
|
name = 'node-template'
|
2020-05-16 13:32:11 +00:00
|
|
|
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
|
2021-02-24 14:12:24 +00:00
|
|
|
version = '3.0.0'
|
2020-03-05 16:53:25 +00:00
|
|
|
|
2020-06-27 16:14:55 +00:00
|
|
|
[[bin]]
|
|
|
|
name = 'node-template'
|
|
|
|
|
2020-09-23 00:24:35 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ['x86_64-unknown-linux-gnu']
|
2020-08-21 11:20:35 +00:00
|
|
|
|
2020-09-23 00:24:35 +00:00
|
|
|
[build-dependencies]
|
2021-02-24 14:12:24 +00:00
|
|
|
substrate-build-script-utils = '3.0.0'
|
2020-07-25 12:35:30 +00:00
|
|
|
|
2020-08-21 11:20:35 +00:00
|
|
|
[dependencies]
|
2021-02-24 14:12:24 +00:00
|
|
|
jsonrpc-core = '15.1.0'
|
2020-08-21 11:20:35 +00:00
|
|
|
structopt = '0.3.8'
|
2020-07-28 10:57:49 +00:00
|
|
|
|
2020-09-23 00:24:35 +00:00
|
|
|
# local dependencies
|
2021-02-24 14:12:24 +00:00
|
|
|
node-template-runtime = { path = '../runtime', version = '3.0.0' }
|
2020-09-23 00:24:35 +00:00
|
|
|
|
|
|
|
# Substrate dependencies
|
2021-02-24 14:12:24 +00:00
|
|
|
frame-benchmarking = '3.0.0'
|
|
|
|
frame-benchmarking-cli = '3.0.0'
|
|
|
|
pallet-transaction-payment-rpc = '3.0.0'
|
|
|
|
sc-basic-authorship = '0.9.0'
|
|
|
|
sc-cli = { features = ['wasmtime'], version = '0.9.0' }
|
|
|
|
sc-client-api = '3.0.0'
|
|
|
|
sc-consensus = '0.9.0'
|
|
|
|
sc-consensus-aura = '0.9.0'
|
|
|
|
sc-executor = { features = ['wasmtime'], version = '0.9.0' }
|
|
|
|
sc-finality-grandpa = '0.9.0'
|
|
|
|
sc-keystore = '3.0.0'
|
|
|
|
sc-rpc = '3.0.0'
|
|
|
|
sc-rpc-api = '0.9.0'
|
|
|
|
sc-service = { features = ['wasmtime'], version = '0.9.0' }
|
|
|
|
sc-transaction-pool = '3.0.0'
|
|
|
|
sp-api = '3.0.0'
|
|
|
|
sp-block-builder = '3.0.0'
|
|
|
|
sp-blockchain = '3.0.0'
|
|
|
|
sp-consensus = '0.9.0'
|
|
|
|
sp-consensus-aura = '0.9.0'
|
|
|
|
sp-core = '3.0.0'
|
|
|
|
sp-finality-grandpa = '3.0.0'
|
|
|
|
sp-inherents = '3.0.0'
|
|
|
|
sp-runtime = '3.0.0'
|
|
|
|
sp-transaction-pool = '3.0.0'
|
|
|
|
substrate-frame-rpc-system = '3.0.0'
|
2020-09-23 00:24:35 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
runtime-benchmarks = ['node-template-runtime/runtime-benchmarks']
|