Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Martin Pugh
polkadot
Commits
669fde1e
Commit
669fde1e
authored
Dec 24, 2020
by
asynchronous rob
Browse files
point to branch
parent
14da83d5
Changes
45
Hide whitespace changes
Inline
Side-by-side
cli/Cargo.toml
View file @
669fde1e
...
...
@@ -23,20 +23,20 @@ wasm-bindgen-futures = { version = "0.4.19", optional = true }
service
=
{
package
=
"polkadot-service"
,
path
=
"../node/service"
,
default-features
=
false
,
optional
=
true
}
polkadot-parachain
=
{
path
=
"../parachain"
,
optional
=
true
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-tracing
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
sc-tracing
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
tracing-futures
=
"0.2.4"
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
optional
=
true
}
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
optional
=
true
}
# this crate is used only to enable `trie-memory-tracker` feature
# see https://github.com/paritytech/substrate/pull/6745
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
default-features
=
false
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
default-features
=
false
}
[build-dependencies]
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
[features]
default
=
[
"wasmtime"
,
"db"
,
"cli"
,
"full-node"
,
"trie-memory-tracker"
,
"polkadot-parachain"
]
...
...
core-primitives/Cargo.toml
View file @
669fde1e
...
...
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition
=
"2018"
[dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
default-features
=
false
}
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
=
"
rh-babe-current-epoch-info
"
,
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
}
parity-scale-codec
=
{
version
=
"1.3.5"
,
default-features
=
false
,
features
=
[
"derive"
]
}
[features]
...
...
erasure-coding/Cargo.toml
View file @
669fde1e
...
...
@@ -8,6 +8,6 @@ edition = "2018"
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../primitives"
}
reed_solomon
=
{
package
=
"reed-solomon-erasure"
,
version
=
"4.0.2"
}
parity-scale-codec
=
{
version
=
"1.3.5"
,
default-features
=
false
,
features
=
["derive"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
thiserror
=
"1.0.22"
node/collation-generation/Cargo.toml
View file @
669fde1e
...
...
@@ -13,7 +13,7 @@ polkadot-node-primitives = { path = "../primitives" }
polkadot-node-subsystem
=
{
path
=
"../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../subsystem-util"
}
polkadot-primitives
=
{
path
=
"../../primitives"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
thiserror
=
"1.0.22"
[dev-dependencies]
...
...
node/core/av-store/Cargo.toml
View file @
669fde1e
...
...
@@ -20,7 +20,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
default-features
=
false
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
default-features
=
false
}
[dev-dependencies]
log
=
"0.4.11"
...
...
@@ -29,6 +29,6 @@ assert_matches = "1.4.0"
smallvec
=
"1.5.1"
kvdb-memorydb
=
"0.7.0"
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-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/core/backing/Cargo.toml
View file @
669fde1e
...
...
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
futures
=
"0.3.8"
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
...
...
@@ -19,10 +19,10 @@ tracing-futures = "0.2.4"
thiserror
=
"1.0.22"
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
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-keyring
=
{
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
"
}
futures
=
{
version
=
"0.3.8"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.4.0"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/core/bitfield-signing/Cargo.toml
View file @
669fde1e
...
...
@@ -11,6 +11,6 @@ tracing-futures = "0.2.4"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
wasm-timer
=
"0.2.5"
thiserror
=
"1.0.22"
node/core/candidate-selection/Cargo.toml
View file @
669fde1e
...
...
@@ -10,11 +10,11 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
thiserror
=
"1.0.22"
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[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
"
}
node/core/candidate-validation/Cargo.toml
View file @
669fde1e
...
...
@@ -9,7 +9,7 @@ futures = "0.3.8"
tracing
=
"0.1.22"
tracing-futures
=
"0.2.4"
sp-core
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
parity-scale-codec
=
{
version
=
"1.3.5"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
...
...
@@ -19,7 +19,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[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
"
}
futures
=
{
version
=
"0.3.8"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.4.0"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/core/chain-api/Cargo.toml
View file @
669fde1e
...
...
@@ -8,7 +8,7 @@ edition = "2018"
futures
=
"0.3.8"
tracing
=
"0.1.22"
tracing-futures
=
"0.2.4"
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
...
...
@@ -17,4 +17,4 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
futures
=
{
version
=
"0.3.8"
,
features
=
["thread-pool"]
}
maplit
=
"1.0.2"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
node/core/proposer/Cargo.toml
View file @
669fde1e
...
...
@@ -11,14 +11,14 @@ tracing = "0.1.22"
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-api
=
{
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-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-basic-authorship
=
{
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-client-api
=
{
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-blockchain
=
{
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-core
=
{
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-runtime
=
{
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
"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
node/core/provisioner/Cargo.toml
View file @
669fde1e
...
...
@@ -16,5 +16,5 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
futures-timer
=
"3.0.2"
[dev-dependencies]
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
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
"
}
node/core/runtime-api/Cargo.toml
View file @
669fde1e
...
...
@@ -8,14 +8,14 @@ edition = "2018"
futures
=
"0.3.8"
tracing
=
"0.1.22"
tracing-futures
=
"0.2.4"
sp-api
=
{
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
=
"
rh-babe-current-epoch-info
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[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
"
}
futures
=
{
version
=
"0.3.8"
,
features
=
["thread-pool"]
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/network/availability-distribution/Cargo.toml
View file @
669fde1e
...
...
@@ -14,16 +14,16 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-network-protocol
=
{
path
=
"../../network/protocol"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
features
=
["std"]
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
features
=
["std"]
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
thiserror
=
"1.0.22"
[dev-dependencies]
polkadot-subsystem-testhelpers
=
{
package
=
"polkadot-node-subsystem-test-helpers"
,
path
=
"../../subsystem-test-helpers"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
features
=
["std"]
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-tracing
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
features
=
["std"]
}
sp-application-crypto
=
{
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-tracing
=
{
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
"
}
assert_matches
=
"1.4.0"
maplit
=
"1.0"
node/network/bitfield-distribution/Cargo.toml
View file @
669fde1e
...
...
@@ -17,9 +17,9 @@ polkadot-node-network-protocol = { path = "../../network/protocol" }
[dev-dependencies]
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
bitvec
=
{
version
=
"0.17.4"
,
default-features
=
false
,
features
=
["alloc"]
}
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
"
}
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
"
}
maplit
=
"1.0.2"
log
=
"0.4.11"
env_logger
=
"0.8.2"
...
...
node/network/bridge/Cargo.toml
View file @
669fde1e
...
...
@@ -11,8 +11,8 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
parity-scale-codec
=
{
version
=
"1.3.5"
,
default-features
=
false
,
features
=
["derive"]
}
sc-authority-discovery
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-authority-discovery
=
{
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
"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-network-protocol
=
{
path
=
"../protocol"
}
...
...
@@ -20,5 +20,5 @@ polkadot-node-network-protocol = { path = "../protocol" }
assert_matches
=
"1.4.0"
parking_lot
=
"0.11.1"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
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
"
}
node/network/collator-protocol/Cargo.toml
View file @
669fde1e
...
...
@@ -23,7 +23,7 @@ assert_matches = "1.4.0"
smallvec
=
"1.5.1"
futures-timer
=
"3.0.2"
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
features
=
["std"]
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
features
=
["std"]
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
polkadot-subsystem-testhelpers
=
{
package
=
"polkadot-node-subsystem-test-helpers"
,
path
=
"../../subsystem-test-helpers"
}
node/network/pov-distribution/Cargo.toml
View file @
669fde1e
...
...
@@ -21,7 +21,7 @@ env_logger = "0.8.1"
log
=
"0.4.11"
smallvec
=
"1.5.1"
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
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
"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/network/protocol/Cargo.toml
View file @
669fde1e
...
...
@@ -9,4 +9,4 @@ description = "Primitives types for the Node-side"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
parity-scale-codec
=
{
version
=
"1.3.5"
,
default-features
=
false
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
node/network/statement-distribution/Cargo.toml
View file @
669fde1e
...
...
@@ -11,7 +11,7 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
,
default-features
=
false
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-network-protocol
=
{
path
=
"../../network/protocol"
}
...
...
@@ -21,8 +21,8 @@ indexmap = "1.6.1"
[dev-dependencies]
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
assert_matches
=
"1.4.0"
sp-keyring
=
{
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
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
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
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rh-babe-current-epoch-info
"
}
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment