chore(3p/sources): bump channels & overlays (2025-02-02)

Included changes/fixes:

* bumped all `wasm-bindgen` usages again
* regenerated protobuf files
* keycloak terraform provider has been migrated to new name
  This also included a state migration in the bucket, which I've already
  performed.
* tvix/boot: disable tests that are broken in CI
* users/aspen/yeren: avoid upgrading kernel to 6.12
  digimend depends on a fix: https://github.com/NixOS/nixpkgs/pull/378830/

Change-Id: I657dcf5c4d0d08f231bfe30e37c8062bfcfaaa32
Reviewed-on: https://cl.tvl.fyi/c/depot/+/13098
Reviewed-by: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2025-02-02 15:56:38 +03:00 committed by tazjin
parent 6c9aed1f34
commit 5f17df8548
23 changed files with 320 additions and 253 deletions

View file

@ -151,7 +151,6 @@ rec {
"portable-atomic" = [ "dep:portable-atomic" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
};
"proc-macro2" = rec {
crateName = "proc-macro2";
@ -195,6 +194,18 @@ rec {
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"rustversion" = rec {
crateName = "rustversion";
version = "1.0.19";
edition = "2018";
sha256 = "1m39qd65jcd1xgqzdm3017ppimiggh2446xngwp1ngr8hjbmpi7p";
procMacro = true;
build = "build/build.rs";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"syn" = rec {
crateName = "syn";
version = "2.0.66";
@ -241,9 +252,9 @@ rec {
};
"wasm-bindgen" = rec {
crateName = "wasm-bindgen";
version = "0.2.95";
version = "0.2.100";
edition = "2021";
sha256 = "0bpbvmxhil380gpv53smaypl8wc7sy7rq8apxfw349pn78v1x38j";
sha256 = "1x8ymcm6yi3i1rwj78myl1agqv2m86i648myy3lc97s9swlqkp0y";
libName = "wasm_bindgen";
authors = [
"The wasm-bindgen Developers"
@ -256,29 +267,42 @@ rec {
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "rustversion";
packageId = "rustversion";
optional = true;
}
{
name = "wasm-bindgen-macro";
packageId = "wasm-bindgen-macro";
}
];
devDependencies = [
{
name = "once_cell";
packageId = "once_cell";
}
];
features = {
"default" = [ "spans" "std" ];
"default" = [ "std" "msrv" ];
"enable-interning" = [ "std" ];
"msrv" = [ "rustversion" ];
"rustversion" = [ "dep:rustversion" ];
"serde" = [ "dep:serde" ];
"serde-serialize" = [ "serde" "serde_json" "std" ];
"serde_json" = [ "dep:serde_json" ];
"spans" = [ "wasm-bindgen-macro/spans" ];
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
"xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ];
};
resolvedDefaultFeatures = [ "default" "spans" "std" ];
resolvedDefaultFeatures = [ "default" "msrv" "rustversion" "std" ];
};
"wasm-bindgen-backend" = rec {
crateName = "wasm-bindgen-backend";
version = "0.2.95";
version = "0.2.100";
edition = "2021";
sha256 = "0n53wgy78bgzgjwk0z69zbspzhv8p2a4zh69s4fzvpqdrb9x8vfb";
sha256 = "1ihbf1hq3y81c4md9lyh6lcwbx6a5j0fw4fygd423g62lm8hc2ig";
libName = "wasm_bindgen_backend";
authors = [
"The wasm-bindgen Developers"
@ -292,10 +316,6 @@ rec {
name = "log";
packageId = "log";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
@ -317,13 +337,12 @@ rec {
features = {
"extra-traits" = [ "syn/extra-traits" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-macro" = rec {
crateName = "wasm-bindgen-macro";
version = "0.2.95";
version = "0.2.100";
edition = "2021";
sha256 = "0mic8b2vab1a91m6x3hjxkwz23094bq1cwhnszarsnlggyz894z7";
sha256 = "01xls2dvzh38yj17jgrbiib1d3nyad7k2yw9s0mpklwys333zrkz";
procMacro = true;
libName = "wasm_bindgen_macro";
authors = [
@ -340,16 +359,14 @@ rec {
}
];
features = {
"spans" = [ "wasm-bindgen-macro-support/spans" ];
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-macro-support" = rec {
crateName = "wasm-bindgen-macro-support";
version = "0.2.95";
version = "0.2.100";
edition = "2021";
sha256 = "0s7g6glb85lyx2pj83shbmg4d50mvqhb2c2qk2j28yigaxbspii6";
sha256 = "1plm8dh20jg2id0320pbmrlsv6cazfv6b6907z19ys4z1jj7xs4a";
libName = "wasm_bindgen_macro_support";
authors = [
"The wasm-bindgen Developers"
@ -379,20 +396,24 @@ rec {
];
features = {
"extra-traits" = [ "syn/extra-traits" ];
"spans" = [ "wasm-bindgen-backend/spans" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-shared" = rec {
crateName = "wasm-bindgen-shared";
version = "0.2.95";
version = "0.2.100";
edition = "2021";
links = "wasm_bindgen";
sha256 = "1386q7mvv5ky003hcc6yyxpid3y1m7fy0l920i3z3ab60vqhkz35";
sha256 = "0gffxvqgbh9r9xl36gprkfnh3w9gl8wgia6xrin7v11sjcxxf18s";
libName = "wasm_bindgen_shared";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
};
"wasm_hello_world" = rec {