nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

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

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