Update to `d1cd01c74`
Showing
- Cargo.lock 794 additions, 726 deletionsCargo.lock
- Cargo.toml 34 additions, 34 deletionsCargo.toml
- README.md 10 additions, 4 deletionsREADME.md
- runtime/Cargo.toml 73 additions, 60 deletionsruntime/Cargo.toml
- runtime/build.rs 1 addition, 1 deletionruntime/build.rs
- runtime/src/lib.rs 39 additions, 61 deletionsruntime/src/lib.rs
- runtime/src/template.rs 6 additions, 8 deletionsruntime/src/template.rs
- scripts/init.sh 0 additions, 4 deletionsscripts/init.sh
- src/chain_spec.rs 10 additions, 12 deletionssrc/chain_spec.rs
- src/cli.rs 1 addition, 0 deletionssrc/cli.rs
- src/service.rs 30 additions, 46 deletionssrc/service.rs
source diff could not be displayed: it is too large. Options to address this: view the blob.
[[bin]] | ||
name = 'node-template' | ||
path = 'src/main.rs' | ||
[package] | ||
authors = ['Anonymous'] | ||
build = 'build.rs' | ||
edition = '2018' | ||
name = 'node-template' | ||
version = '2.0.0' | ||
[build-dependencies] | ||
vergen = '3.0.4' | ||
[profile.release] | ||
panic = 'unwind' | ||
[dependencies] | ||
derive_more = '0.15.0' | ||
exit-future = '0.1.4' | ||
... | ... | @@ -7,20 +23,20 @@ parking_lot = '0.9.0' |
tokio = '0.1.22' | ||
trie-root = '0.15.2' | ||
[dependencies.babe] | ||
[dependencies.aura] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-consensus-babe' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
package = 'substrate-consensus-aura' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.babe-primitives] | ||
[dependencies.aura-primitives] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-consensus-babe-primitives' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
package = 'substrate-consensus-aura-primitives' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.basic-authorship] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-basic-authorship' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.codec] | ||
package = 'parity-scale-codec' | ||
... | ... | @@ -33,22 +49,22 @@ version = '3.1.3' |
[dependencies.grandpa] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-finality-grandpa' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.grandpa-primitives] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-finality-grandpa-primitives' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.inherents] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-inherents' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.network] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-network' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.node-template-runtime] | ||
path = 'runtime' | ||
... | ... | @@ -56,48 +72,32 @@ path = 'runtime' |
[dependencies.primitives] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-primitives' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.sr-io] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.substrate-cli] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.substrate-client] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.substrate-executor] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.substrate-service] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[dependencies.transaction-pool] | ||
git = 'https://github.com/paritytech/substrate.git' | ||
package = 'substrate-transaction-pool' | ||
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85' | ||
[profile.release] | ||
panic = 'unwind' | ||
[[bin]] | ||
name = 'node-template' | ||
path = 'src/main.rs' | ||
rev = 'd1cd01c74e8d5550396cb654f9a3f1b641efdf4c' | ||
[workspace] | ||
members = ['runtime'] | ||
[package] | ||
authors = ['Anonymous'] | ||
build = 'build.rs' | ||
edition = '2018' | ||
name = 'node-template' | ||
version = '2.0.0' | ||
[build-dependencies] | ||
vergen = '3.0.4' |
Please register or sign in to comment