Unverified Commit 841c59f3 authored by Tomasz Drwięga's avatar Tomasz Drwięga
Browse files

Change branch.

parent 228010ea
......@@ -9,12 +9,12 @@ build = "build.rs"
[dependencies]
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
tiny-keccak = "1.5.0"
dlmalloc = { version = "0.1.3", features = [ "global" ] }
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, features = [ "disable_allocator" ] }
[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.6" }
......
......@@ -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 = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", 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 = "master", default-features = false }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
[dev-dependencies]
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pretty_assertions = "0.5.1"
[features]
......
......@@ -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 = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master"}
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master"}
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" }
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor"}
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor"}
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor"}
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor"}
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
......@@ -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 = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", 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 = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
trie-db = "0.22.0"
serde_json = "1.0.41"
libsecp256k1 = "0.3.2"
......
......@@ -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 = "master", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
recovery = { package = "pallet-recovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
society = { package = "pallet-society", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
recovery = { package = "pallet-recovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
society = { package = "pallet-society", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", 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 = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
serde_json = "1.0.41"
[build-dependencies]
......
......@@ -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 = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", 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 = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
serde_json = "1.0.41"
libsecp256k1 = "0.3.2"
......
......@@ -15,59 +15,59 @@ 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 = "master", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
membership = { package = "pallet-membership", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
nicks = { package = "pallet-nicks", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false, optional = true }
hex-literal = { version = "0.2.1", optional = true }
runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false }
......@@ -77,8 +77,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 = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
trie-db = "0.22.0"
serde_json = "1.0.41"
......
......@@ -14,43 +14,43 @@ serde = { version = "1.0.102", default-features = false }
serde_derive = { version = "1.0.102", optional = true }
smallvec = "1.4.1"
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }