lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
8a22392a e84ec1a2

+473 -285
+1
nixos/tests/kafka/base.nix
··· 131 131 mode = "zookeeper"; 132 132 }; 133 133 kafka_4_0 = makeKafkaTest "kafka_4_0" { kafkaPackage = apacheKafka_4_0; }; 134 + kafka_4_1 = makeKafkaTest "kafka_4_1" { kafkaPackage = apacheKafka_4_1; }; 134 135 kafka = makeKafkaTest "kafka" { kafkaPackage = apacheKafka; }; 135 136 }
+8
pkgs/by-name/ac/acct/package.nix
··· 2 2 fetchurl, 3 3 lib, 4 4 stdenv, 5 + fetchpatch2, 5 6 }: 6 7 7 8 stdenv.mkDerivation rec { ··· 14 15 }; 15 16 16 17 doCheck = true; 18 + 19 + patches = [ 20 + (fetchpatch2 { 21 + url = "https://src.fedoraproject.org/rpms/psacct/raw/rawhide/f/psacct-6.6.4-sprintf-buffer-overflow.patch"; 22 + hash = "sha256-l74tLIuhpXj+dIA7uAY9L0qMjQ2SbDdc+vjHMyVouFc="; 23 + }) 24 + ]; 17 25 18 26 meta = { 19 27 description = "GNU Accounting Utilities, login and process accounting utilities";
+3 -3
pkgs/by-name/an/anytype-heart/package.nix
··· 13 13 pname = "anytype-heart"; 14 14 # Use only versions specified in anytype-ts middleware.version file: 15 15 # https://github.com/anyproto/anytype-ts/blob/v<anytype-ts-version>/middleware.version 16 - version = "0.40.21"; 16 + version = "0.43.0-rc02"; 17 17 src = fetchFromGitHub { 18 18 owner = "anyproto"; 19 19 repo = "anytype-heart"; 20 20 tag = "v${version}"; 21 - hash = "sha256-53LSaETzxwhKkI9is6N6G1+f5Cnf7KStvHA9qeaWUNo="; 21 + hash = "sha256-hqDwzW1Tl44ipL1EAwlXUoKaQ0Wvfa2rtZMQy4pgQ8k="; 22 22 }; 23 23 24 24 arch = ··· 36 36 buildGoModule { 37 37 inherit pname version src; 38 38 39 - vendorHash = "sha256-WsYRkAIYDkKWkQpq843dD7Rqc993eHSgee2IX6PomcU="; 39 + vendorHash = "sha256-Rs+CusvMksyXUplGk09J4CiFgl/D4KtsI9C15dSCjOI="; 40 40 41 41 subPackages = [ "cmd/grpcserver" ]; 42 42 tags = [
-25
pkgs/by-name/an/anytype/0001-fix-single-instance-detection-when-not-packaged.patch
··· 1 - From 0622b4b5497d8bd923eb0d6dd3f917dfcbda9d53 Mon Sep 17 00:00:00 2001 2 - From: Axel Karjalainen <axel@axka.fi> 3 - Date: Thu, 22 May 2025 22:38:14 +0300 4 - Subject: [PATCH] fix: single instance detection when not packaged 5 - 6 - --- 7 - electron.js | 2 +- 8 - 1 file changed, 1 insertion(+), 1 deletion(-) 9 - 10 - diff --git a/electron.js b/electron.js 11 - index d70f20f..158bb93 100644 12 - --- a/electron.js 13 - +++ b/electron.js 14 - @@ -76,7 +76,7 @@ if (is.development && !port) { 15 - return; 16 - }; 17 - 18 - -if (app.isPackaged && !app.requestSingleInstanceLock()) { 19 - +if (!is.development && !app.requestSingleInstanceLock()) { 20 - Api.exit(mainWindow, '' ,false); 21 - return; 22 - }; 23 - -- 24 - 2.49.0 25 -
+12
pkgs/by-name/an/anytype/0002-remove-grpc-devtools.patch
··· 1 + diff --git a/electron.js b/electron.js 2 + index c5d6760882..17afc05e26 100644 3 + --- a/electron.js 4 + +++ b/electron.js 5 + @@ -15,7 +15,6 @@ const store = new Store({ name: [ 'localStorage', suffix ].join('-') }); 6 + 7 + // gRPC DevTools extension ID 8 + const GRPC_DEVTOOLS_ID = 'fohdnlaeecihjiendkfhifhlgldpeopm'; 9 + -const { installExtension } = require('@tomjs/electron-devtools-installer'); 10 + 11 + // Fix notifications app name 12 + if (is.windows) {
+8 -6
pkgs/by-name/an/anytype/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 fetchFromGitHub, 4 5 buildNpmPackage, 5 6 pkg-config, ··· 13 14 14 15 let 15 16 pname = "anytype"; 16 - version = "0.46.5"; 17 + version = "0.49.2"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "anyproto"; 20 21 repo = "anytype-ts"; 21 22 tag = "v${version}"; 22 - hash = "sha256-gDlxyHxBLWVBLnaI6rFclfjwqkw9gneBEC7ssmWDKYU="; 23 + hash = "sha256-8+x2FmyR5x9Zrm3t71RSyxAKcJCvnR98+fqHXjBE7aU="; 23 24 }; 24 25 description = "P2P note-taking tool"; 25 26 26 27 locales = fetchFromGitHub { 27 28 owner = "anyproto"; 28 29 repo = "l10n-anytype-ts"; 29 - rev = "1d7ca0073bdd02d0145b8da3b1b956ca0652a108"; 30 - hash = "sha256-aL79DOIFH3CocbcLW0SJ472mYPZJXrPJyRKy8zXiF4o="; 30 + rev = "873b42df7320ebbbc80d7e2477914dac70363ef7"; 31 + hash = "sha256-Mr0KfXn9NO86QqgBhVjSs2przN/GtjuhJHJ9djo8Feg="; 31 32 }; 32 33 in 33 34 buildNpmPackage { 34 35 inherit pname version src; 35 36 36 - npmDepsHash = "sha256-WEw3RCi7dWs2eMYxLH7DcmWBrN4T8T6beIyplcXgJAA="; 37 + npmDepsHash = "sha256-fuNTSZl+4DG/YL34f/+bYK26ruRFAc1hyHVAm256LiE="; 37 38 38 39 env = { 39 40 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; ··· 52 53 53 54 patches = [ 54 55 ./0001-feat-update-Disable-auto-checking-for-updates-and-updating-manually.patch 55 - ./0001-fix-single-instance-detection-when-not-packaged.patch 56 + ./0002-remove-grpc-devtools.patch 56 57 ]; 57 58 58 59 buildPhase = '' ··· 132 133 "x86_64-darwin" 133 134 "aarch64-darwin" 134 135 ]; 136 + broken = stdenv.hostPlatform.isDarwin; 135 137 }; 136 138 }
+3 -3
pkgs/by-name/ba/basedpyright/package.nix
··· 16 16 17 17 buildNpmPackage rec { 18 18 pname = "basedpyright"; 19 - version = "1.31.3"; 19 + version = "1.31.4"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "detachhead"; 23 23 repo = "basedpyright"; 24 24 tag = "v${version}"; 25 - hash = "sha256-sk/jqTVWLnE0qP7iSZFTegOkfz8s0TenUlctDmAEVW4="; 25 + hash = "sha256-Lv2wNqS32482jFThJ5dIqlyv/m8QzEHDdlCYs6wd9nY="; 26 26 }; 27 27 28 - npmDepsHash = "sha256-O7OypjSMxMEajJZOHOt1AJXChQQbGZ4u63g8agU95Qw="; 28 + npmDepsHash = "sha256-D1/6H+7GXWeL3dWeXB4Ho5mzCCVzCQPVIPMJ+btF0k4="; 29 29 npmWorkspace = "packages/pyright"; 30 30 31 31 preBuild = ''
+3 -3
pkgs/by-name/bu/buf/package.nix
··· 10 10 11 11 buildGoModule (finalAttrs: { 12 12 pname = "buf"; 13 - version = "1.56.0"; 13 + version = "1.57.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bufbuild"; 17 17 repo = "buf"; 18 18 tag = "v${finalAttrs.version}"; 19 - hash = "sha256-a2yU8KgMRNEz5fgFx/e0U6Hrtw53neeO5PWsTU8AV14="; 19 + hash = "sha256-D1/VMlvaaYNKyd8Uh5BZot/NABYzEvdjxtVFeKF4+6o="; 20 20 }; 21 21 22 - vendorHash = "sha256-lWcqXMkOpa+bh40zH8LQ86mIbTAqB2mk8naN1oY7Xuc="; 22 + vendorHash = "sha256-6DRuSHZnQZTDiVvPNKgAnEaG4Zb70EPdNr2N13BVJQ0="; 23 23 24 24 patches = [ 25 25 # Skip a test that requires networking to be available to work.
+9 -9
pkgs/by-name/cu/cursor-cli/package.nix
··· 9 9 inherit (stdenv) hostPlatform; 10 10 sources = { 11 11 x86_64-linux = fetchurl { 12 - url = "https://downloads.cursor.com/lab/2025.08.27-24c29c1/linux/x64/agent-cli-package.tar.gz"; 13 - hash = "sha256-046NAHLckWOvIG5WJ8p3SNiUTbelEw2eTZ+/1DvTpNY="; 12 + url = "https://downloads.cursor.com/lab/2025.09.04-fc40cd1/linux/x64/agent-cli-package.tar.gz"; 13 + hash = "sha256-Y1ynrrHfhbmMKkbZ1C3Xl+uZy3AWnmAXwTC+OkMcquc="; 14 14 }; 15 15 aarch64-linux = fetchurl { 16 - url = "https://downloads.cursor.com/lab/2025.08.27-24c29c1/linux/arm64/agent-cli-package.tar.gz"; 17 - hash = "sha256-Ft/7AivBm3VWsgtYAE0a9SqDLzuiFnGUTdEjsBZjUDA="; 16 + url = "https://downloads.cursor.com/lab/2025.09.04-fc40cd1/linux/arm64/agent-cli-package.tar.gz"; 17 + hash = "sha256-EeeHCWFDCayFGpSKkeHxZe2JSHsQ+hJYAwepTm6i8Bo="; 18 18 }; 19 19 x86_64-darwin = fetchurl { 20 - url = "https://downloads.cursor.com/lab/2025.08.27-24c29c1/darwin/x64/agent-cli-package.tar.gz"; 21 - hash = "sha256-lgn7gaiItLzvhh7ePtUcDCqPuZFUWE3WDSzn5TY3Taw="; 20 + url = "https://downloads.cursor.com/lab/2025.09.04-fc40cd1/darwin/x64/agent-cli-package.tar.gz"; 21 + hash = "sha256-yzu0Ea5/X38RGyaFx0VR1O2aXzWs/XHopDyQzouFXP8="; 22 22 }; 23 23 aarch64-darwin = fetchurl { 24 - url = "https://downloads.cursor.com/lab/2025.08.27-24c29c1/darwin/arm64/agent-cli-package.tar.gz"; 25 - hash = "sha256-+zC4rTzTCj1MSCYA///6Br82SffTRdICHuhnhaXsAWg="; 24 + url = "https://downloads.cursor.com/lab/2025.09.04-fc40cd1/darwin/arm64/agent-cli-package.tar.gz"; 25 + hash = "sha256-C2av4foh8XcXi+CYzFEz6jeFIR7sTjZFi1fk2s0I46I="; 26 26 }; 27 27 }; 28 28 in 29 29 stdenv.mkDerivation { 30 30 pname = "cursor-cli"; 31 - version = "0-unstable-2025-08-27"; 31 + version = "0-unstable-2025-09-04"; 32 32 33 33 src = sources.${hostPlatform.system}; 34 34
+3 -3
pkgs/by-name/fi/filebeat8/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "filebeat"; 11 - version = "8.19.2"; 11 + version = "8.19.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "elastic"; 15 15 repo = "beats"; 16 16 tag = "v${version}"; 17 - hash = "sha256-3SW4SHUbEhdsKh3zd9VlVC8ZAxaR52Mfm1K/btjtB/4="; 17 + hash = "sha256-bw/qWsNT4tG+hUjeb+DXaTxDY6HEL/A9iANFLdbyi5E="; 18 18 }; 19 19 20 20 proxyVendor = true; # darwin/linux hash mismatch 21 21 22 - vendorHash = "sha256-y8oAeH6RBD45+NEhl9EF4tPL1Ox4qHlLi+jSetjgKRE="; 22 + vendorHash = "sha256-t+rCXm2eIG2a5xW1E8SjRAb/w9OuFKC/PyCGpJP8Szc="; 23 23 24 24 subPackages = [ "filebeat" ]; 25 25
+9 -9
pkgs/by-name/mi/mirrord/manifest.json
··· 1 1 { 2 - "version": "3.159.0", 2 + "version": "3.161.0", 3 3 "assets": { 4 4 "x86_64-linux": { 5 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.159.0/mirrord_linux_x86_64", 6 - "hash": "sha256-QwoilxsUmUDaYbIJLOhERbRgrrCN/M1sp4BvJsMWtOQ=" 5 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.161.0/mirrord_linux_x86_64", 6 + "hash": "sha256-Oqk1ITUcFqs2hM3Ph/2MjWmAeyU3jzfoDzZUHRXOyHQ=" 7 7 }, 8 8 "aarch64-linux": { 9 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.159.0/mirrord_linux_aarch64", 10 - "hash": "sha256-/4VACn2xOwDBjKca8gO2syuw6foDQNyqZCECiPNeT2M=" 9 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.161.0/mirrord_linux_aarch64", 10 + "hash": "sha256-9BWLLkUGc65nMfaJ3GUXN3/9hI+RVA5lVcDTT+ZMCMw=" 11 11 }, 12 12 "aarch64-darwin": { 13 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.159.0/mirrord_mac_universal", 14 - "hash": "sha256-l/ZlUNzmp1/JBufNTbBD7yPUtHTCaU1gBOzX4GzHrq0=" 13 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.161.0/mirrord_mac_universal", 14 + "hash": "sha256-ak2DrNudwZWxy8RoPxc9+lLuU4LqCPa86/7DQrndVdk=" 15 15 }, 16 16 "x86_64-darwin": { 17 - "url": "https://github.com/metalbear-co/mirrord/releases/download/3.159.0/mirrord_mac_universal", 18 - "hash": "sha256-l/ZlUNzmp1/JBufNTbBD7yPUtHTCaU1gBOzX4GzHrq0=" 17 + "url": "https://github.com/metalbear-co/mirrord/releases/download/3.161.0/mirrord_mac_universal", 18 + "hash": "sha256-ak2DrNudwZWxy8RoPxc9+lLuU4LqCPa86/7DQrndVdk=" 19 19 } 20 20 } 21 21 }
+3 -3
pkgs/by-name/s7/s7/package.nix
··· 26 26 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "s7"; 29 - version = "11.5-unstable-2025-08-26"; 29 + version = "11.5-unstable-2025-09-06"; 30 30 31 31 src = fetchFromGitLab { 32 32 domain = "cm-gitlab.stanford.edu"; 33 33 owner = "bil"; 34 34 repo = "s7"; 35 - rev = "f2abd58b4311e3f873619a6da1e65c5ad3d81943"; 36 - hash = "sha256-4si8ObGNeM+grMR83pXppm50HZrw01tayQLePhwNRhk="; 35 + rev = "cc2781b08764f820a3b9dc7dfbbc40505a3131db"; 36 + hash = "sha256-8hwCzoELeDsnIz+XvfHHyRov4KajqCe1icI8uobrbDk="; 37 37 }; 38 38 39 39 buildInputs =
+3 -3
pkgs/by-name/st/starlark/package.nix
··· 6 6 }: 7 7 buildGoModule { 8 8 pname = "starlark"; 9 - version = "0-unstable-2025-08-04"; 9 + version = "0-unstable-2025-09-06"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "google"; 13 13 repo = "starlark-go"; 14 - rev = "3c9dc17c5f2e062f7d7b8b4237e571810e9c6445"; 15 - hash = "sha256-hNP2kt6X46WpyQ4eDFU+mGP4x5H6sD3PC+BRD3AUgbo="; 14 + rev = "bf296ed553ea1715656054a7f64ac6a6dd161360"; 15 + hash = "sha256-ijZvmR9oFsIvpindO1RSi01USr2bhBATvVEQtYlgP/A="; 16 16 }; 17 17 18 18 vendorHash = "sha256-8drlCBy+KROyqXzm/c+HBe/bMVOyvwRoLHxOApJhMfo=";
+315 -172
pkgs/by-name/ta/tantivy-go/add-Cargo.lock.patch
··· 1 1 diff --git a/rust/Cargo.lock b/rust/Cargo.lock 2 2 new file mode 100644 3 - index 0000000..7cb3275 3 + index 0000000..6717372 4 4 --- /dev/null 5 5 +++ b/rust/Cargo.lock 6 - @@ -0,0 +1,1762 @@ 6 + @@ -0,0 +1,1908 @@ 7 7 +# This file is automatically @generated by Cargo. 8 8 +# It is not intended for manual editing. 9 9 +version = 4 ··· 16 16 + 17 17 +[[package]] 18 18 +name = "ahash" 19 - +version = "0.8.11" 19 + +version = "0.8.12" 20 20 +source = "registry+https://github.com/rust-lang/crates.io-index" 21 - +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 21 + +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 22 22 +dependencies = [ 23 23 + "cfg-if", 24 24 + "once_cell", 25 25 + "version_check", 26 - + "zerocopy 0.7.35", 26 + + "zerocopy", 27 27 +] 28 28 + 29 29 +[[package]] ··· 43 43 + 44 44 +[[package]] 45 45 +name = "anstream" 46 - +version = "0.6.18" 46 + +version = "0.6.20" 47 47 +source = "registry+https://github.com/rust-lang/crates.io-index" 48 - +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 48 + +checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" 49 49 +dependencies = [ 50 50 + "anstyle", 51 51 + "anstyle-parse", ··· 58 58 + 59 59 +[[package]] 60 60 +name = "anstyle" 61 - +version = "1.0.10" 61 + +version = "1.0.11" 62 62 +source = "registry+https://github.com/rust-lang/crates.io-index" 63 - +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 63 + +checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 64 64 + 65 65 +[[package]] 66 66 +name = "anstyle-parse" 67 - +version = "0.2.6" 67 + +version = "0.2.7" 68 68 +source = "registry+https://github.com/rust-lang/crates.io-index" 69 - +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 69 + +checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 70 70 +dependencies = [ 71 71 + "utf8parse", 72 72 +] 73 73 + 74 74 +[[package]] 75 75 +name = "anstyle-query" 76 - +version = "1.1.2" 76 + +version = "1.1.4" 77 77 +source = "registry+https://github.com/rust-lang/crates.io-index" 78 - +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 78 + +checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 79 79 +dependencies = [ 80 - + "windows-sys 0.59.0", 80 + + "windows-sys 0.60.2", 81 81 +] 82 82 + 83 83 +[[package]] 84 84 +name = "anstyle-wincon" 85 - +version = "3.0.7" 85 + +version = "3.0.10" 86 86 +source = "registry+https://github.com/rust-lang/crates.io-index" 87 - +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" 87 + +checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 88 88 +dependencies = [ 89 89 + "anstyle", 90 - + "once_cell", 91 - + "windows-sys 0.59.0", 90 + + "once_cell_polyfill", 91 + + "windows-sys 0.60.2", 92 92 +] 93 93 + 94 94 +[[package]] ··· 105 105 +dependencies = [ 106 106 + "proc-macro2", 107 107 + "quote", 108 - + "syn 2.0.100", 108 + + "syn 2.0.104", 109 109 +] 110 110 + 111 111 +[[package]] 112 112 +name = "autocfg" 113 - +version = "1.4.0" 113 + +version = "1.5.0" 114 114 +source = "registry+https://github.com/rust-lang/crates.io-index" 115 - +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 115 + +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 116 116 + 117 117 +[[package]] 118 118 +name = "base64" ··· 122 122 + 123 123 +[[package]] 124 124 +name = "bitflags" 125 - +version = "2.9.0" 125 + +version = "2.9.1" 126 126 +source = "registry+https://github.com/rust-lang/crates.io-index" 127 - +checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 127 + +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 128 128 + 129 129 +[[package]] 130 130 +name = "bitpacking" ··· 137 137 + 138 138 +[[package]] 139 139 +name = "bon" 140 - +version = "3.6.1" 140 + +version = "3.6.5" 141 141 +source = "registry+https://github.com/rust-lang/crates.io-index" 142 - +checksum = "94054366e2ff97b455acdd4fdb03913f717febc57b7bbd1741b2c3b87efae030" 142 + +checksum = "33d9ef19ae5263a138da9a86871eca537478ab0332a7770bac7e3f08b801f89f" 143 143 +dependencies = [ 144 144 + "bon-macros", 145 145 + "rustversion", ··· 147 147 + 148 148 +[[package]] 149 149 +name = "bon-macros" 150 - +version = "3.6.1" 150 + +version = "3.6.5" 151 151 +source = "registry+https://github.com/rust-lang/crates.io-index" 152 - +checksum = "542a990e676ce0a0a895ae54b2d94afd012434f2228a85b186c6bc1a7056cdc6" 152 + +checksum = "577ae008f2ca11ca7641bd44601002ee5ab49ef0af64846ce1ab6057218a5cc1" 153 153 +dependencies = [ 154 154 + "darling", 155 155 + "ident_case", ··· 157 157 + "proc-macro2", 158 158 + "quote", 159 159 + "rustversion", 160 - + "syn 2.0.100", 160 + + "syn 2.0.104", 161 161 +] 162 162 + 163 163 +[[package]] 164 + +name = "bumpalo" 165 + +version = "3.19.0" 166 + +source = "registry+https://github.com/rust-lang/crates.io-index" 167 + +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 168 + + 169 + +[[package]] 164 170 +name = "byteorder" 165 171 +version = "1.5.0" 166 172 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 180 186 + "quote", 181 187 + "serde", 182 188 + "serde_json", 183 - + "syn 2.0.100", 189 + + "syn 2.0.104", 184 190 + "tempfile", 185 191 + "toml", 186 192 +] 187 193 + 188 194 +[[package]] 189 195 +name = "cc" 190 - +version = "1.2.19" 196 + +version = "1.2.32" 191 197 +source = "registry+https://github.com/rust-lang/crates.io-index" 192 - +checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362" 198 + +checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e" 193 199 +dependencies = [ 194 200 + "jobserver", 195 201 + "libc", ··· 213 219 + 214 220 +[[package]] 215 221 +name = "cfg-if" 216 - +version = "1.0.0" 222 + +version = "1.0.1" 217 223 +source = "registry+https://github.com/rust-lang/crates.io-index" 218 - +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 224 + +checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 219 225 + 220 226 +[[package]] 221 227 +name = "clap" 222 - +version = "4.5.36" 228 + +version = "4.5.43" 223 229 +source = "registry+https://github.com/rust-lang/crates.io-index" 224 - +checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04" 230 + +checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f" 225 231 +dependencies = [ 226 232 + "clap_builder", 227 233 +] 228 234 + 229 235 +[[package]] 230 236 +name = "clap_builder" 231 - +version = "4.5.36" 237 + +version = "4.5.43" 232 238 +source = "registry+https://github.com/rust-lang/crates.io-index" 233 - +checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5" 239 + +checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65" 234 240 +dependencies = [ 235 241 + "anstream", 236 242 + "anstyle", ··· 240 246 + 241 247 +[[package]] 242 248 +name = "clap_lex" 243 - +version = "0.7.4" 249 + +version = "0.7.5" 244 250 +source = "registry+https://github.com/rust-lang/crates.io-index" 245 - +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" 251 + +checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 246 252 + 247 253 +[[package]] 248 254 +name = "colorchoice" 249 - +version = "1.0.3" 255 + +version = "1.0.4" 250 256 +source = "registry+https://github.com/rust-lang/crates.io-index" 251 - +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 257 + +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 252 258 + 253 259 +[[package]] 254 260 +name = "core2" ··· 261 267 + 262 268 +[[package]] 263 269 +name = "crc32fast" 264 - +version = "1.4.2" 270 + +version = "1.5.0" 265 271 +source = "registry+https://github.com/rust-lang/crates.io-index" 266 - +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 272 + +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 267 273 +dependencies = [ 268 274 + "cfg-if", 269 275 +] ··· 310 316 + 311 317 +[[package]] 312 318 +name = "darling" 313 - +version = "0.20.11" 319 + +version = "0.21.1" 314 320 +source = "registry+https://github.com/rust-lang/crates.io-index" 315 - +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 321 + +checksum = "d6b136475da5ef7b6ac596c0e956e37bad51b85b987ff3d5e230e964936736b2" 316 322 +dependencies = [ 317 323 + "darling_core", 318 324 + "darling_macro", ··· 320 326 + 321 327 +[[package]] 322 328 +name = "darling_core" 323 - +version = "0.20.11" 329 + +version = "0.21.1" 324 330 +source = "registry+https://github.com/rust-lang/crates.io-index" 325 - +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 331 + +checksum = "b44ad32f92b75fb438b04b68547e521a548be8acc339a6dacc4a7121488f53e6" 326 332 +dependencies = [ 327 333 + "fnv", 328 334 + "ident_case", 329 335 + "proc-macro2", 330 336 + "quote", 331 337 + "strsim", 332 - + "syn 2.0.100", 338 + + "syn 2.0.104", 333 339 +] 334 340 + 335 341 +[[package]] 336 342 +name = "darling_macro" 337 - +version = "0.20.11" 343 + +version = "0.21.1" 338 344 +source = "registry+https://github.com/rust-lang/crates.io-index" 339 - +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 345 + +checksum = "2b5be8a7a562d315a5b92a630c30cec6bcf663e6673f00fbb69cca66a6f521b9" 340 346 +dependencies = [ 341 347 + "darling_core", 342 348 + "quote", 343 - + "syn 2.0.100", 349 + + "syn 2.0.104", 344 350 +] 345 351 + 346 352 +[[package]] ··· 402 408 + 403 409 +[[package]] 404 410 +name = "errno" 405 - +version = "0.3.11" 411 + +version = "0.3.13" 406 412 +source = "registry+https://github.com/rust-lang/crates.io-index" 407 - +checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" 413 + +checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 408 414 +dependencies = [ 409 415 + "libc", 410 - + "windows-sys 0.59.0", 416 + + "windows-sys 0.60.2", 411 417 +] 412 418 + 413 419 +[[package]] ··· 458 464 +dependencies = [ 459 465 + "proc-macro2", 460 466 + "quote", 461 - + "syn 2.0.100", 467 + + "syn 2.0.104", 462 468 +] 463 469 + 464 470 +[[package]] ··· 492 498 + 493 499 +[[package]] 494 500 +name = "getrandom" 495 - +version = "0.2.15" 501 + +version = "0.2.16" 496 502 +source = "registry+https://github.com/rust-lang/crates.io-index" 497 - +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 503 + +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 498 504 +dependencies = [ 499 505 + "cfg-if", 500 506 + "libc", 501 - + "wasi 0.11.0+wasi-snapshot-preview1", 507 + + "wasi 0.11.1+wasi-snapshot-preview1", 502 508 +] 503 509 + 504 510 +[[package]] 505 511 +name = "getrandom" 506 - +version = "0.3.2" 512 + +version = "0.3.3" 507 513 +source = "registry+https://github.com/rust-lang/crates.io-index" 508 - +checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" 514 + +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 509 515 +dependencies = [ 510 516 + "cfg-if", 511 517 + "libc", ··· 525 531 + 526 532 +[[package]] 527 533 +name = "hashbrown" 528 - +version = "0.15.2" 534 + +version = "0.15.5" 529 535 +source = "registry+https://github.com/rust-lang/crates.io-index" 530 - +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 536 + +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 531 537 +dependencies = [ 532 538 + "allocator-api2", 533 539 + "equivalent", ··· 581 587 + "libflate", 582 588 + "proc-macro2", 583 589 + "quote", 584 - + "syn 2.0.100", 590 + + "syn 2.0.104", 585 591 +] 586 592 + 587 593 +[[package]] 588 594 +name = "indexmap" 589 - +version = "2.9.0" 595 + +version = "2.10.0" 590 596 +source = "registry+https://github.com/rust-lang/crates.io-index" 591 - +checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 597 + +checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 592 598 +dependencies = [ 593 599 + "equivalent", 594 - + "hashbrown 0.15.2", 600 + + "hashbrown 0.15.5", 595 601 +] 596 602 + 597 603 +[[package]] ··· 626 632 + 627 633 +[[package]] 628 634 +name = "jieba-rs" 629 - +version = "0.7.2" 635 + +version = "0.7.4" 630 636 +source = "registry+https://github.com/rust-lang/crates.io-index" 631 - +checksum = "6d1bcad6332969e4d48ee568d430e14ee6dea70740c2549d005d87677ebefb0c" 637 + +checksum = "f5dd552bbb95d578520ee68403bf8aaf0dbbb2ce55b0854d019f9350ad61040a" 632 638 +dependencies = [ 633 639 + "cedarwood", 634 640 + "fxhash", ··· 641 647 + 642 648 +[[package]] 643 649 +name = "jiff" 644 - +version = "0.2.8" 650 + +version = "0.2.15" 645 651 +source = "registry+https://github.com/rust-lang/crates.io-index" 646 - +checksum = "e5ad87c89110f55e4cd4dc2893a9790820206729eaf221555f742d540b0724a0" 652 + +checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" 647 653 +dependencies = [ 648 654 + "jiff-static", 649 655 + "log", ··· 654 660 + 655 661 +[[package]] 656 662 +name = "jiff-static" 657 - +version = "0.2.8" 663 + +version = "0.2.15" 658 664 +source = "registry+https://github.com/rust-lang/crates.io-index" 659 - +checksum = "d076d5b64a7e2fe6f0743f02c43ca4a6725c0f904203bfe276a5b3e793103605" 665 + +checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" 660 666 +dependencies = [ 661 667 + "proc-macro2", 662 668 + "quote", 663 - + "syn 2.0.100", 669 + + "syn 2.0.104", 664 670 +] 665 671 + 666 672 +[[package]] ··· 669 675 +source = "registry+https://github.com/rust-lang/crates.io-index" 670 676 +checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" 671 677 +dependencies = [ 672 - + "getrandom 0.3.2", 678 + + "getrandom 0.3.3", 673 679 + "libc", 680 + +] 681 + + 682 + +[[package]] 683 + +name = "js-sys" 684 + +version = "0.3.77" 685 + +source = "registry+https://github.com/rust-lang/crates.io-index" 686 + +checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 687 + +dependencies = [ 688 + + "once_cell", 689 + + "wasm-bindgen", 674 690 +] 675 691 + 676 692 +[[package]] ··· 687 703 + 688 704 +[[package]] 689 705 +name = "libc" 690 - +version = "0.2.172" 706 + +version = "0.2.174" 691 707 +source = "registry+https://github.com/rust-lang/crates.io-index" 692 - +checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 708 + +checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 693 709 + 694 710 +[[package]] 695 711 +name = "libflate" ··· 717 733 + 718 734 +[[package]] 719 735 +name = "libm" 720 - +version = "0.2.11" 736 + +version = "0.2.15" 721 737 +source = "registry+https://github.com/rust-lang/crates.io-index" 722 - +checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" 738 + +checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 723 739 + 724 740 +[[package]] 725 741 +name = "linux-raw-sys" ··· 748 764 + "proc-macro-error", 749 765 + "proc-macro2", 750 766 + "quote", 751 - + "syn 2.0.100", 767 + + "syn 2.0.104", 752 768 +] 753 769 + 754 770 +[[package]] ··· 757 773 +source = "registry+https://github.com/rust-lang/crates.io-index" 758 774 +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 759 775 +dependencies = [ 760 - + "hashbrown 0.15.2", 776 + + "hashbrown 0.15.5", 761 777 +] 762 778 + 763 779 +[[package]] 764 780 +name = "lz4_flex" 765 - +version = "0.11.3" 781 + +version = "0.11.5" 766 782 +source = "registry+https://github.com/rust-lang/crates.io-index" 767 - +checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5" 783 + +checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a" 768 784 + 769 785 +[[package]] 770 786 +name = "measure_time" ··· 777 793 + 778 794 +[[package]] 779 795 +name = "memchr" 780 - +version = "2.7.4" 796 + +version = "2.7.5" 781 797 +source = "registry+https://github.com/rust-lang/crates.io-index" 782 - +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 798 + +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 783 799 + 784 800 +[[package]] 785 801 +name = "memmap2" 786 - +version = "0.9.5" 802 + +version = "0.9.7" 787 803 +source = "registry+https://github.com/rust-lang/crates.io-index" 788 - +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 804 + +checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28" 789 805 +dependencies = [ 790 806 + "libc", 791 807 +] ··· 835 851 +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 836 852 + 837 853 +[[package]] 854 + +name = "once_cell_polyfill" 855 + +version = "1.70.1" 856 + +source = "registry+https://github.com/rust-lang/crates.io-index" 857 + +checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 858 + + 859 + +[[package]] 838 860 +name = "oneshot" 839 861 +version = "0.1.11" 840 862 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 888 910 + "phf_shared", 889 911 + "proc-macro2", 890 912 + "quote", 891 - + "syn 2.0.100", 913 + + "syn 2.0.104", 892 914 +] 893 915 + 894 916 +[[package]] ··· 920 942 + 921 943 +[[package]] 922 944 +name = "portable-atomic" 923 - +version = "1.11.0" 945 + +version = "1.11.1" 924 946 +source = "registry+https://github.com/rust-lang/crates.io-index" 925 - +checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" 947 + +checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 926 948 + 927 949 +[[package]] 928 950 +name = "portable-atomic-util" ··· 945 967 +source = "registry+https://github.com/rust-lang/crates.io-index" 946 968 +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 947 969 +dependencies = [ 948 - + "zerocopy 0.8.24", 970 + + "zerocopy", 949 971 +] 950 972 + 951 973 +[[package]] 952 974 +name = "prettyplease" 953 - +version = "0.2.32" 975 + +version = "0.2.36" 954 976 +source = "registry+https://github.com/rust-lang/crates.io-index" 955 - +checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6" 977 + +checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2" 956 978 +dependencies = [ 957 979 + "proc-macro2", 958 - + "syn 2.0.100", 980 + + "syn 2.0.104", 959 981 +] 960 982 + 961 983 +[[package]] ··· 1002 1024 + 1003 1025 +[[package]] 1004 1026 +name = "r-efi" 1005 - +version = "5.2.0" 1027 + +version = "5.3.0" 1006 1028 +source = "registry+https://github.com/rust-lang/crates.io-index" 1007 - +checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 1029 + +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1008 1030 + 1009 1031 +[[package]] 1010 1032 +name = "rand" ··· 1033 1055 +source = "registry+https://github.com/rust-lang/crates.io-index" 1034 1056 +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1035 1057 +dependencies = [ 1036 - + "getrandom 0.2.15", 1058 + + "getrandom 0.2.16", 1037 1059 +] 1038 1060 + 1039 1061 +[[package]] ··· 1127 1149 + 1128 1150 +[[package]] 1129 1151 +name = "rustix" 1130 - +version = "1.0.5" 1152 + +version = "1.0.8" 1131 1153 +source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - +checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf" 1154 + +checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" 1133 1155 +dependencies = [ 1134 1156 + "bitflags", 1135 1157 + "errno", 1136 1158 + "libc", 1137 1159 + "linux-raw-sys 0.9.4", 1138 - + "windows-sys 0.59.0", 1160 + + "windows-sys 0.60.2", 1139 1161 +] 1140 1162 + 1141 1163 +[[package]] 1142 1164 +name = "rustversion" 1143 - +version = "1.0.20" 1165 + +version = "1.0.21" 1144 1166 +source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - +checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" 1167 + +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 1146 1168 + 1147 1169 +[[package]] 1148 1170 +name = "ryu" ··· 1167 1189 +dependencies = [ 1168 1190 + "proc-macro2", 1169 1191 + "quote", 1170 - + "syn 2.0.100", 1192 + + "syn 2.0.104", 1171 1193 +] 1172 1194 + 1173 1195 +[[package]] 1174 1196 +name = "serde_json" 1175 - +version = "1.0.140" 1197 + +version = "1.0.142" 1176 1198 +source = "registry+https://github.com/rust-lang/crates.io-index" 1177 - +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 1199 + +checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7" 1178 1200 +dependencies = [ 1179 1201 + "itoa", 1180 1202 + "memchr", ··· 1184 1206 + 1185 1207 +[[package]] 1186 1208 +name = "serde_spanned" 1187 - +version = "0.6.8" 1209 + +version = "0.6.9" 1188 1210 +source = "registry+https://github.com/rust-lang/crates.io-index" 1189 - +checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 1211 + +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 1190 1212 +dependencies = [ 1191 1213 + "serde", 1192 1214 +] ··· 1214 1236 + 1215 1237 +[[package]] 1216 1238 +name = "slab" 1217 - +version = "0.4.9" 1239 + +version = "0.4.11" 1218 1240 +source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1220 - +dependencies = [ 1221 - + "autocfg", 1222 - +] 1241 + +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1223 1242 + 1224 1243 +[[package]] 1225 1244 +name = "smallvec" 1226 - +version = "1.15.0" 1245 + +version = "1.15.1" 1227 1246 +source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - +checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 1247 + +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1229 1248 + 1230 1249 +[[package]] 1231 1250 +name = "stable_deref_trait" ··· 1251 1270 + 1252 1271 +[[package]] 1253 1272 +name = "syn" 1254 - +version = "2.0.100" 1273 + +version = "2.0.104" 1255 1274 +source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - +checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" 1275 + +checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" 1257 1276 +dependencies = [ 1258 1277 + "proc-macro2", 1259 1278 + "quote", ··· 1426 1445 + 1427 1446 +[[package]] 1428 1447 +name = "tempfile" 1429 - +version = "3.19.1" 1448 + +version = "3.20.0" 1430 1449 +source = "registry+https://github.com/rust-lang/crates.io-index" 1431 - +checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf" 1450 + +checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 1432 1451 +dependencies = [ 1433 1452 + "fastrand", 1434 - + "getrandom 0.3.2", 1453 + + "getrandom 0.3.3", 1435 1454 + "once_cell", 1436 - + "rustix 1.0.5", 1455 + + "rustix 1.0.8", 1437 1456 + "windows-sys 0.59.0", 1438 1457 +] 1439 1458 + ··· 1454 1473 +dependencies = [ 1455 1474 + "proc-macro2", 1456 1475 + "quote", 1457 - + "syn 2.0.100", 1476 + + "syn 2.0.104", 1458 1477 +] 1459 1478 + 1460 1479 +[[package]] ··· 1490 1509 + 1491 1510 +[[package]] 1492 1511 +name = "toml" 1493 - +version = "0.8.20" 1512 + +version = "0.8.23" 1494 1513 +source = "registry+https://github.com/rust-lang/crates.io-index" 1495 - +checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148" 1514 + +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 1496 1515 +dependencies = [ 1497 1516 + "serde", 1498 1517 + "serde_spanned", ··· 1502 1521 + 1503 1522 +[[package]] 1504 1523 +name = "toml_datetime" 1505 - +version = "0.6.8" 1524 + +version = "0.6.11" 1506 1525 +source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 1526 + +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 1508 1527 +dependencies = [ 1509 1528 + "serde", 1510 1529 +] 1511 1530 + 1512 1531 +[[package]] 1513 1532 +name = "toml_edit" 1514 - +version = "0.22.24" 1533 + +version = "0.22.27" 1515 1534 +source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - +checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" 1535 + +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 1517 1536 +dependencies = [ 1518 1537 + "indexmap", 1519 1538 + "serde", 1520 1539 + "serde_spanned", 1521 1540 + "toml_datetime", 1541 + + "toml_write", 1522 1542 + "winnow", 1523 1543 +] 1524 1544 + 1525 1545 +[[package]] 1546 + +name = "toml_write" 1547 + +version = "0.1.2" 1548 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1549 + +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 1550 + + 1551 + +[[package]] 1526 1552 +name = "unicode-ident" 1527 1553 +version = "1.0.18" 1528 1554 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1548 1574 + 1549 1575 +[[package]] 1550 1576 +name = "uuid" 1551 - +version = "1.16.0" 1577 + +version = "1.17.0" 1552 1578 +source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - +checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" 1579 + +checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 1554 1580 +dependencies = [ 1555 - + "getrandom 0.3.2", 1581 + + "getrandom 0.3.3", 1582 + + "js-sys", 1556 1583 + "serde", 1584 + + "wasm-bindgen", 1557 1585 +] 1558 1586 + 1559 1587 +[[package]] ··· 1564 1592 + 1565 1593 +[[package]] 1566 1594 +name = "wasi" 1567 - +version = "0.11.0+wasi-snapshot-preview1" 1595 + +version = "0.11.1+wasi-snapshot-preview1" 1568 1596 +source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1597 + +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1570 1598 + 1571 1599 +[[package]] 1572 1600 +name = "wasi" ··· 1578 1606 +] 1579 1607 + 1580 1608 +[[package]] 1609 + +name = "wasm-bindgen" 1610 + +version = "0.2.100" 1611 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1612 + +checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1613 + +dependencies = [ 1614 + + "cfg-if", 1615 + + "once_cell", 1616 + + "rustversion", 1617 + + "wasm-bindgen-macro", 1618 + +] 1619 + + 1620 + +[[package]] 1621 + +name = "wasm-bindgen-backend" 1622 + +version = "0.2.100" 1623 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1624 + +checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1625 + +dependencies = [ 1626 + + "bumpalo", 1627 + + "log", 1628 + + "proc-macro2", 1629 + + "quote", 1630 + + "syn 2.0.104", 1631 + + "wasm-bindgen-shared", 1632 + +] 1633 + + 1634 + +[[package]] 1635 + +name = "wasm-bindgen-macro" 1636 + +version = "0.2.100" 1637 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1638 + +checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1639 + +dependencies = [ 1640 + + "quote", 1641 + + "wasm-bindgen-macro-support", 1642 + +] 1643 + + 1644 + +[[package]] 1645 + +name = "wasm-bindgen-macro-support" 1646 + +version = "0.2.100" 1647 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1648 + +checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1649 + +dependencies = [ 1650 + + "proc-macro2", 1651 + + "quote", 1652 + + "syn 2.0.104", 1653 + + "wasm-bindgen-backend", 1654 + + "wasm-bindgen-shared", 1655 + +] 1656 + + 1657 + +[[package]] 1658 + +name = "wasm-bindgen-shared" 1659 + +version = "0.2.100" 1660 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + +checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1662 + +dependencies = [ 1663 + + "unicode-ident", 1664 + +] 1665 + + 1666 + +[[package]] 1581 1667 +name = "winapi" 1582 1668 +version = "0.3.9" 1583 1669 +source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1600 1686 +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1601 1687 + 1602 1688 +[[package]] 1689 + +name = "windows-link" 1690 + +version = "0.1.3" 1691 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 1693 + + 1694 + +[[package]] 1603 1695 +name = "windows-sys" 1604 1696 +version = "0.52.0" 1605 1697 +source = "registry+https://github.com/rust-lang/crates.io-index" 1606 1698 +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1607 1699 +dependencies = [ 1608 - + "windows-targets", 1700 + + "windows-targets 0.52.6", 1609 1701 +] 1610 1702 + 1611 1703 +[[package]] ··· 1614 1706 +source = "registry+https://github.com/rust-lang/crates.io-index" 1615 1707 +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1616 1708 +dependencies = [ 1617 - + "windows-targets", 1709 + + "windows-targets 0.52.6", 1710 + +] 1711 + + 1712 + +[[package]] 1713 + +name = "windows-sys" 1714 + +version = "0.60.2" 1715 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1716 + +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1717 + +dependencies = [ 1718 + + "windows-targets 0.53.3", 1618 1719 +] 1619 1720 + 1620 1721 +[[package]] ··· 1623 1724 +source = "registry+https://github.com/rust-lang/crates.io-index" 1624 1725 +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1625 1726 +dependencies = [ 1626 - + "windows_aarch64_gnullvm", 1627 - + "windows_aarch64_msvc", 1628 - + "windows_i686_gnu", 1629 - + "windows_i686_gnullvm", 1630 - + "windows_i686_msvc", 1631 - + "windows_x86_64_gnu", 1632 - + "windows_x86_64_gnullvm", 1633 - + "windows_x86_64_msvc", 1727 + + "windows_aarch64_gnullvm 0.52.6", 1728 + + "windows_aarch64_msvc 0.52.6", 1729 + + "windows_i686_gnu 0.52.6", 1730 + + "windows_i686_gnullvm 0.52.6", 1731 + + "windows_i686_msvc 0.52.6", 1732 + + "windows_x86_64_gnu 0.52.6", 1733 + + "windows_x86_64_gnullvm 0.52.6", 1734 + + "windows_x86_64_msvc 0.52.6", 1735 + +] 1736 + + 1737 + +[[package]] 1738 + +name = "windows-targets" 1739 + +version = "0.53.3" 1740 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1741 + +checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 1742 + +dependencies = [ 1743 + + "windows-link", 1744 + + "windows_aarch64_gnullvm 0.53.0", 1745 + + "windows_aarch64_msvc 0.53.0", 1746 + + "windows_i686_gnu 0.53.0", 1747 + + "windows_i686_gnullvm 0.53.0", 1748 + + "windows_i686_msvc 0.53.0", 1749 + + "windows_x86_64_gnu 0.53.0", 1750 + + "windows_x86_64_gnullvm 0.53.0", 1751 + + "windows_x86_64_msvc 0.53.0", 1634 1752 +] 1635 1753 + 1636 1754 +[[package]] ··· 1640 1758 +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1641 1759 + 1642 1760 +[[package]] 1761 + +name = "windows_aarch64_gnullvm" 1762 + +version = "0.53.0" 1763 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 1765 + + 1766 + +[[package]] 1643 1767 +name = "windows_aarch64_msvc" 1644 1768 +version = "0.52.6" 1645 1769 +source = "registry+https://github.com/rust-lang/crates.io-index" 1646 1770 +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1771 + + 1772 + +[[package]] 1773 + +name = "windows_aarch64_msvc" 1774 + +version = "0.53.0" 1775 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1776 + +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 1647 1777 + 1648 1778 +[[package]] 1649 1779 +name = "windows_i686_gnu" ··· 1652 1782 +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1653 1783 + 1654 1784 +[[package]] 1785 + +name = "windows_i686_gnu" 1786 + +version = "0.53.0" 1787 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 1789 + + 1790 + +[[package]] 1655 1791 +name = "windows_i686_gnullvm" 1656 1792 +version = "0.52.6" 1657 1793 +source = "registry+https://github.com/rust-lang/crates.io-index" 1658 1794 +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1659 1795 + 1660 1796 +[[package]] 1797 + +name = "windows_i686_gnullvm" 1798 + +version = "0.53.0" 1799 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1800 + +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 1801 + + 1802 + +[[package]] 1661 1803 +name = "windows_i686_msvc" 1662 1804 +version = "0.52.6" 1663 1805 +source = "registry+https://github.com/rust-lang/crates.io-index" 1664 1806 +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1665 1807 + 1666 1808 +[[package]] 1809 + +name = "windows_i686_msvc" 1810 + +version = "0.53.0" 1811 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1812 + +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 1813 + + 1814 + +[[package]] 1667 1815 +name = "windows_x86_64_gnu" 1668 1816 +version = "0.52.6" 1669 1817 +source = "registry+https://github.com/rust-lang/crates.io-index" 1670 1818 +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1671 1819 + 1672 1820 +[[package]] 1821 + +name = "windows_x86_64_gnu" 1822 + +version = "0.53.0" 1823 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1824 + +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 1825 + + 1826 + +[[package]] 1673 1827 +name = "windows_x86_64_gnullvm" 1674 1828 +version = "0.52.6" 1675 1829 +source = "registry+https://github.com/rust-lang/crates.io-index" 1676 1830 +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1831 + + 1832 + +[[package]] 1833 + +name = "windows_x86_64_gnullvm" 1834 + +version = "0.53.0" 1835 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1836 + +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 1677 1837 + 1678 1838 +[[package]] 1679 1839 +name = "windows_x86_64_msvc" ··· 1682 1842 +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1683 1843 + 1684 1844 +[[package]] 1845 + +name = "windows_x86_64_msvc" 1846 + +version = "0.53.0" 1847 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 1849 + + 1850 + +[[package]] 1685 1851 +name = "winnow" 1686 - +version = "0.7.6" 1852 + +version = "0.7.12" 1687 1853 +source = "registry+https://github.com/rust-lang/crates.io-index" 1688 - +checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10" 1854 + +checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" 1689 1855 +dependencies = [ 1690 1856 + "memchr", 1691 1857 +] ··· 1701 1867 + 1702 1868 +[[package]] 1703 1869 +name = "zerocopy" 1704 - +version = "0.7.35" 1705 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1706 - +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1707 - +dependencies = [ 1708 - + "zerocopy-derive 0.7.35", 1709 - +] 1710 - + 1711 - +[[package]] 1712 - +name = "zerocopy" 1713 - +version = "0.8.24" 1714 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1715 - +checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" 1716 - +dependencies = [ 1717 - + "zerocopy-derive 0.8.24", 1718 - +] 1719 - + 1720 - +[[package]] 1721 - +name = "zerocopy-derive" 1722 - +version = "0.7.35" 1870 + +version = "0.8.26" 1723 1871 +source = "registry+https://github.com/rust-lang/crates.io-index" 1724 - +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1872 + +checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 1725 1873 +dependencies = [ 1726 - + "proc-macro2", 1727 - + "quote", 1728 - + "syn 2.0.100", 1874 + + "zerocopy-derive", 1729 1875 +] 1730 1876 + 1731 1877 +[[package]] 1732 1878 +name = "zerocopy-derive" 1733 - +version = "0.8.24" 1879 + +version = "0.8.26" 1734 1880 +source = "registry+https://github.com/rust-lang/crates.io-index" 1735 - +checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" 1881 + +checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 1736 1882 +dependencies = [ 1737 1883 + "proc-macro2", 1738 1884 + "quote", 1739 - + "syn 2.0.100", 1885 + + "syn 2.0.104", 1740 1886 +] 1741 1887 + 1742 1888 +[[package]] ··· 1766 1912 + "cc", 1767 1913 + "pkg-config", 1768 1914 +] 1769 - -- 1770 - 2.48.1 1771 -
+3 -3
pkgs/by-name/ta/tantivy-go/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "tantivy-go"; 9 - version = "1.0.1"; 9 + version = "1.0.4"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "anyproto"; 13 13 repo = "tantivy-go"; 14 14 tag = "v${version}"; 15 - hash = "sha256-iTGIm5C7SMBZv2OcKCQCyEZS/eeMJQ5nFSpuFJbTEXU="; 15 + hash = "sha256-ksHw+62JwQrzxLuXwYfTLOkC22Miz1Rpl5XX8+vPBcM="; 16 16 }; 17 17 18 - cargoHash = "sha256-f8xI4g6MK4NUn0DpxD+miaCzBe8FSSqaL5rpjoqUGfY="; 18 + cargoHash = "sha256-GKbQFWXKEgYmoTyFCQ/SAgFB7UJpYN2SWwZEiUxd260="; 19 19 20 20 cargoPatches = [ 21 21 ./add-Cargo.lock.patch
+3 -3
pkgs/by-name/tx/txtpbfmt/package.nix
··· 7 7 8 8 buildGoModule { 9 9 pname = "txtpbfmt"; 10 - version = "0-unstable-2025-06-27"; 10 + version = "0-unstable-2025-09-03"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "protocolbuffers"; 14 14 repo = "txtpbfmt"; 15 - rev = "f293424e46b51a8dc295a0edf0fe7217ebda2660"; 16 - hash = "sha256-0fFQbzj4CZ78P7A3iTwNA6LHUDM0nwYM/mPwDOlV2Zo="; 15 + rev = "cf07efcaeff78f7d945f844d506daf4cad5a9229"; 16 + hash = "sha256-A/rmMtYLaTEkP02DLaYu/1nwaQ7EWacvcl0ri5Zx5zs="; 17 17 }; 18 18 19 19 vendorHash = "sha256-iWY0b6PAw9BhA8WrTEECnVAKWTGXuIiGvOi9uhJO4PI=";
+1 -2
pkgs/development/compilers/ghc/9.2.4-binary.nix
··· 211 211 212 212 in 213 213 214 - assert import ./common-have-ncg.nix { inherit lib stdenv version; }; 215 - 216 214 stdenv.mkDerivation { 217 215 inherit version; 218 216 pname = "ghc-binary${binDistUsed.variantSuffix}"; ··· 497 495 # `pkgsMusl`. 498 496 platforms = builtins.attrNames ghcBinDists.${distSetName}; 499 497 teams = [ lib.teams.haskell ]; 498 + broken = !(import ./common-have-ncg.nix { inherit lib stdenv version; }); 500 499 }; 501 500 }
+1 -2
pkgs/development/compilers/ghc/9.6.3-binary.nix
··· 210 210 211 211 in 212 212 213 - assert import ./common-have-ncg.nix { inherit lib stdenv version; }; 214 - 215 213 stdenv.mkDerivation { 216 214 inherit version; 217 215 pname = "ghc-binary${binDistUsed.variantSuffix}"; ··· 471 469 # `pkgsMusl`. 472 470 platforms = builtins.attrNames ghcBinDists.${distSetName}; 473 471 teams = [ lib.teams.haskell ]; 472 + broken = !(import ./common-have-ncg.nix { inherit lib stdenv version; }); 474 473 }; 475 474 }
+1 -2
pkgs/development/compilers/ghc/9.8.4-binary.nix
··· 224 224 225 225 in 226 226 227 - assert import ./common-have-ncg.nix { inherit lib stdenv version; }; 228 - 229 227 stdenv.mkDerivation { 230 228 inherit version; 231 229 pname = "ghc-binary${binDistUsed.variantSuffix}"; ··· 486 484 # `pkgsMusl`. 487 485 platforms = builtins.attrNames ghcBinDists.${distSetName}; 488 486 maintainers = lib.teams.haskell.members; 487 + broken = !(import ./common-have-ncg.nix { inherit lib stdenv version; }); 489 488 }; 490 489 }
+2
pkgs/development/coq-modules/mathcomp-algebra-tactics/default.nix
··· 32 32 lib.switch 33 33 [ coq.coq-version mathcomp-algebra.version ] 34 34 [ 35 + (case (range "8.20" "9.1") (isGe "2.4") "1.2.7") 35 36 (case (range "8.20" "9.1") (isGe "2.4") "1.2.6") 36 37 (case (range "8.20" "9.1") (isGe "2.4") "1.2.5") 37 38 (case (range "8.16" "9.0") (isGe "2.0") "1.2.4") ··· 48 49 release."1.2.4".sha256 = "sha256-BRxt0LGPz2u3kJRjcderaZqCfs8M8qKAAwNSWmIck7Q="; 49 50 release."1.2.5".sha256 = "sha256-wTfe+g7ljWs1S+g02VQutnJGLVIOzNX1lm1HTMXeUUA="; 50 51 release."1.2.6".sha256 = "sha256-D7EEiLeCJMgxsYvlAFyL7QZyx/KJAKesVE+vyfzqzkU="; 52 + release."1.2.7".sha256 = "sha256-pCal3BPZ85SMAsEFAXRWWV7nuriHGWtyfNocJqsEmLk="; 51 53 52 54 propagatedBuildInputs = [ 53 55 mathcomp-ssreflect
+1
pkgs/development/python-modules/pyqt/6.x.nix
··· 118 118 qtquicktimeline 119 119 ] 120 120 # ++ lib.optional withConnectivity qtconnectivity 121 + ++ lib.optional withMultimedia qtmultimedia 121 122 ++ lib.optional withWebSockets qtwebsockets 122 123 ++ lib.optional withLocation qtlocation 123 124 ++ lib.optional withSerialPort qtserialport;
+2 -2
pkgs/development/python-modules/weaviate-client/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "weaviate-client"; 30 - version = "4.16.5"; 30 + version = "4.16.9"; 31 31 pyproject = true; 32 32 33 33 disabled = pythonOlder "3.12"; ··· 36 36 owner = "weaviate"; 37 37 repo = "weaviate-python-client"; 38 38 tag = "v${version}"; 39 - hash = "sha256-AjZZ9kmVxePlomX6bXUohZZXl2IXMbrjG00qNlGdjRc="; 39 + hash = "sha256-vnBBZUUTv8GVPxjkxqKgTYA9/UaJ7VPr9QoRBIBVek8="; 40 40 }; 41 41 42 42 pythonRelaxDeps = [
+2 -2
pkgs/development/rocq-modules/rocq-elpi/default.nix
··· 17 17 in 18 18 with lib.versions; 19 19 lib.switch rocq-core.rocq-version [ 20 - (case (range "9.0" "9.1") "3.0.1") 20 + (case (range "9.0" "9.1") "3.3.0") 21 21 (case (range "9.0" "9.1") "2.0.7") 22 22 ] { }; 23 23 elpi = rocq-core.ocamlPackages.elpi.override { version = default-elpi-version; }; ··· 36 36 in 37 37 with lib.versions; 38 38 lib.switch rocq-core.rocq-version [ 39 - (case (range "9.0" "9.1") "3.0.0") 39 + (case (range "9.0" "9.1") "3.1.0") 40 40 (case (range "9.0" "9.1") "2.6.0") 41 41 (case ("9.0") "2.5.2") 42 42 ] null;
+33 -13
pkgs/games/dwarf-fortress/df.lock.json
··· 1 1 { 2 2 "game": { 3 3 "latest": { 4 - "linux": "51.11", 4 + "linux": "52.04", 5 5 "darwin": "0.47.05" 6 6 }, 7 7 "versions": { 8 - "51.11": { 8 + "52.04": { 9 9 "df": { 10 - "version": "51.11", 10 + "version": "52.04", 11 11 "urls": { 12 12 "linux": { 13 - "url": "https://www.bay12games.com/dwarves/df_51_11_linux.tar.bz2", 14 - "outputHash": "sha256-51cwIFMm5cwSaXjjhpz4pS3D8B5/Mt5+k1ALu1F+JWc=" 13 + "url": "https://www.bay12games.com/dwarves/df_52_04_linux.tar.bz2", 14 + "outputHash": "sha256-x/v4yWuojnbea0N7KUAINBdhPBjl0DoWy8Pi/eDCpec=" 15 15 } 16 16 } 17 17 }, 18 18 "hack": { 19 - "version": "51.11-r1.2", 19 + "version": "52.04-r1", 20 20 "git": { 21 21 "url": "https://github.com/DFHack/dfhack.git", 22 - "revision": "51.11-r1.2", 23 - "outputHash": "sha256-x8zY8IGDhnyoeNz24Mt00o+2XLzSHZG165MXQHXW+YA=" 22 + "revision": "52.04-r1", 23 + "outputHash": "sha256-DPW+fvurUYnwfGrEqV3JEN1TfllOJPHqGIlNJ3Wha90=" 24 24 }, 25 - "xmlRev": "6502bdefd1796315365a7bb58e30e0ce34359bea" 25 + "xmlRev": "7b691d256f9427036e7ff24fa795a0f9334739e7" 26 + } 27 + }, 28 + "51.13": { 29 + "df": { 30 + "version": "51.13", 31 + "urls": { 32 + "linux": { 33 + "url": "https://www.bay12games.com/dwarves/df_51_13_linux.tar.bz2", 34 + "outputHash": "sha256-Fdb3QS+P0xL4/U0z6nZyMh78KVHDiu9TI3fF6saAw3I=" 35 + } 36 + } 37 + }, 38 + "hack": { 39 + "version": "51.13-r1", 40 + "git": { 41 + "url": "https://github.com/DFHack/dfhack.git", 42 + "revision": "51.13-r1", 43 + "outputHash": "sha256-Z6ZmXl4BmSg9jRwPpYKMIw3fW6DYxBJEv8oboh+PbZQ=" 44 + }, 45 + "xmlRev": "ae7424d3f40bf60b3906b5b9b472cb9a7209a3a8" 26 46 } 27 47 }, 28 48 "50.15": { ··· 96 116 } 97 117 }, 98 118 "therapist": { 99 - "version": "42.1.13", 100 - "maxDfVersion": "51.11", 119 + "version": "42.1.18", 120 + "maxDfVersion": "52.03", 101 121 "git": { 102 122 "url": "https://github.com/Dwarf-Therapist/Dwarf-Therapist.git", 103 - "revision": "v42.1.13", 104 - "outputHash": "sha256-y/kUur/BTArznrEzw54FZBrxnD2KXHcwfrHE4WvoemA=" 123 + "revision": "v42.1.18", 124 + "outputHash": "sha256-RdBUpVkjvsNjTowHpQ2FQUCtJiwfqls4dnoUIwKoXGg=" 105 125 } 106 126 } 107 127 }
+6 -13
pkgs/games/dwarf-fortress/dfhack/default.nix
··· 120 120 name = "rename-lerp.patch"; 121 121 url = "https://github.com/DFHack/dfhack/commit/389dcf5cfcdb8bfb8deeb05fa5756c9f4f5709d1.patch"; 122 122 hash = "sha256-QuDtGURhP+nM+x+8GIKO5LrMcmBkl9JSHHIeqzqGIPQ="; 123 - }); 123 + }) 124 + # Newer versions use SDL_GetBasePath and SDL_GetPrefPath with a Windows-esque directory 125 + # that mismatches where we have historically stored data in nixpkgs: 126 + # https://github.com/libsdl-org/SDL/blob/release-2.24.x/src/filesystem/unix/SDL_sysfilesystem.c#L136 127 + # Use SDL_GetPrefPath since this takes XDG_DATA_HOME into account (which is correct). 128 + ++ optional (versionAtLeast version "52.02-r2") ./use-df-linux-dir.patch; 124 129 125 130 # gcc 11 fix 126 131 CXXFLAGS = optionalString (versionOlder version "0.47.05-r3") "-fpermissive"; 127 - 128 - # As of 129 - # https://github.com/DFHack/dfhack/commit/56e43a0dde023c5a4595a22b29d800153b31e3c4, 130 - # dfhack gets its goodies from the directory above the Dwarf_Fortress 131 - # executable, which leads to stock Dwarf Fortress and not the built 132 - # environment where all the dfhack resources are symlinked to (typically 133 - # ~/.local/share/df_linux). This causes errors like `tweak is not a 134 - # recognized command` to be reported and dfhack to lose some of its 135 - # functionality. 136 - postPatch = '' 137 - sed -i 's@cached_path = path_string.*@cached_path = getenv("DF_DIR");@' library/Process-linux.cpp 138 - ''; 139 132 140 133 nativeBuildInputs = [ 141 134 cmake
+25
pkgs/games/dwarf-fortress/dfhack/use-df-linux-dir.patch
··· 1 + diff --git a/library/modules/Filesystem.cpp b/library/modules/Filesystem.cpp 2 + index 7a6b09a50..d5827f016 100644 3 + --- a/library/modules/Filesystem.cpp 4 + +++ b/library/modules/Filesystem.cpp 5 + @@ -232,17 +232,10 @@ std::filesystem::path Filesystem::canonicalize(std::filesystem::path p) noexcept 6 + 7 + std::filesystem::path Filesystem::getInstallDir() noexcept 8 + { 9 + - return std::filesystem::path{ DFSDL::DFSDL_GetBasePath() }; 10 + + return std::filesystem::path{ DFSDL::DFSDL_GetPrefPath("", "df_linux") }; 11 + } 12 + 13 + std::filesystem::path Filesystem::getBaseDir() noexcept 14 + { 15 + - auto getsavebase = []() { 16 + - // assume portable mode is _on_ if init is missing 17 + - if (!df::global::init || df::global::init->media.flag.is_set(df::enums::init_media_flags::PORTABLE_MODE)) 18 + - return DFSDL::DFSDL_GetBasePath(); 19 + - else 20 + - return DFSDL::DFSDL_GetPrefPath("Bay 12 Games", "Dwarf Fortress"); 21 + - }; 22 + - return std::filesystem::path{ getsavebase() }; 23 + + return std::filesystem::path{ DFSDL::DFSDL_GetPrefPath("", "df_linux") }; 24 + } 25 +
+3 -2
pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix
··· 74 74 local orig_md5="$2" 75 75 local patched_md5="$3" 76 76 echo "It doesn't support DF $dfVersion out of the box, so we're doing it the hard way." 77 - export NIXPKGS_DF_HOME="$(mktemp -dt dfhack.XXXXXX)" 77 + export HOME="$(mktemp -dt dfhack.XXXXXX)" 78 + export XDG_DATA_HOME="$HOME/.local/share" 78 79 expect ${dfHackExpectScript} 79 - local ini="$NIXPKGS_DF_HOME/therapist.ini" 80 + local ini="$XDG_DATA_HOME/df_linux/therapist.ini" 80 81 if [ -f "$ini" ]; then 81 82 if grep -q "$patched_md5" "$ini"; then 82 83 cp -v "$ini" "$output"
+1 -1
pkgs/games/dwarf-fortress/update.rb
··· 571 571 572 572 # Returns an array containing all versions. 573 573 def all_versions 574 - self.game.versions.keys.map {"DF #{_1}"}.to_a + ["DT #{self.therapist.version}"] 574 + [self.game.versions.keys.lazy.map {"DF #{_1}"}.first] + ["DT #{self.therapist.version}"] 575 575 end 576 576 577 577 # Loads this DFLock.
+7
pkgs/servers/apache-kafka/default.nix
··· 14 14 15 15 let 16 16 versionMap = { 17 + "4_1" = { 18 + kafkaVersion = "4.1.0"; 19 + scalaVersion = "2.13"; 20 + sha256 = "sha256-hbRThHDR3LmNAnMoa/q4cXBlUi5Zfs//zU24OjAhdY4="; 21 + jre = jdk17_headless; 22 + nixosTest = nixosTests.kafka.base.kafka_4_1; 23 + }; 17 24 "4_0" = { 18 25 kafkaVersion = "4.0.0"; 19 26 scalaVersion = "2.13";
+2 -1
pkgs/top-level/all-packages.nix
··· 6435 6435 apacheKafka_3_8 6436 6436 apacheKafka_3_9 6437 6437 apacheKafka_4_0 6438 + apacheKafka_4_1 6438 6439 ; 6439 6440 6440 - apacheKafka = apacheKafka_4_0; 6441 + apacheKafka = apacheKafka_4_1; 6441 6442 6442 6443 asn2quickder = python3Packages.callPackage ../development/tools/asn2quickder { }; 6443 6444