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
841c59f3
Unverified
Commit
841c59f3
authored
Jul 16, 2020
by
Tomasz Drwięga
Browse files
Change branch.
parent
228010ea
Changes
33
Hide whitespace changes
Inline
Side-by-side
availability-store/Cargo.toml
View file @
841c59f3
...
...
@@ -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.0"
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
kvdb
=
"0.7.0"
kvdb-memorydb
=
"0.7.0"
...
...
cli/Cargo.toml
View file @
841c59f3
...
...
@@ -17,26 +17,26 @@ 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
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
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
=
"
maste
r"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
optional
=
true
}
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
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
=
"
maste
r"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
[build-dependencies]
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
substrate-build-script-utils
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
[features]
default
=
[
"wasmtime"
,
"db"
,
"cli"
,
"service-old"
]
...
...
collator/Cargo.toml
View file @
841c59f3
...
...
@@ -7,16 +7,16 @@ edition = "2018"
[dependencies]
futures
=
"0.3.4"
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
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.0"
}
[dev-dependencies]
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
[features]
default
=
["service-old"]
...
...
core-primitives/Cargo.toml
View file @
841c59f3
...
...
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition
=
"2018"
[dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.0"
,
default-features
=
false
,
features
=
[
"derive"
]
}
[features]
...
...
erasure-coding/Cargo.toml
View file @
841c59f3
...
...
@@ -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.0"
,
default-features
=
false
,
features
=
["derive"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
derive_more
=
"0.15.0"
network/Cargo.toml
View file @
841c59f3
...
...
@@ -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.0"
,
default-features
=
false
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network-gossip
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network-gossip
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
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
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
wasm-timer
=
"0.2.4"
rand
=
"0.7.3"
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
network/test/Cargo.toml
View file @
841c59f3
...
...
@@ -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
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["test-helpers"]
,
branch
=
"
maste
r"
}
sc-network-test
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["test-helpers"]
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network-test
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
polkadot-test-runtime-client
=
{
path
=
"../../runtime/test-runtime/client"
}
node/core/backing/Cargo.toml
View file @
841c59f3
...
...
@@ -6,11 +6,11 @@ edition = "2018"
[dependencies]
futures
=
"0.3.5"
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
...
...
@@ -20,7 +20,7 @@ derive_more = "0.99.9"
bitvec
=
{
version
=
"0.17.4"
,
default-features
=
false
,
features
=
["alloc"]
}
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
futures
=
{
version
=
"0.3.5"
,
features
=
["thread-pool"]
}
subsystem-test
=
{
package
=
"polkadot-subsystem-test-helpers"
,
path
=
"../../test-helpers/subsystem"
}
assert_matches
=
"1.3.0"
node/core/proposer/Cargo.toml
View file @
841c59f3
...
...
@@ -12,16 +12,16 @@ parity-scale-codec = "1.3.0"
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-telemetry
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-telemetry
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
tokio-executor
=
{
version
=
"0.2.0-alpha.6"
,
features
=
["blocking"]
}
wasm-timer
=
"0.2.4"
node/network/bridge/Cargo.toml
View file @
841c59f3
...
...
@@ -12,8 +12,8 @@ streamunordered = "0.5.1"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
parity-scale-codec
=
"1.3.0"
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
[dev-dependencies]
...
...
node/network/pov-distribution/Cargo.toml
View file @
841c59f3
...
...
@@ -12,8 +12,8 @@ streamunordered = "0.5.1"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
node-primitives
=
{
package
=
"polkadot-node-primitives"
,
path
=
"../../primitives"
}
parity-scale-codec
=
"1.3.0"
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
[dev-dependencies]
...
...
node/network/statement-distribution/Cargo.toml
View file @
841c59f3
...
...
@@ -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.0"
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
arrayvec
=
"0.5.1"
indexmap
=
"1.4.0"
...
...
@@ -23,4 +23,4 @@ indexmap = "1.4.0"
parking_lot
=
"0.10.0"
subsystem-test
=
{
package
=
"polkadot-subsystem-test-helpers"
,
path
=
"../../test-helpers/subsystem"
}
assert_matches
=
"1.3.0"
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
node/overseer/Cargo.toml
View file @
841c59f3
...
...
@@ -10,7 +10,7 @@ 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
=
"
maste
r"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../subsystem"
}
async-trait
=
"0.1"
...
...
node/primitives/Cargo.toml
View file @
841c59f3
...
...
@@ -9,5 +9,5 @@ description = "Primitives types for the Node-side"
polkadot-primitives
=
{
path
=
"../../primitives"
}
polkadot-statement-table
=
{
path
=
"../../statement-table"
}
parity-scale-codec
=
{
version
=
"1.3.0"
,
default-features
=
false
,
features
=
["derive"]
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
async-trait
=
"0.1"
node/service/Cargo.toml
View file @
841c59f3
...
...
@@ -21,47 +21,47 @@ westend-runtime = { path = "../../runtime/westend" }
polkadot-network
=
{
path
=
"../../network"
,
optional
=
true
}
polkadot-rpc
=
{
path
=
"../../rpc"
}
polkadot-node-core-proposer
=
{
path
=
"../core/proposer"
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-chain-spec
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
telemetry
=
{
package
=
"sc-telemetry"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
pallet-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
pallet-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-db
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-chain-spec
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
telemetry
=
{
package
=
"sc-telemetry"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
pallet-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
pallet-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.0"
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-offchain
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-offchain
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
[dev-dependencies]
polkadot-test-runtime-client
=
{
path
=
"../../runtime/test-runtime/client"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
env_logger
=
"0.7.0"
[features]
...
...
node/subsystem/Cargo.toml
View file @
841c59f3
...
...
@@ -10,13 +10,13 @@ async-trait = "0.1"
derive_more
=
"0.99.9"
futures
=
"0.3.5"
futures-timer
=
"3.0.2"
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
log
=
"0.4.8"
parity-scale-codec
=
"1.3.0"
pin-project
=
"0.4.22"
polkadot-node-primitives
=
{
path
=
"../primitives"
}
polkadot-primitives
=
{
path
=
"../../primitives"
}
polkadot-statement-table
=
{
path
=
"../../statement-table"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
streamunordered
=
"0.5.1"
node/test-service/Cargo.toml
View file @
841c59f3
...
...
@@ -23,34 +23,34 @@ polkadot-service = { path = "../../service" }
polkadot-test-runtime
=
{
path
=
"../../runtime/test-runtime"
}
# Substrate dependencies
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
frame-system
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
pallet-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
pallet-transaction-payment
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-chain-spec
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-informant
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sc-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-arithmetic
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
substrate-test-client
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
frame-system
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
pallet-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
pallet-transaction-payment
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-chain-spec
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-informant
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sc-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
sp-arithmetic
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
sp-state-machine
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
substrate-test-client
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
[dev-dependencies]
pallet-balances
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
pallet-balances
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
serde_json
=
"1.0"
tokio
=
{
version
=
"0.2"
,
features
=
["macros"]
}
parachain/Cargo.toml
View file @
841c59f3
...
...
@@ -10,17 +10,17 @@ edition = "2018"
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
# various unnecessary Substrate-specific endpoints.
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
,
features
=
[
"derive"
]
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-wasm-interface
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
sp-wasm-interface
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
polkadot-core-primitives
=
{
path
=
"../core-primitives"
,
default-features
=
false
}
# all optional crates.
derive_more
=
{
version
=
"0.99.2"
,
optional
=
true
}
serde
=
{
version
=
"1.0.102"
,
default-features
=
false
,
features
=
[
"derive"
],
optional
=
true
}
sp-externalities
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
optional
=
true
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
optional
=
true
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
optional
=
true
}
sp-externalities
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
sc-executor
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
optional
=
true
}
parking_lot
=
{
version
=
"0.10.0"
,
optional
=
true
}
log
=
{
version
=
"0.4.8"
,
optional
=
true
}
...
...
parachain/test-parachains/adder/Cargo.toml
View file @
841c59f3
...
...
@@ -9,12 +9,12 @@ build = "build.rs"
[dependencies]
parachain
=
{
package
=
"polkadot-parachain"
,
path
=
"../../"
,
default-features
=
false
,
features
=
[
"wasm-api"
]
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.0"
,
default-features
=
false
,
features
=
["derive"]
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
}
tiny-keccak
=
"1.5.0"
dlmalloc
=
{
version
=
"0.1.3"
,
features
=
[
"global"
]
}
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
runtime-io
=
{
package
=
"sp-io"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
,
default-features
=
false
,
features
=
[
"disable_allocator"
]
}
runtime-io
=
{
package
=
"sp-io"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
,
default-features
=
false
,
features
=
[
"disable_allocator"
]
}
[build-dependencies]
wasm-builder-runner
=
{
package
=
"substrate-wasm-builder-runner"
,
version
=
"1.0.6"
}
...
...
parachain/test-parachains/adder/collator/Cargo.toml
View file @
841c59f3
...
...
@@ -9,8 +9,8 @@ adder = { package = "test-parachain-adder", path = ".." }
parachain
=
{
package
=
"polkadot-parachain"
,
path
=
"../../.."
}
collator
=
{
package
=
"polkadot-collator"
,
path
=
"../../../../collator"
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../../../primitives"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
maste
r"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-weight-parameters-refacto
r"
}
parking_lot
=
"0.10.0"
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.2.0"
}
futures
=
"0.3.4"
Prev
1
2
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