Bump prio-graph to 0.2.0 (#34235)

This commit is contained in:
Andrew Fitzgerald 2023-11-28 08:23:06 -08:00 committed by GitHub
parent 449d375565
commit 656ec4bdf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -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"

View File

@ -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"

View File

@ -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);
}

View File

@ -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"