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
a7063358
Unverified
Commit
a7063358
authored
Jul 09, 2020
by
Ashley Ruglys
Browse files
Switch branch
parent
b651e4af
Changes
32
Hide whitespace changes
Inline
Side-by-side
primitives/Cargo.toml
View file @
a7063358
...
...
@@ -7,22 +7,22 @@ edition = "2018"
[dependencies]
serde
=
{
version
=
"1.0.102"
,
optional
=
true
,
features
=
["derive"]
}
parity-scale-codec
=
{
version
=
"1.3.0"
,
default-features
=
false
,
features
=
[
"bit-vec"
,
"derive"
]
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
application-crypto
=
{
package
=
"sp-application-crypto"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-version
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
primitives
=
{
package
=
"sp-core"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
application-crypto
=
{
package
=
"sp-application-crypto"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-version
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
runtime_primitives
=
{
package
=
"sp-runtime"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
polkadot-parachain
=
{
path
=
"../parachain"
,
default-features
=
false
}
polkadot-core-primitives
=
{
path
=
"../core-primitives"
,
default-features
=
false
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
trie
=
{
package
=
"sp-trie"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
bitvec
=
{
version
=
"0.17.4"
,
default-features
=
false
,
features
=
["alloc"]
}
frame-system
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-system
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
[dev-dependencies]
sp-serializer
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-serializer
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
pretty_assertions
=
"0.5.1"
[features]
...
...
rpc/Cargo.toml
View file @
a7063358
...
...
@@ -7,21 +7,21 @@ edition = "2018"
[dependencies]
jsonrpc-core
=
"14.0.3"
polkadot-primitives
=
{
path
=
"../primitives"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-consensus-babe-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-consensus-epochs
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-finality-grandpa
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-finality-grandpa-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
txpool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
frame-rpc-system
=
{
package
=
"substrate-frame-rpc-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
pallet-transaction-payment-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sc-client-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-blockchain
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-consensus
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-consensus-babe
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-consensus-babe-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-consensus-epochs
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-finality-grandpa
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-finality-grandpa-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sc-keystore
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
txpool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
frame-rpc-system
=
{
package
=
"substrate-frame-rpc-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
pallet-transaction-payment-rpc
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.3.0"
,
default-features
=
false
}
sp-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-block-builder
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
runtime/common/Cargo.toml
View file @
a7063358
...
...
@@ -13,39 +13,39 @@ serde = { version = "1.0.102", default-features = false }
serde_derive
=
{
version
=
"1.0.102"
,
optional
=
true
}
static_assertions
=
"1.1.0"
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../primitives"
,
default-features
=
false
}
libsecp256k1
=
{
version
=
"0.3.2"
,
default-features
=
false
,
optional
=
true
}
[dev-dependencies]
hex-literal
=
"0.2.1"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
trie-db
=
"0.22.0"
serde_json
=
"1.0.41"
libsecp256k1
=
"0.3.2"
...
...
runtime/kusama/Cargo.toml
View file @
a7063358
...
...
@@ -15,60 +15,60 @@ serde_derive = { version = "1.0.102", optional = true }
static_assertions
=
"1.1.0"
smallvec
=
"1.4.1"
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment-rpc-runtime-api
=
{
package
=
"pallet-transaction-payment-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
multisig
=
{
package
=
"pallet-multisig"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
proxy
=
{
package
=
"pallet-proxy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
recovery
=
{
package
=
"pallet-recovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
scheduler
=
{
package
=
"pallet-scheduler"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
society
=
{
package
=
"pallet-society"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
pallet-staking-reward-curve
=
{
package
=
"pallet-staking-reward-curve"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
transaction-payment-rpc-runtime-api
=
{
package
=
"pallet-transaction-payment-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
multisig
=
{
package
=
"pallet-multisig"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
proxy
=
{
package
=
"pallet-proxy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
recovery
=
{
package
=
"pallet-recovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
scheduler
=
{
package
=
"pallet-scheduler"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
society
=
{
package
=
"pallet-society"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
pallet-staking-reward-curve
=
{
package
=
"pallet-staking-reward-curve"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
pallet-offences-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
pallet-session-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
frame-system-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
pallet-offences-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
pallet-session-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
frame-system-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
hex-literal
=
{
version
=
"0.2.1"
,
optional
=
true
}
runtime-common
=
{
package
=
"polkadot-runtime-common"
,
path
=
"../common"
,
default-features
=
false
}
...
...
@@ -78,8 +78,8 @@ primitives = { package = "polkadot-primitives", path = "../../primitives", defau
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
=
"
m
as
ter
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
serde_json
=
"1.0.41"
[build-dependencies]
...
...
runtime/parachains/Cargo.toml
View file @
a7063358
...
...
@@ -12,25 +12,25 @@ 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
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
primitives
=
{
package
=
"polkadot-primitives"
,
path
=
"../../primitives"
,
default-features
=
false
}
libsecp256k1
=
{
version
=
"0.3.2"
,
default-features
=
false
,
optional
=
true
}
...
...
@@ -40,13 +40,13 @@ rand_chacha = { version = "0.2.2", default-features = false }
[dev-dependencies]
hex-literal
=
"0.2.1"
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-application-crypto
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
serde_json
=
"1.0.41"
libsecp256k1
=
"0.3.2"
...
...
runtime/polkadot/Cargo.toml
View file @
a7063358
...
...
@@ -15,58 +15,58 @@ serde_derive = { version = "1.0.102", optional = true }
static_assertions
=
"1.1.0"
smallvec
=
"1.4.1"
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authority-discovery-primitives
=
{
package
=
"sp-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offchain-primitives
=
{
package
=
"sp-offchain"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-std
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment-rpc-runtime-api
=
{
package
=
"pallet-transaction-payment-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
multisig
=
{
package
=
"pallet-multisig"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
proxy
=
{
package
=
"pallet-proxy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
scheduler
=
{
package
=
"pallet-scheduler"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sudo
=
{
package
=
"pallet-sudo"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
authority-discovery
=
{
package
=
"pallet-authority-discovery"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
transaction-payment-rpc-runtime-api
=
{
package
=
"pallet-transaction-payment-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
collective
=
{
package
=
"pallet-collective"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
democracy
=
{
package
=
"pallet-democracy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
elections-phragmen
=
{
package
=
"pallet-elections-phragmen"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
identity
=
{
package
=
"pallet-identity"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
im-online
=
{
package
=
"pallet-im-online"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
membership
=
{
package
=
"pallet-membership"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
multisig
=
{
package
=
"pallet-multisig"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
proxy
=
{
package
=
"pallet-proxy"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
scheduler
=
{
package
=
"pallet-scheduler"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
staking
=
{
package
=
"pallet-staking"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
pallet-staking-reward-curve
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
system
=
{
package
=
"frame-system"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
system_rpc_runtime_api
=
{
package
=
"frame-system-rpc-runtime-api"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
timestamp
=
{
package
=
"pallet-timestamp"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
treasury
=
{
package
=
"pallet-treasury"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sudo
=
{
package
=
"pallet-sudo"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
vesting
=
{
package
=
"pallet-vesting"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
utility
=
{
package
=
"pallet-utility"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
frame-system-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
pallet-offences-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
pallet-session-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
,
optional
=
true
}
frame-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
frame-system-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
pallet-offences-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
pallet-session-benchmarking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
,
optional
=
true
}
hex-literal
=
{
version
=
"0.2.1"
,
optional
=
true
}
runtime-common
=
{
package
=
"polkadot-runtime-common"
,
path
=
"../common"
,
default-features
=
false
}
...
...
@@ -76,8 +76,8 @@ primitives = { package = "polkadot-primitives", path = "../../primitives", defau
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
=
"
m
as
ter
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
}
keyring
=
{
package
=
"sp-keyring"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
sp-trie
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
}
trie-db
=
"0.22.0"
serde_json
=
"1.0.41"
...
...
runtime/test-runtime/Cargo.toml
View file @
a7063358
...
...
@@ -14,39 +14,39 @@ serde = { version = "1.0.102", default-features = false }
serde_derive
=
{
version
=
"1.0.102"
,
optional
=
true
}
smallvec
=
"1.4.1"
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe-primitives
=
{
package
=
"sp-consensus-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
inherents
=
{
package
=
"sp-inherents"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
rstd
=
{
package
=
"sp-std"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-io
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-runtime
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-staking
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-core
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
sp-session
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
version
=
{
package
=
"sp-version"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
tx-pool-api
=
{
package
=
"sp-transaction-pool"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
block-builder-api
=
{
package
=
"sp-block-builder"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"as
hley-txpool
"
,
default-features
=
false
}
authorship
=
{
package
=
"pallet-authorship"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
babe
=
{
package
=
"pallet-babe"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
balances
=
{
package
=
"pallet-balances"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
transaction-payment
=
{
package
=
"pallet-transaction-payment"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
pallet-transaction-payment-rpc-runtime-api
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
executive
=
{
package
=
"frame-executive"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
finality-tracker
=
{
package
=
"pallet-finality-tracker"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
grandpa
=
{
package
=
"pallet-grandpa"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
indices
=
{
package
=
"pallet-indices"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
nicks
=
{
package
=
"pallet-nicks"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
offences
=
{
package
=
"pallet-offences"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
randomness-collective-flip
=
{
package
=
"pallet-randomness-collective-flip"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
session
=
{
package
=
"pallet-session"
,
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=
false
}
frame-support
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"
m
as
ter
"
,
default-features
=