Commit 669fde1e authored by asynchronous rob's avatar asynchronous rob
Browse files

point to branch

parent 14da83d5
......@@ -11,14 +11,14 @@ tracing-futures = "0.2.4"
futures-timer = "3.0.2"
streamunordered = "0.5.1"
polkadot-primitives = { path = "../../primitives" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" }
polkadot-node-subsystem-util = { path = "../subsystem-util" }
polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../primitives" }
async-trait = "0.1.42"
[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
polkadot-node-network-protocol = { path = "../network/protocol" }
futures = { version = "0.3.8", features = ["thread-pool"] }
futures-timer = "3.0.2"
......
......@@ -10,6 +10,6 @@ futures = "0.3.8"
polkadot-primitives = { path = "../../primitives" }
polkadot-statement-table = { path = "../../statement-table" }
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
......@@ -6,51 +6,51 @@ edition = "2018"
[dependencies]
# Substrate Client
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-slots = { 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-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
# Substrate Primitives
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
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-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-offchain = { package = "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-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
# Substrate Pallets
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
# Substrate Other
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
# External Crates
futures = "0.3.8"
......
......@@ -19,9 +19,9 @@ polkadot-node-subsystem = { path = "../subsystem" }
polkadot-node-subsystem-util = { path = "../subsystem-util" }
polkadot-primitives = { path = "../../primitives" }
polkadot-statement-table = { path = "../../statement-table" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
smallvec = "1.5.1"
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[dev-dependencies]
polkadot-overseer = { path = "../overseer" }
......@@ -21,11 +21,11 @@ polkadot-node-primitives = { path = "../primitives" }
polkadot-node-subsystem = { path = "../subsystem" }
polkadot-primitives = { path = "../../primitives" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[dev-dependencies]
assert_matches = "1.4.0"
......
......@@ -22,10 +22,10 @@ polkadot-node-primitives = { path = "../primitives" }
polkadot-node-network-protocol = { path = "../network/protocol" }
polkadot-primitives = { path = "../../primitives" }
polkadot-statement-table = { path = "../../statement-table" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
smallvec = "1.5.1"
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
thiserror = "1.0.22"
log = "0.4.11"
......
......@@ -14,18 +14,18 @@ polkadot-primitives = { path = "../../../primitives" }
polkadot-node-subsystem = { path = "../../subsystem" }
# Substrate dependencies
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
......@@ -26,37 +26,37 @@ polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
# Substrate dependencies
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment = { 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-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[dev-dependencies]
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
serde_json = "1.0.60"
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
tokio = { version = "0.2", features = ["macros"] }
......@@ -10,19 +10,19 @@ edition = "2018"
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
# various unnecessary Substrate-specific endpoints.
parity-scale-codec = { version = "1.3.5", default-features = false, features = [ "derive" ] }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
derive_more = "0.99.11"
# all optional crates.
thiserror = { version = "1.0.22", optional = true }
serde = { version = "1.0.117", default-features = false, features = [ "derive" ], optional = true }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", optional = true }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", optional = true }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", optional = true }
parking_lot = { version = "0.11.0", optional = true }
log = { version = "0.4.11", optional = true }
futures = { version = "0.3.8", optional = true }
......
......@@ -14,7 +14,7 @@ adder = { package = "test-parachain-adder", path = "adder" }
halt = { package = "test-parachain-halt", path = "halt" }
[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[features]
default = [ "std" ]
......
......@@ -9,12 +9,12 @@ build = "build.rs"
[dependencies]
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
dlmalloc = { version = "0.2.1", features = [ "global" ] }
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false, features = [ "disable_allocator" ] }
[build-dependencies]
substrate-wasm-builder = "3.0.0"
......
......@@ -23,18 +23,18 @@ polkadot-service = { path = "../../../../node/service" }
polkadot-node-primitives = { path = "../../../../node/primitives" }
polkadot-node-subsystem = { path = "../../../../node/subsystem" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
[dev-dependencies]
polkadot-parachain = { path = "../../.." }
polkadot-test-service = { path = "../../../../node/test/service" }
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
tokio = { version = "0.2", features = ["macros"] }
......
......@@ -7,25 +7,25 @@ edition = "2018"
[dependencies]
serde = { version = "1.0.118", optional = true, features = ["derive"] }
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["bit-vec", "derive"] }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", optional = true }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
polkadot-parachain = { path = "../parachain", default-features = false }
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
[dev-dependencies]
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pretty_assertions = "0.6.1"
[features]
......
......@@ -7,24 +7,24 @@ edition = "2018"
[dependencies]
jsonrpc-core = "15.1.0"
polkadot-primitives = { path = "../primitives" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master"}
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" }
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info"}
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info"}
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info"}
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info"}
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info"}
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
parity-scale-codec = { version = "1.3.5", default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
......@@ -13,27 +13,27 @@ serde = { version = "1.0.118", default-features = false }
serde_derive = { version = "1.0.117", optional = true }
static_assertions = "1.1.0"
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
frame-system = {git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false, optional = true }
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
libsecp256k1 = { version = "0.3.5", default-features = false, optional = true }
......@@ -43,13 +43,13 @@ xcm = { path = "../../xcm", default-features = false }
[dev-dependencies]
hex-literal = "0.3.1"
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info" }
trie-db = "0.22.1"
serde_json = "1.0.60"
libsecp256k1 = "0.3.5"
......
......@@ -15,61 +15,61 @@ serde_derive = { version = "1.0.117", optional = true }
static_assertions = "1.1.0"
smallvec = "1.5.1"
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "rh-babe-current-epoch-info", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate"