chore(tvix/[ca]store): bump hyper-util to 0.1.7

Change-Id: Ia5eaf7f4614701ad4dd06114476a73e1a041d830
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12383
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2024-08-28 18:34:40 +02:00 committed by clbot
parent b2b38f23d0
commit b6dd9d2d5b
4 changed files with 11 additions and 11 deletions

8
tvix/Cargo.lock generated
View file

@ -1770,9 +1770,9 @@ dependencies = [
[[package]]
name = "hyper-util"
version = "0.1.6"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9"
dependencies = [
"bytes",
"futures-channel",
@ -2948,7 +2948,7 @@ checksum = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1"
dependencies = [
"bytes",
"heck",
"itertools 0.11.0",
"itertools 0.12.0",
"log",
"multimap",
"once_cell",
@ -2981,7 +2981,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca"
dependencies = [
"anyhow",
"itertools 0.11.0",
"itertools 0.12.0",
"proc-macro2",
"quote",
"syn 2.0.72",

View file

@ -5658,9 +5658,9 @@ rec {
};
"hyper-util" = rec {
crateName = "hyper-util";
version = "0.1.6";
version = "0.1.7";
edition = "2021";
sha256 = "0mm9biwckhwqz23s5dp02410aw7sw2ibg167jzwv8kzf957jzf9s";
sha256 = "1fg9h591skksq5zxnffyisj7487jhdcgj6c7bvlkckn535bhbryd";
libName = "hyper_util";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
@ -6105,7 +6105,7 @@ rec {
"default" = [ "use_std" ];
"use_std" = [ "use_alloc" "either/use_std" ];
};
resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ];
resolvedDefaultFeatures = [ "use_alloc" ];
};
"itertools 0.12.0" = rec {
crateName = "itertools";
@ -9438,7 +9438,7 @@ rec {
}
{
name = "itertools";
packageId = "itertools 0.11.0";
packageId = "itertools 0.12.0";
usesDefaultFeatures = false;
features = [ "use_alloc" ];
}
@ -9558,7 +9558,7 @@ rec {
}
{
name = "itertools";
packageId = "itertools 0.11.0";
packageId = "itertools 0.12.0";
}
{
name = "proc-macro2";

View file

@ -39,7 +39,7 @@ serde_qs = "0.12.0"
petgraph = "0.6.4"
erased-serde = "0.4.5"
serde_tagged = "0.3.0"
hyper-util = "0.1.6"
hyper-util = "0.1.7"
redb = "2.1.1"
[dependencies.bigtable_rs]

View file

@ -42,7 +42,7 @@ parking_lot = "0.12.2"
tvix-tracing = { path = "../tracing", features = ["tonic", "reqwest"] }
tracing = "0.1.40"
tracing-indicatif = "0.3.6"
hyper-util = "0.1.6"
hyper-util = "0.1.7"
toml = { version = "0.8.15", optional = true }
tonic-health = { version = "0.12.1", default-features = false }
redb = "2.1.1"