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
e9164236
Commit
e9164236
authored
Aug 04, 2020
by
Bastian Köcher
Browse files
Update branch
parent
0674ba96
Changes
43
Expand all
Hide whitespace changes
Inline
Side-by-side
Cargo.lock
View file @
e9164236
This diff is collapsed.
Click to expand it.
availability-store/Cargo.toml
View file @
e9164236
...
...
@@ -15,14 +15,14 @@ futures = "0.3.4"
tokio
=
{
version
=
"0.2.13"
,
features
=
["rt-core"]
}
exit-future
=
"0.2.0"
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.4"
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
version
=
"2.0.0-rc5"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
version
=
"2.0.0-rc5"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
kvdb
=
"0.7.0"
kvdb-memorydb
=
"0.7.0"
...
...
cli/Cargo.toml
View file @
e9164236
...
...
@@ -17,29 +17,29 @@ crate-type = ["cdylib", "rlib"]
log
=
"0.4.8"
futures
=
{
version
=
"0.3.4"
,
features
=
["compat"]
}
structopt
=
"0.3.8"
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
service
=
{
package
=
"polkadot-service"
,
path
=
"../service"
,
default-features
=
false
,
optional
=
true
}
service-new
=
{
package
=
"polkadot-service-new"
,
path
=
"../node/service"
,
default-features
=
false
,
optional
=
true
}
tokio
=
{
version
=
"0.2.13"
,
features
=
["rt-threaded"]
,
optional
=
true
}
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
optional
=
true
}
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
optional
=
true
}
wasm-bindgen
=
{
version
=
"0.2.57"
,
optional
=
true
}
wasm-bindgen-futures
=
{
version
=
"0.4.7"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
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
=
"
cumulus
-branch"
,
default-features
=
false
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
default-features
=
false
}
[build-dependencies]
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
[features]
default
=
[
"wasmtime"
,
"db"
,
"cli"
,
"service-old"
,
"trie-memory-tracker"
]
...
...
collator/Cargo.toml
View file @
e9164236
...
...
@@ -7,16 +7,16 @@ edition = "2018"
[dependencies]
futures
=
"0.3.4"
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-primitives
=
{
path
=
"../primitives"
}
polkadot-cli
=
{
path
=
"../cli"
}
polkadot-network
=
{
path
=
"../network"
}
...
...
@@ -29,7 +29,7 @@ futures-timer = "2.0"
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.4"
}
[dev-dependencies]
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
[features]
default
=
["service-old"]
...
...
core-primitives/Cargo.toml
View file @
e9164236
...
...
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition
=
"2018"
[dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
default-features
=
false
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.4"
,
default-features
=
false
,
features
=
[
"derive"
]
}
[features]
...
...
erasure-coding/Cargo.toml
View file @
e9164236
...
...
@@ -8,6 +8,6 @@ edition = "2018"
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../primitives"
}
reed_solomon
=
{
package
=
"reed-solomon-erasure"
,
version
=
"4.0.2"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.4"
,
default-features
=
false
,
features
=
["derive"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
derive_more
=
"0.15.0"
network/Cargo.toml
View file @
e9164236
...
...
@@ -15,19 +15,19 @@ polkadot-validation = { path = "../validation" }
polkadot-primitives
=
{
path
=
"../primitives"
}
polkadot-erasure-coding
=
{
path
=
"../erasure-coding"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.4"
,
default-features
=
false
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network-gossip
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-network-gossip
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
"0.3.5"
log
=
"0.4.8"
exit-future
=
"0.2.0"
futures-timer
=
"2.0"
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
wasm-timer
=
"0.2.4"
rand
=
"0.7.3"
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
network/test/Cargo.toml
View file @
e9164236
...
...
@@ -10,14 +10,14 @@ log = "0.4.8"
parking_lot
=
"0.10.0"
futures
=
"0.3.1"
rand
=
"0.7.2"
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["test-helpers"]
,
branch
=
"
cumulus
-branch"
}
sc-network-test
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["test-helpers"]
,
branch
=
"
rococo
-branch"
}
sc-network-test
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-test-runtime-client
=
{
path
=
"../../runtime/test-runtime/client"
}
node/core/av-store/Cargo.toml
View file @
e9164236
...
...
@@ -17,7 +17,7 @@ log = "0.4.8"
derive_more
=
"0.99.9"
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
[
"test-helpers"
]
}
kvdb-memorydb
=
"0.7.0"
...
...
node/core/backing/Cargo.toml
View file @
e9164236
...
...
@@ -6,10 +6,10 @@ edition = "2018"
[dependencies]
futures
=
"0.3.5"
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
...
...
@@ -20,8 +20,8 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
log
=
"0.4.8"
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.3.0"
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
[
"test-helpers"
]
}
node/core/bitfield-signing/Cargo.toml
View file @
e9164236
...
...
@@ -11,5 +11,5 @@ futures = "0.3.5"
log
=
"0.4.8"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
wasm-timer
=
"0.2.4"
node/core/candidate-validation/Cargo.toml
View file @
e9164236
...
...
@@ -6,8 +6,8 @@ edition = "2018"
[dependencies]
futures
=
"0.3.5"
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
parity-scale-codec
=
{
version
=
"1.3.0"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
...
...
@@ -18,7 +18,7 @@ derive_more = "0.99.9"
log
=
"0.4.8"
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.3.0"
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
["test-helpers"]
}
node/core/chain-api/Cargo.toml
View file @
e9164236
...
...
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
futures
=
{
version
=
"0.3.5"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
...
...
@@ -14,4 +14,4 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
maplit
=
"1.0.2"
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
["test-helpers"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
node/core/proposer/Cargo.toml
View file @
e9164236
...
...
@@ -12,16 +12,16 @@ parity-scale-codec = "1.3.4"
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-telemetry
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sc-telemetry
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
tokio-executor
=
{
version
=
"0.2.0-alpha.6"
,
features
=
["blocking"]
}
wasm-timer
=
"0.2.4"
node/core/runtime-api/Cargo.toml
View file @
e9164236
...
...
@@ -6,14 +6,14 @@ edition = "2018"
[dependencies]
futures
=
"0.3.5"
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
["test-helpers"]
}
node/network/bitfield-distribution/Cargo.toml
View file @
e9164236
...
...
@@ -15,12 +15,12 @@ polkadot-primitives = { path = "../../../primitives" }
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-network-bridge
=
{
path
=
"../../network/bridge"
}
polkadot-network
=
{
path
=
"../../../network"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
[dev-dependencies]
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
[
"test-helpers"
]
}
bitvec
=
{
version
=
"0.17.4"
,
default-features
=
false
,
features
=
["alloc"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
parking_lot
=
"0.10.0"
maplit
=
"1.0.2"
smol
=
"0.2.0"
...
...
node/network/bridge/Cargo.toml
View file @
e9164236
...
...
@@ -12,12 +12,12 @@ streamunordered = "0.5.1"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
parity-scale-codec
=
"1.3.4"
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
[dev-dependencies]
assert_matches
=
"1.3.0"
parking_lot
=
"0.10.0"
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
[
"test-helpers"
]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
node/network/pov-distribution/Cargo.toml
View file @
e9164236
...
...
@@ -12,12 +12,12 @@ streamunordered = "0.5.1"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
parity-scale-codec
=
"1.3.4"
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
[dev-dependencies]
parking_lot
=
"0.10.0"
assert_matches
=
"1.3.0"
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
[
"test-helpers"
]
}
node/network/statement-distribution/Cargo.toml
View file @
e9164236
...
...
@@ -13,8 +13,8 @@ streamunordered = "0.5.1"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
parity-scale-codec
=
"1.3.4"
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
,
default-features
=
false
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
arrayvec
=
"0.5.1"
indexmap
=
"1.4.0"
...
...
@@ -23,5 +23,5 @@ indexmap = "1.4.0"
parking_lot
=
"0.10.0"
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
,
features
=
["test-helpers"]
}
assert_matches
=
"1.3.0"
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
node/overseer/Cargo.toml
View file @
e9164236
...
...
@@ -10,13 +10,13 @@ log = "0.4.8"
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
=
"
cumulus
-branch"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../subsystem"
}
polkadot-node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../primitives"
}
async-trait
=
"0.1"
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
cumulus
-branch"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
rococo
-branch"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
futures-timer
=
"3.0.2"
femme
=
"2.0.1"
...
...
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