chore(contrib/fetchroots): bump some crate dependencies
Change-Id: I2b664dfb833da2a90e634aa3accb4cc9f8e5d0ae Reviewed-on: https://cl.snix.dev/c/snix/+/30260 Autosubmit: Florian Klink <flokli@flokli.de> Reviewed-by: edef . <edef@edef.eu> Tested-by: besadii
This commit is contained in:
parent
6cef1f57b7
commit
4ce37b5f87
2 changed files with 91 additions and 66 deletions
|
|
@ -2391,13 +2391,19 @@ rec {
|
|||
};
|
||||
"cc" = rec {
|
||||
crateName = "cc";
|
||||
version = "1.0.88";
|
||||
version = "1.2.17";
|
||||
edition = "2018";
|
||||
sha256 = "1p0w5ni5zh9464ai48i6d2lfki5af5cwwc8nwjk5b4fijg043wq2";
|
||||
sha256 = "0flf697b5p87ds39s3g076q75xlnfgiicpz8792sy7df833mgjqz";
|
||||
authors = [
|
||||
"Alex Crichton <alex@alexcrichton.com>"
|
||||
];
|
||||
dependencies = [
|
||||
{
|
||||
name = "jobserver";
|
||||
packageId = "jobserver";
|
||||
optional = true;
|
||||
usesDefaultFeatures = false;
|
||||
}
|
||||
{
|
||||
name = "libc";
|
||||
packageId = "libc";
|
||||
|
|
@ -2405,12 +2411,15 @@ rec {
|
|||
usesDefaultFeatures = false;
|
||||
target = { target, features }: (target."unix" or false);
|
||||
}
|
||||
{
|
||||
name = "shlex";
|
||||
packageId = "shlex";
|
||||
}
|
||||
];
|
||||
features = {
|
||||
"libc" = [ "dep:libc" ];
|
||||
"parallel" = [ "libc" ];
|
||||
"parallel" = [ "dep:libc" "dep:jobserver" ];
|
||||
};
|
||||
resolvedDefaultFeatures = [ "libc" "parallel" ];
|
||||
resolvedDefaultFeatures = [ "parallel" ];
|
||||
};
|
||||
"cfg-if" = rec {
|
||||
crateName = "cfg-if";
|
||||
|
|
@ -4302,9 +4311,9 @@ rec {
|
|||
};
|
||||
"h2" = rec {
|
||||
crateName = "h2";
|
||||
version = "0.3.24";
|
||||
version = "0.3.26";
|
||||
edition = "2018";
|
||||
sha256 = "1jf9488b66nayxzp3iw3b2rb64y49hdbbywnv9wfwrsv14i48b5v";
|
||||
sha256 = "1s7msnfv7xprzs6xzfj5sg6p8bjcdpcqcmjjbkd345cyi1x55zl1";
|
||||
authors = [
|
||||
"Carl Lerche <me@carllerche.com>"
|
||||
"Sean McArthur <sean@seanmonstar.com>"
|
||||
|
|
@ -5024,6 +5033,23 @@ rec {
|
|||
"no-panic" = [ "dep:no-panic" ];
|
||||
};
|
||||
};
|
||||
"jobserver" = rec {
|
||||
crateName = "jobserver";
|
||||
version = "0.1.32";
|
||||
edition = "2021";
|
||||
sha256 = "1l2k50qmj84x9mn39ivjz76alqmx72jhm12rw33zx9xnpv5xpla8";
|
||||
authors = [
|
||||
"Alex Crichton <alex@alexcrichton.com>"
|
||||
];
|
||||
dependencies = [
|
||||
{
|
||||
name = "libc";
|
||||
packageId = "libc";
|
||||
target = { target, features }: (target."unix" or false);
|
||||
}
|
||||
];
|
||||
|
||||
};
|
||||
"js-sys" = rec {
|
||||
crateName = "js-sys";
|
||||
version = "0.3.68";
|
||||
|
|
@ -5056,9 +5082,9 @@ rec {
|
|||
};
|
||||
"libc" = rec {
|
||||
crateName = "libc";
|
||||
version = "0.2.153";
|
||||
edition = "2015";
|
||||
sha256 = "1gg7m1ils5dms5miq9fyllrcp0jxnbpgkx71chd2i0lafa8qy6cw";
|
||||
version = "0.2.171";
|
||||
edition = "2021";
|
||||
sha256 = "1mipla3dy3l59pfa9xy4iw2vdgn8n30dzf4vdnasjflxdqhkg6f1";
|
||||
authors = [
|
||||
"The Rust Project Developers"
|
||||
];
|
||||
|
|
@ -8516,13 +8542,10 @@ rec {
|
|||
};
|
||||
"ring" = rec {
|
||||
crateName = "ring";
|
||||
version = "0.17.8";
|
||||
version = "0.17.14";
|
||||
edition = "2021";
|
||||
links = "ring_core_0_17_8";
|
||||
sha256 = "03fwlb1ssrmfxdckvqv033pfmk01rhx9ynwi7r186dcfcp5s8zy1";
|
||||
authors = [
|
||||
"Brian Smith <brian@briansmith.org>"
|
||||
];
|
||||
links = "ring_core_0_17_14_";
|
||||
sha256 = "1dw32gv19ccq4hsx3ribhpdzri1vnrlcfqb2vj41xn4l49n9ws54";
|
||||
dependencies = [
|
||||
{
|
||||
name = "cfg-if";
|
||||
|
|
@ -8537,14 +8560,13 @@ rec {
|
|||
name = "libc";
|
||||
packageId = "libc";
|
||||
usesDefaultFeatures = false;
|
||||
target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && (("aarch64" == target."arch" or null) || ("arm" == target."arch" or null)));
|
||||
target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("apple" == target."vendor" or null) && (("ios" == target."os" or null) || ("macos" == target."os" or null) || ("tvos" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null)));
|
||||
}
|
||||
{
|
||||
name = "spin";
|
||||
packageId = "spin";
|
||||
name = "libc";
|
||||
packageId = "libc";
|
||||
usesDefaultFeatures = false;
|
||||
target = { target, features }: (("aarch64" == target."arch" or null) || ("arm" == target."arch" or null) || ("x86" == target."arch" or null) || ("x86_64" == target."arch" or null));
|
||||
features = [ "once" ];
|
||||
target = { target, features }: (((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) || (("arm" == target."arch" or null) && ("little" == target."endian" or null))) && (("android" == target."os" or null) || ("linux" == target."os" or null)));
|
||||
}
|
||||
{
|
||||
name = "untrusted";
|
||||
|
|
@ -8553,7 +8575,7 @@ rec {
|
|||
{
|
||||
name = "windows-sys";
|
||||
packageId = "windows-sys";
|
||||
target = { target, features }: (("aarch64" == target."arch" or null) && ("windows" == target."os" or null));
|
||||
target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("windows" == target."os" or null));
|
||||
features = [ "Win32_Foundation" "Win32_System_Threading" ];
|
||||
}
|
||||
];
|
||||
|
|
@ -8613,9 +8635,9 @@ rec {
|
|||
};
|
||||
"rustls" = rec {
|
||||
crateName = "rustls";
|
||||
version = "0.21.10";
|
||||
version = "0.21.12";
|
||||
edition = "2021";
|
||||
sha256 = "1fmpzk3axnhkd99saqkvraifdfms4pkyi56lkihf8n877j0sdmgr";
|
||||
sha256 = "0gjdg2a9r81sdwkyw3n5yfbkrr6p9gyk3xr2kcsr3cs83x6s2miz";
|
||||
dependencies = [
|
||||
{
|
||||
name = "log";
|
||||
|
|
@ -9153,6 +9175,24 @@ rec {
|
|||
};
|
||||
resolvedDefaultFeatures = [ "default" "std" ];
|
||||
};
|
||||
"shlex" = rec {
|
||||
crateName = "shlex";
|
||||
version = "1.3.0";
|
||||
edition = "2015";
|
||||
sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
|
||||
authors = [
|
||||
"comex <comexk@gmail.com>"
|
||||
"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 = {
|
||||
"default" = [ "std" ];
|
||||
};
|
||||
resolvedDefaultFeatures = [ "default" "std" ];
|
||||
};
|
||||
"signal-hook-registry" = rec {
|
||||
crateName = "signal-hook-registry";
|
||||
version = "1.4.1";
|
||||
|
|
@ -9344,31 +9384,6 @@ rec {
|
|||
features = { };
|
||||
resolvedDefaultFeatures = [ "all" ];
|
||||
};
|
||||
"spin" = rec {
|
||||
crateName = "spin";
|
||||
version = "0.9.8";
|
||||
edition = "2015";
|
||||
sha256 = "0rvam5r0p3a6qhc18scqpvpgb3ckzyqxpgdfyjnghh8ja7byi039";
|
||||
authors = [
|
||||
"Mathijs van de Nes <git@mathijs.vd-nes.nl>"
|
||||
"John Ericson <git@JohnEricson.me>"
|
||||
"Joshua Barretto <joshua.s.barretto@gmail.com>"
|
||||
];
|
||||
features = {
|
||||
"barrier" = [ "mutex" ];
|
||||
"default" = [ "lock_api" "mutex" "spin_mutex" "rwlock" "once" "lazy" "barrier" ];
|
||||
"fair_mutex" = [ "mutex" ];
|
||||
"lazy" = [ "once" ];
|
||||
"lock_api" = [ "lock_api_crate" ];
|
||||
"lock_api_crate" = [ "dep:lock_api_crate" ];
|
||||
"portable-atomic" = [ "dep:portable-atomic" ];
|
||||
"portable_atomic" = [ "portable-atomic" ];
|
||||
"spin_mutex" = [ "mutex" ];
|
||||
"ticket_mutex" = [ "mutex" ];
|
||||
"use_ticket_mutex" = [ "mutex" "ticket_mutex" ];
|
||||
};
|
||||
resolvedDefaultFeatures = [ "once" ];
|
||||
};
|
||||
"spki 0.6.0" = rec {
|
||||
crateName = "spki";
|
||||
version = "0.6.0";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue