chore(tvix/tools/turbofetch): bump deps

h2:
 - https://rustsec.org/advisories/RUSTSEC-2024-0332.html
 - https://rustsec.org/advisories/RUSTSEC-2024-0003.html

mio:
 - https://rustsec.org/advisories/RUSTSEC-2024-0019.html

shlex:
 - https://rustsec.org/advisories/RUSTSEC-2024-0006.html

zerocopy:
 - https://rustsec.org/advisories/RUSTSEC-2024-0006.html

Change-Id: I7ce3cab410b9c2b6c28474ca81c3fa5b5283f3fd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12341
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Connor Brewster <cbrewster@hey.com>
This commit is contained in:
Florian Klink 2024-08-24 19:41:32 +03:00 committed by clbot
parent 25f8ddca6d
commit a742fafdbf
2 changed files with 53 additions and 34 deletions

View file

@ -264,6 +264,12 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]] [[package]]
name = "fnv" name = "fnv"
version = "1.0.7" version = "1.0.7"
@ -388,9 +394,9 @@ checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
[[package]] [[package]]
name = "h2" name = "h2"
version = "0.3.21" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
dependencies = [ dependencies = [
"bytes", "bytes",
"fnv", "fnv",
@ -407,9 +413,9 @@ dependencies = [
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.12.3" version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]] [[package]]
name = "hermit-abi" name = "hermit-abi"
@ -541,11 +547,11 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "1.9.3" version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
dependencies = [ dependencies = [
"autocfg", "equivalent",
"hashbrown", "hashbrown",
] ]
@ -697,9 +703,9 @@ dependencies = [
[[package]] [[package]]
name = "mio" name = "mio"
version = "0.8.9" version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [ dependencies = [
"libc", "libc",
"wasi", "wasi",
@ -1151,9 +1157,9 @@ dependencies = [
[[package]] [[package]]
name = "shlex" name = "shlex"
version = "1.2.0" version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]] [[package]]
name = "signal-hook-registry" name = "signal-hook-registry"

View file

@ -820,6 +820,13 @@ rec {
} }
]; ];
};
"equivalent" = rec {
crateName = "equivalent";
version = "1.0.1";
edition = "2015";
sha256 = "1malmx5f4lkfvqasz319lq6gb3ddg19yzf9s8cykfsgzdmyq0hsl";
}; };
"fnv" = rec { "fnv" = rec {
crateName = "fnv"; crateName = "fnv";
@ -1195,9 +1202,9 @@ rec {
}; };
"h2" = rec { "h2" = rec {
crateName = "h2"; crateName = "h2";
version = "0.3.21"; version = "0.3.26";
edition = "2018"; edition = "2018";
sha256 = "0cq8g5bgk3fihnqicy3g8gc3dpsalzqjg4bjyip9g4my26m27z4i"; sha256 = "1s7msnfv7xprzs6xzfj5sg6p8bjcdpcqcmjjbkd345cyi1x55zl1";
authors = [ authors = [
"Carl Lerche <me@carllerche.com>" "Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>" "Sean McArthur <sean@seanmonstar.com>"
@ -1247,7 +1254,7 @@ rec {
{ {
name = "tokio-util"; name = "tokio-util";
packageId = "tokio-util"; packageId = "tokio-util";
features = [ "codec" ]; features = [ "codec" "io" ];
} }
{ {
name = "tracing"; name = "tracing";
@ -1267,21 +1274,23 @@ rec {
}; };
"hashbrown" = rec { "hashbrown" = rec {
crateName = "hashbrown"; crateName = "hashbrown";
version = "0.12.3"; version = "0.14.5";
edition = "2021"; edition = "2021";
sha256 = "1268ka4750pyg2pbgsr43f0289l5zah4arir2k4igx5a8c6fg7la"; sha256 = "1wa1vy1xs3mp11bn3z9dv0jricgr6a2j0zkf1g19yz3vw4il89z5";
authors = [ authors = [
"Amanieu d'Antras <amanieu@gmail.com>" "Amanieu d'Antras <amanieu@gmail.com>"
]; ];
features = { features = {
"ahash" = [ "dep:ahash" ]; "ahash" = [ "dep:ahash" ];
"ahash-compile-time-rng" = [ "ahash/compile-time-rng" ];
"alloc" = [ "dep:alloc" ]; "alloc" = [ "dep:alloc" ];
"bumpalo" = [ "dep:bumpalo" ]; "allocator-api2" = [ "dep:allocator-api2" ];
"compiler_builtins" = [ "dep:compiler_builtins" ]; "compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ]; "core" = [ "dep:core" ];
"default" = [ "ahash" "inline-more" ]; "default" = [ "ahash" "inline-more" "allocator-api2" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "allocator-api2?/nightly" "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ]; "rayon" = [ "dep:rayon" ];
"rkyv" = [ "dep:rkyv" ];
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ]; "rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ]; "serde" = [ "dep:serde" ];
}; };
@ -1693,10 +1702,15 @@ rec {
}; };
"indexmap" = rec { "indexmap" = rec {
crateName = "indexmap"; crateName = "indexmap";
version = "1.9.3"; version = "2.4.0";
edition = "2021"; edition = "2021";
sha256 = "16dxmy7yvk51wvnih3a3im6fp5lmx0wx76i03n06wyak6cwhw1xx"; sha256 = "0p2hwvmir50qcl5q6lib8fjq5dzv4f0gqy8czcyfva3yzhzdbslk";
dependencies = [ dependencies = [
{
name = "equivalent";
packageId = "equivalent";
usesDefaultFeatures = false;
}
{ {
name = "hashbrown"; name = "hashbrown";
packageId = "hashbrown"; packageId = "hashbrown";
@ -1704,21 +1718,16 @@ rec {
features = [ "raw" ]; features = [ "raw" ];
} }
]; ];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = { features = {
"arbitrary" = [ "dep:arbitrary" ]; "arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"default" = [ "std" ];
"quickcheck" = [ "dep:quickcheck" ]; "quickcheck" = [ "dep:quickcheck" ];
"rayon" = [ "dep:rayon" ]; "rayon" = [ "dep:rayon" ];
"rustc-rayon" = [ "dep:rustc-rayon" ]; "rustc-rayon" = [ "dep:rustc-rayon" ];
"serde" = [ "dep:serde" ]; "serde" = [ "dep:serde" ];
"serde-1" = [ "serde" ];
}; };
resolvedDefaultFeatures = [ "std" ]; resolvedDefaultFeatures = [ "default" "std" ];
}; };
"itoa" = rec { "itoa" = rec {
crateName = "itoa"; crateName = "itoa";
@ -2122,9 +2131,9 @@ rec {
}; };
"mio" = rec { "mio" = rec {
crateName = "mio"; crateName = "mio";
version = "0.8.9"; version = "0.8.11";
edition = "2018"; edition = "2018";
sha256 = "1l23hg513c23nhcdzvk25caaj28mic6qgqadbn8axgj6bqf2ikix"; sha256 = "034byyl0ardml5yliy1hmvx8arkmn9rv479pid794sm07ia519m4";
authors = [ authors = [
"Carl Lerche <me@carllerche.com>" "Carl Lerche <me@carllerche.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>" "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
@ -3476,12 +3485,16 @@ rec {
}; };
"shlex" = rec { "shlex" = rec {
crateName = "shlex"; crateName = "shlex";
version = "1.2.0"; version = "1.3.0";
edition = "2015"; edition = "2015";
sha256 = "1033pj9dyb76nm5yv597nnvj3zpvr2aw9rm5wy0gah3dk99f1km7"; sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
authors = [ authors = [
"comex <comexk@gmail.com>" "comex <comexk@gmail.com>"
"Fenhl <fenhl@fenhl.net>" "Fenhl <fenhl@fenhl.net>"
"Adrian Taylor <adetaylor@chromium.org>"
"Alex Touchet <alextouchet@outlook.com>"
"Daniel Parks <dp+git@oxidized.org>"
"Garrett Berg <googberg@gmail.com>"
]; ];
features = { features = {
"default" = [ "std" ]; "default" = [ "std" ];
@ -4017,7 +4030,7 @@ rec {
"time" = [ "tokio/time" "slab" ]; "time" = [ "tokio/time" "slab" ];
"tracing" = [ "dep:tracing" ]; "tracing" = [ "dep:tracing" ];
}; };
resolvedDefaultFeatures = [ "codec" "default" "tracing" ]; resolvedDefaultFeatures = [ "codec" "default" "io" "tracing" ];
}; };
"tower" = rec { "tower" = rec {
crateName = "tower"; crateName = "tower";