Merge staging-next into staging

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

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