Skip to content
Snippets Groups Projects
Cargo.toml 3.03 KiB
Newer Older
Joshy Orndorff's avatar
Joshy Orndorff committed
[workspace]
members = ['runtime']
Shawn Tabrizi's avatar
Shawn Tabrizi committed
[dependencies]
Joshy Orndorff's avatar
Joshy Orndorff committed
futures = '0.3.1'
Shawn Tabrizi's avatar
Shawn Tabrizi committed
parking_lot = '0.9.0'
Shawn Tabrizi's avatar
Shawn Tabrizi committed
trie-root = '0.15.2'

[dependencies.codec]
package = 'parity-scale-codec'
version = '1.0.0'

[dependencies.ctrlc]
features = ['termination']
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.futures01]
package = 'futures'
version = '0.1.29'

Shawn Tabrizi's avatar
Shawn Tabrizi committed
[dependencies.grandpa]
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
package = 'sc-finality-grandpa'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Shawn Tabrizi's avatar
Shawn Tabrizi committed

[dependencies.grandpa-primitives]
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
package = 'sp-finality-grandpa'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[dependencies.node-template-runtime]
path = 'runtime'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-basic-authority]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-cli]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-client]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-consensus-aura]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-executor]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-network]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-service]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sc-transaction-pool]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sp-consensus]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sp-consensus-aura]
Shawn Tabrizi's avatar
Shawn Tabrizi committed
git = 'https://github.com/paritytech/substrate.git'
Joshy Orndorff's avatar
Joshy Orndorff committed
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'
Joshy Orndorff's avatar
Joshy Orndorff committed
[dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[dependencies.sp-inherents]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[dependencies.sp-io]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[dependencies.sp-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'

[package]
authors = ['Anonymous']
build = 'build.rs'
edition = '2018'
name = 'node-template'
version = '2.0.0'

[[bin]]
name = 'node-template'
path = 'src/main.rs'
[profile.release]
panic = 'unwind'

[build-dependencies]
vergen = '3.0.4'

[build-dependencies.build-script-utils]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-build-script-utils'
rev = '40a16efefc070faf5a25442bc3ae1d0ea2478eee'