Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit b1f88ed

Browse files
committed
Update branches
1 parent 71b8882 commit b1f88ed

File tree

16 files changed

+227
-227
lines changed

16 files changed

+227
-227
lines changed

availability-store/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ futures = "0.3.4"
1515
tokio = { version = "0.2.10", features = ["rt-core"] }
1616
exit-future = "0.2.0"
1717
codec = { package = "parity-scale-codec", version = "1.1.0", features = ["derive"] }
18-
sc-network = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
19-
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
20-
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
21-
sc-client = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
22-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
23-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
24-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
25-
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
26-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
18+
sc-network = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
19+
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
20+
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
21+
sc-client = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
22+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
23+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
24+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
25+
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
26+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
2727
kvdb = "0.3.1"
2828
kvdb-memorydb = "0.3.1"
2929

cli/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ crate-type = ["cdylib", "rlib"]
1212
log = "0.4.8"
1313
futures = { version = "0.3.4", features = ["compat"] }
1414
structopt = "0.3.8"
15-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", optional = true }
16-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
17-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
18-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
19-
sc-client = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
20-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
21-
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
22-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
15+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", optional = true }
16+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
17+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
18+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
19+
sc-client = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
20+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
21+
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
22+
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
2323
service = { package = "polkadot-service", path = "../service", default-features = false }
2424

2525
tokio = { version = "0.2.10", features = ["rt-threaded"], optional = true }
2626

2727
wasm-bindgen = { version = "0.2.57", optional = true }
2828
wasm-bindgen-futures = { version = "0.4.7", optional = true }
29-
browser-utils = { package = "browser-utils", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", optional = true }
29+
browser-utils = { package = "browser-utils", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", optional = true }
3030

3131
[features]
3232
default = [ "wasmtime", "rocksdb", "cli" ]

collator/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ edition = "2018"
77

88
[dependencies]
99
futures = "0.3.4"
10-
sc-client = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
11-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
12-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
13-
sc-network = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
15-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
16-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
17-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
18-
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
10+
sc-client = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
11+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
12+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
13+
sc-network = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
15+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
16+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
17+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
18+
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
1919
polkadot-primitives = { path = "../primitives" }
2020
polkadot-cli = { path = "../cli" }
2121
polkadot-network = { path = "../network" }
@@ -27,4 +27,4 @@ futures-timer = "2.0"
2727
codec = { package = "parity-scale-codec", version = "1.1.0" }
2828

2929
[dev-dependencies]
30-
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
30+
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }

erasure-coding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ edition = "2018"
88
primitives = { package = "polkadot-primitives", path = "../primitives" }
99
reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" }
1010
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
11-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
12-
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
11+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
12+
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
1313
derive_more = "0.15.0"

network/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ polkadot-validation = { path = "../validation" }
1515
polkadot-primitives = { path = "../primitives" }
1616
polkadot-erasure-coding = { path = "../erasure-coding" }
1717
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
18-
sc-network = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
19-
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
20-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
21-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
18+
sc-network = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
19+
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
20+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
21+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
2222
futures = "0.3.4"
2323
log = "0.4.8"
2424
exit-future = "0.2.0"
2525
futures-timer = "2.0"
26-
sc-client = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
27-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
28-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
26+
sc-client = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
27+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
28+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
2929
wasm-timer = "0.2.4"
3030

3131
[dev-dependencies]
32-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
33-
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
32+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
33+
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }

parachain/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ edition = "2018"
99
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
1010
derive_more = { version = "0.99.2", optional = true }
1111
serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true }
12-
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
14-
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
15-
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", optional = true }
16-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", optional = true }
17-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", optional = true }
12+
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
14+
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
15+
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", optional = true }
16+
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", optional = true }
17+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", optional = true }
1818
lazy_static = { version = "1.4.0", optional = true }
1919
parking_lot = { version = "0.10.0", optional = true }
2020
log = { version = "0.4.8", optional = true }

primitives/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ edition = "2018"
77
[dependencies]
88
serde = { version = "1.0.102", optional = true, features = ["derive"] }
99
parity-scale-codec = { version = "1.1.0", default-features = false, features = ["bit-vec", "derive"] }
10-
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
11-
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
12-
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
13-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
14-
sp-version = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
15-
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
16-
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
10+
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
11+
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
12+
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
13+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
14+
sp-version = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
15+
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
16+
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
1717
polkadot-parachain = { path = "../parachain", default-features = false }
18-
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
18+
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
1919
bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] }
20-
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev", default-features = false }
20+
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch", default-features = false }
2121

2222
[dev-dependencies]
23-
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
23+
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
2424
pretty_assertions = "0.5.1"
2525

2626
[features]

rpc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
8+
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
99
jsonrpc-core = "14.0.3"
1010
polkadot-primitives = { path = "../primitives" }
11-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
12-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
13-
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
14-
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
15-
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
16-
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch-dev" }
11+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
12+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
13+
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
14+
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
15+
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
16+
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
1717
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false }

0 commit comments

Comments
 (0)