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

Commit

Permalink
*/Cargo.{lock,toml}: Point to mxinden substrate auth-disc-timing
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Nov 16, 2020
1 parent 9de081a commit 0785943
Show file tree
Hide file tree
Showing 46 changed files with 706 additions and 684 deletions.
340 changes: 181 additions & 159 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ wasm-bindgen-futures = { version = "0.4.7", optional = true }
service = { package = "polkadot-service", path = "../node/service", default-features = false, optional = true }
polkadot-parachain = { path = "../parachain", optional = true }

sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-tracing = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
frame-benchmarking-cli = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", optional = true }
sc-cli = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", optional = true }
sc-service = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", optional = true }
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", optional = true }

# this crate is used only to enable `trie-memory-tracker` feature
# see https://github.com/paritytech/substrate/pull/6745
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
# see https://github.com/mxinden/substrate/pull/6745
sp-trie = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }

[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }

[features]
default = [ "wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-parachain" ]
Expand Down
6 changes: 3 additions & 3 deletions core-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
sp-core = { 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-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }
sp-std = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }
sp-runtime = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = [ "derive" ] }

[features]
Expand Down
4 changes: 2 additions & 2 deletions erasure-coding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ edition = "2018"
primitives = { package = "polkadot-primitives", path = "../primitives" }
reed_solomon = { package = "reed-solomon-erasure", version = "4.0.2"}
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
trie = { package = "sp-trie", git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
thiserror = "1.0.21"
2 changes: 1 addition & 1 deletion node/collation-generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ polkadot-node-primitives = { path = "../primitives" }
polkadot-node-subsystem = { path = "../subsystem" }
polkadot-node-subsystem-util = { path = "../subsystem-util" }
polkadot-primitives = { path = "../../primitives" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
thiserror = "1.0.21"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions node/core/av-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-overseer = { path = "../../overseer" }
polkadot-primitives = { path = "../../../primitives" }

sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sc-service = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }

[dev-dependencies]
env_logger = "0.7.1"
assert_matches = "1.3.0"
smallvec = "1.4.2"
kvdb-memorydb = "0.7.0"

sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
10 changes: 5 additions & 5 deletions node/core/backing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
futures = "0.3.5"
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
polkadot-primitives = { path = "../../../primitives" }
polkadot-node-primitives = { path = "../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
Expand All @@ -18,10 +18,10 @@ log = "0.4.11"
thiserror = "1.0.21"

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-application-crypto = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
futures = { version = "0.3.5", features = ["thread-pool"] }
assert_matches = "1.3.0"
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
2 changes: 1 addition & 1 deletion node/core/bitfield-signing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ log = "0.4.11"
polkadot-primitives = { path = "../../../primitives" }
polkadot-node-subsystem = { path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
wasm-timer = "0.2.4"
thiserror = "1.0.21"
derive_more = "0.99.11"
2 changes: 1 addition & 1 deletion node/core/candidate-selection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ polkadot-node-subsystem = { path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
4 changes: 2 additions & 2 deletions node/core/candidate-validation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
futures = "0.3.5"
log = "0.4.11"

sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { package = "sp-core", git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
parity-scale-codec = { version = "1.3.0", default-features = false, features = ["bit-vec", "derive"] }

polkadot-primitives = { path = "../../../primitives" }
Expand All @@ -18,7 +18,7 @@ polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsys
polkadot-node-subsystem-util = { path = "../../subsystem-util" }

[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
futures = { version = "0.3.5", features = ["thread-pool"] }
assert_matches = "1.3.0"
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
4 changes: 2 additions & 2 deletions node/core/chain-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
futures = { version = "0.3.5" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
polkadot-primitives = { path = "../../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
Expand All @@ -15,4 +15,4 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
futures = { version = "0.3.5", features = ["thread-pool"] }
maplit = "1.0.2"
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
22 changes: 11 additions & 11 deletions node/core/proposer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ log = "0.4.8"
polkadot-node-subsystem = { path = "../../subsystem" }
polkadot-overseer = { path = "../../overseer" }
polkadot-primitives = { path = "../../../primitives" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-block-builder = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-client-api = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-api = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-blockchain = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-consensus = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-inherents = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-runtime = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-transaction-pool = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
4 changes: 2 additions & 2 deletions node/core/provisioner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ polkadot-node-subsystem = { path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }

[dev-dependencies]
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
futures-timer = "3.0.2"
4 changes: 2 additions & 2 deletions node/core/runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ edition = "2018"

[dependencies]
futures = "0.3.5"
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }

polkadot-primitives = { path = "../../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
futures = { version = "0.3.5", features = ["thread-pool"] }
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
12 changes: 6 additions & 6 deletions node/network/availability-distribution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-network-protocol = { path = "../../network/protocol" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", features = ["std"] }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
thiserror = "1.0.21"

[dev-dependencies]
polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", features = ["std"] }
sp-application-crypto = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
futures-timer = "3.0.2"
env_logger = "0.7.1"
assert_matches = "1.3.0"
Expand Down
8 changes: 4 additions & 4 deletions node/network/bitfield-distribution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ polkadot-node-network-protocol = { path = "../../network/protocol" }
[dev-dependencies]
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-application-crypto = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
maplit = "1.0.2"
env_logger = "0.7.1"
assert_matches = "1.3.0"
Expand Down
10 changes: 5 additions & 5 deletions node/network/bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ futures = "0.3.5"
log = "0.4.11"
polkadot-primitives = { path = "../../../primitives" }
parity-scale-codec = "1.3.4"
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-authority-discovery = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-network = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-runtime = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-network-protocol = { path = "../protocol" }

[dev-dependencies]
assert_matches = "1.3.0"
parking_lot = "0.10.0"
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
4 changes: 2 additions & 2 deletions node/network/collator-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ assert_matches = "1.3.0"
smallvec = "1.4.2"
futures-timer = "3.0.2"

sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", features = ["std"] }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }

polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" }
2 changes: 1 addition & 1 deletion node/network/pov-distribution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ polkadot-node-network-protocol = { path = "../../network/protocol" }

[dev-dependencies]
assert_matches = "1.3.0"
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
2 changes: 1 addition & 1 deletion node/network/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ description = "Primitives types for the Node-side"
polkadot-primitives = { path = "../../../primitives" }
polkadot-node-primitives = { path = "../../primitives" }
parity-scale-codec = { version = "1.3.4", default-features = false, features = ["derive"] }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
12 changes: 6 additions & 6 deletions node/network/statement-distribution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ futures = "0.3.5"
log = "0.4.11"
polkadot-primitives = { path = "../../../primitives" }
node-primitives = { package = "polkadot-node-primitives", path = "../../primitives" }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing", default-features = false }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-node-network-protocol = { path = "../../network/protocol" }
Expand All @@ -20,8 +20,8 @@ indexmap = "1.4.0"
[dev-dependencies]
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
assert_matches = "1.3.0"
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-application-crypto = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sp-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
sc-keystore = { git = "https://github.com/mxinden/substrate", branch = "auth-disc-timing" }
Loading

0 comments on commit 0785943

Please sign in to comment.