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
0c947b04
Unverified
Commit
0c947b04
authored
Jan 03, 2020
by
Max Inden
Browse files
[TMP] *: Replace polkadot-upstream with feature branch
parent
019a66d6
Pipeline
#73273
passed with stage
in 11 minutes and 34 seconds
Changes
17
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Cargo.lock
View file @
0c947b04
This source diff could not be displayed because it is too large. You can
view the blob
instead.
availability-store/Cargo.toml
View file @
0c947b04
...
...
@@ -15,15 +15,15 @@ futures = "0.3.1"
tokio
=
{
version
=
"0.2.4"
,
features
=
["rt-core"]
}
exit-future
=
"0.2.0"
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-client
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-blockchain
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-network
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
client
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-client
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-blockchain
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
keystore
=
{
package
=
"sc-keystore"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
kvdb
=
"0.2.0"
kvdb-memorydb
=
"0.2.0"
...
...
cli/Cargo.toml
View file @
0c947b04
...
...
@@ -14,7 +14,7 @@ tokio = "0.1.22"
futures
=
{
version
=
"0.3.1"
,
features
=
["compat"]
}
futures01
=
{
package
=
"futures"
,
version
=
"0.1.29"
}
structopt
=
"
=
0.3
.
7
"
cli
=
{
package
=
"sc-cli"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
cli
=
{
package
=
"sc-cli"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
service
=
{
package
=
"polkadot-service"
,
path
=
"../service"
,
default-features
=
false
}
libp2p
=
{
version
=
"0.13.1"
,
default-features
=
false
,
optional
=
true
}
...
...
@@ -24,8 +24,8 @@ console_log = { version = "0.1.2", optional = true }
console_error_panic_hook
=
{
version
=
"0.1.1"
,
optional
=
true
}
js-sys
=
{
version
=
"0.3.22"
,
optional
=
true
}
kvdb-web
=
{
version
=
"0.1.1"
,
optional
=
true
}
substrate-service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
optional
=
true
,
default-features
=
false
}
substrate-network
=
{
package
=
"sc-network"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
optional
=
true
}
substrate-service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
optional
=
true
,
default-features
=
false
}
substrate-network
=
{
package
=
"sc-network"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
optional
=
true
}
# Imported just for the `wasm-bindgen` feature
rand
=
{
version
=
"0.7"
,
features
=
["wasm-bindgen"]
,
optional
=
true
}
...
...
collator/Cargo.toml
View file @
0c947b04
...
...
@@ -7,12 +7,12 @@ edition = "2018"
[dependencies]
futures
=
"0.3.1"
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-network
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-blockchain
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-network
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-blockchain
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
polkadot-primitives
=
{
path
=
"../primitives"
}
polkadot-cli
=
{
path
=
"../cli"
}
polkadot-network
=
{
path
=
"../network"
}
...
...
@@ -23,4 +23,4 @@ tokio = "0.1.22"
futures-timer
=
"1.0"
[dev-dependencies]
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
erasure-coding/Cargo.toml
View file @
0c947b04
...
...
@@ -8,6 +8,6 @@ edition = "2018"
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../primitives"
}
reed_solomon
=
{
package
=
"reed-solomon-erasure"
,
git
=
"https://github.com/paritytech/reed-solomon-erasure"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
,
features
=
["derive"]
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
derive_more
=
"0.15.0"
network/Cargo.toml
View file @
0c947b04
...
...
@@ -13,16 +13,16 @@ polkadot-validation = { path = "../validation" }
polkadot-primitives
=
{
path
=
"../primitives"
}
polkadot-erasure-coding
=
{
path
=
"../erasure-coding"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
,
features
=
["derive"]
}
sc-network
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-network-gossip
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-network
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-network-gossip
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
futures
=
"0.3.1"
log
=
"0.4.8"
exit-future
=
"0.2.0"
sc-client
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-blockchain
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-client
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-blockchain
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
[dev-dependencies]
sp-keyring
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-keyring
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
parachain/Cargo.toml
View file @
0c947b04
...
...
@@ -10,8 +10,8 @@ codec = { package = "parity-scale-codec", version = "1.1.0", default-features =
wasmi
=
{
version
=
"0.4.5"
,
optional
=
true
}
derive_more
=
{
version
=
"0.14.1"
,
optional
=
true
}
serde
=
{
version
=
"1.0.102"
,
default-features
=
false
,
features
=
[
"derive"
]
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
lazy_static
=
{
version
=
"1.4.0"
,
optional
=
true
}
parking_lot
=
{
version
=
"0.7.1"
,
optional
=
true
}
log
=
{
version
=
"0.4.8"
,
optional
=
true
}
...
...
primitives/Cargo.toml
View file @
0c947b04
...
...
@@ -7,20 +7,20 @@ edition = "2018"
[dependencies]
serde
=
{
version
=
"1.0.102"
,
optional
=
true
,
features
=
["derive"]
}
parity-scale-codec
=
{
version
=
"1.1.0"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
application-crypto
=
{
package
=
"sp-application-crypto"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
sp-version
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
application-crypto
=
{
package
=
"sp-application-crypto"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
sp-version
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
polkadot-parachain
=
{
path
=
"../parachain"
,
default-features
=
false
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
bitvec
=
{
version
=
"0.15.2"
,
default-features
=
false
,
features
=
["alloc"]
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
[dev-dependencies]
sp-serializer
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-serializer
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pretty_assertions
=
"0.5.1"
[features]
...
...
rpc/Cargo.toml
View file @
0c947b04
...
...
@@ -5,12 +5,12 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition
=
"2018"
[dependencies]
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
jsonrpc-core
=
"14.0.3"
polkadot-primitives
=
{
path
=
"../primitives"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-rpc
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
txpool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
frame-rpc-system
=
{
package
=
"substrate-frame-rpc-system"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
pallet-transaction-payment-rpc
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-rpc
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
txpool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
frame-rpc-system
=
{
package
=
"substrate-frame-rpc-system"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-transaction-payment-rpc
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
}
runtime/common/Cargo.toml
View file @
0c947b04
...
...
@@ -12,21 +12,21 @@ rustc-hex = { version = "2.0.1", default-features = false }
serde
=
{
version
=
"1.0.102"
,
default-features
=
false
}
serde_derive
=
{
version
=
"1.0.102"
,
optional
=
true
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-io
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-staking
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-io
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-staking
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
frame-support
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
frame-support
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../primitives"
,
default-features
=
false
}
polkadot-parachain
=
{
path
=
"../../parachain"
,
default-features
=
false
}
...
...
@@ -35,12 +35,12 @@ polkadot-parachain = { path = "../../parachain", default-features = false }
hex-literal
=
"0.2.1"
libsecp256k1
=
"0.3.2"
tiny-keccak
=
"1.5.0"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-trie
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-trie
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
trie-db
=
"0.16.0"
serde_json
=
"1.0.41"
...
...
runtime/kusama/Cargo.toml
View file @
0c947b04
...
...
@@ -14,49 +14,49 @@ safe-mix = { version = "1.0.0", default-features = false }
serde
=
{
version
=
"1.0.102"
,
default-features
=
false
}
serde_derive
=
{
version
=
"1.0.102"
,
optional
=
true
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-io
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-staking
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-session
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-io
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-staking
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-session
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
features
=
["migrate-authorities"]
,
branch
=
"
polkadot-mast
er"
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
frame-support
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
features
=
["migrate-authorities"]
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
frame-support
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
runtime-common
=
{
package
=
"polkadot-runtime-common"
,
path
=
"../common"
,
default-features
=
false
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../primitives"
,
default-features
=
false
}
...
...
@@ -66,8 +66,8 @@ polkadot-parachain = { path = "../../parachain", default-features = false }
hex-literal
=
"0.2.1"
libsecp256k1
=
"0.3.2"
tiny-keccak
=
"1.5.0"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-trie
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-trie
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
trie-db
=
"0.16.0"
serde_json
=
"1.0.41"
...
...
runtime/polkadot/Cargo.toml
View file @
0c947b04
...
...
@@ -14,47 +14,47 @@ safe-mix = { version = "1.0.0", default-features = false }
serde
=
{
version
=
"1.0.102"
,
default-features
=
false
}
serde_derive
=
{
version
=
"1.0.102"
,
optional
=
true
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-staking
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-core
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
sp-session
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-staking
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-core
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-session
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
features
=
["migrate-authorities"]
,
branch
=
"
polkadot-mast
er"
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
frame-support
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
paritytech
/substrate"
,
default-features
=
false
,
branch
=
"
polkadot-mast
er"
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
features
=
["migrate-authorities"]
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
frame-support
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/
mxinden
/substrate"
,
default-features
=
false
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
runtime-common
=
{
package
=
"polkadot-runtime-common"
,
path
=
"../common"
,
default-features
=
false
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../primitives"
,
default-features
=
false
}
...
...
@@ -64,8 +64,8 @@ polkadot-parachain = { path = "../../parachain", default-features = false }
hex-literal
=
"0.2.1"
libsecp256k1
=
"0.3.2"
tiny-keccak
=
"1.5.0"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-trie
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-trie
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
trie-db
=
"0.16.0"
serde_json
=
"1.0.41"
...
...
service/Cargo.toml
View file @
0c947b04
...
...
@@ -19,38 +19,38 @@ polkadot-runtime = { path = "../runtime/polkadot" }
kusama-runtime
=
{
path
=
"../runtime/kusama"
}
polkadot-network
=
{
path
=
"../network"
}
polkadot-rpc
=
{
path
=
"../rpc"
}
sp-io
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-runtime
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-blockchain
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
client-db
=
{
package
=
"sc-client-db"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-executor
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-network
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
telemetry
=
{
package
=
"sc-telemetry"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-transaction-pool
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-transaction-pool
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sc-keystore
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
pallet-babe
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
pallet-staking
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-block-builder
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-io
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-runtime
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-blockchain
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
client
=
{
package
=
"sc-client"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
client-api
=
{
package
=
"sc-client-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
client-db
=
{
package
=
"sc-client-db"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-executor
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-network
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
consensus_common
=
{
package
=
"sp-consensus"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
grandpa
=
{
package
=
"sc-finality-grandpa"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
grandpa_primitives
=
{
package
=
"sp-finality-grandpa"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
service
=
{
package
=
"sc-service"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
telemetry
=
{
package
=
"sc-telemetry"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-transaction-pool
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-transaction-pool
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sc-keystore
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-babe
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-staking
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authority-discovery
=
{
package
=
"sc-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe
=
{
package
=
"sc-consensus-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-block-builder
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
}
sp-session
=
{
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-offchain
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
paritytech
/substrate"
,
branch
=
"
polkadot-mast
er"
}
sp-session
=
{
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
sp-offchain
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/
mxinden
/substrate"
,
branch
=
"
extract-gossip-authority-discov
er
y
"
}
[features]
default
=
["rocksdb"]
...
...