Skip to content

Commit

Permalink
chore(deps): update substrate cumulus polkadot deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Jun 10, 2021
1 parent e36f810 commit 845e6ae
Show file tree
Hide file tree
Showing 19 changed files with 2,796 additions and 1,946 deletions.
2,872 changes: 1,762 additions & 1,110 deletions Cargo.lock

Large diffs are not rendered by default.

171 changes: 171 additions & 0 deletions Cargo.toml

Large diffs are not rendered by default.

295 changes: 82 additions & 213 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,224 +1,93 @@
[dependencies]
derive_more = '0.15.0'
log = "0.4.13"
codec = { package = 'parity-scale-codec', version = '2.0.0' }
structopt = "0.3.8"
serde = { version = "1.0.119", features = ["derive"] }
hex-literal = "0.2.1"
# RPC related dependencies
jsonrpc-core = "15.1.0"

[dependencies.frame-benchmarking]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.frame-benchmarking-cli]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'
optional = true

[dependencies.parachain-runtime]
path = '../runtime'
version = '2.0.0'

[dependencies.pallet-transaction-payment-rpc]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-chain-spec]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-cli]
features = ['wasmtime']
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-client-api]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-consensus]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-executor]
features = ['wasmtime']
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-keystore]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-rpc]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-rpc-api]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-service]
features = ['wasmtime']
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sc-telemetry]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sc-tracing]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-api]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-block-builder]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-blockchain]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-consensus]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '0.9.0'

[dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-inherents]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-timestamp]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.sp-trie]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[dependencies.substrate-frame-rpc-system]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

[build-dependencies.substrate-build-script-utils]
git = 'https://github.com/paritytech/substrate.git'
branch = 'rococo-v1'
version = '3.0.0'

# Cumulus dependencies
[dependencies.cumulus-client-consensus-relay-chain]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

[dependencies.cumulus-client-collator]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

[dependencies.cumulus-client-cli]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

[dependencies.cumulus-client-network]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

[dependencies.cumulus-primitives-core]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

[dependencies.cumulus-client-service]
git = 'https://github.com/paritytech/cumulus.git'
branch = 'rococo-v1'

# Polkadot dependencies
[dependencies.polkadot-primitives]
git = "https://github.com/paritytech/polkadot"
branch = 'rococo-v1'

[dependencies.polkadot-service]
git = "https://github.com/paritytech/polkadot"
branch = 'rococo-v1'

[dependencies.polkadot-cli]
git = "https://github.com/paritytech/polkadot"
branch = 'rococo-v1'

[dependencies.polkadot-test-service]
git = "https://github.com/paritytech/polkadot"
branch = 'rococo-v1'

[dependencies.polkadot-parachain]
git = "https://github.com/paritytech/polkadot"
branch = 'rococo-v1'

[package]
authors = ['Anonymous']
build = 'build.rs'
name = 'pint'
authors = ['ChainSafe Systems']
description = 'A new Cumulus FRAME-based Substrate node, ready for hacking.'
edition = '2018'
license = 'Unlicense'
version = '3.0.0'
homepage = 'https://substrate.dev'
license = 'LGPL-3.0-only'
name = 'pint'
repository = 'https://github.com/substrate-developer-hub/substrate-parachain-template'
version = '2.0.0'
edition = '2018'
build = 'build.rs'

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']

[build-dependencies]
substrate-build-script-utils = { git = 'https://github.com/paritytech/substrate', branch = 'master' }

[features]
default = []
runtime-benchmarks = [
'frame-benchmarking-cli',
'parachain-runtime/runtime-benchmarks',
'polkadot-service/runtime-benchmarks'
'parachain-runtime/runtime-benchmarks',
'polkadot-service/runtime-benchmarks'
]
[dependencies]
derive_more = '0.15.0'
log = '0.4.14'
codec = { package = 'parity-scale-codec', version = '2.0.0' }
structopt = '0.3.8'
serde = { version = '1.0.119', features = ['derive'] }
hex-literal = '0.2.1'

# RPC related Dependencies
jsonrpc-core = '15.1.0'

# Local Dependencies
parachain-runtime = { path = '../runtime' }

# Substrate Dependencies
frame-benchmarking = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
frame-benchmarking-cli = { git = 'https://github.com/paritytech/substrate', branch = 'master' }

pallet-transaction-payment-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }

substrate-frame-rpc-system = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }

## Substrate Client Dependencies
sc-basic-authorship = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-chain-spec = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-cli = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-client-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-consensus = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-executor = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-network = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-keystore = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-rpc-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-service = { git = 'https://github.com/paritytech/substrate', branch = "master", version = '0.9.0', features = ['wasmtime'] }
sc-telemetry = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-transaction-pool = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sc-tracing = { git = 'https://github.com/paritytech/substrate', branch = 'master' }

## Substrate Primitive Dependencies
sp-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-block-builder = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-blockchain = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-consensus = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-inherents = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-keystore = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-offchain = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-session = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-timestamp = { git = 'https://github.com/paritytech/substrate', branch = 'master' }
sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', branch = 'master' }

# Cumulus dependencies
cumulus-client-consensus-aura = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-client-consensus-common = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-client-collator = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-client-cli = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-client-network = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-client-service = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-primitives-core = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }
cumulus-primitives-parachain-inherent = { git = 'https://github.com/paritytech/cumulus', branch = 'master' }

# Polkadot dependencies
polkadot-primitives = { git = 'https://github.com/paritytech/polkadot', branch = 'master'}
polkadot-service = { git = 'https://github.com/paritytech/polkadot', branch = 'master'}
polkadot-cli = { git = 'https://github.com/paritytech/polkadot', branch = 'master'}
polkadot-test-service = { git = 'https://github.com/paritytech/polkadot', branch = 'master'}
polkadot-parachain = { git = 'https://github.com/paritytech/polkadot', branch = 'master'}
Loading

0 comments on commit 845e6ae

Please sign in to comment.