Bump prio-graph to 0.2.0 (#34235)
This commit is contained in:
parent
449d375565
commit
656ec4bdf0
|
@ -4003,9 +4003,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "prio-graph"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78dd2fa9ca0901b4d0dbf51d9862d7e3fb004605e4f4b4132472c3d08e7d901b"
|
||||
checksum = "952091df80157ff6f267c9bcb6ad68e42405e217bd83268f2aedee0aa4f03b5c"
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro-crate"
|
||||
|
|
|
@ -263,7 +263,7 @@ pickledb = { version = "0.5.1", default-features = false }
|
|||
pkcs8 = "0.8.0"
|
||||
predicates = "2.1"
|
||||
pretty-hex = "0.3.0"
|
||||
prio-graph = "0.1.0"
|
||||
prio-graph = "0.2.0"
|
||||
proc-macro2 = "1.0.70"
|
||||
proptest = "1.4"
|
||||
prost = "0.11.9"
|
||||
|
|
|
@ -190,7 +190,7 @@ impl PrioGraphScheduler {
|
|||
}
|
||||
|
||||
// Push remaining transactions back into the container
|
||||
while let Some(id) = prio_graph.pop_and_unblock() {
|
||||
while let Some((id, _)) = prio_graph.pop_and_unblock() {
|
||||
container.push_id_into_queue(id);
|
||||
}
|
||||
|
||||
|
|
|
@ -3593,9 +3593,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "prio-graph"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "78dd2fa9ca0901b4d0dbf51d9862d7e3fb004605e4f4b4132472c3d08e7d901b"
|
||||
checksum = "952091df80157ff6f267c9bcb6ad68e42405e217bd83268f2aedee0aa4f03b5c"
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro-crate"
|
||||
|
|
Loading…
Reference in New Issue