Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub b84d283f 8589b52b

+1264 -1105
+22
maintainers/maintainer-list.nix
··· 4302 4302 githubId = 34766150; 4303 4303 name = "datafoo"; 4304 4304 }; 4305 + DataHearth = { 4306 + email = "dev@antoine-langlois.net"; 4307 + github = "DataHearth"; 4308 + githubId = 28595242; 4309 + name = "DataHearth"; 4310 + keys = [{ 4311 + fingerprint = "A129 2547 0298 BFEE 7EE0 92B3 946E 2D0C 410C 7B3D"; 4312 + }]; 4313 + }; 4305 4314 davegallant = { 4306 4315 name = "Dave Gallant"; 4307 4316 email = "davegallant@gmail.com"; ··· 5322 5331 github = "ebzzry"; 5323 5332 githubId = 7875; 5324 5333 name = "Rommel Martinez"; 5334 + }; 5335 + ecklf = { 5336 + email = "ecklf@icloud.com"; 5337 + github = "ecklf"; 5338 + githubId = 8146736; 5339 + name = "Florentin Eckl"; 5325 5340 }; 5326 5341 eclairevoyant = { 5327 5342 github = "eclairevoyant"; ··· 18335 18350 github = "SuperBo"; 18336 18351 githubId = 2666479; 18337 18352 name = "Y Nguyen"; 18353 + }; 18354 + superherointj = { 18355 + email = "sergiomarcelo@yandex.com"; 18356 + github = "superherointj"; 18357 + githubId = 5861043; 18358 + matrix = "@superherointj:matrix.org"; 18359 + name = "Sérgio Marcelo"; 18338 18360 }; 18339 18361 SuperSandro2000 = { 18340 18362 email = "sandro.jaeckel@gmail.com";
+5 -8
nixos/modules/services/misc/tandoor-recipes.nix
··· 17 17 lib.mapAttrs (_: toString) cfg.extraConfig 18 18 ); 19 19 20 - manage = 21 - let 22 - setupEnv = lib.concatStringsSep "\n" (mapAttrsToList (name: val: "export ${name}=\"${val}\"") env); 23 - in 24 - pkgs.writeShellScript "manage" '' 25 - ${setupEnv} 26 - exec ${pkg}/bin/tandoor-recipes "$@" 27 - ''; 20 + manage = pkgs.writeShellScript "manage" '' 21 + set -o allexport # Export the following env vars 22 + ${lib.toShellVars env} 23 + exec ${pkg}/bin/tandoor-recipes "$@" 24 + ''; 28 25 in 29 26 { 30 27 meta.maintainers = with maintainers; [ ambroisie ];
+8 -11
nixos/modules/services/web-apps/photoprism.nix
··· 12 12 lib.mapAttrs (_: toString) cfg.settings 13 13 ); 14 14 15 - manage = 16 - let 17 - setupEnv = lib.concatStringsSep "\n" (lib.mapAttrsToList (name: val: "export ${name}=${lib.escapeShellArg val}") env); 18 - in 19 - pkgs.writeShellScript "manage" '' 20 - ${setupEnv} 21 - eval "$(${config.systemd.package}/bin/systemctl show -pUID,MainPID photoprism.service | ${pkgs.gnused}/bin/sed "s/UID/ServiceUID/")" 22 - exec ${pkgs.util-linux}/bin/nsenter \ 23 - -t $MainPID -m -S $ServiceUID -G $ServiceUID --wdns=${cfg.storagePath} \ 24 - ${cfg.package}/bin/photoprism "$@" 25 - ''; 15 + manage = pkgs.writeShellScript "manage" '' 16 + set -o allexport # Export the following env vars 17 + ${lib.toShellVars env} 18 + eval "$(${config.systemd.package}/bin/systemctl show -pUID,MainPID photoprism.service | ${pkgs.gnused}/bin/sed "s/UID/ServiceUID/")" 19 + exec ${pkgs.util-linux}/bin/nsenter \ 20 + -t $MainPID -m -S $ServiceUID -G $ServiceUID --wdns=${cfg.storagePath} \ 21 + ${cfg.package}/bin/photoprism "$@" 22 + ''; 26 23 in 27 24 { 28 25 meta.maintainers = with lib.maintainers; [ stunkymonkey ];
+17
pkgs/applications/editors/vscode/extensions/default.nix
··· 98 98 }; 99 99 }; 100 100 101 + aaron-bond.better-comments = buildVscodeMarketplaceExtension { 102 + mktplcRef = { 103 + name = "better-comments"; 104 + publisher = "aaron-bond"; 105 + version = "3.0.2"; 106 + sha256 = "850980f0f5a37f635deb4bf9100baaa83f0b204bbbb25acdb3c96e73778f8197"; 107 + }; 108 + meta = { 109 + changelog = "https://marketplace.visualstudio.com/items/aaron-bond.better-comments/changelog"; 110 + description = "Improve your code commenting by annotating with alert, informational, TODOs, and more!"; 111 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments"; 112 + homepage = "https://github.com/aaron-bond/better-comments"; 113 + license = lib.licenses.mit; 114 + maintainers = [ lib.maintainers.DataHearth ]; 115 + }; 116 + }; 117 + 101 118 adpyke.codesnap = buildVscodeMarketplaceExtension { 102 119 mktplcRef = { 103 120 name = "codesnap";
+2 -1
pkgs/applications/graphics/imv/default.nix
··· 16 16 , libxkbcommon 17 17 , libGLU 18 18 , wayland 19 - , withBackends ? [ "freeimage" "libtiff" "libjpeg" "libpng" "librsvg" "libnsgif" "libheif" ] 19 + # "libnsgif" is disabled until https://todo.sr.ht/~exec64/imv/55 is solved 20 + , withBackends ? [ "freeimage" "libtiff" "libjpeg" "libpng" "librsvg" "libheif" ] 20 21 , freeimage 21 22 , libtiff 22 23 , libjpeg_turbo
+2 -2
pkgs/applications/misc/jetbrains-toolbox/default.nix
··· 10 10 }: 11 11 let 12 12 pname = "jetbrains-toolbox"; 13 - version = "2.1.3.18901"; 13 + version = "2.2.1.19765"; 14 14 15 15 src = fetchzip { 16 16 url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${version}.tar.gz"; 17 - sha256 = "sha256-XZEpzzFm0DA6iiPGOKbmsuNlpIlt7Qa2A+jEqU6GqgE="; 17 + sha256 = "sha256-53CsE1hmtys5hNY2V+tskgwKg9jDLrEsYF6iY2fJGHU="; 18 18 stripRoot = false; 19 19 }; 20 20
+3 -3
pkgs/applications/misc/owmods-cli/default.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "owmods-cli"; 15 - version = "0.12.1"; 15 + version = "0.12.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "ow-mods"; 19 19 repo = "ow-mod-man"; 20 20 rev = "cli_v${version}"; 21 - hash = "sha256-hvzKTJKjO7MafvnrpG9ZkCz1ePr9NCo54zaRRkRCc60="; 21 + hash = "sha256-AfqpLL3cGZLKW5/BE6SaBe4S8GzYM2GKUZU8mFH5uX4="; 22 22 }; 23 23 24 - cargoHash = "sha256-db6wZs7OVPoESl4RnvOtmaM07FgKmko3nyf1CXzyJHA="; 24 + cargoHash = "sha256-PhdfpiUgeOB13ROgzPBYM+sBLGMP+RtV9j9ebo8PpJU="; 25 25 26 26 nativeBuildInputs = [ 27 27 pkg-config
+5 -15
pkgs/applications/networking/browsers/elinks/default.nix
··· 5 5 enableGuile ? false, guile ? null 6 6 , enablePython ? false, python ? null 7 7 , enablePerl ? (!stdenv.isDarwin) && (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null 8 - , fetchpatch 9 8 # re-add javascript support when upstream supports modern spidermonkey 10 9 }: 11 10 ··· 14 13 15 14 stdenv.mkDerivation rec { 16 15 pname = "elinks"; 17 - version = "0.16.1.1"; 16 + version = "0.17.0"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "rkd77"; 21 - repo = "felinks"; 20 + repo = "elinks"; 22 21 rev = "v${version}"; 23 - sha256 = "sha256-u6QGhfi+uWeIzSUFuYHAH3Xu0Fky0yw2h4NOKgYFLsM="; 22 + hash = "sha256-JeUiMHAqSZxxBe8DplzmzHzsY6KqoBqba0y8GDwaR0Y="; 24 23 }; 25 - 26 - patches = [ 27 - # Fix build bug with perl 5.38.0. Backport of https://github.com/rkd77/elinks/pull/243 by gentoo: 28 - # https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfefaa456bd69bc14e3a1c2c6c1b0cc19c6b0869 29 - (fetchpatch { 30 - url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/www-client/elinks/files/elinks-0.16.1.1-perl-5.38.patch?id=dfefaa456bd69bc14e3a1c2c6c1b0cc19c6b0869"; 31 - hash = "sha256-bHP9bc/l7VEw7oXlkSUQhhuq8rT2QTahh9SM7ZJgK5w="; 32 - }) 33 - ]; 34 24 35 25 buildInputs = [ 36 26 ncurses libX11 bzip2 zlib brotli zstd xz ··· 64 54 ; 65 55 66 56 meta = with lib; { 67 - description = "Full-featured text-mode web browser (package based on the fork felinks)"; 68 - homepage = "https://github.com/rkd77/felinks"; 57 + description = "Full-featured text-mode web browser"; 58 + homepage = "https://github.com/rkd77/elinks"; 69 59 license = licenses.gpl2; 70 60 platforms = with platforms; linux ++ darwin; 71 61 maintainers = with maintainers; [ iblech gebner ];
+1 -1
pkgs/applications/networking/browsers/links2/default.nix
··· 12 12 pname = "links2"; 13 13 14 14 src = fetchurl { 15 - url = "${finalAttrs.meta.homepage}/download/links-${finalAttrs.version}.tar.bz2"; 15 + url = "http://links.twibright.com/download/links-${finalAttrs.version}.tar.bz2"; 16 16 hash = "sha256-IqqWwLOOGm+PftnXpBZ6R/w3JGCXdZ72BZ7Pj56teZg="; 17 17 }; 18 18
+19 -3
pkgs/applications/networking/browsers/netsurf/browser.nix
··· 5 5 , check 6 6 , curl 7 7 , expat 8 + , gperf 8 9 , gtk2 9 10 , gtk3 10 11 , libXcursor 11 12 , libXrandr 12 13 , libidn 13 14 , libjpeg 15 + , libjxl 14 16 , libpng 15 17 , libwebp 16 18 , libxml2 ··· 44 46 45 47 stdenv.mkDerivation (finalAttrs: { 46 48 pname = "netsurf"; 47 - version = "3.10"; 49 + version = "3.11"; 48 50 49 51 src = fetchurl { 50 52 url = "http://download.netsurf-browser.org/netsurf/releases/source/netsurf-${finalAttrs.version}-src.tar.gz"; 51 - hash = "sha256-NkhEKeGTYUaFwv8kb1W9Cm3d8xoBi+5F4NH3wohRmV4="; 53 + hash = "sha256-wopiau/uQo0FOxP4i1xECSIkWXZSLRLq8TfP0y0gHLI="; 52 54 }; 53 55 54 56 nativeBuildInputs = [ ··· 63 65 buildInputs = [ 64 66 check 65 67 curl 68 + gperf 66 69 libXcursor 67 70 libXrandr 68 71 libidn 69 72 libjpeg 73 + libjxl 70 74 libpng 71 75 libwebp 72 76 libxml2 ··· 103 107 104 108 env.NIX_CFLAGS_COMPILE = "-fcommon"; 105 109 110 + env.CFLAGS = lib.optionalString stdenv.isDarwin "-D_DARWIN_C_SOURCE"; 111 + 112 + patchPhase = lib.optionalString stdenv.cc.isClang '' 113 + runHook prePatch 114 + 115 + substituteInPlace Makefile \ 116 + --replace-warn '--trace' '-t' \ 117 + --replace-warn '-Wimplicit-fallthrough=3' '-Wimplicit-fallthrough' 118 + 119 + runHook postPatch 120 + ''; 121 + 106 122 preConfigure = '' 107 - cat <<EOF > Makefile.conf 123 + cat <<EOF > Makefile.config 108 124 override NETSURF_GTK_RES_PATH := $out/share/ 109 125 override NETSURF_USE_GRESOURCE := YES 110 126 EOF
+3 -3
pkgs/applications/networking/browsers/netsurf/libcss.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "netsurf-libcss"; 13 - version = "0.9.1"; 13 + version = "0.9.2"; 14 14 15 15 src = fetchurl { 16 16 url = "http://download.netsurf-browser.org/libs/releases/libcss-${finalAttrs.version}-src.tar.gz"; 17 - hash = "sha256-0tzhbpM5Lo1qcglCDUfC1Wo4EXAaDoGnJPxUHGPTxtw="; 17 + hash = "sha256-LfIVu+w01R1gwaBLAbLfTV0Y9RDx86evS4DN21ZxFU4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config ]; ··· 33 33 34 34 env.NIX_CFLAGS_COMPILE = toString [ 35 35 "-Wno-error=implicit-fallthrough" 36 - "-Wno-error=maybe-uninitialized" 36 + "-Wno-error=${if stdenv.cc.isGNU then "maybe-uninitialized" else "uninitialized"}" 37 37 ]; 38 38 39 39 meta = {
+2 -2
pkgs/applications/networking/browsers/netsurf/libdom.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "netsurf-libdom"; 14 - version = "0.4.1"; 14 + version = "0.4.2"; 15 15 16 16 src = fetchurl { 17 17 url = "http://download.netsurf-browser.org/libs/releases/libdom-${finalAttrs.version}-src.tar.gz"; 18 - hash = "sha256-mO4HJHHlXiCMmHjlFcQQrUYso2+HtK/L7K0CPzos70o="; 18 + hash = "sha256-0F5FrxZUcBTCsKOuzzZw+hPUGfUFs/X8esihSR/DDzw="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ pkg-config ];
+4 -2
pkgs/applications/networking/browsers/netsurf/libhubbub.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 + , gperf 4 5 , perl 5 6 , pkg-config 6 7 , buildsystem ··· 9 10 10 11 stdenv.mkDerivation (finalAttrs: { 11 12 pname = "netsurf-libhubbub"; 12 - version = "0.3.7"; 13 + version = "0.3.8"; 13 14 14 15 src = fetchurl { 15 16 url = "http://download.netsurf-browser.org/libs/releases/libhubbub-${finalAttrs.version}-src.tar.gz"; 16 - hash = "sha256-nnriU+bJBp51frmtTkhG84tNtSwMoBUURqn6Spd3NbY="; 17 + hash = "sha256-isHm9fPUjAUUHVk5FxlTQpDFnNAp78JJ60/brBAs1aU="; 17 18 }; 18 19 19 20 nativeBuildInputs = [ pkg-config ]; 20 21 21 22 buildInputs = [ 23 + gperf 22 24 perl 23 25 buildsystem 24 26 libparserutils
+2 -2
pkgs/applications/networking/browsers/netsurf/libnsbmp.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "netsurf-libnsbmp"; 10 - version = "0.1.6"; 10 + version = "0.1.7"; 11 11 12 12 src = fetchurl { 13 13 url = "http://download.netsurf-browser.org/libs/releases/libnsbmp-${finalAttrs.version}-src.tar.gz"; 14 - hash = "sha256-ecSTZfhg7UUb/EEJ7d7I3j6bfOWjvgaVlr0qoZJ5Mk8="; 14 + hash = "sha256-VAenaCoSK6qqWhW1BSkOLTffVME8Xt70sJ0SyGLYIpM="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/applications/networking/browsers/netsurf/libnsgif.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "netsurf-libnsgif"; 11 - version = "0.2.1"; 11 + version = "1.0.0"; 12 12 13 13 src = fetchurl { 14 14 url = "http://download.netsurf-browser.org/libs/releases/libnsgif-${finalAttrs.version}-src.tar.gz"; 15 - hash = "sha256-nq6lNM1wtTxar0UxeulXcBaFprSojb407Sb0+q6Hmks="; 15 + hash = "sha256-YBTIQvYUVNL1oPgkPXqNe96bfaPM/cotNGx8CyxMBhs="; 16 16 }; 17 17 18 18 depsBuildBuild = [ buildPackages.stdenv.cc ];
+2 -2
pkgs/applications/networking/browsers/netsurf/libnsutils.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "netsurf-libnsutils"; 10 - version = "0.1.0"; 10 + version = "0.1.1"; 11 11 12 12 src = fetchurl { 13 13 url = "http://download.netsurf-browser.org/libs/releases/libnsutils-${finalAttrs.version}-src.tar.gz"; 14 - hash = "sha256-eQxlFjRKvoL2KJ1lY5LpzOvkdbIMx+Hi2EMBE4X3rvA="; 14 + hash = "sha256-VpS0Um5FjtAAQTzmAnWJy+EKJXp+zwZaAUIdxymd6pI="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkg-config ];
+4 -2
pkgs/applications/networking/browsers/netsurf/libparserutils.nix
··· 3 3 , fetchurl 4 4 , perl 5 5 , buildsystem 6 + , iconv 6 7 }: 7 8 8 9 stdenv.mkDerivation (finalAttrs: { 9 10 pname = "netsurf-libparserutils"; 10 - version = "0.2.4"; 11 + version = "0.2.5"; 11 12 12 13 src = fetchurl { 13 14 url = "http://download.netsurf-browser.org/libs/releases/libparserutils-${finalAttrs.version}-src.tar.gz"; 14 - hash = "sha256-MiuuYbMMzt4+MFv26uJBSSBkl3W8X/HRtogBKjxJR9g="; 15 + hash = "sha256-MX7VxxjxeSe1chl0uuXeMsP9bQVdsTGtMbQxKgMu0Tk="; 15 16 }; 16 17 17 18 buildInputs = [ 18 19 perl 19 20 buildsystem 21 + iconv 20 22 ]; 21 23 22 24 makeFlags = [
+2 -2
pkgs/applications/networking/browsers/netsurf/libsvgtiny.nix
··· 12 12 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "netsurf-libsvgtiny"; 15 - version = "0.1.7"; 15 + version = "0.1.8"; 16 16 17 17 src = fetchurl { 18 18 url = "http://download.netsurf-browser.org/libs/releases/libsvgtiny-${finalAttrs.version}-src.tar.gz"; 19 - hash = "sha256-LA3PlS8c2ILD6VQB75RZ8W27U8XT5FEjObL563add4E="; 19 + hash = "sha256-w1cifwLoP7KnaxK5ARkaCCIp2x8Ac2Lo8xx1RRDCoBw="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+3 -3
pkgs/applications/networking/cluster/linkerd/edge.nix
··· 2 2 3 3 (callPackage ./generic.nix { }) { 4 4 channel = "edge"; 5 - version = "24.2.1"; 6 - sha256 = "1flbjsa2wj35zgiq4vgb2bqvjvxmpla6fnrlkwnh2l10w4i2n5sl"; 7 - vendorHash = "sha256-1DyqtUSMzVahy8yzX8HAnCe3UI5Z1Pht5XQaMS2i9mw="; 5 + version = "24.2.2"; 6 + sha256 = "1q6lgmasqa9z7hi0ajcjwj24wrqs74v9vy247hq40y5naaqj07j8"; 7 + vendorHash = "sha256-ImICopQkBLvSyy/KPmnd4JYeVIPlbzIUFAY4g2iqICI="; 8 8 }
+3 -3
pkgs/applications/networking/cluster/nomad/default.nix
··· 81 81 82 82 nomad_1_7 = generic { 83 83 buildGoModule = buildGo121Module; 84 - version = "1.7.4"; 85 - sha256 = "sha256-iyY899W/uwP/wQcarKufSpJdXRAtwDxT6yw5vrB6Xmk="; 86 - vendorHash = "sha256-yPf19IRTq+LAaoHsEFVuPJLapFxH3o16y0PbYW0ehiw="; 84 + version = "1.7.5"; 85 + sha256 = "sha256-uwPAmmxxlPp5NuuCUTv5VykX+q2vbA0yCRoblrJPP1g="; 86 + vendorHash = "sha256-xu1odCHUO3cv0ldXj3T8aM+fqPzc4r1gyFWsiuyzOpU="; 87 87 license = lib.licenses.bsl11; 88 88 passthru.tests.nomad = nixosTests.nomad; 89 89 preCheck = ''
+906 -861
pkgs/applications/networking/feedreaders/newsflash/Cargo.lock
··· 31 31 32 32 [[package]] 33 33 name = "aho-corasick" 34 - version = "1.1.1" 34 + version = "1.1.2" 35 35 source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" 36 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 37 37 dependencies = [ 38 38 "memchr", 39 39 ] ··· 83 83 84 84 [[package]] 85 85 name = "anstream" 86 - version = "0.5.0" 86 + version = "0.6.11" 87 87 source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" 88 + checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 89 89 dependencies = [ 90 90 "anstyle", 91 91 "anstyle-parse", ··· 97 97 98 98 [[package]] 99 99 name = "anstyle" 100 - version = "1.0.3" 100 + version = "1.0.6" 101 101 source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46" 102 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 103 103 104 104 [[package]] 105 105 name = "anstyle-parse" 106 - version = "0.2.1" 106 + version = "0.2.3" 107 107 source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 108 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 109 109 dependencies = [ 110 110 "utf8parse", 111 111 ] 112 112 113 113 [[package]] 114 114 name = "anstyle-query" 115 - version = "1.0.0" 115 + version = "1.0.2" 116 116 source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 117 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 118 118 dependencies = [ 119 - "windows-sys", 119 + "windows-sys 0.52.0", 120 120 ] 121 121 122 122 [[package]] 123 123 name = "anstyle-wincon" 124 - version = "2.1.0" 124 + version = "3.0.2" 125 125 source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" 126 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 127 127 dependencies = [ 128 128 "anstyle", 129 - "windows-sys", 129 + "windows-sys 0.52.0", 130 130 ] 131 131 132 132 [[package]] 133 133 name = "anyhow" 134 - version = "1.0.75" 134 + version = "1.0.79" 135 135 source = "registry+https://github.com/rust-lang/crates.io-index" 136 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 136 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 137 137 138 138 [[package]] 139 139 name = "arc-swap" ··· 146 146 version = "2.0.0" 147 147 source = "git+https://gitlab.com/news-flash/article_scraper.git#f9812b556c9cf05de13d936ea73f03c95de79bbc" 148 148 dependencies = [ 149 - "base64 0.21.4", 149 + "base64", 150 150 "chrono", 151 151 "encoding_rs", 152 152 "escaper", ··· 165 165 166 166 [[package]] 167 167 name = "ashpd" 168 - version = "0.6.2" 168 + version = "0.7.0" 169 169 source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "f3affe251686bd936a0afb74b9693e8bf2f193d51da1b9a45d3f1303a9bd2cc7" 170 + checksum = "01992ad7774250d5b7fe214e2676cb99bf92564436d8135ab44fe815e71769a9" 171 171 dependencies = [ 172 - "async-std", 172 + "async-fs 2.1.1", 173 + "async-net", 173 174 "enumflags2", 174 175 "futures-channel", 175 176 "futures-util", 176 - "once_cell", 177 - "rand 0.8.5", 177 + "rand", 178 178 "serde", 179 179 "serde_repr", 180 180 "url", ··· 193 193 194 194 [[package]] 195 195 name = "async-channel" 196 - version = "1.9.0" 196 + version = "2.2.0" 197 197 source = "registry+https://github.com/rust-lang/crates.io-index" 198 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 198 + checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 199 199 dependencies = [ 200 200 "concurrent-queue", 201 - "event-listener 2.5.3", 201 + "event-listener 5.0.0", 202 + "event-listener-strategy 0.5.0", 202 203 "futures-core", 204 + "pin-project-lite", 203 205 ] 204 206 205 207 [[package]] 206 208 name = "async-compression" 207 - version = "0.4.3" 209 + version = "0.4.6" 208 210 source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" 211 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 210 212 dependencies = [ 211 213 "brotli", 212 214 "flate2", ··· 218 220 219 221 [[package]] 220 222 name = "async-executor" 221 - version = "1.5.3" 223 + version = "1.8.0" 222 224 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "78f2db9467baa66a700abce2a18c5ad793f6f83310aca1284796fc3921d113fd" 225 + checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 224 226 dependencies = [ 225 - "async-lock", 227 + "async-lock 3.3.0", 226 228 "async-task", 227 229 "concurrent-queue", 228 230 "fastrand 2.0.1", 229 - "futures-lite", 231 + "futures-lite 2.2.0", 230 232 "slab", 231 233 ] 232 234 ··· 236 238 source = "registry+https://github.com/rust-lang/crates.io-index" 237 239 checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 238 240 dependencies = [ 239 - "async-lock", 241 + "async-lock 2.8.0", 240 242 "autocfg", 241 243 "blocking", 242 - "futures-lite", 244 + "futures-lite 1.13.0", 243 245 ] 244 246 245 247 [[package]] 246 - name = "async-global-executor" 247 - version = "2.3.1" 248 + name = "async-fs" 249 + version = "2.1.1" 248 250 source = "registry+https://github.com/rust-lang/crates.io-index" 249 - checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 251 + checksum = "bc19683171f287921f2405677dd2ed2549c3b3bda697a563ebc3a121ace2aba1" 250 252 dependencies = [ 251 - "async-channel", 252 - "async-executor", 253 - "async-io", 254 - "async-lock", 253 + "async-lock 3.3.0", 255 254 "blocking", 256 - "futures-lite", 257 - "once_cell", 255 + "futures-lite 2.2.0", 258 256 ] 259 257 260 258 [[package]] ··· 263 261 source = "registry+https://github.com/rust-lang/crates.io-index" 264 262 checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 265 263 dependencies = [ 266 - "async-lock", 264 + "async-lock 2.8.0", 267 265 "autocfg", 268 266 "cfg-if", 269 267 "concurrent-queue", 270 - "futures-lite", 268 + "futures-lite 1.13.0", 271 269 "log", 272 270 "parking", 273 - "polling", 274 - "rustix 0.37.23", 271 + "polling 2.8.0", 272 + "rustix 0.37.27", 275 273 "slab", 276 - "socket2 0.4.9", 274 + "socket2 0.4.10", 277 275 "waker-fn", 276 + ] 277 + 278 + [[package]] 279 + name = "async-io" 280 + version = "2.3.1" 281 + source = "registry+https://github.com/rust-lang/crates.io-index" 282 + checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" 283 + dependencies = [ 284 + "async-lock 3.3.0", 285 + "cfg-if", 286 + "concurrent-queue", 287 + "futures-io", 288 + "futures-lite 2.2.0", 289 + "parking", 290 + "polling 3.4.0", 291 + "rustix 0.38.31", 292 + "slab", 293 + "tracing", 294 + "windows-sys 0.52.0", 278 295 ] 279 296 280 297 [[package]] ··· 287 304 ] 288 305 289 306 [[package]] 307 + name = "async-lock" 308 + version = "3.3.0" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 311 + dependencies = [ 312 + "event-listener 4.0.3", 313 + "event-listener-strategy 0.4.0", 314 + "pin-project-lite", 315 + ] 316 + 317 + [[package]] 318 + name = "async-net" 319 + version = "2.0.0" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" 322 + dependencies = [ 323 + "async-io 2.3.1", 324 + "blocking", 325 + "futures-lite 2.2.0", 326 + ] 327 + 328 + [[package]] 290 329 name = "async-process" 291 - version = "1.8.0" 330 + version = "1.8.1" 292 331 source = "registry+https://github.com/rust-lang/crates.io-index" 293 - checksum = "bf012553ce51eb7aa6dc2143804cc8252bd1cb681a1c5cb7fa94ca88682dee1d" 332 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 294 333 dependencies = [ 295 - "async-io", 296 - "async-lock", 334 + "async-io 1.13.0", 335 + "async-lock 2.8.0", 297 336 "async-signal", 298 337 "blocking", 299 338 "cfg-if", 300 - "event-listener 3.0.0", 301 - "futures-lite", 302 - "rustix 0.38.14", 303 - "windows-sys", 339 + "event-listener 3.1.0", 340 + "futures-lite 1.13.0", 341 + "rustix 0.38.31", 342 + "windows-sys 0.48.0", 304 343 ] 305 344 306 345 [[package]] ··· 311 350 dependencies = [ 312 351 "proc-macro2", 313 352 "quote", 314 - "syn 2.0.37", 353 + "syn 2.0.48", 315 354 ] 316 355 317 356 [[package]] 318 357 name = "async-signal" 319 - version = "0.2.1" 358 + version = "0.2.5" 320 359 source = "registry+https://github.com/rust-lang/crates.io-index" 321 - checksum = "4af361a844928cb7d36590d406709473a1b574f443094422ef166daa3b493208" 360 + checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 322 361 dependencies = [ 323 - "async-io", 324 - "async-lock", 362 + "async-io 2.3.1", 363 + "async-lock 2.8.0", 325 364 "atomic-waker", 326 365 "cfg-if", 327 - "concurrent-queue", 328 366 "futures-core", 329 367 "futures-io", 330 - "libc", 368 + "rustix 0.38.31", 331 369 "signal-hook-registry", 332 370 "slab", 333 - "windows-sys", 334 - ] 335 - 336 - [[package]] 337 - name = "async-std" 338 - version = "1.12.0" 339 - source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 341 - dependencies = [ 342 - "async-channel", 343 - "async-global-executor", 344 - "async-io", 345 - "async-lock", 346 - "crossbeam-utils", 347 - "futures-channel", 348 - "futures-core", 349 - "futures-io", 350 - "futures-lite", 351 - "gloo-timers", 352 - "kv-log-macro", 353 - "log", 354 - "memchr", 355 - "once_cell", 356 - "pin-project-lite", 357 - "pin-utils", 358 - "slab", 359 - "wasm-bindgen-futures", 371 + "windows-sys 0.48.0", 360 372 ] 361 373 362 374 [[package]] 363 375 name = "async-task" 364 - version = "4.4.1" 376 + version = "4.7.0" 365 377 source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921" 378 + checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 367 379 368 380 [[package]] 369 381 name = "async-trait" 370 - version = "0.1.73" 382 + version = "0.1.77" 371 383 source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 384 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 373 385 dependencies = [ 374 386 "proc-macro2", 375 387 "quote", 376 - "syn 2.0.37", 388 + "syn 2.0.48", 377 389 ] 378 390 379 391 [[package]] ··· 405 417 406 418 [[package]] 407 419 name = "base64" 408 - version = "0.13.1" 420 + version = "0.21.7" 409 421 source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 411 - 412 - [[package]] 413 - name = "base64" 414 - version = "0.21.4" 415 - source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 422 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 417 423 418 424 [[package]] 419 425 name = "bigdecimal" 420 - version = "0.4.1" 426 + version = "0.4.2" 421 427 source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "454bca3db10617b88b566f205ed190aedb0e0e6dd4cad61d3988a72e8c5594cb" 428 + checksum = "c06619be423ea5bb86c95f087d5707942791a08a85530df0db2209a3ecfb8bc9" 423 429 dependencies = [ 424 430 "autocfg", 425 431 "libm", ··· 442 448 443 449 [[package]] 444 450 name = "bitflags" 445 - version = "2.4.0" 451 + version = "2.4.2" 446 452 source = "registry+https://github.com/rust-lang/crates.io-index" 447 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 453 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 448 454 449 455 [[package]] 450 456 name = "block" ··· 489 495 490 496 [[package]] 491 497 name = "blocking" 492 - version = "1.4.0" 498 + version = "1.5.1" 493 499 source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "94c4ef1f913d78636d78d538eec1f18de81e481f44b1be0a81060090530846e1" 500 + checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 495 501 dependencies = [ 496 502 "async-channel", 497 - "async-lock", 503 + "async-lock 3.3.0", 498 504 "async-task", 499 505 "fastrand 2.0.1", 500 506 "futures-io", 501 - "futures-lite", 507 + "futures-lite 2.2.0", 502 508 "piper", 503 509 "tracing", 504 510 ] 505 511 506 512 [[package]] 507 513 name = "brotli" 508 - version = "3.3.4" 514 + version = "3.4.0" 509 515 source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 516 + checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 511 517 dependencies = [ 512 518 "alloc-no-stdlib", 513 519 "alloc-stdlib", ··· 516 522 517 523 [[package]] 518 524 name = "brotli-decompressor" 519 - version = "2.3.4" 525 + version = "2.5.1" 520 526 source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 527 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 522 528 dependencies = [ 523 529 "alloc-no-stdlib", 524 530 "alloc-stdlib", ··· 532 538 533 539 [[package]] 534 540 name = "bytecount" 535 - version = "0.6.3" 541 + version = "0.6.7" 536 542 source = "registry+https://github.com/rust-lang/crates.io-index" 537 - checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 543 + checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" 538 544 539 545 [[package]] 540 546 name = "bytemuck" 541 - version = "1.14.0" 547 + version = "1.14.3" 542 548 source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 549 + checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" 544 550 545 551 [[package]] 546 552 name = "byteorder" 547 - version = "1.4.3" 553 + version = "1.5.0" 548 554 source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 555 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 550 556 551 557 [[package]] 552 558 name = "bytes" ··· 562 568 563 569 [[package]] 564 570 name = "cairo-rs" 565 - version = "0.18.2" 571 + version = "0.19.1" 566 572 source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "1c0466dfa8c0ee78deef390c274ad756801e0a6dbb86c5ef0924a298c5761c4d" 573 + checksum = "bc1c415b7088381c53c575420899c34c9e6312df5ac5defd05614210e9fd6e1b" 568 574 dependencies = [ 569 - "bitflags 2.4.0", 575 + "bitflags 2.4.2", 570 576 "cairo-sys-rs", 571 577 "glib", 572 578 "libc", 573 - "once_cell", 574 579 "thiserror", 575 580 ] 576 581 577 582 [[package]] 578 583 name = "cairo-sys-rs" 579 - version = "0.18.2" 584 + version = "0.19.1" 580 585 source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 586 + checksum = "75b6a5fefce2eadb8333e3c604ac964ba6573ec4f28bdd17f67032c4a2831831" 582 587 dependencies = [ 583 588 "glib-sys", 584 589 "libc", ··· 596 601 597 602 [[package]] 598 603 name = "cargo-platform" 599 - version = "0.1.3" 604 + version = "0.1.7" 600 605 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" 606 + checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" 602 607 dependencies = [ 603 608 "serde", 604 609 ] ··· 627 632 628 633 [[package]] 629 634 name = "cfg-expr" 630 - version = "0.15.5" 635 + version = "0.15.7" 631 636 source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 637 + checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d" 633 638 dependencies = [ 634 639 "smallvec", 635 640 "target-lexicon", ··· 643 648 644 649 [[package]] 645 650 name = "chrono" 646 - version = "0.4.31" 651 + version = "0.4.34" 647 652 source = "registry+https://github.com/rust-lang/crates.io-index" 648 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 653 + checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 649 654 dependencies = [ 650 655 "android-tzdata", 651 656 "iana-time-zone", 652 657 "js-sys", 653 658 "num-traits", 654 659 "wasm-bindgen", 655 - "windows-targets", 660 + "windows-targets 0.52.0", 656 661 ] 657 662 658 663 [[package]] ··· 666 671 667 672 [[package]] 668 673 name = "clap" 669 - version = "4.4.5" 674 + version = "4.5.0" 670 675 source = "registry+https://github.com/rust-lang/crates.io-index" 671 - checksum = "824956d0dca8334758a5b7f7e50518d66ea319330cbceedcf76905c2f6ab30e3" 676 + checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" 672 677 dependencies = [ 673 678 "clap_builder", 674 679 "clap_derive", ··· 676 681 677 682 [[package]] 678 683 name = "clap_builder" 679 - version = "4.4.5" 684 + version = "4.5.0" 680 685 source = "registry+https://github.com/rust-lang/crates.io-index" 681 - checksum = "122ec64120a49b4563ccaedcbea7818d069ed8e9aa6d829b82d8a4128936b2ab" 686 + checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" 682 687 dependencies = [ 683 688 "anstream", 684 689 "anstyle", ··· 688 693 689 694 [[package]] 690 695 name = "clap_derive" 691 - version = "4.4.2" 696 + version = "4.5.0" 692 697 source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 698 + checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" 694 699 dependencies = [ 695 700 "heck", 696 701 "proc-macro2", 697 702 "quote", 698 - "syn 2.0.37", 703 + "syn 2.0.48", 699 704 ] 700 705 701 706 [[package]] 702 707 name = "clap_lex" 703 - version = "0.5.1" 708 + version = "0.7.0" 704 709 source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" 710 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 706 711 707 712 [[package]] 708 713 name = "color-backtrace" 709 - version = "0.6.0" 714 + version = "0.6.1" 710 715 source = "registry+https://github.com/rust-lang/crates.io-index" 711 - checksum = "b6fcd4d200ae702628e8d54bafff5f7e7397b031a5849656a6f5bfe2c5fb780d" 716 + checksum = "150fd80a270c0671379f388c8204deb6a746bb4eac8a6c03fe2460b2c0127ea0" 712 717 dependencies = [ 713 718 "backtrace", 714 719 "termcolor", ··· 728 733 729 734 [[package]] 730 735 name = "commafeed_api" 731 - version = "0.1.0" 732 - source = "git+https://gitlab.com/news-flash/commafeed_api.git#701976f8fccf887416a1306b6d0e0a3bb026573f" 736 + version = "0.1.1" 737 + source = "registry+https://github.com/rust-lang/crates.io-index" 738 + checksum = "013b56b25f5e10cae0fac4564fd64aa54766a860b896fc2d582f97616be6e92c" 733 739 dependencies = [ 734 - "base64 0.21.4", 740 + "base64", 735 741 "chrono", 736 742 "log", 737 743 "reqwest", ··· 743 749 744 750 [[package]] 745 751 name = "concurrent-queue" 746 - version = "2.3.0" 752 + version = "2.4.0" 747 753 source = "registry+https://github.com/rust-lang/crates.io-index" 748 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 754 + checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 749 755 dependencies = [ 750 756 "crossbeam-utils", 751 757 ] 752 758 753 759 [[package]] 754 760 name = "cookie" 755 - version = "0.16.2" 761 + version = "0.17.0" 756 762 source = "registry+https://github.com/rust-lang/crates.io-index" 757 - checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 763 + checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" 758 764 dependencies = [ 759 765 "percent-encoding", 760 766 "time", ··· 763 769 764 770 [[package]] 765 771 name = "cookie_store" 766 - version = "0.16.2" 772 + version = "0.20.0" 767 773 source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa" 774 + checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6" 769 775 dependencies = [ 770 776 "cookie", 771 - "idna 0.2.3", 777 + "idna 0.3.0", 772 778 "log", 773 779 "publicsuffix", 774 780 "serde", ··· 780 786 781 787 [[package]] 782 788 name = "core-foundation" 783 - version = "0.9.3" 789 + version = "0.9.4" 784 790 source = "registry+https://github.com/rust-lang/crates.io-index" 785 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 791 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 786 792 dependencies = [ 787 793 "core-foundation-sys", 788 794 "libc", ··· 790 796 791 797 [[package]] 792 798 name = "core-foundation-sys" 793 - version = "0.8.4" 799 + version = "0.8.6" 794 800 source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 801 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 796 802 797 803 [[package]] 798 804 name = "cpufeatures" 799 - version = "0.2.9" 805 + version = "0.2.12" 800 806 source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 807 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 802 808 dependencies = [ 803 809 "libc", 804 810 ] 805 811 806 812 [[package]] 807 813 name = "crc-any" 808 - version = "2.4.3" 814 + version = "2.4.4" 809 815 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "774646b687f63643eb0f4bf13dc263cb581c8c9e57973b6ddf78bda3994d88df" 816 + checksum = "c01a5e1f881f6fb6099a7bdf949e946719fd4f1fefa56264890574febf0eb6d0" 811 817 dependencies = [ 812 818 "debug-helper", 813 819 ] ··· 823 829 824 830 [[package]] 825 831 name = "crossbeam-channel" 826 - version = "0.5.8" 832 + version = "0.5.11" 827 833 source = "registry+https://github.com/rust-lang/crates.io-index" 828 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 834 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 829 835 dependencies = [ 830 - "cfg-if", 831 836 "crossbeam-utils", 832 837 ] 833 838 834 839 [[package]] 835 840 name = "crossbeam-deque" 836 - version = "0.8.3" 841 + version = "0.8.5" 837 842 source = "registry+https://github.com/rust-lang/crates.io-index" 838 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 843 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 839 844 dependencies = [ 840 - "cfg-if", 841 845 "crossbeam-epoch", 842 846 "crossbeam-utils", 843 847 ] 844 848 845 849 [[package]] 846 850 name = "crossbeam-epoch" 847 - version = "0.9.15" 851 + version = "0.9.18" 848 852 source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 853 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 850 854 dependencies = [ 851 - "autocfg", 852 - "cfg-if", 853 855 "crossbeam-utils", 854 - "memoffset 0.9.0", 855 - "scopeguard", 856 856 ] 857 857 858 858 [[package]] 859 859 name = "crossbeam-utils" 860 - version = "0.8.16" 860 + version = "0.8.19" 861 861 source = "registry+https://github.com/rust-lang/crates.io-index" 862 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 863 - dependencies = [ 864 - "cfg-if", 865 - ] 862 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 866 863 867 864 [[package]] 868 865 name = "crunchy" ··· 882 879 883 880 [[package]] 884 881 name = "data-encoding" 885 - version = "2.4.0" 882 + version = "2.5.0" 886 883 source = "registry+https://github.com/rust-lang/crates.io-index" 887 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 884 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 888 885 889 886 [[package]] 890 887 name = "debug-helper" ··· 894 891 895 892 [[package]] 896 893 name = "deranged" 897 - version = "0.3.8" 894 + version = "0.3.11" 898 895 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 896 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 897 + dependencies = [ 898 + "powerfmt", 899 + ] 900 900 901 901 [[package]] 902 902 name = "derivative" ··· 928 928 929 929 [[package]] 930 930 name = "diesel" 931 - version = "2.1.2" 931 + version = "2.1.4" 932 932 source = "registry+https://github.com/rust-lang/crates.io-index" 933 - checksum = "53c8a2cb22327206568569e5a45bb5a2c946455efdd76e24d15b7e82171af95e" 933 + checksum = "62c6fcf842f17f8c78ecf7c81d75c5ce84436b41ee07e03f490fbb5f5a8731d8" 934 934 dependencies = [ 935 935 "bigdecimal", 936 936 "chrono", ··· 956 956 "diesel_table_macro_syntax", 957 957 "proc-macro2", 958 958 "quote", 959 - "syn 2.0.37", 959 + "syn 2.0.48", 960 960 ] 961 961 962 962 [[package]] ··· 976 976 source = "registry+https://github.com/rust-lang/crates.io-index" 977 977 checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5" 978 978 dependencies = [ 979 - "syn 2.0.37", 979 + "syn 2.0.48", 980 980 ] 981 981 982 982 [[package]] ··· 1021 1021 1022 1022 [[package]] 1023 1023 name = "dirs" 1024 - version = "4.0.0" 1025 - source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1027 - dependencies = [ 1028 - "dirs-sys 0.3.7", 1029 - ] 1030 - 1031 - [[package]] 1032 - name = "dirs" 1033 1024 version = "5.0.1" 1034 1025 source = "registry+https://github.com/rust-lang/crates.io-index" 1035 1026 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1036 1027 dependencies = [ 1037 - "dirs-sys 0.4.1", 1038 - ] 1039 - 1040 - [[package]] 1041 - name = "dirs-sys" 1042 - version = "0.3.7" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1045 - dependencies = [ 1046 - "libc", 1047 - "redox_users", 1048 - "winapi", 1028 + "dirs-sys", 1049 1029 ] 1050 1030 1051 1031 [[package]] ··· 1057 1037 "libc", 1058 1038 "option-ext", 1059 1039 "redox_users", 1060 - "windows-sys", 1040 + "windows-sys 0.48.0", 1061 1041 ] 1062 1042 1063 1043 [[package]] 1064 1044 name = "either" 1065 - version = "1.9.0" 1045 + version = "1.10.0" 1066 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1047 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 1068 1048 1069 1049 [[package]] 1070 1050 name = "encoding_rs" ··· 1083 1063 1084 1064 [[package]] 1085 1065 name = "enum-as-inner" 1086 - version = "0.5.1" 1066 + version = "0.6.0" 1087 1067 source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" 1068 + checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1089 1069 dependencies = [ 1090 1070 "heck", 1091 1071 "proc-macro2", 1092 1072 "quote", 1093 - "syn 1.0.109", 1073 + "syn 2.0.48", 1094 1074 ] 1095 1075 1096 1076 [[package]] ··· 1111 1091 dependencies = [ 1112 1092 "proc-macro2", 1113 1093 "quote", 1114 - "syn 2.0.37", 1094 + "syn 2.0.48", 1115 1095 ] 1116 1096 1117 1097 [[package]] ··· 1122 1102 1123 1103 [[package]] 1124 1104 name = "errno" 1125 - version = "0.3.3" 1105 + version = "0.3.8" 1126 1106 source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 1107 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1128 1108 dependencies = [ 1129 - "errno-dragonfly", 1130 1109 "libc", 1131 - "windows-sys", 1132 - ] 1133 - 1134 - [[package]] 1135 - name = "errno-dragonfly" 1136 - version = "0.1.2" 1137 - source = "registry+https://github.com/rust-lang/crates.io-index" 1138 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1139 - dependencies = [ 1140 - "cc", 1141 - "libc", 1110 + "windows-sys 0.52.0", 1142 1111 ] 1143 1112 1144 1113 [[package]] ··· 1167 1136 1168 1137 [[package]] 1169 1138 name = "event-listener" 1170 - version = "3.0.0" 1139 + version = "3.1.0" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 1142 + dependencies = [ 1143 + "concurrent-queue", 1144 + "parking", 1145 + "pin-project-lite", 1146 + ] 1147 + 1148 + [[package]] 1149 + name = "event-listener" 1150 + version = "4.0.3" 1171 1151 source = "registry+https://github.com/rust-lang/crates.io-index" 1172 - checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325" 1152 + checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 1173 1153 dependencies = [ 1174 1154 "concurrent-queue", 1175 1155 "parking", ··· 1177 1157 ] 1178 1158 1179 1159 [[package]] 1160 + name = "event-listener" 1161 + version = "5.0.0" 1162 + source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1" 1164 + dependencies = [ 1165 + "concurrent-queue", 1166 + "parking", 1167 + "pin-project-lite", 1168 + ] 1169 + 1170 + [[package]] 1171 + name = "event-listener-strategy" 1172 + version = "0.4.0" 1173 + source = "registry+https://github.com/rust-lang/crates.io-index" 1174 + checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1175 + dependencies = [ 1176 + "event-listener 4.0.3", 1177 + "pin-project-lite", 1178 + ] 1179 + 1180 + [[package]] 1181 + name = "event-listener-strategy" 1182 + version = "0.5.0" 1183 + source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" 1185 + dependencies = [ 1186 + "event-listener 5.0.0", 1187 + "pin-project-lite", 1188 + ] 1189 + 1190 + [[package]] 1180 1191 name = "exr" 1181 - version = "1.71.0" 1192 + version = "1.72.0" 1182 1193 source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 1194 + checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 1184 1195 dependencies = [ 1185 1196 "bit_field", 1186 1197 "flume", ··· 1194 1205 1195 1206 [[package]] 1196 1207 name = "eyre" 1197 - version = "0.6.8" 1208 + version = "0.6.12" 1198 1209 source = "registry+https://github.com/rust-lang/crates.io-index" 1199 - checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb" 1210 + checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 1200 1211 dependencies = [ 1201 1212 "indenter", 1202 1213 "once_cell", ··· 1219 1230 1220 1231 [[package]] 1221 1232 name = "fdeflate" 1222 - version = "0.3.0" 1233 + version = "0.3.4" 1223 1234 source = "registry+https://github.com/rust-lang/crates.io-index" 1224 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1235 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1225 1236 dependencies = [ 1226 1237 "simd-adler32", 1227 1238 ] 1228 1239 1229 1240 [[package]] 1230 1241 name = "feed-rs" 1231 - version = "1.3.0" 1242 + version = "1.4.0" 1232 1243 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "9dbec361cb401c1b86aea784fb809073733da06b1a1fd794222e7bf9845db327" 1244 + checksum = "1ebf574f2f8a63948eae0d786c1fe339d71b6c98e735d58c81c85d93c8a66edf" 1234 1245 dependencies = [ 1235 1246 "chrono", 1236 1247 "lazy_static", ··· 1239 1250 "regex", 1240 1251 "serde", 1241 1252 "serde_json", 1242 - "siphasher", 1253 + "siphasher 1.0.0", 1243 1254 "url", 1244 1255 "uuid", 1245 1256 ] ··· 1304 1315 1305 1316 [[package]] 1306 1317 name = "flate2" 1307 - version = "1.0.27" 1318 + version = "1.0.28" 1308 1319 source = "registry+https://github.com/rust-lang/crates.io-index" 1309 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 1320 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1310 1321 dependencies = [ 1311 1322 "crc32fast", 1312 1323 "miniz_oxide", ··· 1318 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1319 1330 checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1320 1331 dependencies = [ 1321 - "spin 0.9.8", 1332 + "spin", 1322 1333 ] 1323 1334 1324 1335 [[package]] ··· 1344 1355 1345 1356 [[package]] 1346 1357 name = "form_urlencoded" 1347 - version = "1.2.0" 1358 + version = "1.2.1" 1348 1359 source = "registry+https://github.com/rust-lang/crates.io-index" 1349 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1360 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1350 1361 dependencies = [ 1351 1362 "percent-encoding", 1352 1363 ] ··· 1363 1374 1364 1375 [[package]] 1365 1376 name = "futures" 1366 - version = "0.3.28" 1377 + version = "0.3.30" 1367 1378 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1379 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1369 1380 dependencies = [ 1370 1381 "futures-channel", 1371 1382 "futures-core", ··· 1378 1389 1379 1390 [[package]] 1380 1391 name = "futures-channel" 1381 - version = "0.3.28" 1392 + version = "0.3.30" 1382 1393 source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1394 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1384 1395 dependencies = [ 1385 1396 "futures-core", 1386 1397 "futures-sink", ··· 1388 1399 1389 1400 [[package]] 1390 1401 name = "futures-core" 1391 - version = "0.3.28" 1402 + version = "0.3.30" 1392 1403 source = "registry+https://github.com/rust-lang/crates.io-index" 1393 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1404 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1394 1405 1395 1406 [[package]] 1396 1407 name = "futures-executor" 1397 - version = "0.3.28" 1408 + version = "0.3.30" 1398 1409 source = "registry+https://github.com/rust-lang/crates.io-index" 1399 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1410 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1400 1411 dependencies = [ 1401 1412 "futures-core", 1402 1413 "futures-task", ··· 1406 1417 1407 1418 [[package]] 1408 1419 name = "futures-io" 1409 - version = "0.3.28" 1420 + version = "0.3.30" 1410 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1422 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1412 1423 1413 1424 [[package]] 1414 1425 name = "futures-lite" ··· 1426 1437 ] 1427 1438 1428 1439 [[package]] 1440 + name = "futures-lite" 1441 + version = "2.2.0" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 1444 + dependencies = [ 1445 + "fastrand 2.0.1", 1446 + "futures-core", 1447 + "futures-io", 1448 + "parking", 1449 + "pin-project-lite", 1450 + ] 1451 + 1452 + [[package]] 1429 1453 name = "futures-macro" 1430 - version = "0.3.28" 1454 + version = "0.3.30" 1431 1455 source = "registry+https://github.com/rust-lang/crates.io-index" 1432 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1456 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1433 1457 dependencies = [ 1434 1458 "proc-macro2", 1435 1459 "quote", 1436 - "syn 2.0.37", 1460 + "syn 2.0.48", 1437 1461 ] 1438 1462 1439 1463 [[package]] 1440 1464 name = "futures-sink" 1441 - version = "0.3.28" 1465 + version = "0.3.30" 1442 1466 source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1467 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1444 1468 1445 1469 [[package]] 1446 1470 name = "futures-task" 1447 - version = "0.3.28" 1471 + version = "0.3.30" 1448 1472 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1473 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1450 1474 1451 1475 [[package]] 1452 1476 name = "futures-util" 1453 - version = "0.3.28" 1477 + version = "0.3.30" 1454 1478 source = "registry+https://github.com/rust-lang/crates.io-index" 1455 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1479 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1456 1480 dependencies = [ 1457 1481 "futures-channel", 1458 1482 "futures-core", ··· 1468 1492 1469 1493 [[package]] 1470 1494 name = "gdk-pixbuf" 1471 - version = "0.18.0" 1495 + version = "0.19.0" 1472 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1473 - checksum = "bbc9c2ed73a81d556b65d08879ba4ee58808a6b1927ce915262185d6d547c6f3" 1497 + checksum = "c311c47800051b87de1335e8792774d7cec551c91a0a3d109ab21d76b36f208f" 1474 1498 dependencies = [ 1475 1499 "gdk-pixbuf-sys", 1476 1500 "gio", 1477 1501 "glib", 1478 1502 "libc", 1479 - "once_cell", 1480 1503 ] 1481 1504 1482 1505 [[package]] 1483 1506 name = "gdk-pixbuf-sys" 1484 - version = "0.18.0" 1507 + version = "0.19.0" 1485 1508 source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1509 + checksum = "3dcbd04c1b2c4834cc008b4828bc917d062483b88d26effde6342e5622028f96" 1487 1510 dependencies = [ 1488 1511 "gio-sys", 1489 1512 "glib-sys", ··· 1494 1517 1495 1518 [[package]] 1496 1519 name = "gdk4" 1497 - version = "0.7.3" 1520 + version = "0.8.0" 1498 1521 source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "7edb019ad581f8ecf8ea8e4baa6df7c483a95b5a59be3140be6a9c3b0c632af6" 1522 + checksum = "6771942f85a2beaa220c64739395e4401b9fab4a52aba9b503fa1e6ed4d4d806" 1500 1523 dependencies = [ 1501 1524 "cairo-rs", 1502 1525 "gdk-pixbuf", ··· 1509 1532 1510 1533 [[package]] 1511 1534 name = "gdk4-sys" 1512 - version = "0.7.2" 1535 + version = "0.8.0" 1513 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "dbab43f332a3cf1df9974da690b5bb0e26720ed09a228178ce52175372dcfef0" 1537 + checksum = "1eb95854fab65072023a7814434f003db571d6e45c287c0b0c540c1c78bdf6ae" 1515 1538 dependencies = [ 1516 1539 "cairo-sys-rs", 1517 1540 "gdk-pixbuf-sys", ··· 1536 1559 1537 1560 [[package]] 1538 1561 name = "getrandom" 1539 - version = "0.1.16" 1562 + version = "0.2.12" 1540 1563 source = "registry+https://github.com/rust-lang/crates.io-index" 1541 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1564 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1542 1565 dependencies = [ 1543 1566 "cfg-if", 1544 1567 "libc", 1545 - "wasi 0.9.0+wasi-snapshot-preview1", 1546 - ] 1547 - 1548 - [[package]] 1549 - name = "getrandom" 1550 - version = "0.2.10" 1551 - source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1553 - dependencies = [ 1554 - "cfg-if", 1555 - "libc", 1556 - "wasi 0.11.0+wasi-snapshot-preview1", 1568 + "wasi", 1557 1569 ] 1558 1570 1559 1571 [[package]] ··· 1588 1600 1589 1601 [[package]] 1590 1602 name = "gimli" 1591 - version = "0.28.0" 1603 + version = "0.28.1" 1592 1604 source = "registry+https://github.com/rust-lang/crates.io-index" 1593 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1605 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1594 1606 1595 1607 [[package]] 1596 1608 name = "gio" 1597 - version = "0.18.2" 1609 + version = "0.19.0" 1598 1610 source = "registry+https://github.com/rust-lang/crates.io-index" 1599 - checksum = "57052f84e8e5999b258e8adf8f5f2af0ac69033864936b8b6838321db2f759b1" 1611 + checksum = "b3d1aaa2d926710a27f3b35822806b1513b393b71174dd2601c9d02fdab0cb82" 1600 1612 dependencies = [ 1601 1613 "futures-channel", 1602 1614 "futures-core", ··· 1605 1617 "gio-sys", 1606 1618 "glib", 1607 1619 "libc", 1608 - "once_cell", 1609 1620 "pin-project-lite", 1610 1621 "smallvec", 1611 1622 "thiserror", ··· 1613 1624 1614 1625 [[package]] 1615 1626 name = "gio-sys" 1616 - version = "0.18.1" 1627 + version = "0.19.0" 1617 1628 source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1629 + checksum = "bcf8e1d9219bb294636753d307b030c1e8a032062cba74f493c431a5c8b81ce4" 1619 1630 dependencies = [ 1620 1631 "glib-sys", 1621 1632 "gobject-sys", 1622 1633 "libc", 1623 1634 "system-deps", 1624 - "winapi", 1635 + "windows-sys 0.52.0", 1625 1636 ] 1626 1637 1627 1638 [[package]] 1628 1639 name = "glib" 1629 - version = "0.18.2" 1640 + version = "0.19.0" 1630 1641 source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - checksum = "1c316afb01ce8067c5eaab1fc4f2cd47dc21ce7b6296358605e2ffab23ccbd19" 1642 + checksum = "170ee82b9b44b3b5fd1cf4971d6cf0eadec38303bb84c7bcc4e6b95a18934e71" 1632 1643 dependencies = [ 1633 - "bitflags 2.4.0", 1644 + "bitflags 2.4.2", 1634 1645 "futures-channel", 1635 1646 "futures-core", 1636 1647 "futures-executor", ··· 1642 1653 "gobject-sys", 1643 1654 "libc", 1644 1655 "memchr", 1645 - "once_cell", 1646 1656 "smallvec", 1647 1657 "thiserror", 1648 1658 ] 1649 1659 1650 1660 [[package]] 1651 1661 name = "glib-macros" 1652 - version = "0.18.2" 1662 + version = "0.19.0" 1653 1663 source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "f8da903822b136d42360518653fcf154455defc437d3e7a81475bf9a95ff1e47" 1664 + checksum = "2ff52fff7e4d1bb8598ae744e9bb90c8c76271712483c3f0ce931bee9814de85" 1655 1665 dependencies = [ 1656 1666 "heck", 1657 - "proc-macro-crate", 1658 - "proc-macro-error", 1667 + "proc-macro-crate 3.1.0", 1659 1668 "proc-macro2", 1660 1669 "quote", 1661 - "syn 2.0.37", 1670 + "syn 2.0.48", 1662 1671 ] 1663 1672 1664 1673 [[package]] 1665 1674 name = "glib-sys" 1666 - version = "0.18.1" 1675 + version = "0.19.0" 1667 1676 source = "registry+https://github.com/rust-lang/crates.io-index" 1668 - checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1677 + checksum = "630f097773d7c7a0bb3258df4e8157b47dc98bbfa0e60ad9ab56174813feced4" 1669 1678 dependencies = [ 1670 1679 "libc", 1671 1680 "system-deps", ··· 1678 1687 checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1679 1688 1680 1689 [[package]] 1681 - name = "gloo-timers" 1682 - version = "0.2.6" 1683 - source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1685 - dependencies = [ 1686 - "futures-channel", 1687 - "futures-core", 1688 - "js-sys", 1689 - "wasm-bindgen", 1690 - ] 1691 - 1692 - [[package]] 1693 1690 name = "gobject-sys" 1694 - version = "0.18.0" 1691 + version = "0.19.0" 1695 1692 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1693 + checksum = "c85e2b1080b9418dd0c58b498da3a5c826030343e0ef07bde6a955d28de54979" 1697 1694 dependencies = [ 1698 1695 "glib-sys", 1699 1696 "libc", ··· 1702 1699 1703 1700 [[package]] 1704 1701 name = "graphene-rs" 1705 - version = "0.18.1" 1702 + version = "0.19.0" 1706 1703 source = "registry+https://github.com/rust-lang/crates.io-index" 1707 - checksum = "3b2228cda1505613a7a956cca69076892cfbda84fc2b7a62b94a41a272c0c401" 1704 + checksum = "147827e4f506f8073ac3ec5b28cc2255bdf3abc30f5b4e101a80506eebe11d2c" 1708 1705 dependencies = [ 1709 1706 "glib", 1710 1707 "graphene-sys", ··· 1713 1710 1714 1711 [[package]] 1715 1712 name = "graphene-sys" 1716 - version = "0.18.1" 1713 + version = "0.19.0" 1717 1714 source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "cc4144cee8fc8788f2a9b73dc5f1d4e1189d1f95305c4cb7bd9c1af1cfa31f59" 1715 + checksum = "236ed66cc9b18d8adf233716f75de803d0bf6fc806f60d14d948974a12e240d0" 1719 1716 dependencies = [ 1720 1717 "glib-sys", 1721 1718 "libc", ··· 1741 1738 1742 1739 [[package]] 1743 1740 name = "gsk4" 1744 - version = "0.7.3" 1741 + version = "0.8.0" 1745 1742 source = "registry+https://github.com/rust-lang/crates.io-index" 1746 - checksum = "0d958e351d2f210309b32d081c832d7de0aca0b077aa10d88336c6379bd01f7e" 1743 + checksum = "0e8ce8dee0fd87a11002214b1204ff18c9272fbd530408f0884a0f9b25dc31de" 1747 1744 dependencies = [ 1748 1745 "cairo-rs", 1749 1746 "gdk4", ··· 1756 1753 1757 1754 [[package]] 1758 1755 name = "gsk4-sys" 1759 - version = "0.7.3" 1756 + version = "0.8.0" 1760 1757 source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "12bd9e3effea989f020e8f1ff3fa3b8c63ba93d43b899c11a118868853a56d55" 1758 + checksum = "2660a652da5b662d43924df19ba40d73f015ed427329ef51d2b1360a4e0dc0e4" 1762 1759 dependencies = [ 1763 1760 "cairo-sys-rs", 1764 1761 "gdk4-sys", ··· 1772 1769 1773 1770 [[package]] 1774 1771 name = "gtk4" 1775 - version = "0.7.3" 1772 + version = "0.8.0" 1776 1773 source = "registry+https://github.com/rust-lang/crates.io-index" 1777 - checksum = "5aeb51aa3e9728575a053e1f43543cd9992ac2477e1b186ad824fd4adfb70842" 1774 + checksum = "7d26ffa3ec6316ccaa1df62d3e7f5bae1637c0acbb43f250fabef38319f73c64" 1778 1775 dependencies = [ 1779 1776 "cairo-rs", 1780 1777 "field-offset", ··· 1793 1790 1794 1791 [[package]] 1795 1792 name = "gtk4-macros" 1796 - version = "0.7.2" 1793 + version = "0.8.0" 1797 1794 source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "d57ec49cf9b657f69a05bca8027cff0a8dfd0c49e812be026fc7311f2163832f" 1795 + checksum = "c8b86439e9896f6f3f47c3d8077c5c8205174078760afdabd9098a8e9e937d97" 1799 1796 dependencies = [ 1800 1797 "anyhow", 1801 - "proc-macro-crate", 1798 + "proc-macro-crate 3.1.0", 1802 1799 "proc-macro-error", 1803 1800 "proc-macro2", 1804 1801 "quote", ··· 1807 1804 1808 1805 [[package]] 1809 1806 name = "gtk4-sys" 1810 - version = "0.7.3" 1807 + version = "0.8.0" 1811 1808 source = "registry+https://github.com/rust-lang/crates.io-index" 1812 - checksum = "54d8c4aa23638ce9faa2caf7e2a27d4a1295af2155c8e8d28c4d4eeca7a65eb8" 1809 + checksum = "2abc0a6d356d59a3806021829ce6ed3e70bba3509b41a535fedcb09fae13fbc0" 1813 1810 dependencies = [ 1814 1811 "cairo-sys-rs", 1815 1812 "gdk-pixbuf-sys", ··· 1826 1823 1827 1824 [[package]] 1828 1825 name = "h2" 1829 - version = "0.3.21" 1826 + version = "0.3.24" 1830 1827 source = "registry+https://github.com/rust-lang/crates.io-index" 1831 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 1828 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 1832 1829 dependencies = [ 1833 1830 "bytes", 1834 1831 "fnv", ··· 1836 1833 "futures-sink", 1837 1834 "futures-util", 1838 1835 "http", 1839 - "indexmap 1.9.3", 1836 + "indexmap", 1840 1837 "slab", 1841 1838 "tokio", 1842 1839 "tokio-util", ··· 1845 1842 1846 1843 [[package]] 1847 1844 name = "half" 1848 - version = "2.2.1" 1845 + version = "2.3.1" 1849 1846 source = "registry+https://github.com/rust-lang/crates.io-index" 1850 - checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" 1847 + checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 1851 1848 dependencies = [ 1849 + "cfg-if", 1852 1850 "crunchy", 1853 1851 ] 1854 1852 1855 1853 [[package]] 1856 1854 name = "hard-xml" 1857 - version = "1.27.0" 1855 + version = "1.34.0" 1858 1856 source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "b74134bb74033894bf6b22cb9078c5e19bb750bd586f5cea24bc4acf23e9da9a" 1857 + checksum = "fafc2bcb74049535eb6fab49eb20164a427867a9e809516ef95a98e961164432" 1860 1858 dependencies = [ 1861 1859 "hard-xml-derive", 1862 1860 "jetscii", ··· 1867 1865 1868 1866 [[package]] 1869 1867 name = "hard-xml-derive" 1870 - version = "1.27.0" 1868 + version = "1.34.0" 1871 1869 source = "registry+https://github.com/rust-lang/crates.io-index" 1872 - checksum = "f50ce8d120d040bf18a4d8dd75ea96497cc75d285b09e2473e88df57bb20f3ab" 1870 + checksum = "57a345b327da51b997c94f841d9db6b2d292c7632713bd8a1b8b191e8b819df7" 1873 1871 dependencies = [ 1874 1872 "bitflags 1.3.2", 1875 1873 "proc-macro2", ··· 1879 1877 1880 1878 [[package]] 1881 1879 name = "hashbrown" 1882 - version = "0.12.3" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1885 - 1886 - [[package]] 1887 - name = "hashbrown" 1888 - version = "0.14.0" 1880 + version = "0.14.3" 1889 1881 source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1882 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1891 1883 1892 1884 [[package]] 1893 1885 name = "heck" ··· 1897 1889 1898 1890 [[package]] 1899 1891 name = "hermit-abi" 1900 - version = "0.3.3" 1892 + version = "0.3.5" 1901 1893 source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1894 + checksum = "d0c62115964e08cb8039170eb33c1d0e2388a256930279edca206fff675f82c3" 1903 1895 1904 1896 [[package]] 1905 1897 name = "hex" ··· 1920 1912 1921 1913 [[package]] 1922 1914 name = "html2pango" 1923 - version = "0.5.0" 1915 + version = "0.6.0" 1924 1916 source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "e22f189d26bf7cf4652dbe49da86f3a27628f745469365f1d2575ea8caf54eaf" 1917 + checksum = "a5f061cc3c0538033f81a94417f209e2b1908e3dab8b87b205d84e6109c8091b" 1926 1918 dependencies = [ 1927 1919 "ammonia", 1928 1920 "anyhow", ··· 1950 1942 1951 1943 [[package]] 1952 1944 name = "http" 1953 - version = "0.2.9" 1945 + version = "0.2.11" 1954 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1955 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1947 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1956 1948 dependencies = [ 1957 1949 "bytes", 1958 1950 "fnv", ··· 1961 1953 1962 1954 [[package]] 1963 1955 name = "http-body" 1964 - version = "0.4.5" 1956 + version = "0.4.6" 1965 1957 source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1958 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1967 1959 dependencies = [ 1968 1960 "bytes", 1969 1961 "http", ··· 1990 1982 1991 1983 [[package]] 1992 1984 name = "hyper" 1993 - version = "0.14.27" 1985 + version = "0.14.28" 1994 1986 source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1987 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1996 1988 dependencies = [ 1997 1989 "bytes", 1998 1990 "futures-channel", ··· 2005 1997 "httpdate", 2006 1998 "itoa", 2007 1999 "pin-project-lite", 2008 - "socket2 0.4.9", 2000 + "socket2 0.5.5", 2009 2001 "tokio", 2010 2002 "tower-service", 2011 2003 "tracing", ··· 2014 2006 2015 2007 [[package]] 2016 2008 name = "hyper-rustls" 2017 - version = "0.24.1" 2009 + version = "0.24.2" 2018 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 2011 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2020 2012 dependencies = [ 2021 2013 "futures-util", 2022 2014 "http", ··· 2041 2033 2042 2034 [[package]] 2043 2035 name = "iana-time-zone" 2044 - version = "0.1.57" 2036 + version = "0.1.60" 2045 2037 source = "registry+https://github.com/rust-lang/crates.io-index" 2046 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 2038 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2047 2039 dependencies = [ 2048 2040 "android_system_properties", 2049 2041 "core-foundation-sys", 2050 2042 "iana-time-zone-haiku", 2051 2043 "js-sys", 2052 2044 "wasm-bindgen", 2053 - "windows", 2045 + "windows-core", 2054 2046 ] 2055 2047 2056 2048 [[package]] ··· 2064 2056 2065 2057 [[package]] 2066 2058 name = "idna" 2067 - version = "0.2.3" 2059 + version = "0.3.0" 2068 2060 source = "registry+https://github.com/rust-lang/crates.io-index" 2069 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 2061 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2070 2062 dependencies = [ 2071 - "matches", 2072 2063 "unicode-bidi", 2073 2064 "unicode-normalization", 2074 2065 ] 2075 2066 2076 2067 [[package]] 2077 2068 name = "idna" 2078 - version = "0.3.0" 2069 + version = "0.4.0" 2079 2070 source = "registry+https://github.com/rust-lang/crates.io-index" 2080 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2071 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2081 2072 dependencies = [ 2082 2073 "unicode-bidi", 2083 2074 "unicode-normalization", ··· 2085 2076 2086 2077 [[package]] 2087 2078 name = "idna" 2088 - version = "0.4.0" 2079 + version = "0.5.0" 2089 2080 source = "registry+https://github.com/rust-lang/crates.io-index" 2090 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2081 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2091 2082 dependencies = [ 2092 2083 "unicode-bidi", 2093 2084 "unicode-normalization", ··· 2095 2086 2096 2087 [[package]] 2097 2088 name = "image" 2098 - version = "0.24.7" 2089 + version = "0.24.8" 2099 2090 source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2091 + checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" 2101 2092 dependencies = [ 2102 2093 "bytemuck", 2103 2094 "byteorder", ··· 2105 2096 "exr", 2106 2097 "gif", 2107 2098 "jpeg-decoder", 2108 - "num-rational", 2109 2099 "num-traits", 2110 2100 "png", 2111 2101 "qoi", ··· 2120 2110 2121 2111 [[package]] 2122 2112 name = "indexmap" 2123 - version = "1.9.3" 2113 + version = "2.2.2" 2124 2114 source = "registry+https://github.com/rust-lang/crates.io-index" 2125 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2126 - dependencies = [ 2127 - "autocfg", 2128 - "hashbrown 0.12.3", 2129 - ] 2130 - 2131 - [[package]] 2132 - name = "indexmap" 2133 - version = "2.0.1" 2134 - source = "registry+https://github.com/rust-lang/crates.io-index" 2135 - checksum = "ad227c3af19d4914570ad36d30409928b75967c298feb9ea1969db3a610bb14e" 2115 + checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" 2136 2116 dependencies = [ 2137 2117 "equivalent", 2138 - "hashbrown 0.14.0", 2118 + "hashbrown", 2139 2119 ] 2140 2120 2141 2121 [[package]] ··· 2155 2135 dependencies = [ 2156 2136 "hermit-abi", 2157 2137 "libc", 2158 - "windows-sys", 2138 + "windows-sys 0.48.0", 2159 2139 ] 2160 2140 2161 2141 [[package]] ··· 2164 2144 source = "registry+https://github.com/rust-lang/crates.io-index" 2165 2145 checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 2166 2146 dependencies = [ 2167 - "socket2 0.5.4", 2147 + "socket2 0.5.5", 2168 2148 "widestring", 2169 - "windows-sys", 2149 + "windows-sys 0.48.0", 2170 2150 "winreg", 2171 2151 ] 2172 2152 2173 2153 [[package]] 2174 2154 name = "ipnet" 2175 - version = "2.8.0" 2155 + version = "2.9.0" 2176 2156 source = "registry+https://github.com/rust-lang/crates.io-index" 2177 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 2157 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2178 2158 2179 2159 [[package]] 2180 2160 name = "ipnetwork" ··· 2196 2176 2197 2177 [[package]] 2198 2178 name = "itertools" 2199 - version = "0.11.0" 2179 + version = "0.12.1" 2200 2180 source = "registry+https://github.com/rust-lang/crates.io-index" 2201 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2181 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2202 2182 dependencies = [ 2203 2183 "either", 2204 2184 ] 2205 2185 2206 2186 [[package]] 2207 2187 name = "itoa" 2208 - version = "1.0.9" 2188 + version = "1.0.10" 2209 2189 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2190 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 2211 2191 2212 2192 [[package]] 2213 2193 name = "javascriptcore6" 2214 - version = "0.2.0" 2194 + version = "0.3.0" 2215 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 2216 - checksum = "9ab2e7a6ba3112cf23e7bf63f0aefe5058e6b4f1f759d47bf22922f73ed17e79" 2196 + checksum = "d95a69260c40bbf52066f2c6fa520c00c1ec8ab8208636cf3070c0157c5221f8" 2217 2197 dependencies = [ 2218 2198 "glib", 2219 2199 "javascriptcore6-sys", ··· 2222 2202 2223 2203 [[package]] 2224 2204 name = "javascriptcore6-sys" 2225 - version = "0.2.0" 2205 + version = "0.3.0" 2226 2206 source = "registry+https://github.com/rust-lang/crates.io-index" 2227 - checksum = "f5a26b89c59d679b0d57dd98235e3125b132407cc14c3fb6382df4b84475c39f" 2207 + checksum = "fc104f99c5adcd7ed53dd491121c111e05e3e8d40020d3519e98c346ca64186b" 2228 2208 dependencies = [ 2229 2209 "glib-sys", 2230 2210 "gobject-sys", ··· 2240 2220 2241 2221 [[package]] 2242 2222 name = "jpeg-decoder" 2243 - version = "0.3.0" 2223 + version = "0.3.1" 2244 2224 source = "registry+https://github.com/rust-lang/crates.io-index" 2245 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2225 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2246 2226 dependencies = [ 2247 2227 "rayon", 2248 2228 ] 2249 2229 2250 2230 [[package]] 2251 2231 name = "js-sys" 2252 - version = "0.3.64" 2232 + version = "0.3.68" 2253 2233 source = "registry+https://github.com/rust-lang/crates.io-index" 2254 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2234 + checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 2255 2235 dependencies = [ 2256 2236 "wasm-bindgen", 2257 2237 ] 2258 2238 2259 2239 [[package]] 2260 - name = "kv-log-macro" 2261 - version = "1.0.7" 2262 - source = "registry+https://github.com/rust-lang/crates.io-index" 2263 - checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2264 - dependencies = [ 2265 - "log", 2266 - ] 2267 - 2268 - [[package]] 2269 2240 name = "lazy_static" 2270 2241 version = "1.4.0" 2271 2242 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2279 2250 2280 2251 [[package]] 2281 2252 name = "libadwaita" 2282 - version = "0.5.3" 2253 + version = "0.6.0" 2283 2254 source = "registry+https://github.com/rust-lang/crates.io-index" 2284 - checksum = "2fe7e70c06507ed10a16cda707f358fbe60fe0dc237498f78c686ade92fd979c" 2255 + checksum = "91b4990248b9e1ec5e72094a2ccaea70ec3809f88f6fd52192f2af306b87c5d9" 2285 2256 dependencies = [ 2286 2257 "gdk-pixbuf", 2287 2258 "gdk4", ··· 2295 2266 2296 2267 [[package]] 2297 2268 name = "libadwaita-sys" 2298 - version = "0.5.3" 2269 + version = "0.6.0" 2299 2270 source = "registry+https://github.com/rust-lang/crates.io-index" 2300 - checksum = "5e10aaa38de1d53374f90deeb4535209adc40cc5dba37f9704724169bceec69a" 2271 + checksum = "23a748e4e92be1265cd9e93d569c0b5dfc7814107985aa6743d670ab281ea1a8" 2301 2272 dependencies = [ 2302 2273 "gdk4-sys", 2303 2274 "gio-sys", ··· 2311 2282 2312 2283 [[package]] 2313 2284 name = "libc" 2314 - version = "0.2.148" 2285 + version = "0.2.153" 2315 2286 source = "registry+https://github.com/rust-lang/crates.io-index" 2316 - checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 2287 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 2317 2288 2318 2289 [[package]] 2319 2290 name = "libm" 2320 - version = "0.2.7" 2291 + version = "0.2.8" 2321 2292 source = "registry+https://github.com/rust-lang/crates.io-index" 2322 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2293 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2294 + 2295 + [[package]] 2296 + name = "libredox" 2297 + version = "0.0.1" 2298 + source = "registry+https://github.com/rust-lang/crates.io-index" 2299 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2300 + dependencies = [ 2301 + "bitflags 2.4.2", 2302 + "libc", 2303 + "redox_syscall", 2304 + ] 2323 2305 2324 2306 [[package]] 2325 2307 name = "libsqlite3-sys" 2326 - version = "0.26.0" 2308 + version = "0.27.0" 2327 2309 source = "registry+https://github.com/rust-lang/crates.io-index" 2328 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2310 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2329 2311 dependencies = [ 2330 2312 "pkg-config", 2331 2313 "vcpkg", ··· 2365 2347 2366 2348 [[package]] 2367 2349 name = "linux-raw-sys" 2368 - version = "0.4.7" 2350 + version = "0.4.13" 2369 2351 source = "registry+https://github.com/rust-lang/crates.io-index" 2370 - checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" 2352 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 2371 2353 2372 2354 [[package]] 2373 2355 name = "locale_config" ··· 2384 2366 2385 2367 [[package]] 2386 2368 name = "lock_api" 2387 - version = "0.4.10" 2369 + version = "0.4.11" 2388 2370 source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 2371 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2390 2372 dependencies = [ 2391 2373 "autocfg", 2392 2374 "scopeguard", ··· 2399 2381 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2400 2382 dependencies = [ 2401 2383 "serde", 2402 - "value-bag", 2403 2384 ] 2404 2385 2405 2386 [[package]] ··· 2410 2391 2411 2392 [[package]] 2412 2393 name = "log4rs" 2413 - version = "1.2.0" 2394 + version = "1.3.0" 2414 2395 source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "d36ca1786d9e79b8193a68d480a0907b612f109537115c6ff655a3a1967533fd" 2396 + checksum = "0816135ae15bd0391cf284eab37e6e3ee0a6ee63d2ceeb659862bd8d0a984ca6" 2416 2397 dependencies = [ 2417 2398 "anyhow", 2418 2399 "arc-swap", ··· 2423 2404 "libc", 2424 2405 "log", 2425 2406 "log-mdc", 2407 + "once_cell", 2426 2408 "parking_lot", 2409 + "rand", 2427 2410 "serde", 2428 2411 "serde-value", 2429 2412 "serde_json", ··· 2450 2433 checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2451 2434 2452 2435 [[package]] 2453 - name = "mach2" 2454 - version = "0.4.1" 2455 - source = "registry+https://github.com/rust-lang/crates.io-index" 2456 - checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 2457 - dependencies = [ 2458 - "libc", 2459 - ] 2460 - 2461 - [[package]] 2462 2436 name = "magic-crypt" 2463 - version = "3.1.12" 2437 + version = "3.1.13" 2464 2438 source = "registry+https://github.com/rust-lang/crates.io-index" 2465 - checksum = "0196bd5c76f5f51d7d6563545f86262fef4c82d75466ba6f6d359c40a523318d" 2439 + checksum = "6c42f95f9d296f2dcb50665f507ed5a68a171453142663ce44d77a4eb217b053" 2466 2440 dependencies = [ 2467 2441 "aes", 2468 - "base64 0.13.1", 2442 + "base64", 2469 2443 "block-modes", 2470 2444 "crc-any", 2471 2445 "des", ··· 2523 2497 checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2524 2498 2525 2499 [[package]] 2526 - name = "matches" 2527 - version = "0.1.10" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2530 - 2531 - [[package]] 2532 2500 name = "md-5" 2533 2501 version = "0.9.1" 2534 2502 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2547 2515 2548 2516 [[package]] 2549 2517 name = "memchr" 2550 - version = "2.6.3" 2518 + version = "2.7.1" 2551 2519 source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 2520 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 2553 2521 2554 2522 [[package]] 2555 2523 name = "memoffset" ··· 2576 2544 checksum = "0f23f71580015254b020e856feac3df5878c2c7a8812297edd6c0a485ac9dada" 2577 2545 dependencies = [ 2578 2546 "serde", 2579 - "toml", 2547 + "toml 0.7.8", 2580 2548 ] 2581 2549 2582 2550 [[package]] ··· 2608 2576 2609 2577 [[package]] 2610 2578 name = "miniflux_api" 2611 - version = "0.5.0" 2579 + version = "0.6.0" 2612 2580 source = "registry+https://github.com/rust-lang/crates.io-index" 2613 - checksum = "c402b227e14d83831bfb5a5d4bc347b1a925889f733b27697610a307b0bd8e89" 2581 + checksum = "babaa4cdaadf81050c03f93f16375cf305a29b2d6f099d66ff40aae93afcfee2" 2614 2582 dependencies = [ 2615 - "base64 0.13.1", 2583 + "base64", 2616 2584 "log", 2617 2585 "reqwest", 2618 2586 "serde", ··· 2624 2592 2625 2593 [[package]] 2626 2594 name = "miniz_oxide" 2627 - version = "0.7.1" 2595 + version = "0.7.2" 2628 2596 source = "registry+https://github.com/rust-lang/crates.io-index" 2629 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2597 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 2630 2598 dependencies = [ 2631 2599 "adler", 2632 2600 "simd-adler32", ··· 2634 2602 2635 2603 [[package]] 2636 2604 name = "mio" 2637 - version = "0.8.8" 2605 + version = "0.8.10" 2638 2606 source = "registry+https://github.com/rust-lang/crates.io-index" 2639 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2607 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2640 2608 dependencies = [ 2641 2609 "libc", 2642 - "wasi 0.11.0+wasi-snapshot-preview1", 2643 - "windows-sys", 2610 + "wasi", 2611 + "windows-sys 0.48.0", 2644 2612 ] 2645 2613 2646 2614 [[package]] 2647 2615 name = "moka" 2648 - version = "0.11.3" 2616 + version = "0.12.5" 2649 2617 source = "registry+https://github.com/rust-lang/crates.io-index" 2650 - checksum = "fa6e72583bf6830c956235bff0d5afec8cf2952f579ebad18ae7821a917d950f" 2618 + checksum = "b1911e88d5831f748a4097a43862d129e3c6fca831eecac9b8db6d01d93c9de2" 2651 2619 dependencies = [ 2652 - "async-io", 2653 - "async-lock", 2620 + "async-lock 2.8.0", 2621 + "async-trait", 2654 2622 "crossbeam-channel", 2655 2623 "crossbeam-epoch", 2656 2624 "crossbeam-utils", ··· 2659 2627 "parking_lot", 2660 2628 "quanta", 2661 2629 "rustc_version", 2662 - "scheduled-thread-pool", 2663 2630 "skeptic", 2664 2631 "smallvec", 2665 2632 "tagptr", ··· 2701 2668 [[package]] 2702 2669 name = "news-flash" 2703 2670 version = "2.3.0-alpha.0" 2704 - source = "git+https://gitlab.com/news_flash/news_flash.git#b1763aa942149891afa760255724b0a03319e1e4" 2671 + source = "git+https://gitlab.com/news_flash/news_flash.git#75935aea3f518380d696d4ad879cf0faaf52976c" 2705 2672 dependencies = [ 2706 2673 "article_scraper", 2707 2674 "async-trait", 2708 - "base64 0.21.4", 2709 - "bitflags 2.4.0", 2675 + "base64", 2676 + "bitflags 2.4.2", 2710 2677 "bytes", 2711 2678 "chrono", 2712 2679 "commafeed_api", ··· 2721 2688 "greader_api", 2722 2689 "hex", 2723 2690 "image", 2724 - "itertools 0.11.0", 2691 + "itertools 0.12.1", 2725 2692 "libxml", 2726 2693 "log", 2727 2694 "magic-crypt", ··· 2738 2705 "random_color", 2739 2706 "regex", 2740 2707 "reqwest", 2741 - "rust-embed 8.0.0", 2708 + "rust-embed 8.2.0", 2742 2709 "sanitize-filename", 2743 2710 "semver", 2744 2711 "serde", ··· 2753 2720 version = "0.0.0" 2754 2721 dependencies = [ 2755 2722 "ashpd", 2756 - "base64 0.21.4", 2723 + "base64", 2757 2724 "bytesize", 2758 2725 "chrono", 2759 2726 "clap", 2760 2727 "color-backtrace", 2761 2728 "diffus", 2762 - "dirs 5.0.1", 2729 + "dirs", 2763 2730 "eyre", 2764 2731 "feedly_api", 2765 2732 "futures", ··· 2783 2750 "rc-writer", 2784 2751 "regex", 2785 2752 "reqwest", 2786 - "rust-embed 8.0.0", 2753 + "rust-embed 8.2.0", 2787 2754 "serde", 2788 2755 "serde_json", 2789 2756 "thiserror", ··· 2811 2778 source = "registry+https://github.com/rust-lang/crates.io-index" 2812 2779 checksum = "488e5fb51484deb6bc5bc22f0b0db4902ae7e391d075f8d1a1b9a9674ea326d3" 2813 2780 dependencies = [ 2814 - "base64 0.21.4", 2781 + "base64", 2815 2782 "log", 2816 2783 "reqwest", 2817 2784 "serde", ··· 2846 2813 ] 2847 2814 2848 2815 [[package]] 2849 - name = "num-integer" 2850 - version = "0.1.45" 2816 + name = "num-conv" 2817 + version = "0.1.0" 2851 2818 source = "registry+https://github.com/rust-lang/crates.io-index" 2852 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2853 - dependencies = [ 2854 - "autocfg", 2855 - "num-traits", 2856 - ] 2819 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2857 2820 2858 2821 [[package]] 2859 - name = "num-rational" 2860 - version = "0.4.1" 2822 + name = "num-integer" 2823 + version = "0.1.46" 2861 2824 source = "registry+https://github.com/rust-lang/crates.io-index" 2862 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2825 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2863 2826 dependencies = [ 2864 - "autocfg", 2865 - "num-integer", 2866 2827 "num-traits", 2867 2828 ] 2868 2829 2869 2830 [[package]] 2870 2831 name = "num-traits" 2871 - version = "0.2.16" 2832 + version = "0.2.18" 2872 2833 source = "registry+https://github.com/rust-lang/crates.io-index" 2873 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 2834 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 2874 2835 dependencies = [ 2875 2836 "autocfg", 2876 2837 ] ··· 2922 2883 2923 2884 [[package]] 2924 2885 name = "object" 2925 - version = "0.32.1" 2886 + version = "0.32.2" 2926 2887 source = "registry+https://github.com/rust-lang/crates.io-index" 2927 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 2888 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2928 2889 dependencies = [ 2929 2890 "memchr", 2930 2891 ] 2931 2892 2932 2893 [[package]] 2933 2894 name = "once_cell" 2934 - version = "1.18.0" 2895 + version = "1.19.0" 2935 2896 source = "registry+https://github.com/rust-lang/crates.io-index" 2936 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2897 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2937 2898 2938 2899 [[package]] 2939 2900 name = "opaque-debug" ··· 2943 2904 2944 2905 [[package]] 2945 2906 name = "openssl" 2946 - version = "0.10.57" 2907 + version = "0.10.63" 2947 2908 source = "registry+https://github.com/rust-lang/crates.io-index" 2948 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 2909 + checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8" 2949 2910 dependencies = [ 2950 - "bitflags 2.4.0", 2911 + "bitflags 2.4.2", 2951 2912 "cfg-if", 2952 2913 "foreign-types", 2953 2914 "libc", ··· 2964 2925 dependencies = [ 2965 2926 "proc-macro2", 2966 2927 "quote", 2967 - "syn 2.0.37", 2928 + "syn 2.0.48", 2968 2929 ] 2969 2930 2970 2931 [[package]] ··· 2975 2936 2976 2937 [[package]] 2977 2938 name = "openssl-sys" 2978 - version = "0.9.93" 2939 + version = "0.9.99" 2979 2940 source = "registry+https://github.com/rust-lang/crates.io-index" 2980 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 2941 + checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" 2981 2942 dependencies = [ 2982 2943 "cc", 2983 2944 "libc", ··· 2987 2948 2988 2949 [[package]] 2989 2950 name = "opml" 2990 - version = "1.1.5" 2951 + version = "1.1.6" 2991 2952 source = "registry+https://github.com/rust-lang/crates.io-index" 2992 - checksum = "657e16a7677a52c9bcfca579d77c087bc4240644d7e5491b359bb76ed62c779d" 2953 + checksum = "df2f96426c857a92676dc29a9e2a181eb39321047ac994491c69eae01619ddf2" 2993 2954 dependencies = [ 2994 2955 "hard-xml", 2995 2956 "serde", ··· 3004 2965 3005 2966 [[package]] 3006 2967 name = "ordered-float" 3007 - version = "2.10.0" 2968 + version = "2.10.1" 3008 2969 source = "registry+https://github.com/rust-lang/crates.io-index" 3009 - checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" 2970 + checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 3010 2971 dependencies = [ 3011 2972 "num-traits", 3012 2973 ] ··· 3023 2984 3024 2985 [[package]] 3025 2986 name = "pango" 3026 - version = "0.18.0" 2987 + version = "0.19.0" 3027 2988 source = "registry+https://github.com/rust-lang/crates.io-index" 3028 - checksum = "06a9e54b831d033206160096b825f2070cf5fda7e35167b1c01e9e774f9202d1" 2989 + checksum = "78d7f779b957728c74fd1a060dfa6d89a0bea792ebc50cc2da80e4e87282d69e" 3029 2990 dependencies = [ 3030 2991 "gio", 3031 2992 "glib", 3032 2993 "libc", 3033 - "once_cell", 3034 2994 "pango-sys", 3035 2995 ] 3036 2996 3037 2997 [[package]] 3038 2998 name = "pango-sys" 3039 - version = "0.18.0" 2999 + version = "0.19.0" 3040 3000 source = "registry+https://github.com/rust-lang/crates.io-index" 3041 - checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 3001 + checksum = "f52ef6a881c19fbfe3b1484df5cad411acaaba29dbec843941c3110d19f340ea" 3042 3002 dependencies = [ 3043 3003 "glib-sys", 3044 3004 "gobject-sys", ··· 3048 3008 3049 3009 [[package]] 3050 3010 name = "parking" 3051 - version = "2.1.1" 3011 + version = "2.2.0" 3052 3012 source = "registry+https://github.com/rust-lang/crates.io-index" 3053 - checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" 3013 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3054 3014 3055 3015 [[package]] 3056 3016 name = "parking_lot" ··· 3064 3024 3065 3025 [[package]] 3066 3026 name = "parking_lot_core" 3067 - version = "0.9.8" 3027 + version = "0.9.9" 3068 3028 source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 3029 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3070 3030 dependencies = [ 3071 3031 "cfg-if", 3072 3032 "libc", 3073 - "redox_syscall 0.3.5", 3033 + "redox_syscall", 3074 3034 "smallvec", 3075 - "windows-targets", 3035 + "windows-targets 0.48.5", 3076 3036 ] 3077 3037 3078 3038 [[package]] 3079 3039 name = "percent-encoding" 3080 - version = "2.3.0" 3040 + version = "2.3.1" 3081 3041 source = "registry+https://github.com/rust-lang/crates.io-index" 3082 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 3042 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3083 3043 3084 3044 [[package]] 3085 3045 name = "phf" ··· 3107 3067 checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3108 3068 dependencies = [ 3109 3069 "phf_shared", 3110 - "rand 0.8.5", 3070 + "rand", 3111 3071 ] 3112 3072 3113 3073 [[package]] ··· 3116 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 3117 3077 checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3118 3078 dependencies = [ 3119 - "siphasher", 3079 + "siphasher 0.3.11", 3120 3080 ] 3121 3081 3122 3082 [[package]] ··· 3144 3104 3145 3105 [[package]] 3146 3106 name = "pkg-config" 3147 - version = "0.3.27" 3107 + version = "0.3.29" 3148 3108 source = "registry+https://github.com/rust-lang/crates.io-index" 3149 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3109 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 3150 3110 3151 3111 [[package]] 3152 3112 name = "png" 3153 - version = "0.17.10" 3113 + version = "0.17.11" 3154 3114 source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3115 + checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 3156 3116 dependencies = [ 3157 3117 "bitflags 1.3.2", 3158 3118 "crc32fast", ··· 3174 3134 "libc", 3175 3135 "log", 3176 3136 "pin-project-lite", 3177 - "windows-sys", 3137 + "windows-sys 0.48.0", 3138 + ] 3139 + 3140 + [[package]] 3141 + name = "polling" 3142 + version = "3.4.0" 3143 + source = "registry+https://github.com/rust-lang/crates.io-index" 3144 + checksum = "30054e72317ab98eddd8561db0f6524df3367636884b7b21b703e4b280a84a14" 3145 + dependencies = [ 3146 + "cfg-if", 3147 + "concurrent-queue", 3148 + "pin-project-lite", 3149 + "rustix 0.38.31", 3150 + "tracing", 3151 + "windows-sys 0.52.0", 3178 3152 ] 3153 + 3154 + [[package]] 3155 + name = "powerfmt" 3156 + version = "0.2.0" 3157 + source = "registry+https://github.com/rust-lang/crates.io-index" 3158 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3179 3159 3180 3160 [[package]] 3181 3161 name = "ppv-lite86" ··· 3196 3176 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3197 3177 dependencies = [ 3198 3178 "once_cell", 3199 - "toml_edit", 3179 + "toml_edit 0.19.15", 3180 + ] 3181 + 3182 + [[package]] 3183 + name = "proc-macro-crate" 3184 + version = "3.1.0" 3185 + source = "registry+https://github.com/rust-lang/crates.io-index" 3186 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3187 + dependencies = [ 3188 + "toml_edit 0.21.1", 3200 3189 ] 3201 3190 3202 3191 [[package]] ··· 3225 3214 3226 3215 [[package]] 3227 3216 name = "proc-macro2" 3228 - version = "1.0.67" 3217 + version = "1.0.78" 3229 3218 source = "registry+https://github.com/rust-lang/crates.io-index" 3230 - checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 3219 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 3231 3220 dependencies = [ 3232 3221 "unicode-ident", 3233 3222 ] ··· 3250 3239 3251 3240 [[package]] 3252 3241 name = "pulldown-cmark" 3253 - version = "0.9.3" 3242 + version = "0.9.6" 3254 3243 source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" 3244 + checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" 3256 3245 dependencies = [ 3257 - "bitflags 1.3.2", 3246 + "bitflags 2.4.2", 3258 3247 "memchr", 3259 3248 "unicase", 3260 3249 ] ··· 3270 3259 3271 3260 [[package]] 3272 3261 name = "quanta" 3273 - version = "0.11.1" 3262 + version = "0.12.2" 3274 3263 source = "registry+https://github.com/rust-lang/crates.io-index" 3275 - checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" 3264 + checksum = "9ca0b7bac0b97248c40bb77288fc52029cf1459c0461ea1b05ee32ccf011de2c" 3276 3265 dependencies = [ 3277 3266 "crossbeam-utils", 3278 3267 "libc", 3279 - "mach2", 3280 3268 "once_cell", 3281 3269 "raw-cpuid", 3282 - "wasi 0.11.0+wasi-snapshot-preview1", 3270 + "wasi", 3283 3271 "web-sys", 3284 3272 "winapi", 3285 3273 ] ··· 3292 3280 3293 3281 [[package]] 3294 3282 name = "quick-xml" 3295 - version = "0.27.1" 3283 + version = "0.31.0" 3296 3284 source = "registry+https://github.com/rust-lang/crates.io-index" 3297 - checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41" 3285 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 3298 3286 dependencies = [ 3299 3287 "encoding_rs", 3300 3288 "memchr", ··· 3302 3290 3303 3291 [[package]] 3304 3292 name = "quote" 3305 - version = "1.0.33" 3293 + version = "1.0.35" 3306 3294 source = "registry+https://github.com/rust-lang/crates.io-index" 3307 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3295 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 3308 3296 dependencies = [ 3309 3297 "proc-macro2", 3310 3298 ] ··· 3322 3310 3323 3311 [[package]] 3324 3312 name = "rand" 3325 - version = "0.7.3" 3326 - source = "registry+https://github.com/rust-lang/crates.io-index" 3327 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3328 - dependencies = [ 3329 - "getrandom 0.1.16", 3330 - "libc", 3331 - "rand_chacha 0.2.2", 3332 - "rand_core 0.5.1", 3333 - "rand_hc", 3334 - "rand_pcg", 3335 - ] 3336 - 3337 - [[package]] 3338 - name = "rand" 3339 3313 version = "0.8.5" 3340 3314 source = "registry+https://github.com/rust-lang/crates.io-index" 3341 3315 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3342 3316 dependencies = [ 3343 3317 "libc", 3344 - "rand_chacha 0.3.1", 3345 - "rand_core 0.6.4", 3346 - ] 3347 - 3348 - [[package]] 3349 - name = "rand_chacha" 3350 - version = "0.2.2" 3351 - source = "registry+https://github.com/rust-lang/crates.io-index" 3352 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3353 - dependencies = [ 3354 - "ppv-lite86", 3355 - "rand_core 0.5.1", 3318 + "rand_chacha", 3319 + "rand_core", 3356 3320 ] 3357 3321 3358 3322 [[package]] ··· 3362 3326 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3363 3327 dependencies = [ 3364 3328 "ppv-lite86", 3365 - "rand_core 0.6.4", 3366 - ] 3367 - 3368 - [[package]] 3369 - name = "rand_core" 3370 - version = "0.5.1" 3371 - source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3373 - dependencies = [ 3374 - "getrandom 0.1.16", 3329 + "rand_core", 3375 3330 ] 3376 3331 3377 3332 [[package]] ··· 3380 3335 source = "registry+https://github.com/rust-lang/crates.io-index" 3381 3336 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3382 3337 dependencies = [ 3383 - "getrandom 0.2.10", 3384 - ] 3385 - 3386 - [[package]] 3387 - name = "rand_hc" 3388 - version = "0.2.0" 3389 - source = "registry+https://github.com/rust-lang/crates.io-index" 3390 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3391 - dependencies = [ 3392 - "rand_core 0.5.1", 3393 - ] 3394 - 3395 - [[package]] 3396 - name = "rand_pcg" 3397 - version = "0.2.1" 3398 - source = "registry+https://github.com/rust-lang/crates.io-index" 3399 - checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3400 - dependencies = [ 3401 - "rand_core 0.5.1", 3338 + "getrandom", 3402 3339 ] 3403 3340 3404 3341 [[package]] 3405 3342 name = "random_color" 3406 - version = "0.6.1" 3343 + version = "0.8.0" 3407 3344 source = "registry+https://github.com/rust-lang/crates.io-index" 3408 - checksum = "f5f34bd6526786b2ce5141fd37a4084b5da1ebae74595b5b0d05482a7cef7181" 3345 + checksum = "0085421bc527effa7ed6d46bac0a28734663c47abe03d80a5e78e441fad85196" 3409 3346 dependencies = [ 3410 - "rand 0.7.3", 3347 + "rand", 3411 3348 ] 3412 3349 3413 3350 [[package]] 3414 3351 name = "raw-cpuid" 3415 - version = "10.7.0" 3352 + version = "11.0.1" 3416 3353 source = "registry+https://github.com/rust-lang/crates.io-index" 3417 - checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 3354 + checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1" 3418 3355 dependencies = [ 3419 - "bitflags 1.3.2", 3356 + "bitflags 2.4.2", 3420 3357 ] 3421 3358 3422 3359 [[package]] 3423 3360 name = "rayon" 3424 - version = "1.8.0" 3361 + version = "1.8.1" 3425 3362 source = "registry+https://github.com/rust-lang/crates.io-index" 3426 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3363 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 3427 3364 dependencies = [ 3428 3365 "either", 3429 3366 "rayon-core", ··· 3431 3368 3432 3369 [[package]] 3433 3370 name = "rayon-core" 3434 - version = "1.12.0" 3371 + version = "1.12.1" 3435 3372 source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3373 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3437 3374 dependencies = [ 3438 3375 "crossbeam-deque", 3439 3376 "crossbeam-utils", ··· 3447 3384 3448 3385 [[package]] 3449 3386 name = "redox_syscall" 3450 - version = "0.2.16" 3451 - source = "registry+https://github.com/rust-lang/crates.io-index" 3452 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3453 - dependencies = [ 3454 - "bitflags 1.3.2", 3455 - ] 3456 - 3457 - [[package]] 3458 - name = "redox_syscall" 3459 - version = "0.3.5" 3387 + version = "0.4.1" 3460 3388 source = "registry+https://github.com/rust-lang/crates.io-index" 3461 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3389 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3462 3390 dependencies = [ 3463 3391 "bitflags 1.3.2", 3464 3392 ] 3465 3393 3466 3394 [[package]] 3467 3395 name = "redox_users" 3468 - version = "0.4.3" 3396 + version = "0.4.4" 3469 3397 source = "registry+https://github.com/rust-lang/crates.io-index" 3470 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3398 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 3471 3399 dependencies = [ 3472 - "getrandom 0.2.10", 3473 - "redox_syscall 0.2.16", 3400 + "getrandom", 3401 + "libredox", 3474 3402 "thiserror", 3475 3403 ] 3476 3404 3477 3405 [[package]] 3478 3406 name = "regex" 3479 - version = "1.9.5" 3407 + version = "1.10.3" 3480 3408 source = "registry+https://github.com/rust-lang/crates.io-index" 3481 - checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 3409 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 3482 3410 dependencies = [ 3483 3411 "aho-corasick", 3484 3412 "memchr", ··· 3488 3416 3489 3417 [[package]] 3490 3418 name = "regex-automata" 3491 - version = "0.3.8" 3419 + version = "0.4.5" 3492 3420 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 - checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 3421 + checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 3494 3422 dependencies = [ 3495 3423 "aho-corasick", 3496 3424 "memchr", ··· 3499 3427 3500 3428 [[package]] 3501 3429 name = "regex-syntax" 3502 - version = "0.7.5" 3430 + version = "0.8.2" 3503 3431 source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 3432 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3505 3433 3506 3434 [[package]] 3507 3435 name = "reqwest" 3508 - version = "0.11.20" 3436 + version = "0.11.24" 3509 3437 source = "registry+https://github.com/rust-lang/crates.io-index" 3510 - checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" 3438 + checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" 3511 3439 dependencies = [ 3512 3440 "async-compression", 3513 - "base64 0.21.4", 3441 + "base64", 3514 3442 "bytes", 3515 3443 "cookie", 3516 3444 "cookie_store", ··· 3537 3465 "serde", 3538 3466 "serde_json", 3539 3467 "serde_urlencoded", 3468 + "sync_wrapper", 3469 + "system-configuration", 3540 3470 "tokio", 3541 3471 "tokio-native-tls", 3542 3472 "tokio-rustls", ··· 3565 3495 3566 3496 [[package]] 3567 3497 name = "ring" 3568 - version = "0.16.20" 3498 + version = "0.17.7" 3569 3499 source = "registry+https://github.com/rust-lang/crates.io-index" 3570 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3500 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 3571 3501 dependencies = [ 3572 3502 "cc", 3503 + "getrandom", 3573 3504 "libc", 3574 - "once_cell", 3575 - "spin 0.5.2", 3505 + "spin", 3576 3506 "untrusted", 3577 - "web-sys", 3578 - "winapi", 3507 + "windows-sys 0.48.0", 3579 3508 ] 3580 3509 3581 3510 [[package]] ··· 3591 3520 3592 3521 [[package]] 3593 3522 name = "rust-embed" 3594 - version = "8.0.0" 3523 + version = "8.2.0" 3595 3524 source = "registry+https://github.com/rust-lang/crates.io-index" 3596 - checksum = "b1e7d90385b59f0a6bf3d3b757f3ca4ece2048265d70db20a2016043d4509a40" 3525 + checksum = "a82c0bbc10308ed323529fd3c1dce8badda635aa319a5ff0e6466f33b8101e3f" 3597 3526 dependencies = [ 3598 - "rust-embed-impl 8.0.0", 3599 - "rust-embed-utils 8.0.0", 3527 + "rust-embed-impl 8.2.0", 3528 + "rust-embed-utils 8.2.0", 3600 3529 "walkdir", 3601 3530 ] 3602 3531 ··· 3609 3538 "proc-macro2", 3610 3539 "quote", 3611 3540 "rust-embed-utils 7.8.1", 3612 - "syn 2.0.37", 3541 + "syn 2.0.48", 3613 3542 "walkdir", 3614 3543 ] 3615 3544 3616 3545 [[package]] 3617 3546 name = "rust-embed-impl" 3618 - version = "8.0.0" 3547 + version = "8.2.0" 3619 3548 source = "registry+https://github.com/rust-lang/crates.io-index" 3620 - checksum = "3c3d8c6fd84090ae348e63a84336b112b5c3918b3bf0493a581f7bd8ee623c29" 3549 + checksum = "6227c01b1783cdfee1bcf844eb44594cd16ec71c35305bf1c9fb5aade2735e16" 3621 3550 dependencies = [ 3622 3551 "proc-macro2", 3623 3552 "quote", 3624 - "rust-embed-utils 8.0.0", 3553 + "rust-embed-utils 8.2.0", 3625 3554 "shellexpand", 3626 - "syn 2.0.37", 3555 + "syn 2.0.48", 3627 3556 "walkdir", 3628 3557 ] 3629 3558 ··· 3639 3568 3640 3569 [[package]] 3641 3570 name = "rust-embed-utils" 3642 - version = "8.0.0" 3571 + version = "8.2.0" 3643 3572 source = "registry+https://github.com/rust-lang/crates.io-index" 3644 - checksum = "873feff8cb7bf86fdf0a71bb21c95159f4e4a37dd7a4bd1855a940909b583ada" 3573 + checksum = "8cb0a25bfbb2d4b4402179c2cf030387d9990857ce08a32592c6238db9fa8665" 3645 3574 dependencies = [ 3646 3575 "sha2 0.10.8", 3647 3576 "walkdir", ··· 3664 3593 3665 3594 [[package]] 3666 3595 name = "rustix" 3667 - version = "0.37.23" 3596 + version = "0.37.27" 3668 3597 source = "registry+https://github.com/rust-lang/crates.io-index" 3669 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 3598 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 3670 3599 dependencies = [ 3671 3600 "bitflags 1.3.2", 3672 3601 "errno", 3673 3602 "io-lifetimes", 3674 3603 "libc", 3675 3604 "linux-raw-sys 0.3.8", 3676 - "windows-sys", 3605 + "windows-sys 0.48.0", 3677 3606 ] 3678 3607 3679 3608 [[package]] 3680 3609 name = "rustix" 3681 - version = "0.38.14" 3610 + version = "0.38.31" 3682 3611 source = "registry+https://github.com/rust-lang/crates.io-index" 3683 - checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f" 3612 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 3684 3613 dependencies = [ 3685 - "bitflags 2.4.0", 3614 + "bitflags 2.4.2", 3686 3615 "errno", 3687 3616 "libc", 3688 - "linux-raw-sys 0.4.7", 3689 - "windows-sys", 3617 + "linux-raw-sys 0.4.13", 3618 + "windows-sys 0.52.0", 3690 3619 ] 3691 3620 3692 3621 [[package]] 3693 3622 name = "rustls" 3694 - version = "0.21.7" 3623 + version = "0.21.10" 3695 3624 source = "registry+https://github.com/rust-lang/crates.io-index" 3696 - checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 3625 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 3697 3626 dependencies = [ 3698 3627 "log", 3699 3628 "ring", ··· 3703 3632 3704 3633 [[package]] 3705 3634 name = "rustls-pemfile" 3706 - version = "1.0.3" 3635 + version = "1.0.4" 3707 3636 source = "registry+https://github.com/rust-lang/crates.io-index" 3708 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 3637 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3709 3638 dependencies = [ 3710 - "base64 0.21.4", 3639 + "base64", 3711 3640 ] 3712 3641 3713 3642 [[package]] 3714 3643 name = "rustls-webpki" 3715 - version = "0.101.6" 3644 + version = "0.101.7" 3716 3645 source = "registry+https://github.com/rust-lang/crates.io-index" 3717 - checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" 3646 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3718 3647 dependencies = [ 3719 3648 "ring", 3720 3649 "untrusted", ··· 3722 3651 3723 3652 [[package]] 3724 3653 name = "ryu" 3725 - version = "1.0.15" 3654 + version = "1.0.16" 3726 3655 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3656 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 3728 3657 3729 3658 [[package]] 3730 3659 name = "same-file" ··· 3747 3676 3748 3677 [[package]] 3749 3678 name = "schannel" 3750 - version = "0.1.22" 3679 + version = "0.1.23" 3751 3680 source = "registry+https://github.com/rust-lang/crates.io-index" 3752 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3681 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 3753 3682 dependencies = [ 3754 - "windows-sys", 3683 + "windows-sys 0.52.0", 3755 3684 ] 3756 3685 3757 3686 [[package]] ··· 3771 3700 3772 3701 [[package]] 3773 3702 name = "sct" 3774 - version = "0.7.0" 3703 + version = "0.7.1" 3775 3704 source = "registry+https://github.com/rust-lang/crates.io-index" 3776 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3705 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3777 3706 dependencies = [ 3778 3707 "ring", 3779 3708 "untrusted", ··· 3804 3733 3805 3734 [[package]] 3806 3735 name = "semver" 3807 - version = "1.0.19" 3736 + version = "1.0.21" 3808 3737 source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" 3738 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 3810 3739 dependencies = [ 3811 3740 "serde", 3812 3741 ] 3813 3742 3814 3743 [[package]] 3815 3744 name = "serde" 3816 - version = "1.0.188" 3745 + version = "1.0.196" 3817 3746 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 3747 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 3819 3748 dependencies = [ 3820 3749 "serde_derive", 3821 3750 ] ··· 3832 3761 3833 3762 [[package]] 3834 3763 name = "serde_derive" 3835 - version = "1.0.188" 3764 + version = "1.0.196" 3836 3765 source = "registry+https://github.com/rust-lang/crates.io-index" 3837 - checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 3766 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 3838 3767 dependencies = [ 3839 3768 "proc-macro2", 3840 3769 "quote", 3841 - "syn 2.0.37", 3770 + "syn 2.0.48", 3842 3771 ] 3843 3772 3844 3773 [[package]] 3845 3774 name = "serde_json" 3846 - version = "1.0.107" 3775 + version = "1.0.113" 3847 3776 source = "registry+https://github.com/rust-lang/crates.io-index" 3848 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 3777 + checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 3849 3778 dependencies = [ 3850 3779 "itoa", 3851 3780 "ryu", ··· 3854 3783 3855 3784 [[package]] 3856 3785 name = "serde_repr" 3857 - version = "0.1.16" 3786 + version = "0.1.18" 3858 3787 source = "registry+https://github.com/rust-lang/crates.io-index" 3859 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 3788 + checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 3860 3789 dependencies = [ 3861 3790 "proc-macro2", 3862 3791 "quote", 3863 - "syn 2.0.37", 3792 + "syn 2.0.48", 3864 3793 ] 3865 3794 3866 3795 [[package]] 3867 3796 name = "serde_spanned" 3868 - version = "0.6.3" 3797 + version = "0.6.5" 3869 3798 source = "registry+https://github.com/rust-lang/crates.io-index" 3870 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 3799 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 3871 3800 dependencies = [ 3872 3801 "serde", 3873 3802 ] ··· 3886 3815 3887 3816 [[package]] 3888 3817 name = "serde_yaml" 3889 - version = "0.8.26" 3818 + version = "0.9.31" 3890 3819 source = "registry+https://github.com/rust-lang/crates.io-index" 3891 - checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 3820 + checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" 3892 3821 dependencies = [ 3893 - "indexmap 1.9.3", 3822 + "indexmap", 3823 + "itoa", 3894 3824 "ryu", 3895 3825 "serde", 3896 - "yaml-rust", 3826 + "unsafe-libyaml", 3897 3827 ] 3898 3828 3899 3829 [[package]] ··· 3933 3863 3934 3864 [[package]] 3935 3865 name = "shellexpand" 3936 - version = "2.1.2" 3866 + version = "3.1.0" 3937 3867 source = "registry+https://github.com/rust-lang/crates.io-index" 3938 - checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4" 3868 + checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" 3939 3869 dependencies = [ 3940 - "dirs 4.0.0", 3870 + "dirs", 3941 3871 ] 3942 3872 3943 3873 [[package]] ··· 3962 3892 checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3963 3893 3964 3894 [[package]] 3895 + name = "siphasher" 3896 + version = "1.0.0" 3897 + source = "registry+https://github.com/rust-lang/crates.io-index" 3898 + checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" 3899 + 3900 + [[package]] 3965 3901 name = "skeptic" 3966 3902 version = "0.13.7" 3967 3903 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3987 3923 3988 3924 [[package]] 3989 3925 name = "smallvec" 3990 - version = "1.11.1" 3926 + version = "1.13.1" 3991 3927 source = "registry+https://github.com/rust-lang/crates.io-index" 3992 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 3928 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 3993 3929 3994 3930 [[package]] 3995 3931 name = "socket2" 3996 - version = "0.4.9" 3932 + version = "0.4.10" 3997 3933 source = "registry+https://github.com/rust-lang/crates.io-index" 3998 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3934 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 3999 3935 dependencies = [ 4000 3936 "libc", 4001 3937 "winapi", ··· 4003 3939 4004 3940 [[package]] 4005 3941 name = "socket2" 4006 - version = "0.5.4" 3942 + version = "0.5.5" 4007 3943 source = "registry+https://github.com/rust-lang/crates.io-index" 4008 - checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 3944 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 4009 3945 dependencies = [ 4010 3946 "libc", 4011 - "windows-sys", 3947 + "windows-sys 0.48.0", 4012 3948 ] 4013 3949 4014 3950 [[package]] 4015 3951 name = "soup3" 4016 - version = "0.5.0" 3952 + version = "0.6.0" 4017 3953 source = "registry+https://github.com/rust-lang/crates.io-index" 4018 - checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 3954 + checksum = "3fb6bbb0e56d089517432ca8aac0879e5f343b309783384a7fdbdd6d5232e681" 4019 3955 dependencies = [ 4020 3956 "futures-channel", 4021 3957 "gio", ··· 4026 3962 4027 3963 [[package]] 4028 3964 name = "soup3-sys" 4029 - version = "0.5.0" 3965 + version = "0.6.0" 4030 3966 source = "registry+https://github.com/rust-lang/crates.io-index" 4031 - checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 3967 + checksum = "f9c6d7beef555a91c6129f5e71ecf4b6e9eac8b48914098d713b1537ebbf6917" 4032 3968 dependencies = [ 4033 3969 "gio-sys", 4034 3970 "glib-sys", ··· 4039 3975 4040 3976 [[package]] 4041 3977 name = "spin" 4042 - version = "0.5.2" 4043 - source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4045 - 4046 - [[package]] 4047 - name = "spin" 4048 3978 version = "0.9.8" 4049 3979 source = "registry+https://github.com/rust-lang/crates.io-index" 4050 3980 checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" ··· 4086 4016 4087 4017 [[package]] 4088 4018 name = "strsim" 4089 - version = "0.10.0" 4019 + version = "0.11.0" 4090 4020 source = "registry+https://github.com/rust-lang/crates.io-index" 4091 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4021 + checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 4092 4022 4093 4023 [[package]] 4094 4024 name = "syn" ··· 4103 4033 4104 4034 [[package]] 4105 4035 name = "syn" 4106 - version = "2.0.37" 4036 + version = "2.0.48" 4107 4037 source = "registry+https://github.com/rust-lang/crates.io-index" 4108 - checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" 4038 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 4109 4039 dependencies = [ 4110 4040 "proc-macro2", 4111 4041 "quote", ··· 4113 4043 ] 4114 4044 4115 4045 [[package]] 4046 + name = "sync_wrapper" 4047 + version = "0.1.2" 4048 + source = "registry+https://github.com/rust-lang/crates.io-index" 4049 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4050 + 4051 + [[package]] 4052 + name = "system-configuration" 4053 + version = "0.5.1" 4054 + source = "registry+https://github.com/rust-lang/crates.io-index" 4055 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 4056 + dependencies = [ 4057 + "bitflags 1.3.2", 4058 + "core-foundation", 4059 + "system-configuration-sys", 4060 + ] 4061 + 4062 + [[package]] 4063 + name = "system-configuration-sys" 4064 + version = "0.5.0" 4065 + source = "registry+https://github.com/rust-lang/crates.io-index" 4066 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 4067 + dependencies = [ 4068 + "core-foundation-sys", 4069 + "libc", 4070 + ] 4071 + 4072 + [[package]] 4116 4073 name = "system-deps" 4117 - version = "6.1.1" 4074 + version = "6.2.0" 4118 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4119 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 4076 + checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 4120 4077 dependencies = [ 4121 4078 "cfg-expr", 4122 4079 "heck", 4123 4080 "pkg-config", 4124 - "toml", 4081 + "toml 0.8.10", 4125 4082 "version-compare", 4126 4083 ] 4127 4084 ··· 4133 4090 4134 4091 [[package]] 4135 4092 name = "target-lexicon" 4136 - version = "0.12.11" 4093 + version = "0.12.13" 4137 4094 source = "registry+https://github.com/rust-lang/crates.io-index" 4138 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 4095 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 4139 4096 4140 4097 [[package]] 4141 4098 name = "temp-dir" 4142 - version = "0.1.11" 4099 + version = "0.1.12" 4143 4100 source = "registry+https://github.com/rust-lang/crates.io-index" 4144 - checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" 4101 + checksum = "dd16aa9ffe15fe021c6ee3766772132c6e98dfa395a167e16864f61a9cfb71d6" 4145 4102 4146 4103 [[package]] 4147 4104 name = "tempfile" 4148 - version = "3.8.0" 4105 + version = "3.10.0" 4149 4106 source = "registry+https://github.com/rust-lang/crates.io-index" 4150 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 4107 + checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" 4151 4108 dependencies = [ 4152 4109 "cfg-if", 4153 4110 "fastrand 2.0.1", 4154 - "redox_syscall 0.3.5", 4155 - "rustix 0.38.14", 4156 - "windows-sys", 4111 + "rustix 0.38.31", 4112 + "windows-sys 0.52.0", 4157 4113 ] 4158 4114 4159 4115 [[package]] ··· 4169 4125 4170 4126 [[package]] 4171 4127 name = "termcolor" 4172 - version = "1.3.0" 4128 + version = "1.4.1" 4173 4129 source = "registry+https://github.com/rust-lang/crates.io-index" 4174 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 4130 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4175 4131 dependencies = [ 4176 4132 "winapi-util", 4177 4133 ] 4178 4134 4179 4135 [[package]] 4180 4136 name = "thiserror" 4181 - version = "1.0.49" 4137 + version = "1.0.57" 4182 4138 source = "registry+https://github.com/rust-lang/crates.io-index" 4183 - checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 4139 + checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 4184 4140 dependencies = [ 4185 4141 "thiserror-impl", 4186 4142 ] 4187 4143 4188 4144 [[package]] 4189 4145 name = "thiserror-impl" 4190 - version = "1.0.49" 4146 + version = "1.0.57" 4191 4147 source = "registry+https://github.com/rust-lang/crates.io-index" 4192 - checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 4148 + checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 4193 4149 dependencies = [ 4194 4150 "proc-macro2", 4195 4151 "quote", 4196 - "syn 2.0.37", 4152 + "syn 2.0.48", 4197 4153 ] 4198 4154 4199 4155 [[package]] 4200 4156 name = "thread-id" 4201 - version = "4.2.0" 4157 + version = "4.2.1" 4202 4158 source = "registry+https://github.com/rust-lang/crates.io-index" 4203 - checksum = "79474f573561cdc4871a0de34a51c92f7f5a56039113fbb5b9c9f96bdb756669" 4159 + checksum = "f0ec81c46e9eb50deaa257be2f148adf052d1fb7701cfd55ccfab2525280b70b" 4204 4160 dependencies = [ 4205 4161 "libc", 4206 - "redox_syscall 0.2.16", 4207 4162 "winapi", 4208 4163 ] 4209 4164 4210 4165 [[package]] 4211 4166 name = "tiff" 4212 - version = "0.9.0" 4167 + version = "0.9.1" 4213 4168 source = "registry+https://github.com/rust-lang/crates.io-index" 4214 - checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 4169 + checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 4215 4170 dependencies = [ 4216 4171 "flate2", 4217 4172 "jpeg-decoder", ··· 4231 4186 4232 4187 [[package]] 4233 4188 name = "time" 4234 - version = "0.3.29" 4189 + version = "0.3.34" 4235 4190 source = "registry+https://github.com/rust-lang/crates.io-index" 4236 - checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" 4191 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 4237 4192 dependencies = [ 4238 4193 "deranged", 4239 4194 "itoa", 4195 + "num-conv", 4196 + "powerfmt", 4240 4197 "serde", 4241 4198 "time-core", 4242 4199 "time-macros", ··· 4250 4207 4251 4208 [[package]] 4252 4209 name = "time-macros" 4253 - version = "0.2.15" 4210 + version = "0.2.17" 4254 4211 source = "registry+https://github.com/rust-lang/crates.io-index" 4255 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 4212 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 4256 4213 dependencies = [ 4214 + "num-conv", 4257 4215 "time-core", 4258 4216 ] 4259 4217 ··· 4274 4232 4275 4233 [[package]] 4276 4234 name = "tokio" 4277 - version = "1.32.0" 4235 + version = "1.36.0" 4278 4236 source = "registry+https://github.com/rust-lang/crates.io-index" 4279 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 4237 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 4280 4238 dependencies = [ 4281 4239 "backtrace", 4282 4240 "bytes", ··· 4284 4242 "mio", 4285 4243 "num_cpus", 4286 4244 "pin-project-lite", 4287 - "socket2 0.5.4", 4245 + "socket2 0.5.5", 4288 4246 "tokio-macros", 4289 - "windows-sys", 4247 + "windows-sys 0.48.0", 4290 4248 ] 4291 4249 4292 4250 [[package]] 4293 4251 name = "tokio-macros" 4294 - version = "2.1.0" 4252 + version = "2.2.0" 4295 4253 source = "registry+https://github.com/rust-lang/crates.io-index" 4296 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4254 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4297 4255 dependencies = [ 4298 4256 "proc-macro2", 4299 4257 "quote", 4300 - "syn 2.0.37", 4258 + "syn 2.0.48", 4301 4259 ] 4302 4260 4303 4261 [[package]] ··· 4334 4292 4335 4293 [[package]] 4336 4294 name = "tokio-util" 4337 - version = "0.7.9" 4295 + version = "0.7.10" 4338 4296 source = "registry+https://github.com/rust-lang/crates.io-index" 4339 - checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" 4297 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 4340 4298 dependencies = [ 4341 4299 "bytes", 4342 4300 "futures-core", ··· 4355 4313 "serde", 4356 4314 "serde_spanned", 4357 4315 "toml_datetime", 4358 - "toml_edit", 4316 + "toml_edit 0.19.15", 4317 + ] 4318 + 4319 + [[package]] 4320 + name = "toml" 4321 + version = "0.8.10" 4322 + source = "registry+https://github.com/rust-lang/crates.io-index" 4323 + checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" 4324 + dependencies = [ 4325 + "serde", 4326 + "serde_spanned", 4327 + "toml_datetime", 4328 + "toml_edit 0.22.4", 4359 4329 ] 4360 4330 4361 4331 [[package]] 4362 4332 name = "toml_datetime" 4363 - version = "0.6.3" 4333 + version = "0.6.5" 4364 4334 source = "registry+https://github.com/rust-lang/crates.io-index" 4365 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4335 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 4366 4336 dependencies = [ 4367 4337 "serde", 4368 4338 ] ··· 4373 4343 source = "registry+https://github.com/rust-lang/crates.io-index" 4374 4344 checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4375 4345 dependencies = [ 4376 - "indexmap 2.0.1", 4346 + "indexmap", 4347 + "serde", 4348 + "serde_spanned", 4349 + "toml_datetime", 4350 + "winnow", 4351 + ] 4352 + 4353 + [[package]] 4354 + name = "toml_edit" 4355 + version = "0.21.1" 4356 + source = "registry+https://github.com/rust-lang/crates.io-index" 4357 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 4358 + dependencies = [ 4359 + "indexmap", 4360 + "toml_datetime", 4361 + "winnow", 4362 + ] 4363 + 4364 + [[package]] 4365 + name = "toml_edit" 4366 + version = "0.22.4" 4367 + source = "registry+https://github.com/rust-lang/crates.io-index" 4368 + checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951" 4369 + dependencies = [ 4370 + "indexmap", 4377 4371 "serde", 4378 4372 "serde_spanned", 4379 4373 "toml_datetime", ··· 4388 4382 4389 4383 [[package]] 4390 4384 name = "tracing" 4391 - version = "0.1.37" 4385 + version = "0.1.40" 4392 4386 source = "registry+https://github.com/rust-lang/crates.io-index" 4393 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4387 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4394 4388 dependencies = [ 4395 - "cfg-if", 4396 4389 "pin-project-lite", 4397 4390 "tracing-attributes", 4398 4391 "tracing-core", ··· 4400 4393 4401 4394 [[package]] 4402 4395 name = "tracing-attributes" 4403 - version = "0.1.26" 4396 + version = "0.1.27" 4404 4397 source = "registry+https://github.com/rust-lang/crates.io-index" 4405 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 4398 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4406 4399 dependencies = [ 4407 4400 "proc-macro2", 4408 4401 "quote", 4409 - "syn 2.0.37", 4402 + "syn 2.0.48", 4410 4403 ] 4411 4404 4412 4405 [[package]] 4413 4406 name = "tracing-core" 4414 - version = "0.1.31" 4407 + version = "0.1.32" 4415 4408 source = "registry+https://github.com/rust-lang/crates.io-index" 4416 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4409 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4417 4410 dependencies = [ 4418 4411 "once_cell", 4419 4412 ] 4420 4413 4421 4414 [[package]] 4422 4415 name = "triomphe" 4423 - version = "0.1.9" 4416 + version = "0.1.11" 4424 4417 source = "registry+https://github.com/rust-lang/crates.io-index" 4425 - checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" 4418 + checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" 4426 4419 4427 4420 [[package]] 4428 4421 name = "trust-dns-proto" 4429 - version = "0.22.0" 4422 + version = "0.23.2" 4430 4423 source = "registry+https://github.com/rust-lang/crates.io-index" 4431 - checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" 4424 + checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" 4432 4425 dependencies = [ 4433 4426 "async-trait", 4434 4427 "cfg-if", ··· 4437 4430 "futures-channel", 4438 4431 "futures-io", 4439 4432 "futures-util", 4440 - "idna 0.2.3", 4433 + "idna 0.4.0", 4441 4434 "ipnet", 4442 - "lazy_static", 4443 - "rand 0.8.5", 4435 + "once_cell", 4436 + "rand", 4444 4437 "smallvec", 4445 4438 "thiserror", 4446 4439 "tinyvec", ··· 4451 4444 4452 4445 [[package]] 4453 4446 name = "trust-dns-resolver" 4454 - version = "0.22.0" 4447 + version = "0.23.2" 4455 4448 source = "registry+https://github.com/rust-lang/crates.io-index" 4456 - checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" 4449 + checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" 4457 4450 dependencies = [ 4458 4451 "cfg-if", 4459 4452 "futures-util", 4460 4453 "ipconfig", 4461 - "lazy_static", 4462 4454 "lru-cache", 4455 + "once_cell", 4463 4456 "parking_lot", 4457 + "rand", 4464 4458 "resolv-conf", 4465 4459 "smallvec", 4466 4460 "thiserror", ··· 4471 4465 4472 4466 [[package]] 4473 4467 name = "try-lock" 4474 - version = "0.2.4" 4468 + version = "0.2.5" 4475 4469 source = "registry+https://github.com/rust-lang/crates.io-index" 4476 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4470 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4477 4471 4478 4472 [[package]] 4479 4473 name = "typemap-ors" ··· 4492 4486 4493 4487 [[package]] 4494 4488 name = "uds_windows" 4495 - version = "1.0.2" 4489 + version = "1.1.0" 4496 4490 source = "registry+https://github.com/rust-lang/crates.io-index" 4497 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 4491 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 4498 4492 dependencies = [ 4493 + "memoffset 0.9.0", 4499 4494 "tempfile", 4500 4495 "winapi", 4501 4496 ] ··· 4511 4506 4512 4507 [[package]] 4513 4508 name = "unicode-bidi" 4514 - version = "0.3.13" 4509 + version = "0.3.15" 4515 4510 source = "registry+https://github.com/rust-lang/crates.io-index" 4516 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4511 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 4517 4512 4518 4513 [[package]] 4519 4514 name = "unicode-ident" ··· 4540 4535 ] 4541 4536 4542 4537 [[package]] 4538 + name = "unsafe-libyaml" 4539 + version = "0.2.10" 4540 + source = "registry+https://github.com/rust-lang/crates.io-index" 4541 + checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" 4542 + 4543 + [[package]] 4543 4544 name = "untrusted" 4544 - version = "0.7.1" 4545 + version = "0.9.0" 4545 4546 source = "registry+https://github.com/rust-lang/crates.io-index" 4546 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4547 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4547 4548 4548 4549 [[package]] 4549 4550 name = "url" 4550 - version = "2.4.1" 4551 + version = "2.5.0" 4551 4552 source = "registry+https://github.com/rust-lang/crates.io-index" 4552 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4553 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4553 4554 dependencies = [ 4554 4555 "form_urlencoded", 4555 - "idna 0.4.0", 4556 + "idna 0.5.0", 4556 4557 "percent-encoding", 4557 4558 "serde", 4558 4559 ] ··· 4571 4572 4572 4573 [[package]] 4573 4574 name = "uuid" 4574 - version = "1.4.1" 4575 + version = "1.7.0" 4575 4576 source = "registry+https://github.com/rust-lang/crates.io-index" 4576 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 4577 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 4577 4578 dependencies = [ 4578 - "getrandom 0.2.10", 4579 + "getrandom", 4579 4580 ] 4580 - 4581 - [[package]] 4582 - name = "value-bag" 4583 - version = "1.4.1" 4584 - source = "registry+https://github.com/rust-lang/crates.io-index" 4585 - checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3" 4586 4581 4587 4582 [[package]] 4588 4583 name = "vcpkg" ··· 4629 4624 4630 4625 [[package]] 4631 4626 name = "wasi" 4632 - version = "0.9.0+wasi-snapshot-preview1" 4633 - source = "registry+https://github.com/rust-lang/crates.io-index" 4634 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4635 - 4636 - [[package]] 4637 - name = "wasi" 4638 4627 version = "0.11.0+wasi-snapshot-preview1" 4639 4628 source = "registry+https://github.com/rust-lang/crates.io-index" 4640 4629 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4641 4630 4642 4631 [[package]] 4643 4632 name = "wasm-bindgen" 4644 - version = "0.2.87" 4633 + version = "0.2.91" 4645 4634 source = "registry+https://github.com/rust-lang/crates.io-index" 4646 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 4635 + checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 4647 4636 dependencies = [ 4648 4637 "cfg-if", 4649 4638 "wasm-bindgen-macro", ··· 4651 4640 4652 4641 [[package]] 4653 4642 name = "wasm-bindgen-backend" 4654 - version = "0.2.87" 4643 + version = "0.2.91" 4655 4644 source = "registry+https://github.com/rust-lang/crates.io-index" 4656 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 4645 + checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 4657 4646 dependencies = [ 4658 4647 "bumpalo", 4659 4648 "log", 4660 4649 "once_cell", 4661 4650 "proc-macro2", 4662 4651 "quote", 4663 - "syn 2.0.37", 4652 + "syn 2.0.48", 4664 4653 "wasm-bindgen-shared", 4665 4654 ] 4666 4655 4667 4656 [[package]] 4668 4657 name = "wasm-bindgen-futures" 4669 - version = "0.4.37" 4658 + version = "0.4.41" 4670 4659 source = "registry+https://github.com/rust-lang/crates.io-index" 4671 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 4660 + checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 4672 4661 dependencies = [ 4673 4662 "cfg-if", 4674 4663 "js-sys", ··· 4678 4667 4679 4668 [[package]] 4680 4669 name = "wasm-bindgen-macro" 4681 - version = "0.2.87" 4670 + version = "0.2.91" 4682 4671 source = "registry+https://github.com/rust-lang/crates.io-index" 4683 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 4672 + checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 4684 4673 dependencies = [ 4685 4674 "quote", 4686 4675 "wasm-bindgen-macro-support", ··· 4688 4677 4689 4678 [[package]] 4690 4679 name = "wasm-bindgen-macro-support" 4691 - version = "0.2.87" 4680 + version = "0.2.91" 4692 4681 source = "registry+https://github.com/rust-lang/crates.io-index" 4693 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 4682 + checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 4694 4683 dependencies = [ 4695 4684 "proc-macro2", 4696 4685 "quote", 4697 - "syn 2.0.37", 4686 + "syn 2.0.48", 4698 4687 "wasm-bindgen-backend", 4699 4688 "wasm-bindgen-shared", 4700 4689 ] 4701 4690 4702 4691 [[package]] 4703 4692 name = "wasm-bindgen-shared" 4704 - version = "0.2.87" 4693 + version = "0.2.91" 4705 4694 source = "registry+https://github.com/rust-lang/crates.io-index" 4706 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 4695 + checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 4707 4696 4708 4697 [[package]] 4709 4698 name = "wasm-streams" 4710 - version = "0.3.0" 4699 + version = "0.4.0" 4711 4700 source = "registry+https://github.com/rust-lang/crates.io-index" 4712 - checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 4701 + checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 4713 4702 dependencies = [ 4714 4703 "futures-util", 4715 4704 "js-sys", ··· 4720 4709 4721 4710 [[package]] 4722 4711 name = "web-sys" 4723 - version = "0.3.64" 4712 + version = "0.3.68" 4724 4713 source = "registry+https://github.com/rust-lang/crates.io-index" 4725 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 4714 + checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 4726 4715 dependencies = [ 4727 4716 "js-sys", 4728 4717 "wasm-bindgen", ··· 4730 4719 4731 4720 [[package]] 4732 4721 name = "webkit6" 4733 - version = "0.2.0" 4722 + version = "0.3.0" 4734 4723 source = "registry+https://github.com/rust-lang/crates.io-index" 4735 - checksum = "111922d85b0f570bc1468d190037299fd0eca36f24147f74c1ad20fae5e21370" 4724 + checksum = "9d82bda18116290a9effc1e0f8dbd00236807bf4a9b990b9484bad5ba852fc06" 4736 4725 dependencies = [ 4737 4726 "gdk4", 4738 4727 "gio", ··· 4740 4729 "gtk4", 4741 4730 "javascriptcore6", 4742 4731 "libc", 4743 - "once_cell", 4744 4732 "soup3", 4745 4733 "webkit6-sys", 4746 4734 ] 4747 4735 4748 4736 [[package]] 4749 4737 name = "webkit6-sys" 4750 - version = "0.2.0" 4738 + version = "0.3.0" 4751 4739 source = "registry+https://github.com/rust-lang/crates.io-index" 4752 - checksum = "cfc4fbaf44fd645711e36a97437443e7f06b401fb66ccc3e5ae17eeb6f5cb681" 4740 + checksum = "6c459941f1b22750cbda435ede3f94ed8e8dd8c8608d324ecb0b9a8556b49abd" 4753 4741 dependencies = [ 4754 4742 "gdk4-sys", 4755 4743 "gio-sys", ··· 4764 4752 4765 4753 [[package]] 4766 4754 name = "webpki-roots" 4767 - version = "0.25.2" 4755 + version = "0.25.4" 4768 4756 source = "registry+https://github.com/rust-lang/crates.io-index" 4769 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 4757 + checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 4770 4758 4771 4759 [[package]] 4772 4760 name = "weezl" 4773 - version = "0.1.7" 4761 + version = "0.1.8" 4774 4762 source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 4763 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 4776 4764 4777 4765 [[package]] 4778 4766 name = "widestring" ··· 4812 4800 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4813 4801 4814 4802 [[package]] 4815 - name = "windows" 4816 - version = "0.48.0" 4803 + name = "windows-core" 4804 + version = "0.52.0" 4817 4805 source = "registry+https://github.com/rust-lang/crates.io-index" 4818 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 4806 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4819 4807 dependencies = [ 4820 - "windows-targets", 4808 + "windows-targets 0.52.0", 4821 4809 ] 4822 4810 4823 4811 [[package]] ··· 4826 4814 source = "registry+https://github.com/rust-lang/crates.io-index" 4827 4815 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4828 4816 dependencies = [ 4829 - "windows-targets", 4817 + "windows-targets 0.48.5", 4818 + ] 4819 + 4820 + [[package]] 4821 + name = "windows-sys" 4822 + version = "0.52.0" 4823 + source = "registry+https://github.com/rust-lang/crates.io-index" 4824 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4825 + dependencies = [ 4826 + "windows-targets 0.52.0", 4830 4827 ] 4831 4828 4832 4829 [[package]] ··· 4835 4832 source = "registry+https://github.com/rust-lang/crates.io-index" 4836 4833 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4837 4834 dependencies = [ 4838 - "windows_aarch64_gnullvm", 4839 - "windows_aarch64_msvc", 4840 - "windows_i686_gnu", 4841 - "windows_i686_msvc", 4842 - "windows_x86_64_gnu", 4843 - "windows_x86_64_gnullvm", 4844 - "windows_x86_64_msvc", 4835 + "windows_aarch64_gnullvm 0.48.5", 4836 + "windows_aarch64_msvc 0.48.5", 4837 + "windows_i686_gnu 0.48.5", 4838 + "windows_i686_msvc 0.48.5", 4839 + "windows_x86_64_gnu 0.48.5", 4840 + "windows_x86_64_gnullvm 0.48.5", 4841 + "windows_x86_64_msvc 0.48.5", 4842 + ] 4843 + 4844 + [[package]] 4845 + name = "windows-targets" 4846 + version = "0.52.0" 4847 + source = "registry+https://github.com/rust-lang/crates.io-index" 4848 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 4849 + dependencies = [ 4850 + "windows_aarch64_gnullvm 0.52.0", 4851 + "windows_aarch64_msvc 0.52.0", 4852 + "windows_i686_gnu 0.52.0", 4853 + "windows_i686_msvc 0.52.0", 4854 + "windows_x86_64_gnu 0.52.0", 4855 + "windows_x86_64_gnullvm 0.52.0", 4856 + "windows_x86_64_msvc 0.52.0", 4845 4857 ] 4846 4858 4847 4859 [[package]] ··· 4851 4863 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4852 4864 4853 4865 [[package]] 4866 + name = "windows_aarch64_gnullvm" 4867 + version = "0.52.0" 4868 + source = "registry+https://github.com/rust-lang/crates.io-index" 4869 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 4870 + 4871 + [[package]] 4854 4872 name = "windows_aarch64_msvc" 4855 4873 version = "0.48.5" 4856 4874 source = "registry+https://github.com/rust-lang/crates.io-index" 4857 4875 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4876 + 4877 + [[package]] 4878 + name = "windows_aarch64_msvc" 4879 + version = "0.52.0" 4880 + source = "registry+https://github.com/rust-lang/crates.io-index" 4881 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 4858 4882 4859 4883 [[package]] 4860 4884 name = "windows_i686_gnu" ··· 4863 4887 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4864 4888 4865 4889 [[package]] 4890 + name = "windows_i686_gnu" 4891 + version = "0.52.0" 4892 + source = "registry+https://github.com/rust-lang/crates.io-index" 4893 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 4894 + 4895 + [[package]] 4866 4896 name = "windows_i686_msvc" 4867 4897 version = "0.48.5" 4868 4898 source = "registry+https://github.com/rust-lang/crates.io-index" 4869 4899 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4870 4900 4871 4901 [[package]] 4902 + name = "windows_i686_msvc" 4903 + version = "0.52.0" 4904 + source = "registry+https://github.com/rust-lang/crates.io-index" 4905 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4906 + 4907 + [[package]] 4872 4908 name = "windows_x86_64_gnu" 4873 4909 version = "0.48.5" 4874 4910 source = "registry+https://github.com/rust-lang/crates.io-index" 4875 4911 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4876 4912 4877 4913 [[package]] 4914 + name = "windows_x86_64_gnu" 4915 + version = "0.52.0" 4916 + source = "registry+https://github.com/rust-lang/crates.io-index" 4917 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4918 + 4919 + [[package]] 4878 4920 name = "windows_x86_64_gnullvm" 4879 4921 version = "0.48.5" 4880 4922 source = "registry+https://github.com/rust-lang/crates.io-index" 4881 4923 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4882 4924 4883 4925 [[package]] 4926 + name = "windows_x86_64_gnullvm" 4927 + version = "0.52.0" 4928 + source = "registry+https://github.com/rust-lang/crates.io-index" 4929 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4930 + 4931 + [[package]] 4884 4932 name = "windows_x86_64_msvc" 4885 4933 version = "0.48.5" 4886 4934 source = "registry+https://github.com/rust-lang/crates.io-index" 4887 4935 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4888 4936 4889 4937 [[package]] 4938 + name = "windows_x86_64_msvc" 4939 + version = "0.52.0" 4940 + source = "registry+https://github.com/rust-lang/crates.io-index" 4941 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4942 + 4943 + [[package]] 4890 4944 name = "winnow" 4891 - version = "0.5.15" 4945 + version = "0.5.39" 4892 4946 source = "registry+https://github.com/rust-lang/crates.io-index" 4893 - checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 4947 + checksum = "5389a154b01683d28c77f8f68f49dea75f0a4da32557a58f68ee51ebba472d29" 4894 4948 dependencies = [ 4895 4949 "memchr", 4896 4950 ] ··· 4902 4956 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4903 4957 dependencies = [ 4904 4958 "cfg-if", 4905 - "windows-sys", 4959 + "windows-sys 0.48.0", 4906 4960 ] 4907 4961 4908 4962 [[package]] 4909 4963 name = "xdg-home" 4910 - version = "1.0.0" 4964 + version = "1.1.0" 4911 4965 source = "registry+https://github.com/rust-lang/crates.io-index" 4912 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 4966 + checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" 4913 4967 dependencies = [ 4914 - "nix", 4968 + "libc", 4915 4969 "winapi", 4916 4970 ] 4917 4971 ··· 4934 4988 4935 4989 [[package]] 4936 4990 name = "xmlparser" 4937 - version = "0.13.5" 4991 + version = "0.13.6" 4938 4992 source = "registry+https://github.com/rust-lang/crates.io-index" 4939 - checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" 4993 + checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 4940 4994 4941 4995 [[package]] 4942 4996 name = "xmltree" ··· 4948 5002 ] 4949 5003 4950 5004 [[package]] 4951 - name = "yaml-rust" 4952 - version = "0.4.5" 4953 - source = "registry+https://github.com/rust-lang/crates.io-index" 4954 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 4955 - dependencies = [ 4956 - "linked-hash-map", 4957 - ] 4958 - 4959 - [[package]] 4960 5005 name = "zbus" 4961 - version = "3.14.1" 5006 + version = "3.15.0" 4962 5007 source = "registry+https://github.com/rust-lang/crates.io-index" 4963 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 5008 + checksum = "c45d06ae3b0f9ba1fb2671268b975557d8f5a84bb5ec6e43964f87e763d8bca8" 4964 5009 dependencies = [ 4965 5010 "async-broadcast", 4966 5011 "async-executor", 4967 - "async-fs", 4968 - "async-io", 4969 - "async-lock", 5012 + "async-fs 1.6.0", 5013 + "async-io 1.13.0", 5014 + "async-lock 2.8.0", 4970 5015 "async-process", 4971 5016 "async-recursion", 4972 5017 "async-task", ··· 4983 5028 "nix", 4984 5029 "once_cell", 4985 5030 "ordered-stream", 4986 - "rand 0.8.5", 5031 + "rand", 4987 5032 "serde", 4988 5033 "serde_repr", 4989 5034 "sha1", ··· 4999 5044 5000 5045 [[package]] 5001 5046 name = "zbus_macros" 5002 - version = "3.14.1" 5047 + version = "3.15.0" 5003 5048 source = "registry+https://github.com/rust-lang/crates.io-index" 5004 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 5049 + checksum = "b4a1ba45ed0ad344b85a2bb5a1fe9830aed23d67812ea39a586e7d0136439c7d" 5005 5050 dependencies = [ 5006 - "proc-macro-crate", 5051 + "proc-macro-crate 1.3.1", 5007 5052 "proc-macro2", 5008 5053 "quote", 5009 5054 "regex", ··· 5052 5097 source = "registry+https://github.com/rust-lang/crates.io-index" 5053 5098 checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 5054 5099 dependencies = [ 5055 - "proc-macro-crate", 5100 + "proc-macro-crate 1.3.1", 5056 5101 "proc-macro2", 5057 5102 "quote", 5058 5103 "syn 1.0.109",
+3 -4
pkgs/applications/networking/feedreaders/newsflash/default.nix
··· 25 25 26 26 stdenv.mkDerivation (finalAttrs: { 27 27 pname = "newsflash"; 28 - version = "3.0.2"; 28 + version = "3.1.1"; 29 29 30 30 src = fetchFromGitLab { 31 31 owner = "news-flash"; 32 32 repo = "news_flash_gtk"; 33 33 rev = "refs/tags/v.${finalAttrs.version}"; 34 - sha256 = "sha256-tJKr2bGkdpEb+25eN0ZfHhEDl5Zdf8fdaC/rNMbH8Ws="; 34 + hash = "sha256-ivdrbGtNa4/o+tXBQF9Ef17iNEUVFNPEXw1XpYxmRoQ="; 35 35 }; 36 36 37 37 cargoDeps = rustPlatform.importCargoLock { 38 38 lockFile = ./Cargo.lock; 39 39 outputHashes = { 40 - "news-flash-2.3.0-alpha.0" = "sha256-H0osT7IrPbQ3RQYJZE7J+n7u4UCT86LAybUF3vvIXkA="; 40 + "news-flash-2.3.0-alpha.0" = "sha256-7x/Q/aR+h7zkZYNXaDz9qQ7Ve4Hqz17dIY6wWGMlH74="; 41 41 "newsblur_api-0.2.0" = "sha256-eysCB19znQF8mRwQ64nSp6KuvJ1Trot4g4WCdQDedo8="; 42 42 "article_scraper-2.0.0" = "sha256-FnOmrZyYewOuU8Au7fhmSJHN7UPCx/CxBV8UtSHattU="; 43 - "commafeed_api-0.1.0" = "sha256-69UAmyUm0WG3qPoWZw4PekXh1RjIP5l3dx3gjWfxJDQ="; 44 43 }; 45 44 }; 46 45
+9 -8
pkgs/applications/networking/feedreaders/newsflash/no-post-install.patch
··· 1 1 diff --git a/meson.build b/meson.build 2 - index 1d7089c..1952e7f 100644 2 + index e554ddd7..55a5048a 100644 3 3 --- a/meson.build 4 4 +++ b/meson.build 5 - @@ -58,8 +58,8 @@ meson.add_dist_script( 5 + @@ -56,10 +56,3 @@ meson.add_dist_script( 6 + subdir('data') 7 + subdir('po') 6 8 subdir('src') 7 - 8 - gnome.post_install( 9 + - 10 + -gnome.post_install( 9 11 - gtk_update_icon_cache: true, 10 - + gtk_update_icon_cache: false, 11 - glib_compile_schemas: false, 12 + - glib_compile_schemas: false, 12 13 - update_desktop_database: true, 13 - + update_desktop_database: false, 14 - ) 14 + -) 15 + -
+2 -2
pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "teams-for-linux"; 22 - version = "1.4.10"; 22 + version = "1.4.11"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "IsmaelMartinez"; 26 26 repo = "teams-for-linux"; 27 27 rev = "v${finalAttrs.version}"; 28 - hash = "sha256-dR9YJJBBxvnJkD42+MwIql3B1dlA6WUSLJ//lW22mmc="; 28 + hash = "sha256-vjxbWOaUanYXalGVDgX+sjsrz5Cn1yGBkBs9B8VGrDQ="; 29 29 }; 30 30 31 31 offlineCache = fetchYarnDeps {
+3 -3
pkgs/applications/radio/chirp/default.nix
··· 9 9 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "chirp"; 12 - version = "unstable-2023-06-02"; 12 + version = "unstable-2024-02-08"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kk7ds"; 16 16 repo = "chirp"; 17 - rev = "72789c3652c332dc68ba694f8f8f005913fe5c95"; 18 - hash = "sha256-WQwCX7h9BFLdYOBVVntxQ6g4t3j7QLfNmlHVLzlRh7U="; 17 + rev = "902043a937ee3611744f2a4e35cd902c7b0a8d0b"; 18 + hash = "sha256-oDUtR1xD73rfBRKkbE1f68siO/4oxoLxw16w1qa9fEo="; 19 19 }; 20 20 buildInputs = [ 21 21 glib
+7 -1
pkgs/applications/science/logic/stp/default.nix
··· 11 11 rev = version; 12 12 sha256 = "1yg2v4wmswh1sigk47drwsxyayr472mf4i47lqmlcgn9hhbx1q87"; 13 13 }; 14 + patches = [ 15 + # Fix missing type declaration 16 + # due to undeterminisitic compilation 17 + # of circularly dependent headers 18 + ./stdint.patch 19 + ]; 14 20 15 21 postPatch = '' 16 22 # Upstream fix for gcc-13 support: ··· 34 40 35 41 meta = with lib; { 36 42 description = "Simple Theorem Prover"; 37 - maintainers = with maintainers; [ ]; 43 + maintainers = with maintainers; [ McSinyx ]; 38 44 platforms = platforms.linux; 39 45 license = licenses.mit; 40 46 };
+16
pkgs/applications/science/logic/stp/stdint.patch
··· 1 + diff --git a/include/stp/AST/ASTNode.h b/include/stp/AST/ASTNode.h 2 + index 91acd726182c..0a17db23ffbf 100644 3 + --- a/include/stp/AST/ASTNode.h 4 + +++ b/include/stp/AST/ASTNode.h 5 + @@ -24,9 +24,10 @@ THE SOFTWARE. 6 + #ifndef ASTNODE_H 7 + #define ASTNODE_H 8 + 9 + +#include "stp/AST/ASTInternal.h" 10 + #include "stp/AST/NodeFactory/HashingNodeFactory.h" 11 + +#include "stp/AST/UsefulDefs.h" 12 + #include "stp/Util/Attributes.h" 13 + -#include "ASTInternal.h" 14 + #include "stp/Globals/Globals.h" 15 + 16 + namespace stp
+5 -15
pkgs/applications/virtualization/crosvm/default.nix
··· 1 - { lib, rustPlatform, fetchgit, fetchpatch 1 + { lib, rustPlatform, fetchgit 2 2 , pkg-config, protobuf, python3, wayland-scanner 3 3 , libcap, libdrm, libepoxy, minijail, virglrenderer, wayland, wayland-protocols 4 4 }: 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "crosvm"; 8 - version = "120.0"; 8 + version = "121.3"; 9 9 10 10 src = fetchgit { 11 11 url = "https://chromium.googlesource.com/chromiumos/platform/crosvm"; 12 - rev = "0a9d1cb8be29e49c355ea8b18cd58506dbbaf6e5"; 13 - sha256 = "BbCcsxJU25VgWVday4rGPXaJSuAWebNGo3MiYPIBBto="; 12 + rev = "1e7125327a29b7b7a0593caf339d382728c55cf6"; 13 + sha256 = "Rjs46TtOhFZxqnEyqa4IyrRs7HnDZ/DJZ9DPEe7Oux0="; 14 14 fetchSubmodules = true; 15 15 }; 16 16 17 - patches = [ 18 - (fetchpatch { 19 - name = "test-page-size-fix.patch"; 20 - url = "https://chromium.googlesource.com/crosvm/crosvm/+/d9bc6e99ff5ac31d7d88b684c938af01a0872fc1%5E%21/?format=TEXT"; 21 - decode = "base64 -d"; 22 - includes = [ "src/crosvm/config.rs" ]; 23 - hash = "sha256-3gfNzp0WhtNr+8CWSISCJau208EMIo3RJhM+4SyeV3o="; 24 - }) 25 - ]; 26 - 27 17 separateDebugInfo = true; 28 18 29 - cargoHash = "sha256-YXfKZeRL3gfWztf36lVNbCCwUqW+0w3q7X7v0arCrvk="; 19 + cargoHash = "sha256-7nfeg/q8baLvB0CoRWKU60TRfLAaRkeRxGojPvKpOLs="; 30 20 31 21 nativeBuildInputs = [ 32 22 pkg-config protobuf python3 rustPlatform.bindgenHook wayland-scanner
+9 -1
pkgs/applications/virtualization/spike/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, dtc, pkgsCross }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, dtc, pkgsCross }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "spike"; ··· 10 10 rev = "v${version}"; 11 11 sha256 = "sha256-4D2Fezej0ioOOupw3kgMT5VLs+/jXQjwvek6v0AVMzI="; 12 12 }; 13 + 14 + patches = [ 15 + (fetchpatch { 16 + name = "fesvr-fix-compilation-with-gcc-13.patch"; 17 + url = "https://github.com/riscv-software-src/riscv-isa-sim/commit/0a7bb5403d0290cea8b2356179d92e4c61ffd51d.patch"; 18 + hash = "sha256-JUMTbGawvLkoOWKkruzLzUFQytVR3wqTlGu/eegRFEE="; 19 + }) 20 + ]; 13 21 14 22 nativeBuildInputs = [ dtc ]; 15 23 enableParallelBuilding = true;
+2 -2
pkgs/by-name/ap/apt/package.nix
··· 33 33 34 34 stdenv.mkDerivation (finalAttrs: { 35 35 pname = "apt"; 36 - version = "2.7.10"; 36 + version = "2.7.11"; 37 37 38 38 src = fetchurl { 39 39 url = "mirror://debian/pool/main/a/apt/apt_${finalAttrs.version}.tar.xz"; 40 - hash = "sha256-VUZsSEqmQJesIPU4tK4ELn9i5hFiBUGNEepPySIdgH4="; 40 + hash = "sha256-ZD5skWsyQSmGc5yStEwijMmQv0c/ikHWm5m1RdEMMqc="; 41 41 }; 42 42 43 43 # cycle detection; lib can't be split
+2 -2
pkgs/by-name/fa/fangfrisch/package.nix
··· 3 3 , fetchFromGitHub 4 4 }: 5 5 let 6 - version = "1.7.0"; 6 + version = "1.8.0"; 7 7 in 8 8 python3.pkgs.buildPythonApplication { 9 9 pname = "fangfrisch"; ··· 14 14 owner = "rseichter"; 15 15 repo = "fangfrisch"; 16 16 rev = "refs/tags/${version}"; 17 - hash = "sha256-s55W5/ppwr008ZIjDgQa90N+Ax9cwnvc+mXRetFdy+4="; 17 + hash = "sha256-lZDChg7og98LY20IaafVGM487F/anrVIBB39dp2r2g0="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+24
pkgs/by-name/js/jsoncons/package.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation (finalAttrs: { 4 + pname = "jsoncons"; 5 + version = "0.173.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "danielaparker"; 9 + repo = "jsoncons"; 10 + rev = "v${finalAttrs.version}"; 11 + hash = "sha256-Mf3kvfYAcwNrwbvGyMP6PQmk5e5Mz7b0qCZ6yi95ksk="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + meta = with lib; { 17 + description = "A C++, header-only library for constructing JSON and JSON-like data formats"; 18 + homepage = "https://danielaparker.github.io/jsoncons/"; 19 + changelog = "https://github.com/danielaparker/jsoncons/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 20 + license = licenses.boost; 21 + maintainers = with maintainers; [ sikmir ]; 22 + platforms = platforms.all; 23 + }; 24 + })
+30
pkgs/by-name/pl/plow/package.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub, testers, plow }: 2 + 3 + buildGoModule rec { 4 + pname = "plow"; 5 + version = "1.3.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "six-ddc"; 9 + repo = "plow"; 10 + rev = "refs/tags/v${version}"; 11 + hash = "sha256-TynFq7e4MtZlA5SmGMybhmCVw67yHYgZWffQjuyhTDA="; 12 + }; 13 + 14 + vendorHash = "sha256-t2lBPyCn8bu9hLsWmaCGir9egbX0mQR+8kB0RfY7nHE="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 + 18 + passthru.tests.version = testers.testVersion { 19 + package = plow; 20 + }; 21 + 22 + meta = with lib; { 23 + description = "A high-performance HTTP benchmarking tool that includes a real-time web UI and terminal display"; 24 + homepage = "https://github.com/six-ddc/plow"; 25 + changelog = "https://github.com/six-ddc/plow/releases/tag/v${version}"; 26 + license = licenses.asl20; 27 + maintainers = with maintainers; [ ecklf ]; 28 + mainProgram = "plow"; 29 + }; 30 + }
+2 -2
pkgs/development/interpreters/php/8.2.nix
··· 2 2 3 3 let 4 4 base = callPackage ./generic.nix (_args // { 5 - version = "8.2.15"; 6 - hash = "sha256-UMPiILeqY6hXFiM8kC60TMCkZn7QuDNXIq4jkbE1Xno="; 5 + version = "8.2.16"; 6 + hash = "sha256-JljBuJNatrU6fyCTVGAnYasHBm5mkgvEcriBX9G0P3E="; 7 7 }); 8 8 in 9 9 base.withExtensions ({ all, ... }: with all; ([
+2 -2
pkgs/development/interpreters/php/8.3.nix
··· 2 2 3 3 let 4 4 base = callPackage ./generic.nix (_args // { 5 - version = "8.3.2"; 6 - hash = "sha256-WCs8g3qNlS7//idKXklwbEOojBYoMMKow1gIn+dEkoQ="; 5 + version = "8.3.3"; 6 + hash = "sha256-qvthO6eVlKI/5yL46QrUczAGEL+A50uKpS2pysLcTio="; 7 7 }); 8 8 in 9 9 base.withExtensions ({ all, ... }: with all; ([
+2 -2
pkgs/development/libraries/qt-6/modules/qtbase.nix
··· 203 203 204 204 # https://bugreports.qt.io/browse/QTBUG-97568 205 205 postPatch = '' 206 - substituteInPlace src/corelib/CMakeLists.txt --replace /bin/ls ${coreutils}/bin/ls 206 + substituteInPlace src/corelib/CMakeLists.txt --replace-fail "/bin/ls" "${coreutils}/bin/ls" 207 207 '' + lib.optionalString stdenv.isDarwin '' 208 - substituteInPlace cmake/QtAutoDetect.cmake --replace "/usr/bin/xcrun" "${xcbuild}/bin/xcrun" 208 + substituteInPlace cmake/QtPublicAppleHelpers.cmake --replace-fail "/usr/bin/xcrun" "${xcbuild}/bin/xcrun" 209 209 ''; 210 210 211 211 fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh;
+10
pkgs/development/python-modules/grip/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 # Python bits: 4 5 , buildPythonPackage 5 6 , pytest ··· 24 25 rev = "v${version}"; 25 26 hash = "sha256-CHL2dy0H/i0pLo653F7aUHFvZHTeZA6jC/rwn1KrEW4="; 26 27 }; 28 + 29 + patches = [ 30 + # https://github.com/NixOS/nixpkgs/issues/288478 31 + (fetchpatch { 32 + name = "set-default-encoding.patch"; 33 + url = "https://github.com/joeyespo/grip/commit/2784eb2c1515f1cdb1554d049d48b3bff0f42085.patch"; 34 + hash = "sha256-veVJKJtt8mP1jmseRD7pNR3JgIxX1alYHyQok/rBpiQ="; 35 + }) 36 + ]; 27 37 28 38 nativeCheckInputs = [ pytest responses ]; 29 39
+14 -5
pkgs/development/python-modules/nix-prefetch-github/default.nix
··· 5 5 , which 6 6 , pythonOlder 7 7 , unittestCheckHook 8 + , sphinxHook 9 + , sphinx-argparse 10 + , parameterized 11 + , setuptools 8 12 }: 9 13 10 14 buildPythonPackage rec { 11 15 pname = "nix-prefetch-github"; 12 - version = "7.0.0"; 13 - format = "setuptools"; 16 + version = "7.1.0"; 17 + pyproject = true; 14 18 15 - disabled = pythonOlder "3.8"; 19 + outputs = [ "out" "man" ]; 20 + disabled = pythonOlder "3.9"; 16 21 17 22 src = fetchFromGitHub { 18 23 owner = "seppeljordan"; 19 24 repo = "nix-prefetch-github"; 20 25 rev = "v${version}"; 21 - hash = "sha256-oIR2iEiOBQ1VKouJTLqEiWWNzrMSJcnxK+m/j9Ia/m8="; 26 + hash = "sha256-eQd/MNlnuzXzgFzvwUMchvHoIvkIrbpGKV7iknO14Cc="; 22 27 }; 23 28 24 - nativeCheckInputs = [ unittestCheckHook git which ]; 29 + nativeBuildInputs = [ sphinxHook sphinx-argparse setuptools ]; 30 + nativeCheckInputs = [ unittestCheckHook git which parameterized ]; 31 + 32 + sphinxBuilders = [ "man" ]; 33 + sphinxRoot = "docs"; 25 34 26 35 # ignore tests which are impure 27 36 DISABLED_TESTS = "network requires_nix_build";
+9 -5
pkgs/development/python-modules/pylibjpeg-libjpeg/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 5 , pytestCheckHook 6 - , cython 6 + , cython_3 7 + , poetry-core 8 + , setuptools 7 9 , numpy 8 10 }: 9 11 10 12 buildPythonPackage rec { 11 13 pname = "pylibjpeg-libjpeg"; 12 - version = "1.3.4"; 13 - format = "setuptools"; 14 + version = "2.02"; 15 + pyproject = true; 14 16 15 17 disabled = pythonOlder "3.7"; 16 18 ··· 18 20 owner = "pydicom"; 19 21 repo = pname; 20 22 rev = "refs/tags/v${version}"; 21 - hash = "sha256-VmqeoMU8riLpWyC+yKqq56TkruxOie6pjbg+ozivpBk="; 23 + hash = "sha256-mGwku19Xe605fF3UU59712rYp+s/pP79lBRl79fhhTI="; 22 24 fetchSubmodules = true; 23 25 }; 24 26 25 27 nativeBuildInputs = [ 26 - cython 28 + cython_3 29 + poetry-core 30 + setuptools 27 31 ]; 28 32 29 33 propagatedBuildInputs = [
+4 -3
pkgs/development/python-modules/pylibjpeg/default.nix
··· 4 4 , fetchFromGitHub 5 5 , pythonOlder 6 6 , pytestCheckHook 7 + , flit-core 7 8 , setuptools 8 9 , numpy 9 10 , pydicom ··· 31 32 32 33 buildPythonPackage rec { 33 34 pname = "pylibjpeg"; 34 - version = "1.4.0"; 35 + version = "2.0.0"; 35 36 pyproject = true; 36 37 37 38 disabled = pythonOlder "3.7"; ··· 40 41 owner = "pydicom"; 41 42 repo = "pylibjpeg"; 42 43 rev = "refs/tags/v${version}"; 43 - hash = "sha256-Px1DyYDkKAUdYo+ZxZ1w7TkPzWN++styiFl02iQOvyQ="; 44 + hash = "sha256-qGtrphsBBVieGS/8rdymbsjLMU/QEd7zFNAANN8bD+k="; 44 45 }; 45 46 46 - nativeBuildInputs = [ setuptools ]; 47 + nativeBuildInputs = [ flit-core ]; 47 48 48 49 propagatedBuildInputs = [ numpy ]; 49 50
+12 -7
pkgs/development/python-modules/python-editor/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + }: 2 5 3 - buildPythonPackage rec { 4 - version = "1.0.4"; 6 + buildPythonPackage { 7 + pname = "python-editor"; 8 + version = "1.0.4-unstable-2023-10-11"; 5 9 format = "setuptools"; 6 - pname = "python-editor"; 7 10 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b"; 11 + src = fetchFromGitHub { 12 + owner = "fmoo"; 13 + repo = "python-editor"; 14 + rev = "c6cd09069371781b2b9381839849a524d25db07f"; 15 + hash = "sha256-TjfY7ustZaNPmndHPVwmQ8zkYPmDs/C5SNJl1zXjprc="; 11 16 }; 12 17 13 18 # No proper tests
+5 -16
pkgs/development/python-modules/scrapy/default.nix
··· 5 5 , cryptography 6 6 , cssselect 7 7 , fetchPypi 8 - , fetchpatch 9 8 , glibcLocales 10 9 , installShellFiles 11 10 , itemadapter ··· 22 21 , pythonOlder 23 22 , queuelib 24 23 , service-identity 24 + , setuptools 25 25 , sybil 26 26 , testfixtures 27 27 , tldextract ··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "scrapy"; 35 - version = "2.11.0"; 36 - format = "setuptools"; 35 + version = "2.11.1"; 36 + pyproject = true; 37 37 38 38 disabled = pythonOlder "3.8"; 39 39 40 40 src = fetchPypi { 41 41 inherit version; 42 42 pname = "Scrapy"; 43 - hash = "sha256-PL3tzgw/DgSC1hvi10WGg758188UsO5q37rduA9bNqU="; 43 + hash = "sha256-czoDnHQj5StpvygQtTMgk9TkKoSEYDWcB7Auz/j3Pr4="; 44 44 }; 45 45 46 - patches = [ 47 - # Fix compatiblity with Twisted>=23.8. Remove with the next release. 48 - (fetchpatch { 49 - url = "https://github.com/scrapy/scrapy/commit/aa95ada42cdf570f840f55c463375f8a81b303f8.patch"; 50 - hash = "sha256-LuhA5BqtjSUgkotplvUCtvGNYOTrl0MJRCXiSBMDFzY="; 51 - excludes = [ 52 - "tests/CrawlerProcess/sleeping.py" 53 - "tests/test_crawler.py" 54 - ]; 55 - }) 56 - ]; 57 - 58 46 nativeBuildInputs = [ 59 47 installShellFiles 48 + setuptools 60 49 ]; 61 50 62 51 propagatedBuildInputs = [
+16 -6
pkgs/development/tools/analysis/rizin/default.nix
··· 1 1 { lib 2 2 , pkgs # for passthru.plugins 3 3 , stdenv 4 + , fetchpatch 4 5 , fetchurl 5 6 , pkg-config 6 7 , libusb-compat-0_1 ··· 47 48 "-Dportable=true" 48 49 ]; 49 50 50 - # Normally, Rizin only looks for files in the install prefix. With 51 - # portable=true, it instead looks for files in relation to the parent 52 - # of the directory of the binary file specified in /proc/self/exe, 53 - # caching it. This patch replaces the entire logic to only look at 54 - # the env var NIX_RZ_PREFIX 55 - patches = [ ./librz-wrapper-support.patch ]; 51 + patches = [ 52 + # Normally, Rizin only looks for files in the install prefix. With 53 + # portable=true, it instead looks for files in relation to the parent 54 + # of the directory of the binary file specified in /proc/self/exe, 55 + # caching it. This patch replaces the entire logic to only look at 56 + # the env var NIX_RZ_PREFIX 57 + ./librz-wrapper-support.patch 58 + # Fix tree-sitter 0.20.9 build failure: https://github.com/rizinorg/rizin/pull/4165 59 + (fetchpatch { 60 + name = "tree-sitter-0.20.9.patch"; 61 + url = "https://github.com/rizinorg/rizin/commit/1bb08712dbc9e062bb439a65dcebeb4221ded699.patch"; 62 + hash = "sha256-mE0eQAFhyxX5bwrz+S1IVl6HNV9ITQ+tRRvGLLif5VI="; 63 + }) 64 + ]; 65 + 56 66 57 67 nativeBuildInputs = [ 58 68 pkg-config
+2 -2
pkgs/development/tools/pet/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pet"; 5 - version = "0.6.0"; 5 + version = "0.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "knqyf263"; 9 9 repo = "pet"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-+SjeQJXWoyNVb9AUB0BlXUJpHYRLhvVjteZypjV0FtE="; 11 + sha256 = "sha256-upBncIJvgTvBj/PB3b7LnxY+yDnFfeNZdL97GwGxCqA="; 12 12 }; 13 13 14 14 vendorHash = "sha256-A3VHpSJc6NJz8ojg6iSnQlIXbf9m1JCzg9Vnoie0ffU=";
+15 -15
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 42 42 "6.1": { 43 43 "patch": { 44 44 "extra": "-hardened1", 45 - "name": "linux-hardened-6.1.76-hardened1.patch", 46 - "sha256": "1hybya6kxcy90cnc7m1gzykbbarqmbybmgrsbanb3gvlbvjghizx", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.76-hardened1/linux-hardened-6.1.76-hardened1.patch" 45 + "name": "linux-hardened-6.1.77-hardened1.patch", 46 + "sha256": "0gi7sahy24158hsfx6yhlzxg152ipn918nzg6nv4633b7vg6g90f", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.77-hardened1/linux-hardened-6.1.77-hardened1.patch" 48 48 }, 49 - "sha256": "1zdi4xbk7zyiab7x8z12xqg72zaw3j61slvrbwjfx6pzh47cr005", 50 - "version": "6.1.76" 49 + "sha256": "07grng6rrgpy6c3465hwqhn3gcdam1c8rwya30vgpk8nfxbfqm1v", 50 + "version": "6.1.77" 51 51 }, 52 52 "6.5": { 53 53 "patch": { ··· 62 62 "6.6": { 63 63 "patch": { 64 64 "extra": "-hardened1", 65 - "name": "linux-hardened-6.6.15-hardened1.patch", 66 - "sha256": "0yj821zaqxhk4yk1fgv1l5kcqsl05nvq8l6djbvhs0nnlmfd85yf", 67 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.15-hardened1/linux-hardened-6.6.15-hardened1.patch" 65 + "name": "linux-hardened-6.6.16-hardened1.patch", 66 + "sha256": "04k340nilrlarsh47gpdj5qzcy2h8z4nkr5945j40qa7nkj58ncd", 67 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.16-hardened1/linux-hardened-6.6.16-hardened1.patch" 68 68 }, 69 - "sha256": "1ajzby6isqji1xlp660m4qj2i2xs003vsjp1jspziwl7hrzhqadb", 70 - "version": "6.6.15" 69 + "sha256": "0c5a9agdr27bwd1z6790whczb858z8i34hhn548lzbdylfamf7dj", 70 + "version": "6.6.16" 71 71 }, 72 72 "6.7": { 73 73 "patch": { 74 74 "extra": "-hardened1", 75 - "name": "linux-hardened-6.7.3-hardened1.patch", 76 - "sha256": "03jdch5fx6ly0haa2jrbjzyjnfv66dh1gkbhy1y79v3ylr4x29x4", 77 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.7.3-hardened1/linux-hardened-6.7.3-hardened1.patch" 75 + "name": "linux-hardened-6.7.4-hardened1.patch", 76 + "sha256": "1g3waasdsba65rgb6f58drj5qd61b0072hfmzl783jphj8iq045x", 77 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.7.4-hardened1/linux-hardened-6.7.4-hardened1.patch" 78 78 }, 79 - "sha256": "0i1bfkawyp917d9v3qa5nqzspzr3ixx7scbfl8x4lms74xjqrw5p", 80 - "version": "6.7.3" 79 + "sha256": "036nk3h7vqzd7gnxan2173kpss5qm2pci1lvd58gh90azigrz3gn", 80 + "version": "6.7.4" 81 81 } 82 82 }
+2 -2
pkgs/servers/http/angie/console-light.nix
··· 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { 9 - version = "1.1.1"; 9 + version = "1.2.1"; 10 10 pname = "angie-console-light"; 11 11 12 12 src = fetchurl { 13 13 url = "https://download.angie.software/files/${pname}/${pname}-${version}.tar.gz"; 14 - hash = "sha256-Teg+EPl4IvmScTTX3F3rdM6qZ3ztFkMks9oo2B1xHTs="; 14 + hash = "sha256-bwnVwhcPyEXGzvpXj2bC1WUGtNbBlHpqZibApKtESq8="; 15 15 }; 16 16 17 17 outputs = [ "out" "doc" ];
+2 -2
pkgs/servers/http/angie/default.nix
··· 9 9 }@args: 10 10 11 11 callPackage ../nginx/generic.nix args rec { 12 - version = "1.4.0"; 12 + version = "1.4.1"; 13 13 pname = if withQuic then "angieQuic" else "angie"; 14 14 15 15 src = fetchurl { 16 16 url = "https://download.angie.software/files/angie-${version}.tar.gz"; 17 - hash = "sha256-gaQsPwoxtt6oVSDX1JCWvyUwDQaNprya79CCwu4z8b4="; 17 + hash = "sha256-g6PyuyulnltnZJWiZ01iYG1k6Lz5nO+gneb8M4q3WHo="; 18 18 }; 19 19 20 20 configureFlags = lib.optional withQuic [
+3 -3
pkgs/servers/monitoring/grafana/default.nix
··· 32 32 in 33 33 buildGoModule rec { 34 34 pname = "grafana"; 35 - version = "10.3.1"; 35 + version = "10.3.3"; 36 36 37 37 excludedPackages = [ "alert_webhook_listener" "clean-swagger" "release_publisher" "slow_proxy" "slow_proxy_mac" "macaron" "devenv" "modowners" ]; 38 38 ··· 40 40 owner = "grafana"; 41 41 repo = "grafana"; 42 42 rev = "v${version}"; 43 - hash = "sha256-UPIq7BWTlT0omt/SM5+vkfOHvsdcx/ikkjcW9X8pcw0="; 43 + hash = "sha256-uAfHcW9j+al8IIH2N6X5wssQmSXqJjVQzwERBCxGxVE="; 44 44 }; 45 45 46 46 offlineCache = stdenv.mkDerivation { ··· 72 72 73 73 disallowedRequisites = [ offlineCache ]; 74 74 75 - vendorHash = "sha256-Gf2A22d7/8xU/ld7kveqGonVKGFCArGNansPRGhfyXM="; 75 + vendorHash = "sha256-nGv/DBNnQ4AOJtrsYIGLCrV1xNmBN0dDf6u46R3TAHo="; 76 76 77 77 nativeBuildInputs = [ wire yarn jq moreutils removeReferencesTo python3 ]; 78 78
-46
pkgs/tools/admin/adtool/default.nix
··· 1 - { lib, stdenv, fetchurl, openldap }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "adtool"; 5 - version = "1.3.3"; 6 - 7 - src = fetchurl { 8 - url = "https://gp2x.org/adtool/${pname}-${version}.tar.gz"; 9 - sha256 = "1awmpjamrwivi69i0j2fyrziy9s096ckviqd9c4llc3990mfsn4n"; 10 - }; 11 - 12 - configureFlags = [ 13 - "--sysconfdir=/etc" 14 - ]; 15 - 16 - installFlags = [ 17 - "sysconfdir=$(out)/etc" 18 - ]; 19 - 20 - buildInputs = [ openldap ]; 21 - 22 - # Workaround build failure on -fno-common toolchains like upstream 23 - # gcc-10. Otherwise build fails as: 24 - # ld: ../../src/lib/libactive_directory.a(active_directory.o):/build/adtool-1.3.3/src/lib/active_directory.h:31: 25 - # multiple definition of `system_config_file'; adtool.o:/build/adtool-1.3.3/src/tools/../../src/lib/active_directory.h:31: first defined here 26 - env.NIX_CFLAGS_COMPILE = "-fcommon"; 27 - 28 - enableParallelBuilding = true; 29 - 30 - postInstall = '' 31 - mkdir -p $out/share/doc/adtool 32 - mv $out/etc/* $out/share/doc/adtool 33 - rmdir $out/etc 34 - ''; 35 - 36 - # It requires an LDAP server for tests 37 - doCheck = false; 38 - 39 - meta = with lib; { 40 - description = "Active Directory administration utility for Unix"; 41 - homepage = "https://gp2x.org/adtool"; 42 - license = licenses.gpl2; 43 - maintainers = with maintainers; [ peterhoeg ]; 44 - broken = true; # does not link against recent libldap versions and unmaintained since 2017 45 - }; 46 - }
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "qovery-cli"; 11 - version = "0.84.0"; 11 + version = "0.84.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Qovery"; 15 15 repo = "qovery-cli"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-2cG/aG1WXNmXqoJ+N2vmq2SBfIeCI1hac8y2vLy7Dyk="; 17 + hash = "sha256-Dq62LXa0hZrpfQ7WQuCelLxWS7Lhn6SH61cNTsYI/mw="; 18 18 }; 19 19 20 20 vendorHash = "sha256-XG0dOEpu+NoQmklsukxev1gc2OsZc7fLEkv0AGwkh7o=";
+24 -12
pkgs/tools/misc/plantuml/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }: 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + , makeBinaryWrapper 5 + , jre 6 + , graphviz 7 + }: 2 8 3 - stdenv.mkDerivation rec { 4 - version = "1.2024.1"; 9 + stdenvNoCC.mkDerivation (finalAttrs: { 5 10 pname = "plantuml"; 11 + version = "1.2024.2"; 6 12 7 13 src = fetchurl { 8 - url = "https://github.com/plantuml/plantuml/releases/download/v${version}/plantuml-pdf-${version}.jar"; 9 - sha256 = "sha256-lXo8eU6IX4JQFfhNUM2h6fi0HkShiwLsjMRTNbwLYwk="; 14 + url = "https://github.com/plantuml/plantuml/releases/download/v${finalAttrs.version}/plantuml-pdf-${finalAttrs.version}.jar"; 15 + hash = "sha256-23EKdS1Z7beuyovgab8ELA1rCAn2Zl83YPmSZ83EBdw="; 10 16 }; 11 17 12 - nativeBuildInputs = [ makeWrapper ]; 18 + nativeBuildInputs = [ 19 + makeBinaryWrapper 20 + ]; 13 21 14 22 buildCommand = '' 15 23 install -Dm644 $src $out/lib/plantuml.jar ··· 19 27 --argv0 plantuml \ 20 28 --set GRAPHVIZ_DOT ${graphviz}/bin/dot \ 21 29 --add-flags "-jar $out/lib/plantuml.jar" 30 + ''; 22 31 32 + doInstallCheck = true; 33 + postCheckInstall = '' 23 34 $out/bin/plantuml -help 35 + $out/bin/plantuml -testdot 24 36 ''; 25 37 26 - meta = with lib; { 38 + meta = { 27 39 description = "Draw UML diagrams using a simple and human readable text description"; 28 40 homepage = "https://plantuml.com/"; 29 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 30 41 # "plantuml -license" says GPLv3 or later 31 - license = licenses.gpl3Plus; 32 - maintainers = with maintainers; [ bjornfor Mogria ]; 33 - platforms = platforms.unix; 42 + license = lib.licenses.gpl3Plus; 34 43 mainProgram = "plantuml"; 44 + maintainers = with lib.maintainers; [ bjornfor Mogria ]; 45 + platforms = lib.platforms.unix; 46 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 35 47 }; 36 - } 48 + })
+4 -1
pkgs/tools/networking/speedtest-rs/default.nix
··· 19 19 }; 20 20 21 21 buildInputs = [ openssl ] ++ 22 - lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; 22 + lib.optionals stdenv.isDarwin [ 23 + darwin.apple_sdk.frameworks.Security 24 + darwin.apple_sdk.frameworks.SystemConfiguration 25 + ]; 23 26 24 27 nativeBuildInputs = [ pkg-config ]; 25 28
+3 -3
pkgs/tools/networking/telepresence2/default.nix
··· 27 27 in 28 28 buildGoModule rec { 29 29 pname = "telepresence2"; 30 - version = "2.17.0"; 30 + version = "2.18.0"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "telepresenceio"; 34 34 repo = "telepresence"; 35 35 rev = "v${version}"; 36 - hash = "sha256-wmoOBoMjPCNJGg86Cl2V4izZQDiZjNzwErvWMYY1MGk="; 36 + hash = "sha256-zk6HyZfYeJecJgdMU3qnXIKDYuvnu5yjSZtVvKem4uI="; 37 37 }; 38 38 39 39 propagatedBuildInputs = [ ··· 47 47 export CGO_ENABLED=0 48 48 ''; 49 49 50 - vendorHash = "sha256-rTlMd56iBSBLTRYJlKHWmYyyeBtNk2WQ3hrPJl9dMYI="; 50 + vendorHash = "sha256-wvzrnwzkV4SXsiZfIrowMF0G7qFdjEVrF77vM81rxLs="; 51 51 52 52 ldflags = [ 53 53 "-s" "-w" "-X=github.com/telepresenceio/telepresence/v2/pkg/version.Version=${src.rev}"
+1
pkgs/top-level/aliases.nix
··· 58 58 59 59 AusweisApp2 = ausweisapp; # Added 2023-11-08 60 60 a4term = a4; # Added 2023-10-06 61 + adtool = throw "'adtool' has been removed, as it was broken and unmaintained"; 61 62 aether = throw "aether has been removed from nixpkgs; upstream unmaintained, security issues"; # Added 2023-10-03 62 63 airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 63 64 alertmanager-bot = throw "alertmanager-bot is broken and has been archived by upstream"; # Added 2023-07-28
+1 -3
pkgs/top-level/all-packages.nix
··· 18141 18141 18142 18142 adreaper = callPackage ../tools/security/adreaper { }; 18143 18143 18144 - adtool = callPackage ../tools/admin/adtool { }; 18145 - 18146 18144 aeron = callPackage ../servers/aeron { }; 18147 18145 18148 18146 inherit (callPackage ../development/tools/alloy { }) ··· 35088 35086 35089 35087 spice-vdagent = callPackage ../applications/virtualization/spice-vdagent { }; 35090 35088 35091 - spike = pin-to-gcc12-if-gcc13 (callPackage ../applications/virtualization/spike { }); 35089 + spike = callPackage ../applications/virtualization/spike { }; 35092 35090 35093 35091 tensorman = callPackage ../tools/misc/tensorman { }; 35094 35092