Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
a3bd3621
Unverified
Commit
a3bd3621
authored
Feb 17, 2021
by
Tomasz Drwięga
Browse files
Switch branch
parent
d3cb5942
Changes
48
Hide whitespace changes
Inline
Side-by-side
cli/Cargo.toml
View file @
a3bd3621
...
@@ -24,19 +24,19 @@ futures = "0.3.12"
...
@@ -24,19 +24,19 @@ futures = "0.3.12"
service
=
{
package
=
"polkadot-service"
,
path
=
"../node/service"
,
default-features
=
false
,
optional
=
true
}
service
=
{
package
=
"polkadot-service"
,
path
=
"../node/service"
,
default-features
=
false
,
optional
=
true
}
polkadot-parachain
=
{
path
=
"../parachain"
,
optional
=
true
}
polkadot-parachain
=
{
path
=
"../parachain"
,
optional
=
true
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
tracing-futures
=
"0.2.4"
tracing-futures
=
"0.2.4"
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
optional
=
true
}
frame-benchmarking-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
optional
=
true
,
branch
=
"td-mmr-custom"
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
optional
=
true
}
sc-cli
=
{
git
=
"https://github.com/paritytech/substrate"
,
optional
=
true
,
branch
=
"td-mmr-custom"
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
optional
=
true
}
sc-service
=
{
git
=
"https://github.com/paritytech/substrate"
,
optional
=
true
,
branch
=
"td-mmr-custom"
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
optional
=
true
}
browser-utils
=
{
package
=
"substrate-browser-utils"
,
git
=
"https://github.com/paritytech/substrate"
,
optional
=
true
,
branch
=
"td-mmr-custom"
}
# this crate is used only to enable `trie-memory-tracker` feature
# this crate is used only to enable `trie-memory-tracker` feature
# see https://github.com/paritytech/substrate/pull/6745
# 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"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
[build-dependencies]
[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
=
"
td-mmr-custom
"
}
[features]
[features]
default
=
[
"wasmtime"
,
"db"
,
"cli"
,
"full-node"
,
"trie-memory-tracker"
,
"polkadot-parachain"
]
default
=
[
"wasmtime"
,
"db"
,
"cli"
,
"full-node"
,
"trie-memory-tracker"
,
"polkadot-parachain"
]
...
...
core-primitives/Cargo.toml
View file @
a3bd3621
...
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
...
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition
=
"2018"
edition
=
"2018"
[dependencies]
[dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-std
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
[
"derive"
]
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
[
"derive"
]
}
parity-util-mem
=
{
version
=
"0.9.0"
,
default-features
=
false
,
optional
=
true
}
parity-util-mem
=
{
version
=
"0.9.0"
,
default-features
=
false
,
optional
=
true
}
...
...
erasure-coding/Cargo.toml
View file @
a3bd3621
...
@@ -8,6 +8,6 @@ edition = "2018"
...
@@ -8,6 +8,6 @@ edition = "2018"
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../primitives"
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../primitives"
}
reed_solomon
=
{
package
=
"reed-solomon-erasure"
,
version
=
"4.0.2"
}
reed_solomon
=
{
package
=
"reed-solomon-erasure"
,
version
=
"4.0.2"
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
["derive"]
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
["derive"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
node/collation-generation/Cargo.toml
View file @
a3bd3621
...
@@ -13,7 +13,7 @@ polkadot-node-primitives = { path = "../primitives" }
...
@@ -13,7 +13,7 @@ polkadot-node-primitives = { path = "../primitives" }
polkadot-node-subsystem
=
{
path
=
"../subsystem"
}
polkadot-node-subsystem
=
{
path
=
"../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../subsystem-util"
}
polkadot-primitives
=
{
path
=
"../../primitives"
}
polkadot-primitives
=
{
path
=
"../../primitives"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
[dev-dependencies]
[dev-dependencies]
...
...
node/core/approval-voting/Cargo.toml
View file @
a3bd3621
...
@@ -19,20 +19,20 @@ polkadot-overseer = { path = "../../overseer" }
...
@@ -19,20 +19,20 @@ polkadot-overseer = { path = "../../overseer" }
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sp-consensus-slots
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-consensus-slots
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
,
features
=
["full_crypto"]
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
features
=
["full_crypto"]
,
branch
=
"td-mmr-custom"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
[dev-dependencies]
[dev-dependencies]
parking_lot
=
"0.11.1"
parking_lot
=
"0.11.1"
rand_core
=
"0.5.1"
# should match schnorrkel
rand_core
=
"0.5.1"
# should match schnorrkel
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
maplit
=
"1.0.2"
maplit
=
"1.0.2"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
assert_matches
=
"1.4.0"
assert_matches
=
"1.4.0"
node/core/av-store/Cargo.toml
View file @
a3bd3621
...
@@ -21,7 +21,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
...
@@ -21,7 +21,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
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"
,
default-features
=
false
,
branch
=
"td-mmr-custom"
}
[dev-dependencies]
[dev-dependencies]
log
=
"0.4.13"
log
=
"0.4.13"
...
@@ -29,8 +29,8 @@ env_logger = "0.8.2"
...
@@ -29,8 +29,8 @@ env_logger = "0.8.2"
assert_matches
=
"1.4.0"
assert_matches
=
"1.4.0"
kvdb-memorydb
=
"0.9.0"
kvdb-memorydb
=
"0.9.0"
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
parking_lot
=
"0.11.1"
parking_lot
=
"0.11.1"
node/core/backing/Cargo.toml
View file @
a3bd3621
...
@@ -6,7 +6,7 @@ edition = "2018"
...
@@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
[dependencies]
futures
=
"0.3.12"
futures
=
"0.3.12"
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
...
@@ -19,10 +19,10 @@ tracing-futures = "0.2.4"
...
@@ -19,10 +19,10 @@ tracing-futures = "0.2.4"
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
[dev-dependencies]
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.4.0"
assert_matches
=
"1.4.0"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/core/bitfield-signing/Cargo.toml
View file @
a3bd3621
...
@@ -11,6 +11,6 @@ tracing-futures = "0.2.4"
...
@@ -11,6 +11,6 @@ tracing-futures = "0.2.4"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
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
=
"
td-mmr-custom
"
}
wasm-timer
=
"0.2.5"
wasm-timer
=
"0.2.5"
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
node/core/candidate-selection/Cargo.toml
View file @
a3bd3621
...
@@ -10,7 +10,7 @@ tracing = "0.1.22"
...
@@ -10,7 +10,7 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
tracing-futures
=
"0.2.4"
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
...
@@ -18,4 +18,4 @@ polkadot-node-primitives = { path = "../../primitives" }
...
@@ -18,4 +18,4 @@ polkadot-node-primitives = { path = "../../primitives" }
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[dev-dependencies]
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
node/core/candidate-validation/Cargo.toml
View file @
a3bd3621
...
@@ -9,7 +9,7 @@ futures = "0.3.12"
...
@@ -9,7 +9,7 @@ futures = "0.3.12"
tracing
=
"0.1.22"
tracing
=
"0.1.22"
tracing-futures
=
"0.2.4"
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
=
"
td-mmr-custom
"
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
...
@@ -19,7 +19,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys
...
@@ -19,7 +19,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[dev-dependencies]
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
assert_matches
=
"1.4.0"
assert_matches
=
"1.4.0"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
node/core/chain-api/Cargo.toml
View file @
a3bd3621
...
@@ -8,7 +8,7 @@ edition = "2018"
...
@@ -8,7 +8,7 @@ edition = "2018"
futures
=
"0.3.12"
futures
=
"0.3.12"
tracing
=
"0.1.22"
tracing
=
"0.1.22"
tracing-futures
=
"0.2.4"
tracing-futures
=
"0.2.4"
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
...
@@ -17,4 +17,4 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
...
@@ -17,4 +17,4 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
maplit
=
"1.0.2"
maplit
=
"1.0.2"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
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
=
"
td-mmr-custom
"
}
node/core/proposer/Cargo.toml
View file @
a3bd3621
...
@@ -11,14 +11,14 @@ tracing = "0.1.22"
...
@@ -11,14 +11,14 @@ tracing = "0.1.22"
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-node-subsystem
=
{
path
=
"../../subsystem"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-overseer
=
{
path
=
"../../overseer"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-basic-authorship
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-inherents
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-transaction-pool
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
prometheus-endpoint
=
{
package
=
"substrate-prometheus-endpoint"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
node/core/provisioner/Cargo.toml
View file @
a3bd3621
...
@@ -16,5 +16,5 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
...
@@ -16,5 +16,5 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
futures-timer
=
"3.0.2"
futures-timer
=
"3.0.2"
[dev-dependencies]
[dev-dependencies]
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
node/core/runtime-api/Cargo.toml
View file @
a3bd3621
...
@@ -11,16 +11,16 @@ tracing-futures = "0.2.4"
...
@@ -11,16 +11,16 @@ tracing-futures = "0.2.4"
memory-lru
=
"0.1.0"
memory-lru
=
"0.1.0"
parity-util-mem
=
{
version
=
"0.9.0"
,
default-features
=
false
}
parity-util-mem
=
{
version
=
"0.9.0"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
[dev-dependencies]
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
futures
=
{
version
=
"0.3.12"
,
features
=
["thread-pool"]
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
polkadot-node-primitives
=
{
path
=
"../../primitives"
}
node/jaeger/Cargo.toml
View file @
a3bd3621
...
@@ -11,7 +11,7 @@ mick-jaeger = "0.1.4"
...
@@ -11,7 +11,7 @@ mick-jaeger = "0.1.4"
lazy_static
=
"1.4"
lazy_static
=
"1.4"
parking_lot
=
"0.11.1"
parking_lot
=
"0.11.1"
polkadot-primitives
=
{
path
=
"../../primitives"
}
polkadot-primitives
=
{
path
=
"../../primitives"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
log
=
"0.4.13"
log
=
"0.4.13"
node/network/approval-distribution/Cargo.toml
View file @
a3bd3621
...
@@ -16,7 +16,7 @@ tracing = "0.1.22"
...
@@ -16,7 +16,7 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
tracing-futures
=
"0.2.4"
[dev-dependencies]
[dev-dependencies]
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
features
=
["std"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["std"]
,
branch
=
"td-mmr-custom"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
...
...
node/network/availability-distribution/Cargo.toml
View file @
a3bd3621
...
@@ -14,16 +14,16 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
...
@@ -14,16 +14,16 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-network-protocol
=
{
path
=
"../../network/protocol"
}
polkadot-node-network-protocol
=
{
path
=
"../../network/protocol"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"master"
,
features
=
["std"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["std"]
,
branch
=
"td-mmr-custom"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
thiserror
=
"1.0.23"
thiserror
=
"1.0.23"
[dev-dependencies]
[dev-dependencies]
polkadot-subsystem-testhelpers
=
{
package
=
"polkadot-node-subsystem-test-helpers"
,
path
=
"../../subsystem-test-helpers"
}
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-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
features
=
["std"]
,
branch
=
"td-mmr-custom"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-tracing
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-tracing
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
assert_matches
=
"1.4.0"
assert_matches
=
"1.4.0"
maplit
=
"1.0"
maplit
=
"1.0"
node/network/availability-recovery/Cargo.toml
View file @
a3bd3621
...
@@ -27,8 +27,8 @@ futures-timer = "3.0.2"
...
@@ -27,8 +27,8 @@ futures-timer = "3.0.2"
log
=
"0.4.11"
log
=
"0.4.11"
smallvec
=
"1.5.1"
smallvec
=
"1.5.1"
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-subsystem-testhelpers
=
{
package
=
"polkadot-node-subsystem-test-helpers"
,
path
=
"../../subsystem-test-helpers"
}
polkadot-subsystem-testhelpers
=
{
package
=
"polkadot-node-subsystem-test-helpers"
,
path
=
"../../subsystem-test-helpers"
}
node/network/bitfield-distribution/Cargo.toml
View file @
a3bd3621
...
@@ -17,9 +17,9 @@ polkadot-node-network-protocol = { path = "../../network/protocol" }
...
@@ -17,9 +17,9 @@ polkadot-node-network-protocol = { path = "../../network/protocol" }
[dev-dependencies]
[dev-dependencies]
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
bitvec
=
{
version
=
"0.20.1"
,
default-features
=
false
,
features
=
["alloc"]
}
bitvec
=
{
version
=
"0.20.1"
,
default-features
=
false
,
features
=
["alloc"]
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
maplit
=
"1.0.2"
maplit
=
"1.0.2"
log
=
"0.4.13"
log
=
"0.4.13"
env_logger
=
"0.8.2"
env_logger
=
"0.8.2"
...
...
node/network/bridge/Cargo.toml
View file @
a3bd3621
...
@@ -11,8 +11,8 @@ tracing = "0.1.22"
...
@@ -11,8 +11,8 @@ tracing = "0.1.22"
tracing-futures
=
"0.2.4"
tracing-futures
=
"0.2.4"
polkadot-primitives
=
{
path
=
"../../../primitives"
}
polkadot-primitives
=
{
path
=
"../../../primitives"
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
["derive"]
}
parity-scale-codec
=
{
version
=
"2.0.0"
,
default-features
=
false
,
features
=
["derive"]
}
sc-authority-discovery
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-authority-discovery
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sc-network
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-subsystem
=
{
package
=
"polkadot-node-subsystem"
,
path
=
"../../subsystem"
}
polkadot-node-network-protocol
=
{
path
=
"../protocol"
}
polkadot-node-network-protocol
=
{
path
=
"../protocol"
}
strum
=
"0.20.0"
strum
=
"0.20.0"
...
@@ -22,5 +22,5 @@ assert_matches = "1.4.0"
...
@@ -22,5 +22,5 @@ assert_matches = "1.4.0"
parking_lot
=
"0.11.1"
parking_lot
=
"0.11.1"
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-test-helpers
=
{
path
=
"../../subsystem-test-helpers"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
polkadot-node-subsystem-util
=
{
path
=
"../../subsystem-util"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
master
"
}
sp-keyring
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
td-mmr-custom
"
}
Prev
1
2
3
Next
gabriel klawitter
🏄
@gabriel
mentioned in commit
7a085f17
·
Feb 17, 2021
mentioned in commit
7a085f17
mentioned in commit 7a085f1754a0902e6b82a004c3e29bec458c9329
Toggle commit list
gabriel klawitter
🏄
@gabriel
mentioned in commit
378d3831
·
Mar 10, 2021
mentioned in commit
378d3831
mentioned in commit 378d383156700769b2d3ddafc78425666a6623d9
Toggle commit list
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