Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub f56a4a56 a7c53670

+1082 -875
+1
nixos/modules/security/acme/default.nix
··· 967 968 users.users.acme = { 969 home = "/var/lib/acme"; 970 group = "acme"; 971 isSystemUser = true; 972 };
··· 967 968 users.users.acme = { 969 home = "/var/lib/acme"; 970 + homeMode = "755"; 971 group = "acme"; 972 isSystemUser = true; 973 };
+1 -1
nixos/modules/services/matrix/mautrix-telegram.nix
··· 137 wantedBy = [ "multi-user.target" ]; 138 wants = [ "network-online.target" ] ++ cfg.serviceDependencies; 139 after = [ "network-online.target" ] ++ cfg.serviceDependencies; 140 - path = [ pkgs.lottieconverter pkgs.ffmpeg-full ]; 141 142 # mautrix-telegram tries to generate a dotfile in the home directory of 143 # the running user if using a postgresql database:
··· 137 wantedBy = [ "multi-user.target" ]; 138 wants = [ "network-online.target" ] ++ cfg.serviceDependencies; 139 after = [ "network-online.target" ] ++ cfg.serviceDependencies; 140 + path = [ pkgs.lottieconverter pkgs.ffmpeg-headless ]; 141 142 # mautrix-telegram tries to generate a dotfile in the home directory of 143 # the running user if using a postgresql database:
+1 -1
nixos/modules/services/networking/wg-access-server.nix
··· 18 type = lib.types.submodule { 19 freeformType = settingsFormat.type; 20 options = { 21 - dns.enable = mkOption { 22 type = types.bool; 23 default = true; 24 description = ''
··· 18 type = lib.types.submodule { 19 freeformType = settingsFormat.type; 20 options = { 21 + dns.enabled = mkOption { 22 type = types.bool; 23 default = true; 24 description = ''
+2 -2
pkgs/applications/misc/meerk40t/default.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "MeerK40t"; 11 - version = "0.9.4000"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "meerk40t"; 16 repo = pname; 17 rev = "refs/tags/${version}"; 18 - hash = "sha256-ceDnnHdmJ6VOrM9pSxjeKQ748E8fsIqSQ36qFpXc9Ac="; 19 }; 20 21 nativeBuildInputs = [
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "MeerK40t"; 11 + version = "0.9.5300"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "meerk40t"; 16 repo = pname; 17 rev = "refs/tags/${version}"; 18 + hash = "sha256-dybmbmEvvTka0wMBIUDYemqDaCvG9odgCbIWYhROJLI="; 19 }; 20 21 nativeBuildInputs = [
+11
pkgs/applications/misc/rofi/wayland.nix
··· 1 { lib 2 , fetchFromGitHub 3 , rofi-unwrapped 4 , wayland-scanner 5 , pkg-config ··· 18 fetchSubmodules = true; 19 hash = "sha256-pKxraG3fhBh53m+bLPzCigRr6dBcH/A9vbdf67CO2d8="; 20 }; 21 22 depsBuildBuild = oldAttrs.depsBuildBuild ++ [ pkg-config ]; 23 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-protocols wayland-scanner ];
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 , rofi-unwrapped 5 , wayland-scanner 6 , pkg-config ··· 19 fetchSubmodules = true; 20 hash = "sha256-pKxraG3fhBh53m+bLPzCigRr6dBcH/A9vbdf67CO2d8="; 21 }; 22 + 23 + patches = [ 24 + # Fix use on niri window manager 25 + # ref. https://github.com/davatorium/rofi/discussions/2008 26 + # this was merged upstream, and can be removed on next release 27 + (fetchpatch { 28 + url = "https://github.com/lbonn/rofi/commit/55425f72ff913eb72f5ba5f5d422b905d87577d0.patch"; 29 + hash = "sha256-vTUxtJs4SuyPk0PgnGlDIe/GVm/w1qZirEhKdBp4bHI="; 30 + }) 31 + ]; 32 33 depsBuildBuild = oldAttrs.depsBuildBuild ++ [ pkg-config ]; 34 nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-protocols wayland-scanner ];
+2 -1
pkgs/applications/networking/browsers/vivaldi/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, libX11, libXext, libSM, libICE, libxkbcommon, libxshmfence 2 , libXfixes, libXt, libXi, libXcursor, libXScrnSaver, libXcomposite, libXdamage, libXtst, libXrandr 3 , alsa-lib, dbus, cups, libexif, ffmpeg, systemd, libva, libGL 4 , freetype, fontconfig, libXft, libXrender, libxcb, expat ··· 114 --set-default FONTCONFIG_FILE "${fontconfig.out}/etc/fonts/fonts.conf" \ 115 --set-default FONTCONFIG_PATH "${fontconfig.out}/etc/fonts" \ 116 --suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/ \ 117 ${lib.optionalString enableWidevine "--suffix LD_LIBRARY_PATH : ${libPath}"} 118 '' + lib.optionalString enableWidevine '' 119 ln -sf ${widevine-cdm}/share/google/chrome/WidevineCdm $out/opt/${vivaldiName}/WidevineCdm
··· 1 + { lib, stdenv, coreutils, fetchurl, zlib, libX11, libXext, libSM, libICE, libxkbcommon, libxshmfence 2 , libXfixes, libXt, libXi, libXcursor, libXScrnSaver, libXcomposite, libXdamage, libXtst, libXrandr 3 , alsa-lib, dbus, cups, libexif, ffmpeg, systemd, libva, libGL 4 , freetype, fontconfig, libXft, libXrender, libxcb, expat ··· 114 --set-default FONTCONFIG_FILE "${fontconfig.out}/etc/fonts/fonts.conf" \ 115 --set-default FONTCONFIG_PATH "${fontconfig.out}/etc/fonts" \ 116 --suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/ \ 117 + --prefix PATH : ${coreutils}/bin \ 118 ${lib.optionalString enableWidevine "--suffix LD_LIBRARY_PATH : ${libPath}"} 119 '' + lib.optionalString enableWidevine '' 120 ln -sf ${widevine-cdm}/share/google/chrome/WidevineCdm $out/opt/${vivaldiName}/WidevineCdm
+34
pkgs/applications/video/mpv/scripts/autosub.nix
···
··· 1 + { 2 + lib, 3 + buildLua, 4 + fetchFromGitHub, 5 + unstableGitUpdater, 6 + python3Packages, 7 + }: 8 + buildLua { 9 + pname = "mpv-autosub"; 10 + version = "0-unstable-2021-06-29"; 11 + scriptPath = "autosub.lua"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "davidde"; 15 + repo = "mpv-autosub"; 16 + rev = "35115355bd339681f97d067538356c29e5b14afa"; 17 + hash = "sha256-BKT/Tzwl5ZA4fbdc/cxz0+CYc1zyY/KOXc58x5GYow0="; 18 + }; 19 + 20 + preInstall = '' 21 + substituteInPlace autosub.lua --replace-fail \ 22 + "local subliminal = '/home/david/.local/bin/subliminal'" \ 23 + "local subliminal = '${lib.getExe' python3Packages.subliminal "subliminal"}'" 24 + ''; 25 + 26 + passthru.updateScript = unstableGitUpdater { }; 27 + 28 + meta = { 29 + description = "Fully automatic subtitle downloading for the MPV media player"; 30 + homepage = "https://github.com/davidde/mpv-autosub"; 31 + license = lib.licenses.mit; 32 + maintainers = [ lib.maintainers.octvs ]; 33 + }; 34 + }
+2
pkgs/applications/video/mpv/scripts/default.nix
··· 98 ; 99 100 buildLua = callPackage ./buildLua.nix { }; 101 autosubsync-mpv = callPackage ./autosubsync-mpv.nix { }; 102 chapterskip = callPackage ./chapterskip.nix { }; 103 convert = callPackage ./convert.nix { }; ··· 135 visualizer = callPackage ./visualizer.nix { }; 136 vr-reversal = callPackage ./vr-reversal.nix { }; 137 webtorrent-mpv-hook = callPackage ./webtorrent-mpv-hook.nix { }; 138 youtube-upnext = callPackage ./youtube-upnext.nix { }; 139 }; 140
··· 98 ; 99 100 buildLua = callPackage ./buildLua.nix { }; 101 + autosub = callPackage ./autosub.nix { }; 102 autosubsync-mpv = callPackage ./autosubsync-mpv.nix { }; 103 chapterskip = callPackage ./chapterskip.nix { }; 104 convert = callPackage ./convert.nix { }; ··· 136 visualizer = callPackage ./visualizer.nix { }; 137 vr-reversal = callPackage ./vr-reversal.nix { }; 138 webtorrent-mpv-hook = callPackage ./webtorrent-mpv-hook.nix { }; 139 + youtube-chat = callPackage ./youtube-chat.nix { }; 140 youtube-upnext = callPackage ./youtube-upnext.nix { }; 141 }; 142
+41
pkgs/applications/video/mpv/scripts/youtube-chat.nix
···
··· 1 + { 2 + lib, 3 + buildLua, 4 + fetchFromGitHub, 5 + yt-dlp, 6 + }: 7 + 8 + buildLua { 9 + pname = "youtube-chat"; 10 + version = "unstable-2024-06-08"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "BanchouBoo"; 14 + repo = "mpv-youtube-chat"; 15 + rev = "4b8d6d5d3ace40d467bc0ed75f3af2a1aefce161"; 16 + hash = "sha256-uZC7iDYqLUuXnqSLke4j6rLoufc/vFTE6Ehnpu//dxY="; 17 + }; 18 + 19 + scriptPath = "youtube-chat"; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + install -D -t $out/share/mpv/scripts/youtube-chat main.lua 24 + runHook postInstall 25 + ''; 26 + 27 + passthru.extraWrapperArgs = [ 28 + "--prefix" 29 + "PATH" 30 + ":" 31 + (lib.makeBinPath [ yt-dlp ]) 32 + ]; 33 + 34 + meta = { 35 + description = "MPV script to overlay youtube chat on top of a video using yt-dlp"; 36 + homepage = "https://github.com/BanchouBoo/mpv-youtube-chat"; 37 + license = lib.licenses.mit; 38 + platforms = yt-dlp.meta.platforms; 39 + maintainers = with lib.maintainers; [ fliegendewurst ]; 40 + }; 41 + }
+2 -1
pkgs/applications/virtualization/virtualbox/default.nix
··· 362 ln -s $libexec/icons/$size/*.png $out/share/icons/hicolor/$size/apps 363 done 364 # Translation 365 - ln -sv $libexec/nls "$out/share/virtualbox" 366 ''} 367 368 ${optionalString withModsrc ''
··· 362 ln -s $libexec/icons/$size/*.png $out/share/icons/hicolor/$size/apps 363 done 364 # Translation 365 + mkdir -p "$out/share/virtualbox" 366 + ln -sv $libexec/nls "$out/share/virtualbox/nls" 367 ''} 368 369 ${optionalString withModsrc ''
pkgs/by-name/7z/7z2hashcat/package.nix pkgs/by-name/_7/_7z2hashcat/package.nix
+45
pkgs/by-name/ad/adminer-pematon/index.php
···
··· 1 + <?php 2 + 3 + declare(strict_types=1); 4 + 5 + namespace nixos { 6 + use AdminerPlugin; 7 + 8 + use function sprintf; 9 + 10 + function adminer_object(): object 11 + { 12 + require_once __DIR__ . '/plugins/plugin.php'; 13 + 14 + if (!file_exists(__DIR__ . '/plugins.json')) { 15 + return new AdminerPlugin(); 16 + } 17 + 18 + $plugins = array_map( 19 + static function (string $name): ?object { 20 + $plugin = sprintf('%s/plugins/%s.php', __DIR__, $name); 21 + 22 + if (!is_readable($plugin)) { 23 + return null; 24 + } 25 + 26 + require $plugin; 27 + 28 + preg_match_all('/(\w+)/', $name, $matches); 29 + 30 + return new sprintf('Adminer%s', implode('', array_map('ucfirst', $matches[1]))); 31 + }, 32 + json_decode(file_get_contents(sprintf('%s/plugins.json', __DIR__), true)) 33 + ); 34 + 35 + return new AdminerPlugin(array_filter($plugins)); 36 + } 37 + } 38 + 39 + namespace { 40 + function adminer_object() { 41 + return \nixos\adminer_object(); 42 + } 43 + 44 + require(__DIR__ . '/adminer.php'); 45 + }
+75
pkgs/by-name/ad/adminer-pematon/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + php, 6 + writeText, 7 + nix-update-script, 8 + theme ? null, 9 + plugins ? [ ], 10 + }: 11 + stdenvNoCC.mkDerivation (finalAttrs: { 12 + pname = "adminer-pematon"; 13 + version = "4.12"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "pematon"; 17 + repo = "adminer"; 18 + rev = "refs/tags/v${finalAttrs.version}"; 19 + hash = "sha256-ExCHEsZ+VFmrom3632/1OOjb3zbZgiaZJDapBkBGUnQ="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + php 24 + ]; 25 + 26 + buildPhase = '' 27 + runHook preBuild 28 + 29 + php compile.php 30 + 31 + runHook postBuild 32 + ''; 33 + 34 + installPhase = '' 35 + runHook preInstall 36 + 37 + mkdir $out 38 + cp temp/adminer-${finalAttrs.version}.php $out/adminer.php 39 + cp ${./index.php} $out/index.php 40 + 41 + ${lib.optionalString (theme != null) '' 42 + cp designs/${theme}/adminer.css $out/adminer.css 43 + ''} 44 + 45 + # Copy base plugin 46 + mkdir -p $out/plugins 47 + cp plugins/plugin.php $out/plugins/plugin.php 48 + 49 + ${lib.optionalString (plugins != [ ]) '' 50 + cp plugins/*.php $out/plugins/ 51 + cp ${writeText "$out/plugins.json" '' 52 + ${toString (builtins.toJSON plugins)} 53 + ''} $out/plugins.json 54 + ''} 55 + 56 + runHook postInstall 57 + ''; 58 + 59 + passthru = { 60 + updateScript = nix-update-script { }; 61 + }; 62 + 63 + meta = { 64 + description = "Database management in a single PHP file (Pematon fork)"; 65 + homepage = "https://github.com/pematon/adminer"; 66 + license = with lib.licenses; [ 67 + asl20 68 + gpl2Only 69 + ]; 70 + maintainers = with lib.maintainers; [ 71 + johnrtitor 72 + ]; 73 + platforms = lib.platforms.all; 74 + }; 75 + })
+5 -9
pkgs/by-name/an/angular-language-server/package.nix
··· 12 unzip, 13 }: 14 15 - let 16 - owner = "angular"; 17 - repo = "vscode-ng-language-service"; 18 - in 19 stdenvNoCC.mkDerivation (finalAttrs: { 20 pname = "angular-language-server"; 21 version = "18.2.0"; 22 src = fetchurl { 23 - name = "${finalAttrs.pname}-${finalAttrs.version}.zip"; 24 - url = "https://github.com/${owner}/${repo}/releases/download/v${finalAttrs.version}/ng-template.vsix"; 25 hash = "sha256-rl04nqSSBMjZfPW8Y+UtFLFLDFd5FSxJs3S937mhDWE="; 26 }; 27 ··· 56 }; 57 58 updateScript = lib.getExe (writeShellApplication { 59 - name = "update-${finalAttrs.pname}"; 60 runtimeInputs = [ 61 curl 62 common-updater-scripts ··· 68 69 LATEST_VERSION=$(curl -H "Accept: application/vnd.github+json" \ 70 ''${GITHUB_TOKEN:+-H "Authorization: bearer $GITHUB_TOKEN"} \ 71 - -Lsf https://api.github.com/repos/${owner}/${repo}/releases/latest | \ 72 jq -r .tag_name | cut -c 2-) 73 - update-source-version ${finalAttrs.pname} "$LATEST_VERSION" 74 ''; 75 }); 76 };
··· 12 unzip, 13 }: 14 15 stdenvNoCC.mkDerivation (finalAttrs: { 16 pname = "angular-language-server"; 17 version = "18.2.0"; 18 src = fetchurl { 19 + name = "angular-language-server-${finalAttrs.version}.zip"; 20 + url = "https://github.com/angular/vscode-ng-language-service/releases/download/v${finalAttrs.version}/ng-template.vsix"; 21 hash = "sha256-rl04nqSSBMjZfPW8Y+UtFLFLDFd5FSxJs3S937mhDWE="; 22 }; 23 ··· 52 }; 53 54 updateScript = lib.getExe (writeShellApplication { 55 + name = "update-angular-language-server"; 56 runtimeInputs = [ 57 curl 58 common-updater-scripts ··· 64 65 LATEST_VERSION=$(curl -H "Accept: application/vnd.github+json" \ 66 ''${GITHUB_TOKEN:+-H "Authorization: bearer $GITHUB_TOKEN"} \ 67 + -Lsf https://api.github.com/repos/angular/vscode-ng-language-service/releases/latest | \ 68 jq -r .tag_name | cut -c 2-) 69 + update-source-version angular-language-server "$LATEST_VERSION" 70 ''; 71 }); 72 };
+2 -2
pkgs/by-name/ar/arcticons-sans/package.nix
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "arcticons-sans"; 8 - version = "0.580"; 9 10 src = fetchzip { 11 - hash = "sha256-BRyYHOuz7zxD1zD4L4DmI9dFhGePmGFDqYmS0DIbvi8="; 12 url = "https://github.com/arcticons-team/arcticons-font/archive/refs/tags/${finalAttrs.version}.zip"; 13 }; 14
··· 5 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 pname = "arcticons-sans"; 8 + version = "0.590"; 9 10 src = fetchzip { 11 + hash = "sha256-0iSkTfUMgrKi6LF+9KAihPus0biGuOFsYN51ydYAF5E="; 12 url = "https://github.com/arcticons-team/arcticons-font/archive/refs/tags/${finalAttrs.version}.zip"; 13 }; 14
+3 -3
pkgs/by-name/ar/argocd-autopilot/package.nix
··· 2 3 buildGoModule rec { 4 pname = "argocd-autopilot"; 5 - version = "0.4.17"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj-labs"; 9 repo = "argocd-autopilot"; 10 rev = "v${version}"; 11 - sha256 = "sha256-txbs1SzAaV1nCl104m0Ht5DwzCmK+sBDn4rZ1newdLc="; 12 }; 13 14 - vendorHash = "sha256-QbjiQVclT8paEKYQmMwj5MLq40mAVh5Ji5VJJTOmEZI="; 15 16 proxyVendor = true; 17
··· 2 3 buildGoModule rec { 4 pname = "argocd-autopilot"; 5 + version = "0.4.18"; 6 7 src = fetchFromGitHub { 8 owner = "argoproj-labs"; 9 repo = "argocd-autopilot"; 10 rev = "v${version}"; 11 + sha256 = "sha256-vG2m0HhT9Pd9qzOAE2BbFf8zluH7btAVexznBCETvxA="; 12 }; 13 14 + vendorHash = "sha256-gyjxZiccaB5ZfEzxrYYYFx7Z6lhszzNL4ugltAMsfag="; 15 16 proxyVendor = true; 17
+3 -3
pkgs/by-name/b3/b3sum/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "b3sum"; 9 - version = "1.5.4"; 10 11 src = fetchCrate { 12 inherit version pname; 13 - hash = "sha256-+aC6yyQ9IcdliYqteB/UTMqwGNCWW0LZWYfMxnaPMm0="; 14 }; 15 16 - cargoHash = "sha256-2E6SU4fMHj0NCIMrn0YNfkllZrFwCLn1wGJfzBPqtKQ="; 17 18 meta = { 19 description = "BLAKE3 cryptographic hash function";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "b3sum"; 9 + version = "1.5.5"; 10 11 src = fetchCrate { 12 inherit version pname; 13 + hash = "sha256-PgtQc8rwIbiHAue323POh15png7DerZbCuAKLi+jEYE="; 14 }; 15 16 + cargoHash = "sha256-OnD/QVOP3oUFeGW0YeFWW8hQ6SBapxxdAXATIBM+g2Y="; 17 18 meta = { 19 description = "BLAKE3 cryptographic hash function";
+3 -3
pkgs/by-name/bu/buildpack/package.nix
··· 7 8 let 9 pname = "pack"; 10 - version = "0.35.1"; 11 in 12 buildGoModule { 13 inherit pname version; ··· 16 owner = "buildpacks"; 17 repo = pname; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-iQkYtnobhAt73JMRrejk0DkOH1ZW2bqfZx05ZrDG5bA="; 20 }; 21 22 - vendorHash = "sha256-gp6Hd0MZxtUX0yYshFIGwrm6yY2pdSOtUs6xmzXBqc4="; 23 24 nativeBuildInputs = [ installShellFiles ]; 25
··· 7 8 let 9 pname = "pack"; 10 + version = "0.36.0"; 11 in 12 buildGoModule { 13 inherit pname version; ··· 16 owner = "buildpacks"; 17 repo = pname; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-WdYV8Pcnzbt3Sd+0wYkw/htHruqFFYopPsRP/xs9WPI="; 20 }; 21 22 + vendorHash = "sha256-RfidlZHyC/dcIuisvIGzd7Vqk7j2DQuJjgERs8lfr0A="; 23 24 nativeBuildInputs = [ installShellFiles ]; 25
+22 -21
pkgs/by-name/c2/c2patool/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , rustPlatform 5 - , libiconv 6 - , darwin 7 - , openssl 8 - , pkg-config 9 - , git 10 }: 11 rustPlatform.buildRustPackage rec { 12 pname = "c2patool"; 13 - version = "0.9.10"; 14 15 src = fetchFromGitHub { 16 owner = "contentauth"; 17 repo = pname; 18 rev = "v${version}"; 19 - hash = "sha256-1q0s8fwhlD891AhS1Sr2JBHi69SUMdP2cYslM/yFh8o="; 20 }; 21 22 - cargoHash = "sha256-4LfrafJd2W2HL/Q36lJ1zXw2CDLL79SLEuyKeFR9cUY="; 23 24 # use the non-vendored openssl 25 - OPENSSL_NO_VENDOR = 1; 26 27 nativeBuildInputs = [ 28 git 29 pkg-config 30 ]; 31 buildInputs = [ 32 openssl 33 - ] ++ lib.optional stdenv.hostPlatform.isDarwin [ 34 - libiconv 35 - darwin.apple_sdk.frameworks.CoreServices 36 - darwin.apple_sdk.frameworks.Carbon 37 ]; 38 39 checkFlags = [ ··· 52 ]; 53 54 doInstallCheck = true; 55 - installCheckPhase = '' 56 - $out/bin/c2patool --version | grep "${version}" 57 - ''; 58 59 meta = with lib; { 60 description = "Command line tool for displaying and adding C2PA manifests"; 61 homepage = "https://github.com/contentauth/c2patool"; 62 - license = with licenses; [ asl20 /* or */ mit ]; 63 maintainers = with maintainers; [ ok-nick ]; 64 mainProgram = "c2patool"; 65 };
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + openssl, 6 + pkg-config, 7 + git, 8 + versionCheckHook, 9 }: 10 + 11 rustPlatform.buildRustPackage rec { 12 pname = "c2patool"; 13 + version = "0.9.12"; 14 15 src = fetchFromGitHub { 16 owner = "contentauth"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-3OaCsy6xt2Pc/Cqm3qbbpr7kiQiA2BM/LqIQnuw73MY="; 20 }; 21 22 + cargoHash = "sha256-sei1sOhR35tkNW4rObLC+0Y5upxNo6yjRMLNcro0tRY="; 23 24 # use the non-vendored openssl 25 + env.OPENSSL_NO_VENDOR = 1; 26 27 nativeBuildInputs = [ 28 git 29 pkg-config 30 ]; 31 + 32 buildInputs = [ 33 openssl 34 ]; 35 36 checkFlags = [ ··· 49 ]; 50 51 doInstallCheck = true; 52 + 53 + nativeInstallCheckInputs = [ 54 + versionCheckHook 55 + ]; 56 57 meta = with lib; { 58 description = "Command line tool for displaying and adding C2PA manifests"; 59 homepage = "https://github.com/contentauth/c2patool"; 60 + license = with licenses; [ 61 + asl20 # or 62 + mit 63 + ]; 64 maintainers = with maintainers; [ ok-nick ]; 65 mainProgram = "c2patool"; 66 };
+2 -2
pkgs/by-name/cl/clusterctl/package.nix
··· 2 3 buildGoModule rec { 4 pname = "clusterctl"; 5 - version = "1.8.4"; 6 7 src = fetchFromGitHub { 8 owner = "kubernetes-sigs"; 9 repo = "cluster-api"; 10 rev = "v${version}"; 11 - hash = "sha256-a6IgPrGI6jA3rVWqGaVPuLxnCJ82SyxWdZZ6xd5DoNs="; 12 }; 13 14 vendorHash = "sha256-0VVaD1vGIGezgkVCvIhNHmZqVFxFu4UcUUh0wuX2viw=";
··· 2 3 buildGoModule rec { 4 pname = "clusterctl"; 5 + version = "1.8.5"; 6 7 src = fetchFromGitHub { 8 owner = "kubernetes-sigs"; 9 repo = "cluster-api"; 10 rev = "v${version}"; 11 + hash = "sha256-Twh8wIXc1bLljTUCxMV/b5qP65FG14hheoMFTnGrO/c="; 12 }; 13 14 vendorHash = "sha256-0VVaD1vGIGezgkVCvIhNHmZqVFxFu4UcUUh0wuX2viw=";
+3 -3
pkgs/by-name/ef/efm-langserver/package.nix
··· 2 3 buildGoModule rec { 4 pname = "efm-langserver"; 5 - version = "0.0.53"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "efm-langserver"; 10 rev = "v${version}"; 11 - sha256 = "sha256-Csm+2C9hP+dTXliADUquAb1nC+8f5j1rJ+66cqWDrCk="; 12 }; 13 14 - vendorHash = "sha256-0YkUak6+dpxvXn6nVVn33xrTEthWqnC9MhMLm/yjFMA="; 15 subPackages = [ "." ]; 16 17 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "efm-langserver"; 5 + version = "0.0.54"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "efm-langserver"; 10 rev = "v${version}"; 11 + sha256 = "sha256-3ZrWc8/4aC5TOoL9vybkMZC9HkIL43TokebFcJYyrcI="; 12 }; 13 14 + vendorHash = "sha256-FOAKxKqhrUpfXkoasSd7v3kKAqV11p5ieZaMPni5Hx4="; 15 subPackages = [ "." ]; 16 17 meta = with lib; {
+25 -24
pkgs/by-name/ey/eyedropper/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , rustPlatform 5 - , cargo 6 - , pkg-config 7 - , meson 8 - , ninja 9 - , blueprint-compiler 10 - , glib 11 - , gtk4 12 - , libadwaita 13 - , rustc 14 - , wrapGAppsHook4 15 - , appstream-glib 16 - , desktop-file-utils 17 }: 18 19 stdenv.mkDerivation rec { 20 pname = "eyedropper"; 21 - version = "1.0.0"; 22 23 src = fetchFromGitHub { 24 owner = "FineFindus"; 25 repo = pname; 26 rev = "v${version}"; 27 - hash = "sha256-PStQC9n+DTTOiNO9fHUjIkwgvKeA2alVbtX5qfqhTYo="; 28 }; 29 30 cargoDeps = rustPlatform.fetchCargoTarball { 31 inherit src; 32 name = "${pname}-${version}"; 33 - hash = "sha256-WRjoyIoVvOYcw2i/cMycE67iziZ8dvQrZ3EfE2v2jkQ="; 34 }; 35 36 nativeBuildInputs = [ ··· 52 libadwaita 53 ]; 54 55 - meta = with lib; { 56 description = "Pick and format colors"; 57 - mainProgram = "eyedropper"; 58 homepage = "https://github.com/FineFindus/eyedropper"; 59 - license = licenses.gpl3Plus; 60 - platforms = platforms.linux; 61 - maintainers = with maintainers; [ zendo ]; 62 }; 63 }
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + rustPlatform, 6 + cargo, 7 + pkg-config, 8 + meson, 9 + ninja, 10 + blueprint-compiler, 11 + glib, 12 + gtk4, 13 + libadwaita, 14 + rustc, 15 + wrapGAppsHook4, 16 + appstream-glib, 17 + desktop-file-utils, 18 }: 19 20 stdenv.mkDerivation rec { 21 pname = "eyedropper"; 22 + version = "2.0.1"; 23 24 src = fetchFromGitHub { 25 owner = "FineFindus"; 26 repo = pname; 27 rev = "v${version}"; 28 + hash = "sha256-FyGj0180Wn8iIDTdDqnNEvFYegwdWCsCq+hmyTTUIo4="; 29 }; 30 31 cargoDeps = rustPlatform.fetchCargoTarball { 32 inherit src; 33 name = "${pname}-${version}"; 34 + hash = "sha256-jXo7Aq+pXWySe6MyH9GCTQVNwbboER7RwJe6Asqbxxc="; 35 }; 36 37 nativeBuildInputs = [ ··· 53 libadwaita 54 ]; 55 56 + meta = { 57 description = "Pick and format colors"; 58 homepage = "https://github.com/FineFindus/eyedropper"; 59 + mainProgram = "eyedropper"; 60 + license = lib.licenses.gpl3Plus; 61 + platforms = lib.platforms.linux; 62 + maintainers = with lib.maintainers; [ zendo ]; 63 }; 64 }
+32 -32
pkgs/by-name/fa/factorio/versions.json
··· 3 "alpha": { 4 "experimental": { 5 "candidateHashFilenames": [ 6 - "factorio_linux_2.0.20.tar.xz" 7 ], 8 - "name": "factorio_alpha_x64-2.0.20.tar.xz", 9 "needsAuth": true, 10 - "sha256": "999247294680f67b29ea4758014e8337069dccc19f8f3808a99f45d8213972b0", 11 "tarDirectory": "x64", 12 - "url": "https://factorio.com/get-download/2.0.20/alpha/linux64", 13 - "version": "2.0.20" 14 }, 15 "stable": { 16 "candidateHashFilenames": [ 17 - "factorio_linux_2.0.20.tar.xz" 18 ], 19 - "name": "factorio_alpha_x64-2.0.20.tar.xz", 20 "needsAuth": true, 21 - "sha256": "999247294680f67b29ea4758014e8337069dccc19f8f3808a99f45d8213972b0", 22 "tarDirectory": "x64", 23 - "url": "https://factorio.com/get-download/2.0.20/alpha/linux64", 24 - "version": "2.0.20" 25 } 26 }, 27 "demo": { ··· 51 "expansion": { 52 "experimental": { 53 "candidateHashFilenames": [ 54 - "factorio-space-age_linux_2.0.20.tar.xz" 55 ], 56 - "name": "factorio_expansion_x64-2.0.20.tar.xz", 57 "needsAuth": true, 58 - "sha256": "cbc6e70985295b078fec8b9ce759fbf8a68ac157fcc7bbead934a9c3108d997f", 59 "tarDirectory": "x64", 60 - "url": "https://factorio.com/get-download/2.0.20/expansion/linux64", 61 - "version": "2.0.20" 62 }, 63 "stable": { 64 "candidateHashFilenames": [ 65 - "factorio-space-age_linux_2.0.20.tar.xz" 66 ], 67 - "name": "factorio_expansion_x64-2.0.20.tar.xz", 68 "needsAuth": true, 69 - "sha256": "cbc6e70985295b078fec8b9ce759fbf8a68ac157fcc7bbead934a9c3108d997f", 70 "tarDirectory": "x64", 71 - "url": "https://factorio.com/get-download/2.0.20/expansion/linux64", 72 - "version": "2.0.20" 73 } 74 }, 75 "headless": { 76 "experimental": { 77 "candidateHashFilenames": [ 78 - "factorio-headless_linux_2.0.20.tar.xz", 79 - "factorio_headless_x64_2.0.20.tar.xz" 80 ], 81 - "name": "factorio_headless_x64-2.0.20.tar.xz", 82 "needsAuth": false, 83 - "sha256": "c4a901f2f1dbedbb41654560db4c6fab683a30c20334e805d4ef740c0416515a", 84 "tarDirectory": "x64", 85 - "url": "https://factorio.com/get-download/2.0.20/headless/linux64", 86 - "version": "2.0.20" 87 }, 88 "stable": { 89 "candidateHashFilenames": [ 90 - "factorio-headless_linux_2.0.20.tar.xz", 91 - "factorio_headless_x64_2.0.20.tar.xz" 92 ], 93 - "name": "factorio_headless_x64-2.0.20.tar.xz", 94 "needsAuth": false, 95 - "sha256": "c4a901f2f1dbedbb41654560db4c6fab683a30c20334e805d4ef740c0416515a", 96 "tarDirectory": "x64", 97 - "url": "https://factorio.com/get-download/2.0.20/headless/linux64", 98 - "version": "2.0.20" 99 } 100 } 101 }
··· 3 "alpha": { 4 "experimental": { 5 "candidateHashFilenames": [ 6 + "factorio_linux_2.0.22.tar.xz" 7 ], 8 + "name": "factorio_alpha_x64-2.0.22.tar.xz", 9 "needsAuth": true, 10 + "sha256": "469fb0bd5e6a30e9a282ca0b4522e1cfc514f5726b8e1b1f3b7b4bc1003d6ca3", 11 "tarDirectory": "x64", 12 + "url": "https://factorio.com/get-download/2.0.22/alpha/linux64", 13 + "version": "2.0.22" 14 }, 15 "stable": { 16 "candidateHashFilenames": [ 17 + "factorio_linux_2.0.21.tar.xz" 18 ], 19 + "name": "factorio_alpha_x64-2.0.21.tar.xz", 20 "needsAuth": true, 21 + "sha256": "275e0d78d0671da28cf1fbc8d07c99239600ba2fe475ea49ce93436258cf6901", 22 "tarDirectory": "x64", 23 + "url": "https://factorio.com/get-download/2.0.21/alpha/linux64", 24 + "version": "2.0.21" 25 } 26 }, 27 "demo": { ··· 51 "expansion": { 52 "experimental": { 53 "candidateHashFilenames": [ 54 + "factorio-space-age_linux_2.0.22.tar.xz" 55 ], 56 + "name": "factorio_expansion_x64-2.0.22.tar.xz", 57 "needsAuth": true, 58 + "sha256": "67ae6c12897519e9d6851b045a5bf6f7fc15c08b4d927832959399492ab18dde", 59 "tarDirectory": "x64", 60 + "url": "https://factorio.com/get-download/2.0.22/expansion/linux64", 61 + "version": "2.0.22" 62 }, 63 "stable": { 64 "candidateHashFilenames": [ 65 + "factorio-space-age_linux_2.0.21.tar.xz" 66 ], 67 + "name": "factorio_expansion_x64-2.0.21.tar.xz", 68 "needsAuth": true, 69 + "sha256": "55a55ae2bca596b8f4a2b8f72deb543d9b494d8f030f394efa4fd6d9bb0a9802", 70 "tarDirectory": "x64", 71 + "url": "https://factorio.com/get-download/2.0.21/expansion/linux64", 72 + "version": "2.0.21" 73 } 74 }, 75 "headless": { 76 "experimental": { 77 "candidateHashFilenames": [ 78 + "factorio-headless_linux_2.0.22.tar.xz", 79 + "factorio_headless_x64_2.0.22.tar.xz" 80 ], 81 + "name": "factorio_headless_x64-2.0.22.tar.xz", 82 "needsAuth": false, 83 + "sha256": "14c3eea7600fbe7f35bca52fe4c277e8f5e23b34c35ebebaa46c6752c750cb85", 84 "tarDirectory": "x64", 85 + "url": "https://factorio.com/get-download/2.0.22/headless/linux64", 86 + "version": "2.0.22" 87 }, 88 "stable": { 89 "candidateHashFilenames": [ 90 + "factorio-headless_linux_2.0.21.tar.xz", 91 + "factorio_headless_x64_2.0.21.tar.xz" 92 ], 93 + "name": "factorio_headless_x64-2.0.21.tar.xz", 94 "needsAuth": false, 95 + "sha256": "1d6d2785006d6a8d9d5fdcdaa7097a189ec35ba95f3521025dc4e046f7a1398e", 96 "tarDirectory": "x64", 97 + "url": "https://factorio.com/get-download/2.0.21/headless/linux64", 98 + "version": "2.0.21" 99 } 100 } 101 }
+56
pkgs/by-name/fa/factoriolab/package.nix
···
··· 1 + { 2 + buildNpmPackage, 3 + fetchFromGitHub, 4 + vips, 5 + lib, 6 + pkg-config, 7 + jq, 8 + makeWrapper, 9 + nix-update-script, 10 + }: 11 + buildNpmPackage rec { 12 + pname = "factoriolab"; 13 + version = "3.8.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "factoriolab"; 17 + repo = "factoriolab"; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-ZI7nit+DBc1ULGDpGlee7v+NrHc5JhS7sgACGG5fB7I="; 20 + }; 21 + buildInputs = [ vips ]; 22 + nativeBuildInputs = [ 23 + pkg-config 24 + makeWrapper 25 + ]; 26 + 27 + npmDepsHash = "sha256-FX9zxq3kIQ5nxEPW57X53novtCFBPV5w9jg882EC2Lo="; 28 + # By default angular tries to optimize fonts by inlining them 29 + # which needs internet access during building to download said fonts. 30 + # Internet access during build would necessitate turning this into a fixed output derivation 31 + # which is difficult as said fonts are not actually stable. 32 + # This disables font inlining completely in which case the fonts will be loaded on demand by your browser 33 + postPatch = '' 34 + ${lib.getExe jq} '.projects.factoriolab.architect.build.options += { "optimization": {"fonts": false } }' ./angular.json > angular.json.new 35 + mv -f angular.json.new angular.json 36 + ''; 37 + 38 + installPhase = '' 39 + runHook preInstall 40 + 41 + mkdir -p $out/share 42 + 43 + cp -r dist/browser $out/share/factoriolab 44 + 45 + runHook postInstall 46 + ''; 47 + passthru.updateScript = nix-update-script { }; 48 + 49 + meta = { 50 + homepage = "https://github.com/factoriolab/factoriolab"; 51 + changelog = "https://github.com/factoriolab/factoriolab/releases/tag/${version}"; 52 + description = "Angular-based calculator for factory games like Factorio and Dyson Sphere Program"; 53 + license = lib.licenses.mit; 54 + maintainers = with lib.maintainers; [ patrickdag ]; 55 + }; 56 + }
+3 -3
pkgs/by-name/go/goreman/package.nix
··· 2 3 buildGoModule rec { 4 pname = "goreman"; 5 - version = "0.3.15"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "goreman"; 10 rev = "v${version}"; 11 - hash = "sha256-Z6b245tC6UsTaHTTlKEFH0egb5z8HTmv/554nkileng="; 12 }; 13 14 - vendorHash = "sha256-Qbi2GfBrVLFbH9SMZOd1JqvD/afkrVOjU4ECkFK+dFA="; 15 16 ldflags = [ "-s" "-w" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "goreman"; 5 + version = "0.3.16"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "goreman"; 10 rev = "v${version}"; 11 + hash = "sha256-hOFnLxHsrauOrsbJYKNrwFFT5yYX/rdZUVjscBIGDLo="; 12 }; 13 14 + vendorHash = "sha256-Udm0xdrW8Aky26oxUhdbpsNTWziZxkM0G1ZRKLwyl1Q="; 15 16 ldflags = [ "-s" "-w" ]; 17
+3 -3
pkgs/by-name/ka/kando/package.nix
··· 24 25 buildNpmPackage rec { 26 pname = "kando"; 27 - version = "1.4.0"; 28 29 src = fetchFromGitHub { 30 owner = "kando-menu"; 31 repo = "kando"; 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-JcPTplqrMgDsT0HDTh7liChUWvLqe9gwS51ANM3Wsds="; 34 }; 35 36 - npmDepsHash = "sha256-13NuhGq5Pv5GSLeXASWxbXZYaUb9KzMgR7y5I7mv+MA="; 37 38 npmFlags = [ "--ignore-scripts" ]; 39
··· 24 25 buildNpmPackage rec { 26 pname = "kando"; 27 + version = "1.5.1"; 28 29 src = fetchFromGitHub { 30 owner = "kando-menu"; 31 repo = "kando"; 32 rev = "refs/tags/v${version}"; 33 + hash = "sha256-0Y6JDTbzrtAU14soyQgnGTkdR/h52gX2ByNGIYCY38A="; 34 }; 35 36 + npmDepsHash = "sha256-qmLaUd01Mk6yQYqd/rXy4aZoi6oYYY6eZ2kupGRb1z0="; 37 38 npmFlags = [ "--ignore-scripts" ]; 39
+18 -4
pkgs/by-name/kr/kraft/package.nix
··· 1 { lib 2 , buildGoModule 3 , fetchFromGitHub 4 , nix-update-script 5 }: 6 7 buildGoModule rec { 8 pname = "kraftkit"; 9 - version = "0.8.6"; 10 11 src = fetchFromGitHub { 12 owner = "unikraft"; 13 repo = "kraftkit"; 14 rev = "v${version}"; 15 - hash = "sha256-lBvDKO2+MTSrmQM7szg5yulUi5OZKv7qKNQ75PIZgDo="; 16 }; 17 18 - vendorHash = "sha256-JSE4k/JgWvYCfTUuf2pj4XCcdJ9+j7fY9aAiCipapIk="; 19 20 ldflags = [ 21 "-s" ··· 35 description = "Build and use highly customized and ultra-lightweight unikernel VMs"; 36 homepage = "https://github.com/unikraft/kraftkit"; 37 license = lib.licenses.bsd3; 38 - maintainers = with lib.maintainers; [ dit7ya ]; 39 mainProgram = "kraft"; 40 }; 41 }
··· 1 { lib 2 + , stdenv 3 , buildGoModule 4 , fetchFromGitHub 5 + , pkg-config 6 + , btrfs-progs 7 + , gpgme 8 , nix-update-script 9 }: 10 11 buildGoModule rec { 12 pname = "kraftkit"; 13 + version = "0.9.4"; 14 15 src = fetchFromGitHub { 16 owner = "unikraft"; 17 repo = "kraftkit"; 18 rev = "v${version}"; 19 + hash = "sha256-4+3yMx/Vf4aZKC5GRhnAeH4oaJ0Rbz8oXptMtPV+5tA="; 20 }; 21 22 + nativeBuildInputs = [ 23 + pkg-config 24 + ]; 25 + 26 + buildInputs = [ 27 + gpgme 28 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 29 + btrfs-progs 30 + ]; 31 + 32 + vendorHash = "sha256-uyoIlNhgL684f+3+I4CFc+iuMRdI5WAUr7dWr0Bt6bA="; 33 34 ldflags = [ 35 "-s" ··· 49 description = "Build and use highly customized and ultra-lightweight unikernel VMs"; 50 homepage = "https://github.com/unikraft/kraftkit"; 51 license = lib.licenses.bsd3; 52 + maintainers = with lib.maintainers; [ dit7ya cloudripper ]; 53 mainProgram = "kraft"; 54 }; 55 }
+2 -2
pkgs/by-name/ma/magic-vlsi/package.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "magic-vlsi"; 16 - version = "8.3.497"; 17 18 src = fetchurl { 19 url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz"; 20 - sha256 = "sha256-toLywrRtaoA8m2YCgwsKRGif4c5nLOt5eFRDp+ZX8/M="; 21 }; 22 23 nativeBuildInputs = [ python3 ];
··· 13 14 stdenv.mkDerivation rec { 15 pname = "magic-vlsi"; 16 + version = "8.3.501"; 17 18 src = fetchurl { 19 url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz"; 20 + sha256 = "sha256-jUin8dwzfoVugSQAz6Qw7PBzHGwrG8I3k39AMRZgzcM="; 21 }; 22 23 nativeBuildInputs = [ python3 ];
+2 -2
pkgs/by-name/mi/microsoft-edge/package.nix
··· 168 169 stdenv.mkDerivation (finalAttrs: { 170 pname = "microsoft-edge"; 171 - version = "130.0.2849.46"; 172 173 src = fetchurl { 174 url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; 175 - hash = "sha256-QschcHSDoYakjf4oYXIc40SyniCufNmjHJPuvRazdSw="; 176 }; 177 178 # With strictDeps on, some shebangs were not being patched correctly
··· 168 169 stdenv.mkDerivation (finalAttrs: { 170 pname = "microsoft-edge"; 171 + version = "131.0.2903.70"; 172 173 src = fetchurl { 174 url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; 175 + hash = "sha256-LcinHmzr3o5ILjGdr8uuiOGWok0J9G/kTdASfYQh/tM="; 176 }; 177 178 # With strictDeps on, some shebangs were not being patched correctly
+3 -3
pkgs/by-name/nk/nkeys/package.nix
··· 5 6 buildGoModule rec { 7 pname = "nkeys"; 8 - version = "0.4.7"; 9 10 src = fetchFromGitHub { 11 owner = "nats-io"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-ui/vSa2TGe6Pe2aAzitBa1Pd2vKgTMuHoBhYYy2p6Rw="; 15 }; 16 17 - vendorHash = "sha256-SiSqmj6ktfiGsJOSu/pBY53e3vnN+RBfTkGwUuW52uo="; 18 19 meta = with lib; { 20 description = "Public-key signature system for NATS";
··· 5 6 buildGoModule rec { 7 pname = "nkeys"; 8 + version = "0.4.8"; 9 10 src = fetchFromGitHub { 11 owner = "nats-io"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-/nqYTJq8QPRR6ADAg1300I52agdoR7o84eumRjQY6xU="; 15 }; 16 17 + vendorHash = "sha256-NHblFXIRK9moaZKBdfm61Ueo+GH/lGmVhrzYvMvYhjA="; 18 19 meta = with lib; { 20 description = "Public-key signature system for NATS";
+8 -5
pkgs/by-name/no/nodeinfo/package.nix
··· 16 hash = "sha256-NNrMv4AS7ybuJfTgs+p61btSIxo+iMvzH7Y5ct46Dag="; 17 }; 18 19 tags = "extension"; 20 - 21 - sourceRoot = "${src.name}/cli"; 22 23 CGO_ENABLED = 0; 24 25 - meta = with lib; { 26 mainProgram = "nodeinfo"; 27 description = "Command line tool to query nodeinfo based on a given domain"; 28 homepage = "https://codeberg.org/thefederationinfo/nodeinfo-go"; 29 changelog = "https://codeberg.org/thefederationinfo/nodeinfo-go/releases/tag/v${version}"; 30 - license = licenses.mit; 31 - maintainers = with maintainers; [ _6543 ]; 32 }; 33 }
··· 16 hash = "sha256-NNrMv4AS7ybuJfTgs+p61btSIxo+iMvzH7Y5ct46Dag="; 17 }; 18 19 + modRoot = "./cli"; 20 tags = "extension"; 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + ]; 25 26 CGO_ENABLED = 0; 27 28 + meta = { 29 mainProgram = "nodeinfo"; 30 description = "Command line tool to query nodeinfo based on a given domain"; 31 homepage = "https://codeberg.org/thefederationinfo/nodeinfo-go"; 32 changelog = "https://codeberg.org/thefederationinfo/nodeinfo-go/releases/tag/v${version}"; 33 + license = lib.licenses.mit; 34 + maintainers = [ lib.maintainers._6543 ]; 35 }; 36 }
+2 -2
pkgs/by-name/po/powerline-go/package.nix
··· 5 6 buildGoModule rec { 7 pname = "powerline-go"; 8 - version = "1.24"; 9 10 src = fetchFromGitHub { 11 owner = "justjanne"; 12 repo = pname; 13 rev = "v${version}"; 14 - hash = "sha256-3IeyxAc+FRcVsL9AiVr6Jku5f5y3MTT9SXwVQW9MkNo="; 15 }; 16 17 vendorHash = "sha256-W7Lf9s689oJy4U5sQlkLt3INJwtvzU2pot3EFimp7Jw=";
··· 5 6 buildGoModule rec { 7 pname = "powerline-go"; 8 + version = "1.25"; 9 10 src = fetchFromGitHub { 11 owner = "justjanne"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-DLw/6jnJo0IAh0/Y21mfCLP4GgTFlUGvuwyWJwhzYFU="; 15 }; 16 17 vendorHash = "sha256-W7Lf9s689oJy4U5sQlkLt3INJwtvzU2pot3EFimp7Jw=";
+2 -2
pkgs/by-name/pr/praat/package.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "praat"; 14 - version = "6.4.22"; 15 16 src = fetchFromGitHub { 17 owner = "praat"; 18 repo = "praat"; 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-bKWjazCCOIJm+VCAcnQGj3s0bbN4Ahx3RMNuLxZENXA="; 21 }; 22 23 nativeBuildInputs = [
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "praat"; 14 + version = "6.4.23"; 15 16 src = fetchFromGitHub { 17 owner = "praat"; 18 repo = "praat"; 19 rev = "v${finalAttrs.version}"; 20 + hash = "sha256-KZpWQxD+e/QJ8rg0mK4lsMPik+GrqqJf756tsVGev+s="; 21 }; 22 23 nativeBuildInputs = [
+3 -3
pkgs/by-name/qb/qbec/package.nix
··· 2 3 buildGoModule rec { 4 pname = "qbec"; 5 - version = "0.15.2"; 6 7 src = fetchFromGitHub { 8 owner = "splunk"; 9 repo = "qbec"; 10 rev = "v${version}"; 11 - sha256 = "sha256-js/UjnNYRW7s3b4TeprhmBe4cDLDYDrMeLtpASI9aN4="; 12 }; 13 14 - vendorHash = "sha256-oEbKk9cMbI0ZWXrfM8Y19OF/A75mwHl0C/PJx0oTOBo="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "qbec"; 5 + version = "0.16.2"; 6 7 src = fetchFromGitHub { 8 owner = "splunk"; 9 repo = "qbec"; 10 rev = "v${version}"; 11 + sha256 = "sha256-BNVQu4SJl5JsJMEoyfq4ZIo8vGDKyNPdYrKJI/oLxeQ="; 12 }; 13 14 + vendorHash = "sha256-TcIiSoKIS0PX8Jk6dBpc4BJAzR7YeSu9pay/grOQs5w="; 15 16 doCheck = false; 17
+7 -6
pkgs/by-name/qs/qspeakers/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , libsForQt5 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "qspeakers"; 9 - version = "1.6.9"; 10 11 src = fetchFromGitHub { 12 owner = "be1"; 13 repo = "qspeakers"; 14 rev = "refs/tags/${finalAttrs.version}"; 15 - hash = "sha256-V4rcDUJU27ijzsc6zhsEiQ/7SdvHmGR2402iIazrMfE="; 16 }; 17 18 nativeBuildInputs = [
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + libsForQt5, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "qspeakers"; 10 + version = "1.6.10"; 11 12 src = fetchFromGitHub { 13 owner = "be1"; 14 repo = "qspeakers"; 15 rev = "refs/tags/${finalAttrs.version}"; 16 + hash = "sha256-ab3+lw3F0CU8OLa7V4itPZsWKCV+6DoUvmFEqhAdklw="; 17 }; 18 19 nativeBuildInputs = [
+3 -3
pkgs/by-name/ra/railway/package.nix
··· 12 in 13 rustPlatform.buildRustPackage rec { 14 pname = "railway"; 15 - version = "3.17.10"; 16 17 src = fetchFromGitHub { 18 owner = "railwayapp"; 19 repo = "cli"; 20 rev = "v${version}"; 21 - hash = "sha256-WrNWtVlvEscyo/MOQEf+MikxHCKIqfKWfhPtV0DVhXM="; 22 }; 23 24 - cargoHash = "sha256-C1lqK60asOW9Kl3cNgJvdDtZEtPUOE/SbBww0qL3fsU="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
··· 12 in 13 rustPlatform.buildRustPackage rec { 14 pname = "railway"; 15 + version = "3.18.0"; 16 17 src = fetchFromGitHub { 18 owner = "railwayapp"; 19 repo = "cli"; 20 rev = "v${version}"; 21 + hash = "sha256-KMmiVA6ubwX8n2MVBOTfsT+05ii89DToMSxpINuizEc="; 22 }; 23 24 + cargoHash = "sha256-sDDNZAUt+4H1smA+8Pynu1EQtAdP2U6nHwC7AWo5gnk="; 25 26 nativeBuildInputs = [ pkg-config ]; 27
+2 -2
pkgs/by-name/sa/sasutils/package.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "sasutils"; 5 - version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "stanford-rc"; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-DK0mEqlPf9UGtUxqbzB0l1xX0P4htYm2NYvV7zilhx0="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ];
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "sasutils"; 5 + version = "0.6.1"; 6 7 src = fetchFromGitHub { 8 owner = "stanford-rc"; 9 repo = pname; 10 rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-rx4IxS5q1c3z617F4DBWxuxxSPHKFrw2bTW6b6/qkds="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles ];
+1
pkgs/by-name/se/sequoia-chameleon-gnupg/package.nix
··· 44 homepage = "https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg"; 45 license = licenses.gpl3Plus; 46 maintainers = with maintainers; [ nickcao ]; 47 }; 48 }
··· 44 homepage = "https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg"; 45 license = licenses.gpl3Plus; 46 maintainers = with maintainers; [ nickcao ]; 47 + mainProgram = "gpg-sq"; 48 }; 49 }
+5
pkgs/by-name/sh/shiori/package.nix
··· 15 sha256 = "sha256-gMIpDiA5ncZ50WZ2Y57mScTEXzeObgZxP+nkWe+a8Eo="; 16 }; 17 18 nativeBuildInputs = [ installShellFiles ]; 19 postInstall = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' 20 installShellCompletion --cmd shiori \
··· 15 sha256 = "sha256-gMIpDiA5ncZ50WZ2Y57mScTEXzeObgZxP+nkWe+a8Eo="; 16 }; 17 18 + ldflags = [ 19 + "-X main.version=${version}" 20 + "-X main.commit=nixpkgs-${src.rev}" 21 + ]; 22 + 23 nativeBuildInputs = [ installShellFiles ]; 24 postInstall = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' 25 installShellCompletion --cmd shiori \
+3 -3
pkgs/by-name/si/sing-box/package.nix
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 - version = "1.10.1"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-WGlYaD4u9M1hfT+L6Adc5gClIYOkFsn4c9FAympmscQ="; 21 }; 22 23 - vendorHash = "sha256-lyZ2Up1SSaRGvai0gGtq43MSdHfXc2PuxflSbASYZ4A="; 24 25 tags = [ 26 "with_quic"
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 + version = "1.10.3"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-Xornyh9FT4ZqR0QjYMlgPhWEDFGb1DEPCngGpuix4A0="; 21 }; 22 23 + vendorHash = "sha256-3YRtwYkyvtMtMUN1O6yb1JQnSXdsb8KnQ9WsnGtvGnk="; 24 25 tags = [ 26 "with_quic"
+2 -2
pkgs/by-name/si/singular/package.nix
··· 21 22 stdenv.mkDerivation rec { 23 pname = "singular"; 24 - version = "4.3.2p16"; 25 26 # since the tarball does not contain tests, we fetch from GitHub. 27 src = fetchFromGitHub { ··· 31 # if a release is tagged (which sometimes does not happen), it will 32 # be in the format below. 33 rev = "Release-${lib.replaceStrings ["."] ["-"] version}"; 34 - hash = "sha256-5JZgI5lnfX4JlBSEAL7Wv6uao/57GBaMqwgslJt9Bjk="; 35 36 # the repository's .gitattributes file contains the lines "/Tst/ 37 # export-ignore" and "/doc/ export-ignore" so some directories are
··· 21 22 stdenv.mkDerivation rec { 23 pname = "singular"; 24 + version = "4.4.0p6"; 25 26 # since the tarball does not contain tests, we fetch from GitHub. 27 src = fetchFromGitHub { ··· 31 # if a release is tagged (which sometimes does not happen), it will 32 # be in the format below. 33 rev = "Release-${lib.replaceStrings ["."] ["-"] version}"; 34 + hash = "sha256-QxMMMnXaWe+0ogA6+3eOtdROb0RolSveya6DIx97/YY="; 35 36 # the repository's .gitattributes file contains the lines "/Tst/ 37 # export-ignore" and "/doc/ export-ignore" so some directories are
+3 -3
pkgs/by-name/sq/sq/package.nix
··· 2 3 buildGoModule rec { 4 pname = "sq"; 5 - version = "0.48.3"; 6 7 src = fetchFromGitHub { 8 owner = "neilotoole"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-22N8DEaLmGBA3Rx6VzxplUK9UAydo/gx4EsQzzaRHNE="; 12 }; 13 14 - vendorHash = "sha256-p0r7TuWFpV81Rnxqdj+UJec60EmvVQISURe43SpOpw0="; 15 16 proxyVendor = true; 17
··· 2 3 buildGoModule rec { 4 pname = "sq"; 5 + version = "0.48.4"; 6 7 src = fetchFromGitHub { 8 owner = "neilotoole"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-hg9BKeKly4uK3ib6CGETY/uZHXpxHqorU+YOjaUEiHE="; 12 }; 13 14 + vendorHash = "sha256-ofgEQ8vVfP/s9wjSgQKbmSx9Aeq9kv4gkUXkSHC4OOE="; 15 16 proxyVendor = true; 17
+569 -660
pkgs/by-name/sv/svix-server/Cargo.lock
··· 4 5 [[package]] 6 name = "addr2line" 7 - version = "0.22.0" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 dependencies = [ 11 "gimli", 12 ] 13 14 [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20 [[package]] 21 name = "aead" ··· 93 "darling", 94 "proc-macro2", 95 "quote", 96 - "syn 2.0.71", 97 ] 98 99 [[package]] ··· 110 111 [[package]] 112 name = "amq-protocol" 113 - version = "7.2.1" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "0f0234884b3641db74d22ccc20fc2594db5f23d7d41ade5c93d7ee33d200960c" 116 dependencies = [ 117 "amq-protocol-tcp", 118 "amq-protocol-types", ··· 124 125 [[package]] 126 name = "amq-protocol-tcp" 127 - version = "7.2.1" 128 source = "registry+https://github.com/rust-lang/crates.io-index" 129 - checksum = "265dca43d9dbb3d5bbb0b3ef1b0cd9044ce3aa5d697d5b66cde974d1f6063f09" 130 dependencies = [ 131 "amq-protocol-uri", 132 "tcp-stream", ··· 135 136 [[package]] 137 name = "amq-protocol-types" 138 - version = "7.2.1" 139 source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "c7412353b58923fa012feb9a64ccc0c811747babee2e5a2fd63eb102dc8054c3" 141 dependencies = [ 142 "cookie-factory", 143 "nom", ··· 147 148 [[package]] 149 name = "amq-protocol-uri" 150 - version = "7.2.1" 151 source = "registry+https://github.com/rust-lang/crates.io-index" 152 - checksum = "2be91352c805d5704784e079117d5291fd5bf2569add53c914ebce6d1a795d33" 153 dependencies = [ 154 "amq-protocol-types", 155 "percent-encoding", ··· 173 174 [[package]] 175 name = "anstream" 176 - version = "0.6.14" 177 source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 179 dependencies = [ 180 "anstyle", 181 "anstyle-parse", ··· 188 189 [[package]] 190 name = "anstyle" 191 - version = "1.0.7" 192 source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 194 195 [[package]] 196 name = "anstyle-parse" 197 - version = "0.2.4" 198 source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 200 dependencies = [ 201 "utf8parse", 202 ] 203 204 [[package]] 205 name = "anstyle-query" 206 - version = "1.1.0" 207 source = "registry+https://github.com/rust-lang/crates.io-index" 208 - checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 209 dependencies = [ 210 "windows-sys 0.52.0", 211 ] 212 213 [[package]] 214 name = "anstyle-wincon" 215 - version = "3.0.3" 216 source = "registry+https://github.com/rust-lang/crates.io-index" 217 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 218 dependencies = [ 219 "anstyle", 220 "windows-sys 0.52.0", ··· 222 223 [[package]] 224 name = "anyhow" 225 - version = "1.0.86" 226 source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 228 229 [[package]] 230 name = "arc-swap" 231 version = "1.7.1" 232 source = "registry+https://github.com/rust-lang/crates.io-index" 233 checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 234 235 [[package]] 236 name = "asn1-rs" 237 - version = "0.6.1" 238 source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" 240 dependencies = [ 241 "asn1-rs-derive", 242 "asn1-rs-impl", ··· 250 251 [[package]] 252 name = "asn1-rs-derive" 253 - version = "0.5.0" 254 source = "registry+https://github.com/rust-lang/crates.io-index" 255 - checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" 256 dependencies = [ 257 "proc-macro2", 258 "quote", 259 - "syn 2.0.71", 260 "synstructure", 261 ] 262 ··· 268 dependencies = [ 269 "proc-macro2", 270 "quote", 271 - "syn 2.0.71", 272 ] 273 274 [[package]] ··· 291 292 [[package]] 293 name = "async-executor" 294 - version = "1.13.0" 295 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" 297 dependencies = [ 298 "async-task", 299 "concurrent-queue", 300 - "fastrand 2.1.0", 301 "futures-lite 2.3.0", 302 "slab", 303 ] ··· 310 dependencies = [ 311 "async-channel", 312 "async-executor", 313 - "async-io 2.3.3", 314 "async-lock 3.4.0", 315 "blocking", 316 "futures-lite 2.3.0", ··· 319 320 [[package]] 321 name = "async-global-executor-trait" 322 - version = "2.1.0" 323 source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "33dd14c5a15affd2abcff50d84efd4009ada28a860f01c14f9d654f3e81b3f75" 325 dependencies = [ 326 "async-global-executor", 327 "async-trait", ··· 350 351 [[package]] 352 name = "async-io" 353 - version = "2.3.3" 354 source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 356 dependencies = [ 357 "async-lock 3.4.0", 358 "cfg-if", ··· 360 "futures-io", 361 "futures-lite 2.3.0", 362 "parking", 363 - "polling 3.7.2", 364 - "rustix 0.38.34", 365 "slab", 366 "tracing", 367 - "windows-sys 0.52.0", 368 ] 369 370 [[package]] ··· 412 413 [[package]] 414 name = "async-stream" 415 - version = "0.3.5" 416 source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 418 dependencies = [ 419 "async-stream-impl", 420 "futures-core", ··· 423 424 [[package]] 425 name = "async-stream-impl" 426 - version = "0.3.5" 427 source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 429 dependencies = [ 430 "proc-macro2", 431 "quote", 432 - "syn 2.0.71", 433 ] 434 435 [[package]] ··· 440 441 [[package]] 442 name = "async-trait" 443 - version = "0.1.81" 444 source = "registry+https://github.com/rust-lang/crates.io-index" 445 - checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 446 dependencies = [ 447 "proc-macro2", 448 "quote", 449 - "syn 2.0.71", 450 ] 451 452 [[package]] ··· 475 476 [[package]] 477 name = "autocfg" 478 - version = "1.3.0" 479 source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 481 - 482 - [[package]] 483 - name = "aws-lc-rs" 484 - version = "1.8.0" 485 - source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "a8a47f2fb521b70c11ce7369a6c5fa4bd6af7e5d62ec06303875bafe7c6ba245" 487 - dependencies = [ 488 - "aws-lc-sys", 489 - "mirai-annotations", 490 - "paste", 491 - "zeroize", 492 - ] 493 - 494 - [[package]] 495 - name = "aws-lc-sys" 496 - version = "0.19.0" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "2927c7af777b460b7ccd95f8b67acd7b4c04ec8896bf0c8e80ba30523cffc057" 499 - dependencies = [ 500 - "bindgen", 501 - "cc", 502 - "cmake", 503 - "dunce", 504 - "fs_extra", 505 - "libc", 506 - "paste", 507 - ] 508 509 [[package]] 510 name = "axum" ··· 576 577 [[package]] 578 name = "backtrace" 579 - version = "0.3.73" 580 source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 582 dependencies = [ 583 "addr2line", 584 - "cc", 585 "cfg-if", 586 "libc", 587 "miniz_oxide", 588 "object", 589 "rustc-demangle", 590 ] 591 592 [[package]] ··· 639 640 [[package]] 641 name = "bb8-redis" 642 - version = "0.15.0" 643 source = "registry+https://github.com/rust-lang/crates.io-index" 644 - checksum = "7eb4f141b33a750b5f667c445bd8588de10b8f2b045cd2aabc040ca746fb53ae" 645 dependencies = [ 646 "async-trait", 647 "bb8", 648 - "redis", 649 ] 650 651 [[package]] 652 - name = "bindgen" 653 - version = "0.69.4" 654 source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 656 dependencies = [ 657 - "bitflags 2.6.0", 658 - "cexpr", 659 - "clang-sys", 660 - "itertools", 661 - "lazy_static", 662 - "lazycell", 663 - "log", 664 - "prettyplease", 665 - "proc-macro2", 666 - "quote", 667 - "regex", 668 - "rustc-hash", 669 - "shlex", 670 - "syn 2.0.71", 671 - "which", 672 ] 673 674 [[package]] ··· 761 762 [[package]] 763 name = "bytemuck" 764 - version = "1.16.1" 765 source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e" 767 768 [[package]] 769 name = "byteorder" ··· 773 774 [[package]] 775 name = "bytes" 776 - version = "1.6.1" 777 source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" 779 780 [[package]] 781 name = "bytesize" ··· 794 795 [[package]] 796 name = "cc" 797 - version = "1.1.5" 798 source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "324c74f2155653c90b04f25b2a47a8a631360cb908f92a772695f430c7e31052" 800 dependencies = [ 801 - "jobserver", 802 - "libc", 803 - ] 804 - 805 - [[package]] 806 - name = "cexpr" 807 - version = "0.6.0" 808 - source = "registry+https://github.com/rust-lang/crates.io-index" 809 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 810 - dependencies = [ 811 - "nom", 812 ] 813 814 [[package]] ··· 868 ] 869 870 [[package]] 871 - name = "clang-sys" 872 - version = "1.8.1" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 875 - dependencies = [ 876 - "glob", 877 - "libc", 878 - "libloading", 879 - ] 880 - 881 - [[package]] 882 name = "clap" 883 - version = "4.5.9" 884 source = "registry+https://github.com/rust-lang/crates.io-index" 885 - checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462" 886 dependencies = [ 887 "clap_builder", 888 "clap_derive", ··· 890 891 [[package]] 892 name = "clap_builder" 893 - version = "4.5.9" 894 source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942" 896 dependencies = [ 897 "anstream", 898 "anstyle", ··· 902 903 [[package]] 904 name = "clap_derive" 905 - version = "4.5.8" 906 source = "registry+https://github.com/rust-lang/crates.io-index" 907 - checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085" 908 dependencies = [ 909 "heck 0.5.0", 910 "proc-macro2", 911 "quote", 912 - "syn 2.0.71", 913 ] 914 915 [[package]] 916 name = "clap_lex" 917 - version = "0.7.1" 918 - source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 920 - 921 - [[package]] 922 - name = "cmake" 923 - version = "0.1.50" 924 source = "registry+https://github.com/rust-lang/crates.io-index" 925 - checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 926 - dependencies = [ 927 - "cc", 928 - ] 929 930 [[package]] 931 name = "cms" ··· 952 953 [[package]] 954 name = "colorchoice" 955 - version = "1.0.1" 956 source = "registry+https://github.com/rust-lang/crates.io-index" 957 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 958 959 [[package]] 960 name = "combine" ··· 1009 1010 [[package]] 1011 name = "core-foundation-sys" 1012 - version = "0.8.6" 1013 source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1015 1016 [[package]] 1017 name = "cpufeatures" 1018 - version = "0.2.12" 1019 source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1021 dependencies = [ 1022 "libc", 1023 ] ··· 1044 checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 1045 1046 [[package]] 1047 - name = "crossbeam-channel" 1048 - version = "0.5.13" 1049 - source = "registry+https://github.com/rust-lang/crates.io-index" 1050 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 1051 - dependencies = [ 1052 - "crossbeam-utils", 1053 - ] 1054 - 1055 - [[package]] 1056 name = "crossbeam-queue" 1057 version = "0.3.11" 1058 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1092 1093 [[package]] 1094 name = "ct-codecs" 1095 - version = "1.1.1" 1096 source = "registry+https://github.com/rust-lang/crates.io-index" 1097 - checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df" 1098 1099 [[package]] 1100 name = "ctor" ··· 1103 checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" 1104 dependencies = [ 1105 "quote", 1106 - "syn 2.0.71", 1107 ] 1108 1109 [[package]] ··· 1127 "proc-macro2", 1128 "quote", 1129 "strsim", 1130 - "syn 2.0.71", 1131 ] 1132 1133 [[package]] ··· 1138 dependencies = [ 1139 "darling_core", 1140 "quote", 1141 - "syn 2.0.71", 1142 ] 1143 1144 [[package]] ··· 1203 dependencies = [ 1204 "proc-macro2", 1205 "quote", 1206 - "syn 2.0.71", 1207 ] 1208 1209 [[package]] ··· 1217 ] 1218 1219 [[package]] 1220 - name = "derivative" 1221 - version = "2.2.0" 1222 - source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1224 - dependencies = [ 1225 - "proc-macro2", 1226 - "quote", 1227 - "syn 1.0.109", 1228 - ] 1229 - 1230 - [[package]] 1231 name = "derive_more" 1232 version = "0.99.18" 1233 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1237 "proc-macro2", 1238 "quote", 1239 "rustc_version", 1240 - "syn 2.0.71", 1241 ] 1242 1243 [[package]] ··· 1269 dependencies = [ 1270 "proc-macro2", 1271 "quote", 1272 - "syn 2.0.71", 1273 ] 1274 1275 [[package]] ··· 1283 version = "0.15.7" 1284 source = "registry+https://github.com/rust-lang/crates.io-index" 1285 checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1286 - 1287 - [[package]] 1288 - name = "dunce" 1289 - version = "1.0.4" 1290 - source = "registry+https://github.com/rust-lang/crates.io-index" 1291 - checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 1292 1293 [[package]] 1294 name = "dyn-clone" ··· 1361 1362 [[package]] 1363 name = "enum-as-inner" 1364 - version = "0.6.0" 1365 source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1367 dependencies = [ 1368 - "heck 0.4.1", 1369 "proc-macro2", 1370 "quote", 1371 - "syn 2.0.71", 1372 ] 1373 1374 [[package]] ··· 1380 "once_cell", 1381 "proc-macro2", 1382 "quote", 1383 - "syn 2.0.71", 1384 ] 1385 1386 [[package]] ··· 1439 1440 [[package]] 1441 name = "executor-trait" 1442 - version = "2.1.0" 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "1a1052dd43212a7777ec6a69b117da52f5e52f07aec47d00c1a2b33b85d06b08" 1445 dependencies = [ 1446 "async-trait", 1447 ] ··· 1467 1468 [[package]] 1469 name = "fastrand" 1470 - version = "2.1.0" 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1473 1474 [[package]] 1475 name = "ff" ··· 1567 ] 1568 1569 [[package]] 1570 - name = "fs_extra" 1571 - version = "1.3.0" 1572 - source = "registry+https://github.com/rust-lang/crates.io-index" 1573 - checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 1574 - 1575 - [[package]] 1576 name = "futures" 1577 - version = "0.3.30" 1578 source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1580 dependencies = [ 1581 "futures-channel", 1582 "futures-core", ··· 1589 1590 [[package]] 1591 name = "futures-channel" 1592 - version = "0.3.30" 1593 source = "registry+https://github.com/rust-lang/crates.io-index" 1594 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1595 dependencies = [ 1596 "futures-core", 1597 "futures-sink", ··· 1599 1600 [[package]] 1601 name = "futures-core" 1602 - version = "0.3.30" 1603 source = "registry+https://github.com/rust-lang/crates.io-index" 1604 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1605 1606 [[package]] 1607 name = "futures-executor" 1608 - version = "0.3.30" 1609 source = "registry+https://github.com/rust-lang/crates.io-index" 1610 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1611 dependencies = [ 1612 "futures-core", 1613 "futures-task", ··· 1627 1628 [[package]] 1629 name = "futures-io" 1630 - version = "0.3.30" 1631 source = "registry+https://github.com/rust-lang/crates.io-index" 1632 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1633 1634 [[package]] 1635 name = "futures-lite" ··· 1652 source = "registry+https://github.com/rust-lang/crates.io-index" 1653 checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1654 dependencies = [ 1655 - "fastrand 2.1.0", 1656 "futures-core", 1657 "futures-io", 1658 "parking", ··· 1661 1662 [[package]] 1663 name = "futures-macro" 1664 - version = "0.3.30" 1665 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1667 dependencies = [ 1668 "proc-macro2", 1669 "quote", 1670 - "syn 2.0.71", 1671 ] 1672 1673 [[package]] 1674 name = "futures-sink" 1675 - version = "0.3.30" 1676 source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1678 1679 [[package]] 1680 name = "futures-task" 1681 - version = "0.3.30" 1682 source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1684 1685 [[package]] 1686 name = "futures-util" 1687 - version = "0.3.30" 1688 source = "registry+https://github.com/rust-lang/crates.io-index" 1689 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1690 dependencies = [ 1691 "futures-channel", 1692 "futures-core", ··· 1726 1727 [[package]] 1728 name = "gimli" 1729 - version = "0.29.0" 1730 source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 1732 1733 [[package]] 1734 name = "glob" ··· 1759 "futures-sink", 1760 "futures-util", 1761 "http 0.2.12", 1762 - "indexmap 2.2.6", 1763 "slab", 1764 "tokio", 1765 "tokio-util", ··· 1783 ] 1784 1785 [[package]] 1786 name = "hashlink" 1787 - version = "0.8.4" 1788 source = "registry+https://github.com/rust-lang/crates.io-index" 1789 - checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1790 dependencies = [ 1791 "hashbrown 0.14.5", 1792 ] ··· 1820 version = "0.4.1" 1821 source = "registry+https://github.com/rust-lang/crates.io-index" 1822 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1823 - dependencies = [ 1824 - "unicode-segmentation", 1825 - ] 1826 1827 [[package]] 1828 name = "heck" ··· 2030 2031 [[package]] 2032 name = "httparse" 2033 - version = "1.9.4" 2034 source = "registry+https://github.com/rust-lang/crates.io-index" 2035 - checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 2036 2037 [[package]] 2038 name = "httpdate" ··· 2056 "httpdate", 2057 "itoa", 2058 "pin-project-lite", 2059 - "socket2 0.5.7", 2060 "tokio", 2061 "tower-service", 2062 "tracing", ··· 2065 2066 [[package]] 2067 name = "hyper" 2068 - version = "1.4.1" 2069 source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 2071 dependencies = [ 2072 "bytes", 2073 "futures-channel", ··· 2139 dependencies = [ 2140 "futures-util", 2141 "http 1.1.0", 2142 - "hyper 1.4.1", 2143 "hyper-util", 2144 "log", 2145 "rustls 0.22.4", ··· 2198 dependencies = [ 2199 "bytes", 2200 "http-body-util", 2201 - "hyper 1.4.1", 2202 "hyper-util", 2203 "native-tls", 2204 "tokio", ··· 2208 2209 [[package]] 2210 name = "hyper-util" 2211 - version = "0.1.6" 2212 source = "registry+https://github.com/rust-lang/crates.io-index" 2213 - checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" 2214 dependencies = [ 2215 "bytes", 2216 "futures-channel", 2217 "futures-util", 2218 "http 1.1.0", 2219 "http-body 1.0.1", 2220 - "hyper 1.4.1", 2221 "pin-project-lite", 2222 "socket2 0.5.7", 2223 "tokio", 2224 - "tower", 2225 "tower-service", 2226 "tracing", 2227 ] 2228 2229 [[package]] 2230 name = "iana-time-zone" 2231 - version = "0.1.60" 2232 source = "registry+https://github.com/rust-lang/crates.io-index" 2233 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2234 dependencies = [ 2235 "android_system_properties", 2236 "core-foundation-sys", ··· 2294 2295 [[package]] 2296 name = "indexmap" 2297 - version = "2.2.6" 2298 source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 2300 dependencies = [ 2301 "equivalent", 2302 - "hashbrown 0.14.5", 2303 ] 2304 2305 [[package]] ··· 2310 dependencies = [ 2311 "proc-macro2", 2312 "quote", 2313 - "syn 2.0.71", 2314 ] 2315 2316 [[package]] ··· 2358 "socket2 0.5.7", 2359 "widestring", 2360 "windows-sys 0.48.0", 2361 - "winreg 0.50.0", 2362 ] 2363 2364 [[package]] 2365 name = "ipnet" 2366 - version = "2.9.0" 2367 source = "registry+https://github.com/rust-lang/crates.io-index" 2368 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2369 dependencies = [ 2370 "serde", 2371 ] 2372 2373 [[package]] 2374 name = "is_terminal_polyfill" 2375 - version = "1.70.0" 2376 source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 2378 2379 [[package]] 2380 name = "iso8601" ··· 2401 checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2402 2403 [[package]] 2404 - name = "jobserver" 2405 - version = "0.1.31" 2406 - source = "registry+https://github.com/rust-lang/crates.io-index" 2407 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2408 - dependencies = [ 2409 - "libc", 2410 - ] 2411 - 2412 - [[package]] 2413 name = "js-sys" 2414 - version = "0.3.69" 2415 source = "registry+https://github.com/rust-lang/crates.io-index" 2416 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2417 dependencies = [ 2418 "wasm-bindgen", 2419 ] ··· 2476 2477 [[package]] 2478 name = "k256" 2479 - version = "0.13.3" 2480 source = "registry+https://github.com/rust-lang/crates.io-index" 2481 - checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" 2482 dependencies = [ 2483 "cfg-if", 2484 "ecdsa", ··· 2490 2491 [[package]] 2492 name = "lapin" 2493 - version = "2.3.4" 2494 source = "registry+https://github.com/rust-lang/crates.io-index" 2495 - checksum = "fae02c316a8a5922ce7518afa6b6c00e9a099f8e59587567e3331efdd11b8ceb" 2496 dependencies = [ 2497 "amq-protocol", 2498 "async-global-executor-trait", ··· 2520 ] 2521 2522 [[package]] 2523 - name = "lazycell" 2524 - version = "1.3.0" 2525 - source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 2527 - 2528 - [[package]] 2529 name = "libc" 2530 - version = "0.2.155" 2531 source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2533 - 2534 - [[package]] 2535 - name = "libloading" 2536 - version = "0.8.4" 2537 - source = "registry+https://github.com/rust-lang/crates.io-index" 2538 - checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" 2539 - dependencies = [ 2540 - "cfg-if", 2541 - "windows-targets 0.52.6", 2542 - ] 2543 2544 [[package]] 2545 name = "libm" ··· 2549 2550 [[package]] 2551 name = "libsqlite3-sys" 2552 - version = "0.27.0" 2553 source = "registry+https://github.com/rust-lang/crates.io-index" 2554 - checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2555 dependencies = [ 2556 "cc", 2557 "pkg-config", ··· 2661 2662 [[package]] 2663 name = "miniz_oxide" 2664 - version = "0.7.4" 2665 source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 2667 dependencies = [ 2668 - "adler", 2669 ] 2670 2671 [[package]] 2672 name = "mio" 2673 - version = "0.8.11" 2674 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2676 dependencies = [ 2677 "libc", 2678 "wasi", 2679 - "windows-sys 0.48.0", 2680 ] 2681 - 2682 - [[package]] 2683 - name = "mirai-annotations" 2684 - version = "1.12.0" 2685 - source = "registry+https://github.com/rust-lang/crates.io-index" 2686 - checksum = "c9be0862c1b3f26a88803c4a49de6889c10e608b3ee9344e6ef5b45fb37ad3d1" 2687 2688 [[package]] 2689 name = "native-tls" ··· 2826 ] 2827 2828 [[package]] 2829 - name = "num_cpus" 2830 - version = "1.16.0" 2831 - source = "registry+https://github.com/rust-lang/crates.io-index" 2832 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2833 - dependencies = [ 2834 - "hermit-abi 0.3.9", 2835 - "libc", 2836 - ] 2837 - 2838 - [[package]] 2839 name = "num_enum" 2840 - version = "0.7.2" 2841 source = "registry+https://github.com/rust-lang/crates.io-index" 2842 - checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2843 dependencies = [ 2844 "num_enum_derive", 2845 ] 2846 2847 [[package]] 2848 name = "num_enum_derive" 2849 - version = "0.7.2" 2850 source = "registry+https://github.com/rust-lang/crates.io-index" 2851 - checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2852 dependencies = [ 2853 "proc-macro-crate", 2854 "proc-macro2", 2855 "quote", 2856 - "syn 2.0.71", 2857 ] 2858 2859 [[package]] 2860 name = "object" 2861 - version = "0.36.1" 2862 source = "registry+https://github.com/rust-lang/crates.io-index" 2863 - checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce" 2864 dependencies = [ 2865 "memchr", 2866 ] 2867 2868 [[package]] 2869 name = "oid-registry" 2870 - version = "0.7.0" 2871 source = "registry+https://github.com/rust-lang/crates.io-index" 2872 - checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" 2873 dependencies = [ 2874 "asn1-rs", 2875 ] ··· 2877 [[package]] 2878 name = "omniqueue" 2879 version = "0.2.1" 2880 - source = "git+https://github.com/svix/omniqueue-rs?rev=5ae22000e2ea214ba707cac81657f098e5785a76#5ae22000e2ea214ba707cac81657f098e5785a76" 2881 dependencies = [ 2882 "async-trait", 2883 "bb8", 2884 - "bb8-redis", 2885 "bytesize", 2886 "futures-util", 2887 "lapin", 2888 - "redis", 2889 "serde", 2890 "serde_json", 2891 "svix-ksuid 0.8.0", 2892 "thiserror", 2893 "time", 2894 "tokio", ··· 2897 2898 [[package]] 2899 name = "once_cell" 2900 - version = "1.19.0" 2901 source = "registry+https://github.com/rust-lang/crates.io-index" 2902 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2903 2904 [[package]] 2905 name = "opaque-debug" ··· 2909 2910 [[package]] 2911 name = "openssl" 2912 - version = "0.10.66" 2913 source = "registry+https://github.com/rust-lang/crates.io-index" 2914 - checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" 2915 dependencies = [ 2916 "bitflags 2.6.0", 2917 "cfg-if", ··· 2930 dependencies = [ 2931 "proc-macro2", 2932 "quote", 2933 - "syn 2.0.71", 2934 ] 2935 2936 [[package]] ··· 2941 2942 [[package]] 2943 name = "openssl-sys" 2944 - version = "0.9.103" 2945 source = "registry+https://github.com/rust-lang/crates.io-index" 2946 - checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" 2947 dependencies = [ 2948 "cc", 2949 "libc", ··· 2953 2954 [[package]] 2955 name = "opentelemetry" 2956 - version = "0.22.0" 2957 source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf" 2959 dependencies = [ 2960 "futures-core", 2961 "futures-sink", ··· 2963 "once_cell", 2964 "pin-project-lite", 2965 "thiserror", 2966 - "urlencoding", 2967 ] 2968 2969 [[package]] 2970 name = "opentelemetry-http" 2971 - version = "0.11.1" 2972 source = "registry+https://github.com/rust-lang/crates.io-index" 2973 - checksum = "7690dc77bf776713848c4faa6501157469017eaf332baccd4eb1cea928743d94" 2974 dependencies = [ 2975 "async-trait", 2976 "bytes", ··· 2980 2981 [[package]] 2982 name = "opentelemetry-otlp" 2983 - version = "0.15.0" 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2985 - checksum = "1a016b8d9495c639af2145ac22387dcb88e44118e45320d9238fbf4e7889abcb" 2986 dependencies = [ 2987 "async-trait", 2988 "futures-core", 2989 "http 0.2.12", 2990 "opentelemetry", 2991 "opentelemetry-proto", 2992 - "opentelemetry-semantic-conventions", 2993 "opentelemetry_sdk", 2994 "prost", 2995 "thiserror", ··· 2999 3000 [[package]] 3001 name = "opentelemetry-proto" 3002 - version = "0.5.0" 3003 source = "registry+https://github.com/rust-lang/crates.io-index" 3004 - checksum = "3a8fddc9b68f5b80dae9d6f510b88e02396f006ad48cac349411fbecc80caae4" 3005 dependencies = [ 3006 "opentelemetry", 3007 "opentelemetry_sdk", 3008 "prost", 3009 "tonic", 3010 ] 3011 - 3012 - [[package]] 3013 - name = "opentelemetry-semantic-conventions" 3014 - version = "0.14.0" 3015 - source = "registry+https://github.com/rust-lang/crates.io-index" 3016 - checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910" 3017 3018 [[package]] 3019 name = "opentelemetry_sdk" 3020 - version = "0.22.1" 3021 source = "registry+https://github.com/rust-lang/crates.io-index" 3022 - checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e" 3023 dependencies = [ 3024 "async-trait", 3025 - "crossbeam-channel", 3026 "futures-channel", 3027 "futures-executor", 3028 "futures-util", 3029 "glob", 3030 "once_cell", 3031 "opentelemetry", 3032 - "ordered-float 4.2.1", 3033 "percent-encoding", 3034 "rand", 3035 "thiserror", ··· 3048 3049 [[package]] 3050 name = "ordered-float" 3051 - version = "4.2.1" 3052 source = "registry+https://github.com/rust-lang/crates.io-index" 3053 - checksum = "19ff2cf528c6c03d9ed653d6c4ce1dc0582dc4af309790ad92f07c1cd551b0be" 3054 dependencies = [ 3055 "num-traits", 3056 ] ··· 3068 3069 [[package]] 3070 name = "ouroboros" 3071 - version = "0.17.2" 3072 source = "registry+https://github.com/rust-lang/crates.io-index" 3073 - checksum = "e2ba07320d39dfea882faa70554b4bd342a5f273ed59ba7c1c6b4c840492c954" 3074 dependencies = [ 3075 "aliasable", 3076 "ouroboros_macro", ··· 3079 3080 [[package]] 3081 name = "ouroboros_macro" 3082 - version = "0.17.2" 3083 source = "registry+https://github.com/rust-lang/crates.io-index" 3084 - checksum = "ec4c6225c69b4ca778c0aea097321a64c421cf4577b331c61b229267edabb6f8" 3085 dependencies = [ 3086 "heck 0.4.1", 3087 - "proc-macro-error", 3088 "proc-macro2", 3089 "quote", 3090 - "syn 2.0.71", 3091 ] 3092 3093 [[package]] ··· 3144 3145 [[package]] 3146 name = "parking" 3147 - version = "2.2.0" 3148 source = "registry+https://github.com/rust-lang/crates.io-index" 3149 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3150 3151 [[package]] 3152 name = "parking_lot" ··· 3166 dependencies = [ 3167 "cfg-if", 3168 "libc", 3169 - "redox_syscall 0.5.3", 3170 "smallvec", 3171 "windows-targets 0.52.6", 3172 ] ··· 3207 "proc-macro2", 3208 "proc-macro2-diagnostics", 3209 "quote", 3210 - "syn 2.0.71", 3211 ] 3212 3213 [[package]] ··· 3236 3237 [[package]] 3238 name = "pin-project" 3239 - version = "1.1.5" 3240 source = "registry+https://github.com/rust-lang/crates.io-index" 3241 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 3242 dependencies = [ 3243 "pin-project-internal", 3244 ] 3245 3246 [[package]] 3247 name = "pin-project-internal" 3248 - version = "1.1.5" 3249 source = "registry+https://github.com/rust-lang/crates.io-index" 3250 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 3251 dependencies = [ 3252 "proc-macro2", 3253 "quote", 3254 - "syn 2.0.71", 3255 ] 3256 3257 [[package]] ··· 3280 3281 [[package]] 3282 name = "piper" 3283 - version = "0.2.3" 3284 source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 3286 dependencies = [ 3287 "atomic-waker", 3288 - "fastrand 2.1.0", 3289 "futures-io", 3290 ] 3291 ··· 3364 3365 [[package]] 3366 name = "pkg-config" 3367 - version = "0.3.30" 3368 source = "registry+https://github.com/rust-lang/crates.io-index" 3369 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 3370 3371 [[package]] 3372 name = "polling" ··· 3386 3387 [[package]] 3388 name = "polling" 3389 - version = "3.7.2" 3390 source = "registry+https://github.com/rust-lang/crates.io-index" 3391 - checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 3392 dependencies = [ 3393 "cfg-if", 3394 "concurrent-queue", 3395 "hermit-abi 0.4.0", 3396 "pin-project-lite", 3397 - "rustix 0.38.34", 3398 "tracing", 3399 - "windows-sys 0.52.0", 3400 ] 3401 3402 [[package]] ··· 3418 3419 [[package]] 3420 name = "ppv-lite86" 3421 - version = "0.2.17" 3422 - source = "registry+https://github.com/rust-lang/crates.io-index" 3423 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3424 - 3425 - [[package]] 3426 - name = "prettyplease" 3427 version = "0.2.20" 3428 source = "registry+https://github.com/rust-lang/crates.io-index" 3429 - checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" 3430 dependencies = [ 3431 - "proc-macro2", 3432 - "syn 2.0.71", 3433 ] 3434 3435 [[package]] ··· 3443 3444 [[package]] 3445 name = "proc-macro-crate" 3446 - version = "3.1.0" 3447 source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3449 dependencies = [ 3450 - "toml_edit 0.21.1", 3451 ] 3452 3453 [[package]] ··· 3475 ] 3476 3477 [[package]] 3478 name = "proc-macro2" 3479 - version = "1.0.86" 3480 source = "registry+https://github.com/rust-lang/crates.io-index" 3481 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 3482 dependencies = [ 3483 "unicode-ident", 3484 ] ··· 3491 dependencies = [ 3492 "proc-macro2", 3493 "quote", 3494 - "syn 2.0.71", 3495 "version_check", 3496 "yansi", 3497 ] ··· 3516 "itertools", 3517 "proc-macro2", 3518 "quote", 3519 - "syn 2.0.71", 3520 ] 3521 3522 [[package]] ··· 3527 3528 [[package]] 3529 name = "quote" 3530 - version = "1.0.36" 3531 source = "registry+https://github.com/rust-lang/crates.io-index" 3532 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 3533 dependencies = [ 3534 "proc-macro2", 3535 ] ··· 3586 3587 [[package]] 3588 name = "redis" 3589 - version = "0.25.4" 3590 source = "registry+https://github.com/rust-lang/crates.io-index" 3591 - checksum = "e0d7a6955c7511f60f3ba9e86c6d02b3c3f144f8c24b288d1f4e18074ab8bbec" 3592 dependencies = [ 3593 "arc-swap", 3594 "async-trait", ··· 3600 "itoa", 3601 "log", 3602 "native-tls", 3603 "percent-encoding", 3604 "pin-project-lite", 3605 "rand", ··· 3614 ] 3615 3616 [[package]] 3617 - name = "redox_syscall" 3618 - version = "0.4.1" 3619 source = "registry+https://github.com/rust-lang/crates.io-index" 3620 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3621 dependencies = [ 3622 - "bitflags 1.3.2", 3623 ] 3624 3625 [[package]] 3626 name = "redox_syscall" 3627 - version = "0.5.3" 3628 source = "registry+https://github.com/rust-lang/crates.io-index" 3629 - checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" 3630 dependencies = [ 3631 "bitflags 2.6.0", 3632 ] 3633 3634 [[package]] 3635 name = "regex" 3636 - version = "1.10.5" 3637 source = "registry+https://github.com/rust-lang/crates.io-index" 3638 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 3639 dependencies = [ 3640 "aho-corasick", 3641 "memchr", 3642 - "regex-automata 0.4.7", 3643 - "regex-syntax 0.8.4", 3644 ] 3645 3646 [[package]] ··· 3654 3655 [[package]] 3656 name = "regex-automata" 3657 - version = "0.4.7" 3658 source = "registry+https://github.com/rust-lang/crates.io-index" 3659 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 3660 dependencies = [ 3661 "aho-corasick", 3662 "memchr", 3663 - "regex-syntax 0.8.4", 3664 ] 3665 3666 [[package]] ··· 3671 3672 [[package]] 3673 name = "regex-syntax" 3674 - version = "0.8.4" 3675 source = "registry+https://github.com/rust-lang/crates.io-index" 3676 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 3677 3678 [[package]] 3679 name = "reqwest" ··· 3713 "wasm-bindgen", 3714 "wasm-bindgen-futures", 3715 "web-sys", 3716 - "webpki-roots", 3717 - "winreg 0.50.0", 3718 ] 3719 3720 [[package]] 3721 name = "reqwest" 3722 - version = "0.12.5" 3723 source = "registry+https://github.com/rust-lang/crates.io-index" 3724 - checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" 3725 dependencies = [ 3726 "base64 0.22.1", 3727 "bytes", ··· 3731 "http 1.1.0", 3732 "http-body 1.0.1", 3733 "http-body-util", 3734 - "hyper 1.4.1", 3735 "hyper-tls 0.6.0", 3736 "hyper-util", 3737 "ipnet", ··· 3742 "once_cell", 3743 "percent-encoding", 3744 "pin-project-lite", 3745 - "rustls-pemfile 2.1.2", 3746 "serde", 3747 "serde_json", 3748 "serde_urlencoded", ··· 3754 "wasm-bindgen", 3755 "wasm-bindgen-futures", 3756 "web-sys", 3757 - "winreg 0.52.0", 3758 ] 3759 3760 [[package]] ··· 3834 ] 3835 3836 [[package]] 3837 - name = "rustc-demangle" 3838 - version = "0.1.24" 3839 source = "registry+https://github.com/rust-lang/crates.io-index" 3840 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3841 3842 [[package]] 3843 - name = "rustc-hash" 3844 - version = "1.1.0" 3845 source = "registry+https://github.com/rust-lang/crates.io-index" 3846 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3847 3848 [[package]] 3849 name = "rustc_version" 3850 - version = "0.4.0" 3851 source = "registry+https://github.com/rust-lang/crates.io-index" 3852 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3853 dependencies = [ 3854 "semver", 3855 ] ··· 3879 3880 [[package]] 3881 name = "rustix" 3882 - version = "0.38.34" 3883 source = "registry+https://github.com/rust-lang/crates.io-index" 3884 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3885 dependencies = [ 3886 "bitflags 2.6.0", 3887 "errno", ··· 3911 "log", 3912 "ring", 3913 "rustls-pki-types", 3914 - "rustls-webpki 0.102.5", 3915 "subtle", 3916 "zeroize", 3917 ] 3918 3919 [[package]] 3920 name = "rustls" 3921 - version = "0.23.11" 3922 source = "registry+https://github.com/rust-lang/crates.io-index" 3923 - checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" 3924 dependencies = [ 3925 - "aws-lc-rs", 3926 - "log", 3927 "once_cell", 3928 "rustls-pki-types", 3929 - "rustls-webpki 0.102.5", 3930 "subtle", 3931 "zeroize", 3932 ] 3933 3934 [[package]] 3935 name = "rustls-connector" 3936 - version = "0.20.0" 3937 source = "registry+https://github.com/rust-lang/crates.io-index" 3938 - checksum = "727a826801254b6cfcd2508a0508c01b7c1bca21d3673e84d86da084781b83d5" 3939 dependencies = [ 3940 "log", 3941 - "rustls 0.23.11", 3942 "rustls-native-certs", 3943 "rustls-pki-types", 3944 - "rustls-webpki 0.102.5", 3945 ] 3946 3947 [[package]] 3948 name = "rustls-native-certs" 3949 - version = "0.7.1" 3950 source = "registry+https://github.com/rust-lang/crates.io-index" 3951 - checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba" 3952 dependencies = [ 3953 "openssl-probe", 3954 - "rustls-pemfile 2.1.2", 3955 "rustls-pki-types", 3956 "schannel", 3957 "security-framework", ··· 3968 3969 [[package]] 3970 name = "rustls-pemfile" 3971 - version = "2.1.2" 3972 source = "registry+https://github.com/rust-lang/crates.io-index" 3973 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 3974 dependencies = [ 3975 - "base64 0.22.1", 3976 "rustls-pki-types", 3977 ] 3978 3979 [[package]] 3980 name = "rustls-pki-types" 3981 - version = "1.7.0" 3982 source = "registry+https://github.com/rust-lang/crates.io-index" 3983 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 3984 3985 [[package]] 3986 name = "rustls-webpki" ··· 3994 3995 [[package]] 3996 name = "rustls-webpki" 3997 - version = "0.102.5" 3998 source = "registry+https://github.com/rust-lang/crates.io-index" 3999 - checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" 4000 dependencies = [ 4001 - "aws-lc-rs", 4002 "ring", 4003 "rustls-pki-types", 4004 "untrusted", ··· 4006 4007 [[package]] 4008 name = "rustversion" 4009 - version = "1.0.17" 4010 source = "registry+https://github.com/rust-lang/crates.io-index" 4011 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 4012 4013 [[package]] 4014 name = "ryu" ··· 4027 4028 [[package]] 4029 name = "schannel" 4030 - version = "0.1.23" 4031 source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 4033 dependencies = [ 4034 - "windows-sys 0.52.0", 4035 ] 4036 4037 [[package]] ··· 4058 "proc-macro2", 4059 "quote", 4060 "serde_derive_internals", 4061 - "syn 2.0.71", 4062 ] 4063 4064 [[package]] ··· 4090 4091 [[package]] 4092 name = "sea-bae" 4093 - version = "0.2.0" 4094 source = "registry+https://github.com/rust-lang/crates.io-index" 4095 - checksum = "3bd3534a9978d0aa7edd2808dc1f8f31c4d0ecd31ddf71d997b3c98e9f3c9114" 4096 dependencies = [ 4097 "heck 0.4.1", 4098 - "proc-macro-error", 4099 "proc-macro2", 4100 "quote", 4101 - "syn 2.0.71", 4102 ] 4103 4104 [[package]] 4105 name = "sea-orm" 4106 - version = "0.12.15" 4107 source = "registry+https://github.com/rust-lang/crates.io-index" 4108 - checksum = "c8814e37dc25de54398ee62228323657520b7f29713b8e238649385dbe473ee0" 4109 dependencies = [ 4110 "async-stream", 4111 "async-trait", 4112 "chrono", 4113 "futures", 4114 "log", 4115 "ouroboros", 4116 "sea-orm-macros", 4117 "sea-query", 4118 "sea-query-binder", ··· 4129 4130 [[package]] 4131 name = "sea-orm-macros" 4132 - version = "0.12.15" 4133 source = "registry+https://github.com/rust-lang/crates.io-index" 4134 - checksum = "5e115c6b078e013aa963cc2d38c196c2c40b05f03d0ac872fe06b6e0d5265603" 4135 dependencies = [ 4136 "heck 0.4.1", 4137 "proc-macro2", 4138 "quote", 4139 "sea-bae", 4140 - "syn 2.0.71", 4141 "unicode-ident", 4142 ] 4143 4144 [[package]] 4145 name = "sea-query" 4146 - version = "0.30.7" 4147 source = "registry+https://github.com/rust-lang/crates.io-index" 4148 - checksum = "4166a1e072292d46dc91f31617c2a1cdaf55a8be4b5c9f4bf2ba248e3ac4999b" 4149 dependencies = [ 4150 "chrono", 4151 - "derivative", 4152 "inherent", 4153 "ordered-float 3.9.2", 4154 "serde_json", ··· 4156 4157 [[package]] 4158 name = "sea-query-binder" 4159 - version = "0.5.0" 4160 source = "registry+https://github.com/rust-lang/crates.io-index" 4161 - checksum = "36bbb68df92e820e4d5aeb17b4acd5cc8b5d18b2c36a4dd6f4626aabfa7ab1b9" 4162 dependencies = [ 4163 "chrono", 4164 "sea-query", ··· 4195 4196 [[package]] 4197 name = "security-framework-sys" 4198 - version = "2.11.1" 4199 source = "registry+https://github.com/rust-lang/crates.io-index" 4200 - checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" 4201 dependencies = [ 4202 "core-foundation-sys", 4203 "libc", ··· 4217 dependencies = [ 4218 "httpdate", 4219 "native-tls", 4220 - "reqwest 0.12.5", 4221 "sentry-backtrace", 4222 "sentry-contexts", 4223 "sentry-core", ··· 4319 4320 [[package]] 4321 name = "serde" 4322 - version = "1.0.204" 4323 source = "registry+https://github.com/rust-lang/crates.io-index" 4324 - checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 4325 dependencies = [ 4326 "serde_derive", 4327 ] 4328 4329 [[package]] 4330 name = "serde_derive" 4331 - version = "1.0.204" 4332 source = "registry+https://github.com/rust-lang/crates.io-index" 4333 - checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 4334 dependencies = [ 4335 "proc-macro2", 4336 "quote", 4337 - "syn 2.0.71", 4338 ] 4339 4340 [[package]] ··· 4345 dependencies = [ 4346 "proc-macro2", 4347 "quote", 4348 - "syn 2.0.71", 4349 ] 4350 4351 [[package]] 4352 name = "serde_json" 4353 - version = "1.0.120" 4354 source = "registry+https://github.com/rust-lang/crates.io-index" 4355 - checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" 4356 dependencies = [ 4357 "itoa", 4358 "ryu", 4359 "serde", 4360 ] ··· 4390 dependencies = [ 4391 "proc-macro2", 4392 "quote", 4393 - "syn 2.0.71", 4394 ] 4395 4396 [[package]] 4397 name = "serde_spanned" 4398 - version = "0.6.6" 4399 source = "registry+https://github.com/rust-lang/crates.io-index" 4400 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 4401 dependencies = [ 4402 "serde", 4403 ] ··· 4427 4428 [[package]] 4429 name = "sha1_smol" 4430 - version = "1.0.0" 4431 source = "registry+https://github.com/rust-lang/crates.io-index" 4432 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 4433 4434 [[package]] 4435 name = "sha2" ··· 4500 version = "1.13.2" 4501 source = "registry+https://github.com/rust-lang/crates.io-index" 4502 checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 4503 4504 [[package]] 4505 name = "socket2" ··· 4552 4553 [[package]] 4554 name = "sqlformat" 4555 - version = "0.2.4" 4556 source = "registry+https://github.com/rust-lang/crates.io-index" 4557 - checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f" 4558 dependencies = [ 4559 "nom", 4560 "unicode_categories", ··· 4562 4563 [[package]] 4564 name = "sqlx" 4565 - version = "0.7.4" 4566 source = "registry+https://github.com/rust-lang/crates.io-index" 4567 - checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" 4568 dependencies = [ 4569 "sqlx-core", 4570 "sqlx-macros", ··· 4575 4576 [[package]] 4577 name = "sqlx-core" 4578 - version = "0.7.4" 4579 source = "registry+https://github.com/rust-lang/crates.io-index" 4580 - checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" 4581 dependencies = [ 4582 - "ahash", 4583 "atoi", 4584 "byteorder", 4585 "bytes", ··· 4587 "crc", 4588 "crossbeam-queue", 4589 "either", 4590 - "event-listener 2.5.3", 4591 "futures-channel", 4592 "futures-core", 4593 "futures-intrusive", 4594 "futures-io", 4595 "futures-util", 4596 "hashlink", 4597 "hex", 4598 - "indexmap 2.2.6", 4599 "log", 4600 "memchr", 4601 "once_cell", 4602 "paste", 4603 "percent-encoding", 4604 - "rustls 0.21.12", 4605 - "rustls-pemfile 1.0.4", 4606 "serde", 4607 "serde_json", 4608 "sha2", ··· 4613 "tokio-stream", 4614 "tracing", 4615 "url", 4616 - "webpki-roots", 4617 ] 4618 4619 [[package]] 4620 name = "sqlx-macros" 4621 - version = "0.7.4" 4622 source = "registry+https://github.com/rust-lang/crates.io-index" 4623 - checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" 4624 dependencies = [ 4625 "proc-macro2", 4626 "quote", 4627 "sqlx-core", 4628 "sqlx-macros-core", 4629 - "syn 1.0.109", 4630 ] 4631 4632 [[package]] 4633 name = "sqlx-macros-core" 4634 - version = "0.7.4" 4635 source = "registry+https://github.com/rust-lang/crates.io-index" 4636 - checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" 4637 dependencies = [ 4638 "dotenvy", 4639 "either", 4640 - "heck 0.4.1", 4641 "hex", 4642 "once_cell", 4643 "proc-macro2", ··· 4649 "sqlx-mysql", 4650 "sqlx-postgres", 4651 "sqlx-sqlite", 4652 - "syn 1.0.109", 4653 "tempfile", 4654 "tokio", 4655 "url", ··· 4657 4658 [[package]] 4659 name = "sqlx-mysql" 4660 - version = "0.7.4" 4661 source = "registry+https://github.com/rust-lang/crates.io-index" 4662 - checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" 4663 dependencies = [ 4664 "atoi", 4665 - "base64 0.21.7", 4666 "bitflags 2.6.0", 4667 "byteorder", 4668 "bytes", ··· 4700 4701 [[package]] 4702 name = "sqlx-postgres" 4703 - version = "0.7.4" 4704 source = "registry+https://github.com/rust-lang/crates.io-index" 4705 - checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" 4706 dependencies = [ 4707 "atoi", 4708 - "base64 0.21.7", 4709 "bitflags 2.6.0", 4710 "byteorder", 4711 "chrono", ··· 4739 4740 [[package]] 4741 name = "sqlx-sqlite" 4742 - version = "0.7.4" 4743 source = "registry+https://github.com/rust-lang/crates.io-index" 4744 - checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" 4745 dependencies = [ 4746 "atoi", 4747 "chrono", ··· 4755 "log", 4756 "percent-encoding", 4757 "serde", 4758 "sqlx-core", 4759 "tracing", 4760 "url", 4761 - "urlencoding", 4762 ] 4763 4764 [[package]] ··· 4786 4787 [[package]] 4788 name = "strum" 4789 - version = "0.25.0" 4790 source = "registry+https://github.com/rust-lang/crates.io-index" 4791 - checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 4792 4793 [[package]] 4794 name = "subtle" ··· 4798 4799 [[package]] 4800 name = "svix" 4801 - version = "1.25.0" 4802 source = "registry+https://github.com/rust-lang/crates.io-index" 4803 - checksum = "0d2d02e34ecdd1dc1175255f73b3b538113467cda5585df98754a498b23956fb" 4804 dependencies = [ 4805 "base64 0.13.1", 4806 "hmac-sha256", 4807 "http 0.2.12", 4808 "http 1.1.0", 4809 "http-body-util", 4810 - "hyper 1.4.1", 4811 "hyper-rustls 0.26.0", 4812 "hyper-tls 0.6.0", 4813 "hyper-util", ··· 4847 4848 [[package]] 4849 name = "svix-server" 4850 - version = "1.38.0" 4851 dependencies = [ 4852 "aide", 4853 "anyhow", ··· 4856 "axum-server", 4857 "base64 0.13.1", 4858 "bb8", 4859 - "bb8-redis", 4860 "blake2", 4861 "bytes", 4862 "chacha20poly1305", ··· 4869 "figment", 4870 "form_urlencoded", 4871 "futures", 4872 "hickory-resolver", 4873 "hmac-sha256", 4874 "http 0.2.12", ··· 4890 "opentelemetry-otlp", 4891 "opentelemetry_sdk", 4892 "rand", 4893 - "redis", 4894 "regex", 4895 "reqwest 0.11.27", 4896 "schemars", ··· 4923 dependencies = [ 4924 "proc-macro2", 4925 "quote", 4926 - "syn 2.0.71", 4927 ] 4928 4929 [[package]] ··· 4939 4940 [[package]] 4941 name = "syn" 4942 - version = "2.0.71" 4943 source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "b146dcf730474b4bcd16c311627b31ede9ab149045db4d6088b3becaea046462" 4945 dependencies = [ 4946 "proc-macro2", 4947 "quote", ··· 4959 version = "1.0.1" 4960 source = "registry+https://github.com/rust-lang/crates.io-index" 4961 checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 4962 4963 [[package]] 4964 name = "synstructure" ··· 4968 dependencies = [ 4969 "proc-macro2", 4970 "quote", 4971 - "syn 2.0.71", 4972 ] 4973 4974 [[package]] ··· 5001 "cfg-if", 5002 "p12-keystore", 5003 "rustls-connector", 5004 - "rustls-pemfile 2.1.2", 5005 ] 5006 5007 [[package]] 5008 name = "tempfile" 5009 - version = "3.10.1" 5010 source = "registry+https://github.com/rust-lang/crates.io-index" 5011 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 5012 dependencies = [ 5013 "cfg-if", 5014 - "fastrand 2.1.0", 5015 - "rustix 0.38.34", 5016 - "windows-sys 0.52.0", 5017 ] 5018 5019 [[package]] 5020 name = "thiserror" 5021 - version = "1.0.62" 5022 source = "registry+https://github.com/rust-lang/crates.io-index" 5023 - checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" 5024 dependencies = [ 5025 "thiserror-impl", 5026 ] 5027 5028 [[package]] 5029 name = "thiserror-impl" 5030 - version = "1.0.62" 5031 source = "registry+https://github.com/rust-lang/crates.io-index" 5032 - checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" 5033 dependencies = [ 5034 "proc-macro2", 5035 "quote", 5036 - "syn 2.0.71", 5037 ] 5038 5039 [[package]] ··· 5114 5115 [[package]] 5116 name = "tokio" 5117 - version = "1.38.0" 5118 source = "registry+https://github.com/rust-lang/crates.io-index" 5119 - checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 5120 dependencies = [ 5121 "backtrace", 5122 "bytes", 5123 "libc", 5124 "mio", 5125 - "num_cpus", 5126 "parking_lot", 5127 "pin-project-lite", 5128 "signal-hook-registry", 5129 "socket2 0.5.7", 5130 "tokio-macros", 5131 - "windows-sys 0.48.0", 5132 ] 5133 5134 [[package]] ··· 5143 5144 [[package]] 5145 name = "tokio-macros" 5146 - version = "2.3.0" 5147 source = "registry+https://github.com/rust-lang/crates.io-index" 5148 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 5149 dependencies = [ 5150 "proc-macro2", 5151 "quote", 5152 - "syn 2.0.71", 5153 ] 5154 5155 [[package]] ··· 5164 5165 [[package]] 5166 name = "tokio-openssl" 5167 - version = "0.6.4" 5168 source = "registry+https://github.com/rust-lang/crates.io-index" 5169 - checksum = "6ffab79df67727f6acf57f1ff743091873c24c579b1e2ce4d8f53e47ded4d63d" 5170 dependencies = [ 5171 - "futures-util", 5172 "openssl", 5173 "openssl-sys", 5174 "tokio", ··· 5208 5209 [[package]] 5210 name = "tokio-stream" 5211 - version = "0.1.15" 5212 source = "registry+https://github.com/rust-lang/crates.io-index" 5213 - checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 5214 dependencies = [ 5215 "futures-core", 5216 "pin-project-lite", ··· 5219 5220 [[package]] 5221 name = "tokio-util" 5222 - version = "0.7.11" 5223 source = "registry+https://github.com/rust-lang/crates.io-index" 5224 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 5225 dependencies = [ 5226 "bytes", 5227 "futures-core", ··· 5232 5233 [[package]] 5234 name = "toml" 5235 - version = "0.8.14" 5236 source = "registry+https://github.com/rust-lang/crates.io-index" 5237 - checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" 5238 dependencies = [ 5239 "serde", 5240 "serde_spanned", 5241 "toml_datetime", 5242 - "toml_edit 0.22.15", 5243 ] 5244 5245 [[package]] 5246 name = "toml_datetime" 5247 - version = "0.6.6" 5248 source = "registry+https://github.com/rust-lang/crates.io-index" 5249 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 5250 dependencies = [ 5251 "serde", 5252 ] 5253 5254 [[package]] 5255 name = "toml_edit" 5256 - version = "0.21.1" 5257 source = "registry+https://github.com/rust-lang/crates.io-index" 5258 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 5259 dependencies = [ 5260 - "indexmap 2.2.6", 5261 - "toml_datetime", 5262 - "winnow 0.5.40", 5263 - ] 5264 - 5265 - [[package]] 5266 - name = "toml_edit" 5267 - version = "0.22.15" 5268 - source = "registry+https://github.com/rust-lang/crates.io-index" 5269 - checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1" 5270 - dependencies = [ 5271 - "indexmap 2.2.6", 5272 "serde", 5273 "serde_spanned", 5274 "toml_datetime", 5275 - "winnow 0.6.13", 5276 ] 5277 5278 [[package]] ··· 5344 5345 [[package]] 5346 name = "tower-layer" 5347 - version = "0.3.2" 5348 source = "registry+https://github.com/rust-lang/crates.io-index" 5349 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 5350 5351 [[package]] 5352 name = "tower-service" 5353 - version = "0.3.2" 5354 source = "registry+https://github.com/rust-lang/crates.io-index" 5355 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 5356 5357 [[package]] 5358 name = "tracing" ··· 5374 dependencies = [ 5375 "proc-macro2", 5376 "quote", 5377 - "syn 2.0.71", 5378 ] 5379 5380 [[package]] ··· 5400 5401 [[package]] 5402 name = "tracing-opentelemetry" 5403 - version = "0.23.0" 5404 source = "registry+https://github.com/rust-lang/crates.io-index" 5405 - checksum = "a9be14ba1bbe4ab79e9229f7f89fab8d120b865859f10527f31c033e599d2284" 5406 dependencies = [ 5407 "js-sys", 5408 "once_cell", ··· 5479 5480 [[package]] 5481 name = "unicode-bidi" 5482 - version = "0.3.15" 5483 source = "registry+https://github.com/rust-lang/crates.io-index" 5484 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 5485 5486 [[package]] 5487 name = "unicode-ident" 5488 - version = "1.0.12" 5489 source = "registry+https://github.com/rust-lang/crates.io-index" 5490 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 5491 5492 [[package]] 5493 name = "unicode-normalization" 5494 - version = "0.1.23" 5495 source = "registry+https://github.com/rust-lang/crates.io-index" 5496 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 5497 dependencies = [ 5498 "tinyvec", 5499 ] 5500 5501 [[package]] 5502 name = "unicode-properties" 5503 - version = "0.1.1" 5504 - source = "registry+https://github.com/rust-lang/crates.io-index" 5505 - checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 5506 - 5507 - [[package]] 5508 - name = "unicode-segmentation" 5509 - version = "1.11.0" 5510 source = "registry+https://github.com/rust-lang/crates.io-index" 5511 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 5512 5513 [[package]] 5514 name = "unicode_categories" ··· 5534 5535 [[package]] 5536 name = "ureq" 5537 - version = "2.10.0" 5538 source = "registry+https://github.com/rust-lang/crates.io-index" 5539 - checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea" 5540 dependencies = [ 5541 "base64 0.22.1", 5542 "log", ··· 5571 5572 [[package]] 5573 name = "uuid" 5574 - version = "1.10.0" 5575 source = "registry+https://github.com/rust-lang/crates.io-index" 5576 - checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 5577 dependencies = [ 5578 "getrandom", 5579 "serde", ··· 5635 5636 [[package]] 5637 name = "version_check" 5638 - version = "0.9.4" 5639 source = "registry+https://github.com/rust-lang/crates.io-index" 5640 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5641 5642 [[package]] 5643 name = "waker-fn" ··· 5677 5678 [[package]] 5679 name = "wasm-bindgen" 5680 - version = "0.2.92" 5681 source = "registry+https://github.com/rust-lang/crates.io-index" 5682 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 5683 dependencies = [ 5684 "cfg-if", 5685 "wasm-bindgen-macro", 5686 ] 5687 5688 [[package]] 5689 name = "wasm-bindgen-backend" 5690 - version = "0.2.92" 5691 source = "registry+https://github.com/rust-lang/crates.io-index" 5692 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 5693 dependencies = [ 5694 "bumpalo", 5695 "log", 5696 "once_cell", 5697 "proc-macro2", 5698 "quote", 5699 - "syn 2.0.71", 5700 "wasm-bindgen-shared", 5701 ] 5702 5703 [[package]] 5704 name = "wasm-bindgen-futures" 5705 - version = "0.4.42" 5706 source = "registry+https://github.com/rust-lang/crates.io-index" 5707 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 5708 dependencies = [ 5709 "cfg-if", 5710 "js-sys", ··· 5714 5715 [[package]] 5716 name = "wasm-bindgen-macro" 5717 - version = "0.2.92" 5718 source = "registry+https://github.com/rust-lang/crates.io-index" 5719 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 5720 dependencies = [ 5721 "quote", 5722 "wasm-bindgen-macro-support", ··· 5724 5725 [[package]] 5726 name = "wasm-bindgen-macro-support" 5727 - version = "0.2.92" 5728 source = "registry+https://github.com/rust-lang/crates.io-index" 5729 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 5730 dependencies = [ 5731 "proc-macro2", 5732 "quote", 5733 - "syn 2.0.71", 5734 "wasm-bindgen-backend", 5735 "wasm-bindgen-shared", 5736 ] 5737 5738 [[package]] 5739 name = "wasm-bindgen-shared" 5740 - version = "0.2.92" 5741 source = "registry+https://github.com/rust-lang/crates.io-index" 5742 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 5743 5744 [[package]] 5745 name = "web-sys" 5746 - version = "0.3.69" 5747 source = "registry+https://github.com/rust-lang/crates.io-index" 5748 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 5749 dependencies = [ 5750 "js-sys", 5751 "wasm-bindgen", ··· 5768 checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 5769 5770 [[package]] 5771 - name = "which" 5772 - version = "4.4.2" 5773 source = "registry+https://github.com/rust-lang/crates.io-index" 5774 - checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 5775 dependencies = [ 5776 - "either", 5777 - "home", 5778 - "once_cell", 5779 - "rustix 0.38.34", 5780 ] 5781 5782 [[package]] 5783 name = "whoami" 5784 - version = "1.5.1" 5785 source = "registry+https://github.com/rust-lang/crates.io-index" 5786 - checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 5787 dependencies = [ 5788 - "redox_syscall 0.4.1", 5789 "wasite", 5790 ] 5791 ··· 5837 ] 5838 5839 [[package]] 5840 name = "windows-sys" 5841 version = "0.48.0" 5842 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5850 version = "0.52.0" 5851 source = "registry+https://github.com/rust-lang/crates.io-index" 5852 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5853 dependencies = [ 5854 "windows-targets 0.52.6", 5855 ] ··· 5977 5978 [[package]] 5979 name = "winnow" 5980 - version = "0.5.40" 5981 - source = "registry+https://github.com/rust-lang/crates.io-index" 5982 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5983 - dependencies = [ 5984 - "memchr", 5985 - ] 5986 - 5987 - [[package]] 5988 - name = "winnow" 5989 - version = "0.6.13" 5990 source = "registry+https://github.com/rust-lang/crates.io-index" 5991 - checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" 5992 dependencies = [ 5993 "memchr", 5994 ] ··· 6004 ] 6005 6006 [[package]] 6007 - name = "winreg" 6008 - version = "0.52.0" 6009 - source = "registry+https://github.com/rust-lang/crates.io-index" 6010 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 6011 - dependencies = [ 6012 - "cfg-if", 6013 - "windows-sys 0.48.0", 6014 - ] 6015 - 6016 - [[package]] 6017 name = "x509-cert" 6018 version = "0.2.5" 6019 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6053 source = "registry+https://github.com/rust-lang/crates.io-index" 6054 checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 6055 dependencies = [ 6056 "zerocopy-derive", 6057 ] 6058 ··· 6064 dependencies = [ 6065 "proc-macro2", 6066 "quote", 6067 - "syn 2.0.71", 6068 ] 6069 6070 [[package]] ··· 6072 version = "1.8.1" 6073 source = "registry+https://github.com/rust-lang/crates.io-index" 6074 checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 6075 - dependencies = [ 6076 - "zeroize_derive", 6077 - ] 6078 - 6079 - [[package]] 6080 - name = "zeroize_derive" 6081 - version = "1.4.2" 6082 - source = "registry+https://github.com/rust-lang/crates.io-index" 6083 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 6084 - dependencies = [ 6085 - "proc-macro2", 6086 - "quote", 6087 - "syn 2.0.71", 6088 - ]
··· 4 5 [[package]] 6 name = "addr2line" 7 + version = "0.24.2" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 dependencies = [ 11 "gimli", 12 ] 13 14 [[package]] 15 + name = "adler2" 16 + version = "2.0.0" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 20 [[package]] 21 name = "aead" ··· 93 "darling", 94 "proc-macro2", 95 "quote", 96 + "syn 2.0.79", 97 ] 98 99 [[package]] ··· 110 111 [[package]] 112 name = "amq-protocol" 113 + version = "7.2.2" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "e3a41c091e49edfcc098b4f90d4d7706a8cf9158034e84ebfee7ff346092f67c" 116 dependencies = [ 117 "amq-protocol-tcp", 118 "amq-protocol-types", ··· 124 125 [[package]] 126 name = "amq-protocol-tcp" 127 + version = "7.2.2" 128 source = "registry+https://github.com/rust-lang/crates.io-index" 129 + checksum = "3ed7a4a662472f88823ed2fc81babb0b00562f2c54284e3e7bffc02b6df649bf" 130 dependencies = [ 131 "amq-protocol-uri", 132 "tcp-stream", ··· 135 136 [[package]] 137 name = "amq-protocol-types" 138 + version = "7.2.2" 139 source = "registry+https://github.com/rust-lang/crates.io-index" 140 + checksum = "bd6484fdc918c1b6e2ae8eda2914d19a5873e1975f93ad8d33d6a24d1d98df05" 141 dependencies = [ 142 "cookie-factory", 143 "nom", ··· 147 148 [[package]] 149 name = "amq-protocol-uri" 150 + version = "7.2.2" 151 source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "7f7f2da69e0e1182765bf33407cd8a843f20791b5af2b57a2645818c4776c56c" 153 dependencies = [ 154 "amq-protocol-types", 155 "percent-encoding", ··· 173 174 [[package]] 175 name = "anstream" 176 + version = "0.6.15" 177 source = "registry+https://github.com/rust-lang/crates.io-index" 178 + checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 179 dependencies = [ 180 "anstyle", 181 "anstyle-parse", ··· 188 189 [[package]] 190 name = "anstyle" 191 + version = "1.0.8" 192 source = "registry+https://github.com/rust-lang/crates.io-index" 193 + checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 194 195 [[package]] 196 name = "anstyle-parse" 197 + version = "0.2.5" 198 source = "registry+https://github.com/rust-lang/crates.io-index" 199 + checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 200 dependencies = [ 201 "utf8parse", 202 ] 203 204 [[package]] 205 name = "anstyle-query" 206 + version = "1.1.1" 207 source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 209 dependencies = [ 210 "windows-sys 0.52.0", 211 ] 212 213 [[package]] 214 name = "anstyle-wincon" 215 + version = "3.0.4" 216 source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 218 dependencies = [ 219 "anstyle", 220 "windows-sys 0.52.0", ··· 222 223 [[package]] 224 name = "anyhow" 225 + version = "1.0.89" 226 source = "registry+https://github.com/rust-lang/crates.io-index" 227 + checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" 228 229 [[package]] 230 name = "arc-swap" 231 version = "1.7.1" 232 source = "registry+https://github.com/rust-lang/crates.io-index" 233 checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 234 + 235 + [[package]] 236 + name = "arrayvec" 237 + version = "0.7.6" 238 + source = "registry+https://github.com/rust-lang/crates.io-index" 239 + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 240 241 [[package]] 242 name = "asn1-rs" 243 + version = "0.6.2" 244 source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 246 dependencies = [ 247 "asn1-rs-derive", 248 "asn1-rs-impl", ··· 256 257 [[package]] 258 name = "asn1-rs-derive" 259 + version = "0.5.1" 260 source = "registry+https://github.com/rust-lang/crates.io-index" 261 + checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 262 dependencies = [ 263 "proc-macro2", 264 "quote", 265 + "syn 2.0.79", 266 "synstructure", 267 ] 268 ··· 274 dependencies = [ 275 "proc-macro2", 276 "quote", 277 + "syn 2.0.79", 278 ] 279 280 [[package]] ··· 297 298 [[package]] 299 name = "async-executor" 300 + version = "1.13.1" 301 source = "registry+https://github.com/rust-lang/crates.io-index" 302 + checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 303 dependencies = [ 304 "async-task", 305 "concurrent-queue", 306 + "fastrand 2.1.1", 307 "futures-lite 2.3.0", 308 "slab", 309 ] ··· 316 dependencies = [ 317 "async-channel", 318 "async-executor", 319 + "async-io 2.3.4", 320 "async-lock 3.4.0", 321 "blocking", 322 "futures-lite 2.3.0", ··· 325 326 [[package]] 327 name = "async-global-executor-trait" 328 + version = "2.1.2" 329 source = "registry+https://github.com/rust-lang/crates.io-index" 330 + checksum = "80f19936c1a84fb48ceb8899b642d2a72572587d1021cc561bfb24de9f33ee89" 331 dependencies = [ 332 "async-global-executor", 333 "async-trait", ··· 356 357 [[package]] 358 name = "async-io" 359 + version = "2.3.4" 360 source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" 362 dependencies = [ 363 "async-lock 3.4.0", 364 "cfg-if", ··· 366 "futures-io", 367 "futures-lite 2.3.0", 368 "parking", 369 + "polling 3.7.3", 370 + "rustix 0.38.37", 371 "slab", 372 "tracing", 373 + "windows-sys 0.59.0", 374 ] 375 376 [[package]] ··· 418 419 [[package]] 420 name = "async-stream" 421 + version = "0.3.6" 422 source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 424 dependencies = [ 425 "async-stream-impl", 426 "futures-core", ··· 429 430 [[package]] 431 name = "async-stream-impl" 432 + version = "0.3.6" 433 source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 435 dependencies = [ 436 "proc-macro2", 437 "quote", 438 + "syn 2.0.79", 439 ] 440 441 [[package]] ··· 446 447 [[package]] 448 name = "async-trait" 449 + version = "0.1.83" 450 source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 452 dependencies = [ 453 "proc-macro2", 454 "quote", 455 + "syn 2.0.79", 456 ] 457 458 [[package]] ··· 481 482 [[package]] 483 name = "autocfg" 484 + version = "1.4.0" 485 source = "registry+https://github.com/rust-lang/crates.io-index" 486 + checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 487 488 [[package]] 489 name = "axum" ··· 555 556 [[package]] 557 name = "backtrace" 558 + version = "0.3.74" 559 source = "registry+https://github.com/rust-lang/crates.io-index" 560 + checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 561 dependencies = [ 562 "addr2line", 563 "cfg-if", 564 "libc", 565 "miniz_oxide", 566 "object", 567 "rustc-demangle", 568 + "windows-targets 0.52.6", 569 ] 570 571 [[package]] ··· 618 619 [[package]] 620 name = "bb8-redis" 621 + version = "0.16.0" 622 source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "0c6910977c026bb1d0a6b523508d1a893d6d4c2ba216355e9569d8181d92ccbe" 624 dependencies = [ 625 "async-trait", 626 "bb8", 627 + "redis 0.26.1", 628 ] 629 630 [[package]] 631 + name = "bb8-redis" 632 + version = "0.17.0" 633 source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "1781f22daa0ae97d934fdf04a5c66646f154a164c4bdc157ec8d3c11166c05cc" 635 dependencies = [ 636 + "async-trait", 637 + "bb8", 638 + "redis 0.27.5", 639 + ] 640 + 641 + [[package]] 642 + name = "bigdecimal" 643 + version = "0.4.5" 644 + source = "registry+https://github.com/rust-lang/crates.io-index" 645 + checksum = "51d712318a27c7150326677b321a5fa91b55f6d9034ffd67f20319e147d40cee" 646 + dependencies = [ 647 + "autocfg", 648 + "libm", 649 + "num-bigint", 650 + "num-integer", 651 + "num-traits", 652 + "serde", 653 ] 654 655 [[package]] ··· 742 743 [[package]] 744 name = "bytemuck" 745 + version = "1.19.0" 746 source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" 748 749 [[package]] 750 name = "byteorder" ··· 754 755 [[package]] 756 name = "bytes" 757 + version = "1.7.2" 758 source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 760 761 [[package]] 762 name = "bytesize" ··· 775 776 [[package]] 777 name = "cc" 778 + version = "1.1.30" 779 source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945" 781 dependencies = [ 782 + "shlex", 783 ] 784 785 [[package]] ··· 839 ] 840 841 [[package]] 842 name = "clap" 843 + version = "4.5.20" 844 source = "registry+https://github.com/rust-lang/crates.io-index" 845 + checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" 846 dependencies = [ 847 "clap_builder", 848 "clap_derive", ··· 850 851 [[package]] 852 name = "clap_builder" 853 + version = "4.5.20" 854 source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" 856 dependencies = [ 857 "anstream", 858 "anstyle", ··· 862 863 [[package]] 864 name = "clap_derive" 865 + version = "4.5.18" 866 source = "registry+https://github.com/rust-lang/crates.io-index" 867 + checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 868 dependencies = [ 869 "heck 0.5.0", 870 "proc-macro2", 871 "quote", 872 + "syn 2.0.79", 873 ] 874 875 [[package]] 876 name = "clap_lex" 877 + version = "0.7.2" 878 source = "registry+https://github.com/rust-lang/crates.io-index" 879 + checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 880 881 [[package]] 882 name = "cms" ··· 903 904 [[package]] 905 name = "colorchoice" 906 + version = "1.0.2" 907 source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 909 910 [[package]] 911 name = "combine" ··· 960 961 [[package]] 962 name = "core-foundation-sys" 963 + version = "0.8.7" 964 source = "registry+https://github.com/rust-lang/crates.io-index" 965 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 966 967 [[package]] 968 name = "cpufeatures" 969 + version = "0.2.14" 970 source = "registry+https://github.com/rust-lang/crates.io-index" 971 + checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 972 dependencies = [ 973 "libc", 974 ] ··· 995 checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 996 997 [[package]] 998 name = "crossbeam-queue" 999 version = "0.3.11" 1000 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1034 1035 [[package]] 1036 name = "ct-codecs" 1037 + version = "1.1.2" 1038 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "026ac6ceace6298d2c557ef5ed798894962296469ec7842288ea64674201a2d1" 1040 1041 [[package]] 1042 name = "ctor" ··· 1045 checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" 1046 dependencies = [ 1047 "quote", 1048 + "syn 2.0.79", 1049 ] 1050 1051 [[package]] ··· 1069 "proc-macro2", 1070 "quote", 1071 "strsim", 1072 + "syn 2.0.79", 1073 ] 1074 1075 [[package]] ··· 1080 dependencies = [ 1081 "darling_core", 1082 "quote", 1083 + "syn 2.0.79", 1084 ] 1085 1086 [[package]] ··· 1145 dependencies = [ 1146 "proc-macro2", 1147 "quote", 1148 + "syn 2.0.79", 1149 ] 1150 1151 [[package]] ··· 1159 ] 1160 1161 [[package]] 1162 name = "derive_more" 1163 version = "0.99.18" 1164 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1168 "proc-macro2", 1169 "quote", 1170 "rustc_version", 1171 + "syn 2.0.79", 1172 ] 1173 1174 [[package]] ··· 1200 dependencies = [ 1201 "proc-macro2", 1202 "quote", 1203 + "syn 2.0.79", 1204 ] 1205 1206 [[package]] ··· 1214 version = "0.15.7" 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1216 checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1217 1218 [[package]] 1219 name = "dyn-clone" ··· 1286 1287 [[package]] 1288 name = "enum-as-inner" 1289 + version = "0.6.1" 1290 source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1292 dependencies = [ 1293 + "heck 0.5.0", 1294 "proc-macro2", 1295 "quote", 1296 + "syn 2.0.79", 1297 ] 1298 1299 [[package]] ··· 1305 "once_cell", 1306 "proc-macro2", 1307 "quote", 1308 + "syn 2.0.79", 1309 ] 1310 1311 [[package]] ··· 1364 1365 [[package]] 1366 name = "executor-trait" 1367 + version = "2.1.2" 1368 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 + checksum = "13c39dff9342e4e0e16ce96be751eb21a94e94a87bb2f6e63ad1961c2ce109bf" 1370 dependencies = [ 1371 "async-trait", 1372 ] ··· 1392 1393 [[package]] 1394 name = "fastrand" 1395 + version = "2.1.1" 1396 source = "registry+https://github.com/rust-lang/crates.io-index" 1397 + checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 1398 1399 [[package]] 1400 name = "ff" ··· 1492 ] 1493 1494 [[package]] 1495 name = "futures" 1496 + version = "0.3.31" 1497 source = "registry+https://github.com/rust-lang/crates.io-index" 1498 + checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1499 dependencies = [ 1500 "futures-channel", 1501 "futures-core", ··· 1508 1509 [[package]] 1510 name = "futures-channel" 1511 + version = "0.3.31" 1512 source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1514 dependencies = [ 1515 "futures-core", 1516 "futures-sink", ··· 1518 1519 [[package]] 1520 name = "futures-core" 1521 + version = "0.3.31" 1522 source = "registry+https://github.com/rust-lang/crates.io-index" 1523 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1524 1525 [[package]] 1526 name = "futures-executor" 1527 + version = "0.3.31" 1528 source = "registry+https://github.com/rust-lang/crates.io-index" 1529 + checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1530 dependencies = [ 1531 "futures-core", 1532 "futures-task", ··· 1546 1547 [[package]] 1548 name = "futures-io" 1549 + version = "0.3.31" 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1552 1553 [[package]] 1554 name = "futures-lite" ··· 1571 source = "registry+https://github.com/rust-lang/crates.io-index" 1572 checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1573 dependencies = [ 1574 + "fastrand 2.1.1", 1575 "futures-core", 1576 "futures-io", 1577 "parking", ··· 1580 1581 [[package]] 1582 name = "futures-macro" 1583 + version = "0.3.31" 1584 source = "registry+https://github.com/rust-lang/crates.io-index" 1585 + checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1586 dependencies = [ 1587 "proc-macro2", 1588 "quote", 1589 + "syn 2.0.79", 1590 ] 1591 1592 [[package]] 1593 name = "futures-sink" 1594 + version = "0.3.31" 1595 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1597 1598 [[package]] 1599 name = "futures-task" 1600 + version = "0.3.31" 1601 source = "registry+https://github.com/rust-lang/crates.io-index" 1602 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1603 1604 [[package]] 1605 name = "futures-util" 1606 + version = "0.3.31" 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1608 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1609 dependencies = [ 1610 "futures-channel", 1611 "futures-core", ··· 1645 1646 [[package]] 1647 name = "gimli" 1648 + version = "0.31.1" 1649 source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1651 1652 [[package]] 1653 name = "glob" ··· 1678 "futures-sink", 1679 "futures-util", 1680 "http 0.2.12", 1681 + "indexmap 2.6.0", 1682 "slab", 1683 "tokio", 1684 "tokio-util", ··· 1702 ] 1703 1704 [[package]] 1705 + name = "hashbrown" 1706 + version = "0.15.0" 1707 + source = "registry+https://github.com/rust-lang/crates.io-index" 1708 + checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 1709 + 1710 + [[package]] 1711 name = "hashlink" 1712 + version = "0.9.1" 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 1715 dependencies = [ 1716 "hashbrown 0.14.5", 1717 ] ··· 1745 version = "0.4.1" 1746 source = "registry+https://github.com/rust-lang/crates.io-index" 1747 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1748 1749 [[package]] 1750 name = "heck" ··· 1952 1953 [[package]] 1954 name = "httparse" 1955 + version = "1.9.5" 1956 source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 1958 1959 [[package]] 1960 name = "httpdate" ··· 1978 "httpdate", 1979 "itoa", 1980 "pin-project-lite", 1981 + "socket2 0.4.10", 1982 "tokio", 1983 "tower-service", 1984 "tracing", ··· 1987 1988 [[package]] 1989 name = "hyper" 1990 + version = "1.5.0" 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 + checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" 1993 dependencies = [ 1994 "bytes", 1995 "futures-channel", ··· 2061 dependencies = [ 2062 "futures-util", 2063 "http 1.1.0", 2064 + "hyper 1.5.0", 2065 "hyper-util", 2066 "log", 2067 "rustls 0.22.4", ··· 2120 dependencies = [ 2121 "bytes", 2122 "http-body-util", 2123 + "hyper 1.5.0", 2124 "hyper-util", 2125 "native-tls", 2126 "tokio", ··· 2130 2131 [[package]] 2132 name = "hyper-util" 2133 + version = "0.1.9" 2134 source = "registry+https://github.com/rust-lang/crates.io-index" 2135 + checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" 2136 dependencies = [ 2137 "bytes", 2138 "futures-channel", 2139 "futures-util", 2140 "http 1.1.0", 2141 "http-body 1.0.1", 2142 + "hyper 1.5.0", 2143 "pin-project-lite", 2144 "socket2 0.5.7", 2145 "tokio", 2146 "tower-service", 2147 "tracing", 2148 ] 2149 2150 [[package]] 2151 name = "iana-time-zone" 2152 + version = "0.1.61" 2153 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 + checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 2155 dependencies = [ 2156 "android_system_properties", 2157 "core-foundation-sys", ··· 2215 2216 [[package]] 2217 name = "indexmap" 2218 + version = "2.6.0" 2219 source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 2221 dependencies = [ 2222 "equivalent", 2223 + "hashbrown 0.15.0", 2224 ] 2225 2226 [[package]] ··· 2231 dependencies = [ 2232 "proc-macro2", 2233 "quote", 2234 + "syn 2.0.79", 2235 ] 2236 2237 [[package]] ··· 2279 "socket2 0.5.7", 2280 "widestring", 2281 "windows-sys 0.48.0", 2282 + "winreg", 2283 ] 2284 2285 [[package]] 2286 name = "ipnet" 2287 + version = "2.10.1" 2288 source = "registry+https://github.com/rust-lang/crates.io-index" 2289 + checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" 2290 dependencies = [ 2291 "serde", 2292 ] 2293 2294 [[package]] 2295 name = "is_terminal_polyfill" 2296 + version = "1.70.1" 2297 source = "registry+https://github.com/rust-lang/crates.io-index" 2298 + checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 2299 2300 [[package]] 2301 name = "iso8601" ··· 2322 checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2323 2324 [[package]] 2325 name = "js-sys" 2326 + version = "0.3.72" 2327 source = "registry+https://github.com/rust-lang/crates.io-index" 2328 + checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" 2329 dependencies = [ 2330 "wasm-bindgen", 2331 ] ··· 2388 2389 [[package]] 2390 name = "k256" 2391 + version = "0.13.4" 2392 source = "registry+https://github.com/rust-lang/crates.io-index" 2393 + checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 2394 dependencies = [ 2395 "cfg-if", 2396 "ecdsa", ··· 2402 2403 [[package]] 2404 name = "lapin" 2405 + version = "2.5.0" 2406 source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "209b09a06f4bd4952a0fd0594f90d53cf4496b062f59acc838a2823e1bb7d95c" 2408 dependencies = [ 2409 "amq-protocol", 2410 "async-global-executor-trait", ··· 2432 ] 2433 2434 [[package]] 2435 name = "libc" 2436 + version = "0.2.160" 2437 source = "registry+https://github.com/rust-lang/crates.io-index" 2438 + checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f" 2439 2440 [[package]] 2441 name = "libm" ··· 2445 2446 [[package]] 2447 name = "libsqlite3-sys" 2448 + version = "0.30.1" 2449 source = "registry+https://github.com/rust-lang/crates.io-index" 2450 + checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 2451 dependencies = [ 2452 "cc", 2453 "pkg-config", ··· 2557 2558 [[package]] 2559 name = "miniz_oxide" 2560 + version = "0.8.0" 2561 source = "registry+https://github.com/rust-lang/crates.io-index" 2562 + checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 2563 dependencies = [ 2564 + "adler2", 2565 ] 2566 2567 [[package]] 2568 name = "mio" 2569 + version = "1.0.2" 2570 source = "registry+https://github.com/rust-lang/crates.io-index" 2571 + checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 2572 dependencies = [ 2573 + "hermit-abi 0.3.9", 2574 "libc", 2575 "wasi", 2576 + "windows-sys 0.52.0", 2577 ] 2578 2579 [[package]] 2580 name = "native-tls" ··· 2717 ] 2718 2719 [[package]] 2720 name = "num_enum" 2721 + version = "0.7.3" 2722 source = "registry+https://github.com/rust-lang/crates.io-index" 2723 + checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 2724 dependencies = [ 2725 "num_enum_derive", 2726 ] 2727 2728 [[package]] 2729 name = "num_enum_derive" 2730 + version = "0.7.3" 2731 source = "registry+https://github.com/rust-lang/crates.io-index" 2732 + checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 2733 dependencies = [ 2734 "proc-macro-crate", 2735 "proc-macro2", 2736 "quote", 2737 + "syn 2.0.79", 2738 ] 2739 2740 [[package]] 2741 name = "object" 2742 + version = "0.36.5" 2743 source = "registry+https://github.com/rust-lang/crates.io-index" 2744 + checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 2745 dependencies = [ 2746 "memchr", 2747 ] 2748 2749 [[package]] 2750 name = "oid-registry" 2751 + version = "0.7.1" 2752 source = "registry+https://github.com/rust-lang/crates.io-index" 2753 + checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 2754 dependencies = [ 2755 "asn1-rs", 2756 ] ··· 2758 [[package]] 2759 name = "omniqueue" 2760 version = "0.2.1" 2761 + source = "git+https://github.com/svix/omniqueue-rs?rev=75e5a9510ad338ac3702b2e911bacf8967ac58d8#75e5a9510ad338ac3702b2e911bacf8967ac58d8" 2762 dependencies = [ 2763 "async-trait", 2764 "bb8", 2765 + "bb8-redis 0.17.0", 2766 "bytesize", 2767 "futures-util", 2768 "lapin", 2769 + "redis 0.27.5", 2770 "serde", 2771 "serde_json", 2772 "svix-ksuid 0.8.0", 2773 + "sync_wrapper 1.0.1", 2774 "thiserror", 2775 "time", 2776 "tokio", ··· 2779 2780 [[package]] 2781 name = "once_cell" 2782 + version = "1.20.2" 2783 source = "registry+https://github.com/rust-lang/crates.io-index" 2784 + checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 2785 2786 [[package]] 2787 name = "opaque-debug" ··· 2791 2792 [[package]] 2793 name = "openssl" 2794 + version = "0.10.68" 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2796 + checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 2797 dependencies = [ 2798 "bitflags 2.6.0", 2799 "cfg-if", ··· 2812 dependencies = [ 2813 "proc-macro2", 2814 "quote", 2815 + "syn 2.0.79", 2816 ] 2817 2818 [[package]] ··· 2823 2824 [[package]] 2825 name = "openssl-sys" 2826 + version = "0.9.104" 2827 source = "registry+https://github.com/rust-lang/crates.io-index" 2828 + checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 2829 dependencies = [ 2830 "cc", 2831 "libc", ··· 2835 2836 [[package]] 2837 name = "opentelemetry" 2838 + version = "0.23.0" 2839 source = "registry+https://github.com/rust-lang/crates.io-index" 2840 + checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76" 2841 dependencies = [ 2842 "futures-core", 2843 "futures-sink", ··· 2845 "once_cell", 2846 "pin-project-lite", 2847 "thiserror", 2848 ] 2849 2850 [[package]] 2851 name = "opentelemetry-http" 2852 + version = "0.12.0" 2853 source = "registry+https://github.com/rust-lang/crates.io-index" 2854 + checksum = "b0ba633e55c5ea6f431875ba55e71664f2fa5d3a90bd34ec9302eecc41c865dd" 2855 dependencies = [ 2856 "async-trait", 2857 "bytes", ··· 2861 2862 [[package]] 2863 name = "opentelemetry-otlp" 2864 + version = "0.16.0" 2865 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 + checksum = "a94c69209c05319cdf7460c6d4c055ed102be242a0a6245835d7bc42c6ec7f54" 2867 dependencies = [ 2868 "async-trait", 2869 "futures-core", 2870 "http 0.2.12", 2871 "opentelemetry", 2872 "opentelemetry-proto", 2873 "opentelemetry_sdk", 2874 "prost", 2875 "thiserror", ··· 2879 2880 [[package]] 2881 name = "opentelemetry-proto" 2882 + version = "0.6.0" 2883 source = "registry+https://github.com/rust-lang/crates.io-index" 2884 + checksum = "984806e6cf27f2b49282e2a05e288f30594f3dbc74eb7a6e99422bc48ed78162" 2885 dependencies = [ 2886 "opentelemetry", 2887 "opentelemetry_sdk", 2888 "prost", 2889 "tonic", 2890 ] 2891 2892 [[package]] 2893 name = "opentelemetry_sdk" 2894 + version = "0.23.0" 2895 source = "registry+https://github.com/rust-lang/crates.io-index" 2896 + checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd" 2897 dependencies = [ 2898 "async-trait", 2899 "futures-channel", 2900 "futures-executor", 2901 "futures-util", 2902 "glob", 2903 + "lazy_static", 2904 "once_cell", 2905 "opentelemetry", 2906 + "ordered-float 4.4.0", 2907 "percent-encoding", 2908 "rand", 2909 "thiserror", ··· 2922 2923 [[package]] 2924 name = "ordered-float" 2925 + version = "4.4.0" 2926 source = "registry+https://github.com/rust-lang/crates.io-index" 2927 + checksum = "83e7ccb95e240b7c9506a3d544f10d935e142cc90b0a1d56954fb44d89ad6b97" 2928 dependencies = [ 2929 "num-traits", 2930 ] ··· 2942 2943 [[package]] 2944 name = "ouroboros" 2945 + version = "0.18.4" 2946 source = "registry+https://github.com/rust-lang/crates.io-index" 2947 + checksum = "944fa20996a25aded6b4795c6d63f10014a7a83f8be9828a11860b08c5fc4a67" 2948 dependencies = [ 2949 "aliasable", 2950 "ouroboros_macro", ··· 2953 2954 [[package]] 2955 name = "ouroboros_macro" 2956 + version = "0.18.4" 2957 source = "registry+https://github.com/rust-lang/crates.io-index" 2958 + checksum = "39b0deead1528fd0e5947a8546a9642a9777c25f6e1e26f34c97b204bbb465bd" 2959 dependencies = [ 2960 "heck 0.4.1", 2961 + "itertools", 2962 "proc-macro2", 2963 + "proc-macro2-diagnostics", 2964 "quote", 2965 + "syn 2.0.79", 2966 ] 2967 2968 [[package]] ··· 3019 3020 [[package]] 3021 name = "parking" 3022 + version = "2.2.1" 3023 source = "registry+https://github.com/rust-lang/crates.io-index" 3024 + checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3025 3026 [[package]] 3027 name = "parking_lot" ··· 3041 dependencies = [ 3042 "cfg-if", 3043 "libc", 3044 + "redox_syscall", 3045 "smallvec", 3046 "windows-targets 0.52.6", 3047 ] ··· 3082 "proc-macro2", 3083 "proc-macro2-diagnostics", 3084 "quote", 3085 + "syn 2.0.79", 3086 ] 3087 3088 [[package]] ··· 3111 3112 [[package]] 3113 name = "pin-project" 3114 + version = "1.1.6" 3115 source = "registry+https://github.com/rust-lang/crates.io-index" 3116 + checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec" 3117 dependencies = [ 3118 "pin-project-internal", 3119 ] 3120 3121 [[package]] 3122 name = "pin-project-internal" 3123 + version = "1.1.6" 3124 source = "registry+https://github.com/rust-lang/crates.io-index" 3125 + checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8" 3126 dependencies = [ 3127 "proc-macro2", 3128 "quote", 3129 + "syn 2.0.79", 3130 ] 3131 3132 [[package]] ··· 3155 3156 [[package]] 3157 name = "piper" 3158 + version = "0.2.4" 3159 source = "registry+https://github.com/rust-lang/crates.io-index" 3160 + checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 3161 dependencies = [ 3162 "atomic-waker", 3163 + "fastrand 2.1.1", 3164 "futures-io", 3165 ] 3166 ··· 3239 3240 [[package]] 3241 name = "pkg-config" 3242 + version = "0.3.31" 3243 source = "registry+https://github.com/rust-lang/crates.io-index" 3244 + checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 3245 3246 [[package]] 3247 name = "polling" ··· 3261 3262 [[package]] 3263 name = "polling" 3264 + version = "3.7.3" 3265 source = "registry+https://github.com/rust-lang/crates.io-index" 3266 + checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" 3267 dependencies = [ 3268 "cfg-if", 3269 "concurrent-queue", 3270 "hermit-abi 0.4.0", 3271 "pin-project-lite", 3272 + "rustix 0.38.37", 3273 "tracing", 3274 + "windows-sys 0.59.0", 3275 ] 3276 3277 [[package]] ··· 3293 3294 [[package]] 3295 name = "ppv-lite86" 3296 version = "0.2.20" 3297 source = "registry+https://github.com/rust-lang/crates.io-index" 3298 + checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 3299 dependencies = [ 3300 + "zerocopy", 3301 ] 3302 3303 [[package]] ··· 3311 3312 [[package]] 3313 name = "proc-macro-crate" 3314 + version = "3.2.0" 3315 source = "registry+https://github.com/rust-lang/crates.io-index" 3316 + checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 3317 dependencies = [ 3318 + "toml_edit", 3319 ] 3320 3321 [[package]] ··· 3343 ] 3344 3345 [[package]] 3346 + name = "proc-macro-error-attr2" 3347 + version = "2.0.0" 3348 + source = "registry+https://github.com/rust-lang/crates.io-index" 3349 + checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 3350 + dependencies = [ 3351 + "proc-macro2", 3352 + "quote", 3353 + ] 3354 + 3355 + [[package]] 3356 + name = "proc-macro-error2" 3357 + version = "2.0.1" 3358 + source = "registry+https://github.com/rust-lang/crates.io-index" 3359 + checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 3360 + dependencies = [ 3361 + "proc-macro-error-attr2", 3362 + "proc-macro2", 3363 + "quote", 3364 + "syn 2.0.79", 3365 + ] 3366 + 3367 + [[package]] 3368 name = "proc-macro2" 3369 + version = "1.0.88" 3370 source = "registry+https://github.com/rust-lang/crates.io-index" 3371 + checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" 3372 dependencies = [ 3373 "unicode-ident", 3374 ] ··· 3381 dependencies = [ 3382 "proc-macro2", 3383 "quote", 3384 + "syn 2.0.79", 3385 "version_check", 3386 "yansi", 3387 ] ··· 3406 "itertools", 3407 "proc-macro2", 3408 "quote", 3409 + "syn 2.0.79", 3410 ] 3411 3412 [[package]] ··· 3417 3418 [[package]] 3419 name = "quote" 3420 + version = "1.0.37" 3421 source = "registry+https://github.com/rust-lang/crates.io-index" 3422 + checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 3423 dependencies = [ 3424 "proc-macro2", 3425 ] ··· 3476 3477 [[package]] 3478 name = "redis" 3479 + version = "0.26.1" 3480 source = "registry+https://github.com/rust-lang/crates.io-index" 3481 + checksum = "e902a69d09078829137b4a5d9d082e0490393537badd7c91a3d69d14639e115f" 3482 dependencies = [ 3483 "arc-swap", 3484 "async-trait", ··· 3490 "itoa", 3491 "log", 3492 "native-tls", 3493 + "num-bigint", 3494 "percent-encoding", 3495 "pin-project-lite", 3496 "rand", ··· 3505 ] 3506 3507 [[package]] 3508 + name = "redis" 3509 + version = "0.27.5" 3510 source = "registry+https://github.com/rust-lang/crates.io-index" 3511 + checksum = "81cccf17a692ce51b86564334614d72dcae1def0fd5ecebc9f02956da74352b5" 3512 dependencies = [ 3513 + "arc-swap", 3514 + "async-trait", 3515 + "bytes", 3516 + "combine", 3517 + "crc16", 3518 + "futures", 3519 + "futures-util", 3520 + "itoa", 3521 + "log", 3522 + "native-tls", 3523 + "num-bigint", 3524 + "percent-encoding", 3525 + "pin-project-lite", 3526 + "rand", 3527 + "ryu", 3528 + "sha1_smol", 3529 + "socket2 0.5.7", 3530 + "tokio", 3531 + "tokio-native-tls", 3532 + "tokio-util", 3533 + "url", 3534 ] 3535 3536 [[package]] 3537 name = "redox_syscall" 3538 + version = "0.5.7" 3539 source = "registry+https://github.com/rust-lang/crates.io-index" 3540 + checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 3541 dependencies = [ 3542 "bitflags 2.6.0", 3543 ] 3544 3545 [[package]] 3546 name = "regex" 3547 + version = "1.11.0" 3548 source = "registry+https://github.com/rust-lang/crates.io-index" 3549 + checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 3550 dependencies = [ 3551 "aho-corasick", 3552 "memchr", 3553 + "regex-automata 0.4.8", 3554 + "regex-syntax 0.8.5", 3555 ] 3556 3557 [[package]] ··· 3565 3566 [[package]] 3567 name = "regex-automata" 3568 + version = "0.4.8" 3569 source = "registry+https://github.com/rust-lang/crates.io-index" 3570 + checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 3571 dependencies = [ 3572 "aho-corasick", 3573 "memchr", 3574 + "regex-syntax 0.8.5", 3575 ] 3576 3577 [[package]] ··· 3582 3583 [[package]] 3584 name = "regex-syntax" 3585 + version = "0.8.5" 3586 source = "registry+https://github.com/rust-lang/crates.io-index" 3587 + checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 3588 3589 [[package]] 3590 name = "reqwest" ··· 3624 "wasm-bindgen", 3625 "wasm-bindgen-futures", 3626 "web-sys", 3627 + "webpki-roots 0.25.4", 3628 + "winreg", 3629 ] 3630 3631 [[package]] 3632 name = "reqwest" 3633 + version = "0.12.8" 3634 source = "registry+https://github.com/rust-lang/crates.io-index" 3635 + checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" 3636 dependencies = [ 3637 "base64 0.22.1", 3638 "bytes", ··· 3642 "http 1.1.0", 3643 "http-body 1.0.1", 3644 "http-body-util", 3645 + "hyper 1.5.0", 3646 "hyper-tls 0.6.0", 3647 "hyper-util", 3648 "ipnet", ··· 3653 "once_cell", 3654 "percent-encoding", 3655 "pin-project-lite", 3656 + "rustls-pemfile 2.2.0", 3657 "serde", 3658 "serde_json", 3659 "serde_urlencoded", ··· 3665 "wasm-bindgen", 3666 "wasm-bindgen-futures", 3667 "web-sys", 3668 + "windows-registry", 3669 ] 3670 3671 [[package]] ··· 3745 ] 3746 3747 [[package]] 3748 + name = "rust_decimal" 3749 + version = "1.36.0" 3750 source = "registry+https://github.com/rust-lang/crates.io-index" 3751 + checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" 3752 + dependencies = [ 3753 + "arrayvec", 3754 + "num-traits", 3755 + "serde", 3756 + ] 3757 3758 [[package]] 3759 + name = "rustc-demangle" 3760 + version = "0.1.24" 3761 source = "registry+https://github.com/rust-lang/crates.io-index" 3762 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3763 3764 [[package]] 3765 name = "rustc_version" 3766 + version = "0.4.1" 3767 source = "registry+https://github.com/rust-lang/crates.io-index" 3768 + checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 3769 dependencies = [ 3770 "semver", 3771 ] ··· 3795 3796 [[package]] 3797 name = "rustix" 3798 + version = "0.38.37" 3799 source = "registry+https://github.com/rust-lang/crates.io-index" 3800 + checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 3801 dependencies = [ 3802 "bitflags 2.6.0", 3803 "errno", ··· 3827 "log", 3828 "ring", 3829 "rustls-pki-types", 3830 + "rustls-webpki 0.102.8", 3831 "subtle", 3832 "zeroize", 3833 ] 3834 3835 [[package]] 3836 name = "rustls" 3837 + version = "0.23.15" 3838 source = "registry+https://github.com/rust-lang/crates.io-index" 3839 + checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993" 3840 dependencies = [ 3841 "once_cell", 3842 + "ring", 3843 "rustls-pki-types", 3844 + "rustls-webpki 0.102.8", 3845 "subtle", 3846 "zeroize", 3847 ] 3848 3849 [[package]] 3850 name = "rustls-connector" 3851 + version = "0.20.1" 3852 source = "registry+https://github.com/rust-lang/crates.io-index" 3853 + checksum = "2a980454b497c439c274f2feae2523ed8138bbd3d323684e1435fec62f800481" 3854 dependencies = [ 3855 "log", 3856 + "rustls 0.23.15", 3857 "rustls-native-certs", 3858 "rustls-pki-types", 3859 + "rustls-webpki 0.102.8", 3860 ] 3861 3862 [[package]] 3863 name = "rustls-native-certs" 3864 + version = "0.7.3" 3865 source = "registry+https://github.com/rust-lang/crates.io-index" 3866 + checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" 3867 dependencies = [ 3868 "openssl-probe", 3869 + "rustls-pemfile 2.2.0", 3870 "rustls-pki-types", 3871 "schannel", 3872 "security-framework", ··· 3883 3884 [[package]] 3885 name = "rustls-pemfile" 3886 + version = "2.2.0" 3887 source = "registry+https://github.com/rust-lang/crates.io-index" 3888 + checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 3889 dependencies = [ 3890 "rustls-pki-types", 3891 ] 3892 3893 [[package]] 3894 name = "rustls-pki-types" 3895 + version = "1.10.0" 3896 source = "registry+https://github.com/rust-lang/crates.io-index" 3897 + checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 3898 3899 [[package]] 3900 name = "rustls-webpki" ··· 3908 3909 [[package]] 3910 name = "rustls-webpki" 3911 + version = "0.102.8" 3912 source = "registry+https://github.com/rust-lang/crates.io-index" 3913 + checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 3914 dependencies = [ 3915 "ring", 3916 "rustls-pki-types", 3917 "untrusted", ··· 3919 3920 [[package]] 3921 name = "rustversion" 3922 + version = "1.0.18" 3923 source = "registry+https://github.com/rust-lang/crates.io-index" 3924 + checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" 3925 3926 [[package]] 3927 name = "ryu" ··· 3940 3941 [[package]] 3942 name = "schannel" 3943 + version = "0.1.26" 3944 source = "registry+https://github.com/rust-lang/crates.io-index" 3945 + checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" 3946 dependencies = [ 3947 + "windows-sys 0.59.0", 3948 ] 3949 3950 [[package]] ··· 3971 "proc-macro2", 3972 "quote", 3973 "serde_derive_internals", 3974 + "syn 2.0.79", 3975 ] 3976 3977 [[package]] ··· 4003 4004 [[package]] 4005 name = "sea-bae" 4006 + version = "0.2.1" 4007 source = "registry+https://github.com/rust-lang/crates.io-index" 4008 + checksum = "f694a6ab48f14bc063cfadff30ab551d3c7e46d8f81836c51989d548f44a2a25" 4009 dependencies = [ 4010 "heck 0.4.1", 4011 + "proc-macro-error2", 4012 "proc-macro2", 4013 "quote", 4014 + "syn 2.0.79", 4015 ] 4016 4017 [[package]] 4018 name = "sea-orm" 4019 + version = "1.1.0" 4020 source = "registry+https://github.com/rust-lang/crates.io-index" 4021 + checksum = "4c4872675cc5d5d399a2a202c60f3a393ec8d3f3307c36adb166517f348e4db5" 4022 dependencies = [ 4023 "async-stream", 4024 "async-trait", 4025 + "bigdecimal", 4026 "chrono", 4027 "futures", 4028 "log", 4029 "ouroboros", 4030 + "rust_decimal", 4031 "sea-orm-macros", 4032 "sea-query", 4033 "sea-query-binder", ··· 4044 4045 [[package]] 4046 name = "sea-orm-macros" 4047 + version = "1.1.0" 4048 source = "registry+https://github.com/rust-lang/crates.io-index" 4049 + checksum = "85f714906b72e7265c0b2077d0ad8f235dabebda513c92f1326d5d40cef0dd01" 4050 dependencies = [ 4051 "heck 0.4.1", 4052 "proc-macro2", 4053 "quote", 4054 "sea-bae", 4055 + "syn 2.0.79", 4056 "unicode-ident", 4057 ] 4058 4059 [[package]] 4060 name = "sea-query" 4061 + version = "0.32.0" 4062 source = "registry+https://github.com/rust-lang/crates.io-index" 4063 + checksum = "ff504d13b5e4b52fffcf2fb203d0352a5722fa5151696db768933e41e1e591bb" 4064 dependencies = [ 4065 "chrono", 4066 "inherent", 4067 "ordered-float 3.9.2", 4068 "serde_json", ··· 4070 4071 [[package]] 4072 name = "sea-query-binder" 4073 + version = "0.7.0" 4074 source = "registry+https://github.com/rust-lang/crates.io-index" 4075 + checksum = "b0019f47430f7995af63deda77e238c17323359af241233ec768aba1faea7608" 4076 dependencies = [ 4077 "chrono", 4078 "sea-query", ··· 4109 4110 [[package]] 4111 name = "security-framework-sys" 4112 + version = "2.12.0" 4113 source = "registry+https://github.com/rust-lang/crates.io-index" 4114 + checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 4115 dependencies = [ 4116 "core-foundation-sys", 4117 "libc", ··· 4131 dependencies = [ 4132 "httpdate", 4133 "native-tls", 4134 + "reqwest 0.12.8", 4135 "sentry-backtrace", 4136 "sentry-contexts", 4137 "sentry-core", ··· 4233 4234 [[package]] 4235 name = "serde" 4236 + version = "1.0.210" 4237 source = "registry+https://github.com/rust-lang/crates.io-index" 4238 + checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 4239 dependencies = [ 4240 "serde_derive", 4241 ] 4242 4243 [[package]] 4244 name = "serde_derive" 4245 + version = "1.0.210" 4246 source = "registry+https://github.com/rust-lang/crates.io-index" 4247 + checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 4248 dependencies = [ 4249 "proc-macro2", 4250 "quote", 4251 + "syn 2.0.79", 4252 ] 4253 4254 [[package]] ··· 4259 dependencies = [ 4260 "proc-macro2", 4261 "quote", 4262 + "syn 2.0.79", 4263 ] 4264 4265 [[package]] 4266 name = "serde_json" 4267 + version = "1.0.128" 4268 source = "registry+https://github.com/rust-lang/crates.io-index" 4269 + checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 4270 dependencies = [ 4271 "itoa", 4272 + "memchr", 4273 "ryu", 4274 "serde", 4275 ] ··· 4305 dependencies = [ 4306 "proc-macro2", 4307 "quote", 4308 + "syn 2.0.79", 4309 ] 4310 4311 [[package]] 4312 name = "serde_spanned" 4313 + version = "0.6.8" 4314 source = "registry+https://github.com/rust-lang/crates.io-index" 4315 + checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 4316 dependencies = [ 4317 "serde", 4318 ] ··· 4342 4343 [[package]] 4344 name = "sha1_smol" 4345 + version = "1.0.1" 4346 source = "registry+https://github.com/rust-lang/crates.io-index" 4347 + checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 4348 4349 [[package]] 4350 name = "sha2" ··· 4415 version = "1.13.2" 4416 source = "registry+https://github.com/rust-lang/crates.io-index" 4417 checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 4418 + dependencies = [ 4419 + "serde", 4420 + ] 4421 4422 [[package]] 4423 name = "socket2" ··· 4470 4471 [[package]] 4472 name = "sqlformat" 4473 + version = "0.2.6" 4474 source = "registry+https://github.com/rust-lang/crates.io-index" 4475 + checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" 4476 dependencies = [ 4477 "nom", 4478 "unicode_categories", ··· 4480 4481 [[package]] 4482 name = "sqlx" 4483 + version = "0.8.2" 4484 source = "registry+https://github.com/rust-lang/crates.io-index" 4485 + checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e" 4486 dependencies = [ 4487 "sqlx-core", 4488 "sqlx-macros", ··· 4493 4494 [[package]] 4495 name = "sqlx-core" 4496 + version = "0.8.2" 4497 source = "registry+https://github.com/rust-lang/crates.io-index" 4498 + checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e" 4499 dependencies = [ 4500 "atoi", 4501 "byteorder", 4502 "bytes", ··· 4504 "crc", 4505 "crossbeam-queue", 4506 "either", 4507 + "event-listener 5.3.1", 4508 "futures-channel", 4509 "futures-core", 4510 "futures-intrusive", 4511 "futures-io", 4512 "futures-util", 4513 + "hashbrown 0.14.5", 4514 "hashlink", 4515 "hex", 4516 + "indexmap 2.6.0", 4517 "log", 4518 "memchr", 4519 "once_cell", 4520 "paste", 4521 "percent-encoding", 4522 + "rustls 0.23.15", 4523 + "rustls-pemfile 2.2.0", 4524 "serde", 4525 "serde_json", 4526 "sha2", ··· 4531 "tokio-stream", 4532 "tracing", 4533 "url", 4534 + "webpki-roots 0.26.6", 4535 ] 4536 4537 [[package]] 4538 name = "sqlx-macros" 4539 + version = "0.8.2" 4540 source = "registry+https://github.com/rust-lang/crates.io-index" 4541 + checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657" 4542 dependencies = [ 4543 "proc-macro2", 4544 "quote", 4545 "sqlx-core", 4546 "sqlx-macros-core", 4547 + "syn 2.0.79", 4548 ] 4549 4550 [[package]] 4551 name = "sqlx-macros-core" 4552 + version = "0.8.2" 4553 source = "registry+https://github.com/rust-lang/crates.io-index" 4554 + checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5" 4555 dependencies = [ 4556 "dotenvy", 4557 "either", 4558 + "heck 0.5.0", 4559 "hex", 4560 "once_cell", 4561 "proc-macro2", ··· 4567 "sqlx-mysql", 4568 "sqlx-postgres", 4569 "sqlx-sqlite", 4570 + "syn 2.0.79", 4571 "tempfile", 4572 "tokio", 4573 "url", ··· 4575 4576 [[package]] 4577 name = "sqlx-mysql" 4578 + version = "0.8.2" 4579 source = "registry+https://github.com/rust-lang/crates.io-index" 4580 + checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a" 4581 dependencies = [ 4582 "atoi", 4583 + "base64 0.22.1", 4584 "bitflags 2.6.0", 4585 "byteorder", 4586 "bytes", ··· 4618 4619 [[package]] 4620 name = "sqlx-postgres" 4621 + version = "0.8.2" 4622 source = "registry+https://github.com/rust-lang/crates.io-index" 4623 + checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8" 4624 dependencies = [ 4625 "atoi", 4626 + "base64 0.22.1", 4627 "bitflags 2.6.0", 4628 "byteorder", 4629 "chrono", ··· 4657 4658 [[package]] 4659 name = "sqlx-sqlite" 4660 + version = "0.8.2" 4661 source = "registry+https://github.com/rust-lang/crates.io-index" 4662 + checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680" 4663 dependencies = [ 4664 "atoi", 4665 "chrono", ··· 4673 "log", 4674 "percent-encoding", 4675 "serde", 4676 + "serde_urlencoded", 4677 "sqlx-core", 4678 "tracing", 4679 "url", 4680 ] 4681 4682 [[package]] ··· 4704 4705 [[package]] 4706 name = "strum" 4707 + version = "0.26.3" 4708 source = "registry+https://github.com/rust-lang/crates.io-index" 4709 + checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 4710 4711 [[package]] 4712 name = "subtle" ··· 4716 4717 [[package]] 4718 name = "svix" 4719 + version = "1.38.0" 4720 source = "registry+https://github.com/rust-lang/crates.io-index" 4721 + checksum = "aa2f4d2c5bc0f080fa6127b8fb70ac083cc27218bfbaae40508c3dab68509e41" 4722 dependencies = [ 4723 "base64 0.13.1", 4724 "hmac-sha256", 4725 "http 0.2.12", 4726 "http 1.1.0", 4727 "http-body-util", 4728 + "hyper 1.5.0", 4729 "hyper-rustls 0.26.0", 4730 "hyper-tls 0.6.0", 4731 "hyper-util", ··· 4765 4766 [[package]] 4767 name = "svix-server" 4768 + version = "1.40.0" 4769 dependencies = [ 4770 "aide", 4771 "anyhow", ··· 4774 "axum-server", 4775 "base64 0.13.1", 4776 "bb8", 4777 + "bb8-redis 0.16.0", 4778 "blake2", 4779 "bytes", 4780 "chacha20poly1305", ··· 4787 "figment", 4788 "form_urlencoded", 4789 "futures", 4790 + "hex", 4791 "hickory-resolver", 4792 "hmac-sha256", 4793 "http 0.2.12", ··· 4809 "opentelemetry-otlp", 4810 "opentelemetry_sdk", 4811 "rand", 4812 + "redis 0.26.1", 4813 "regex", 4814 "reqwest 0.11.27", 4815 "schemars", ··· 4842 dependencies = [ 4843 "proc-macro2", 4844 "quote", 4845 + "syn 2.0.79", 4846 ] 4847 4848 [[package]] ··· 4858 4859 [[package]] 4860 name = "syn" 4861 + version = "2.0.79" 4862 source = "registry+https://github.com/rust-lang/crates.io-index" 4863 + checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" 4864 dependencies = [ 4865 "proc-macro2", 4866 "quote", ··· 4878 version = "1.0.1" 4879 source = "registry+https://github.com/rust-lang/crates.io-index" 4880 checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 4881 + dependencies = [ 4882 + "futures-core", 4883 + ] 4884 4885 [[package]] 4886 name = "synstructure" ··· 4890 dependencies = [ 4891 "proc-macro2", 4892 "quote", 4893 + "syn 2.0.79", 4894 ] 4895 4896 [[package]] ··· 4923 "cfg-if", 4924 "p12-keystore", 4925 "rustls-connector", 4926 + "rustls-pemfile 2.2.0", 4927 ] 4928 4929 [[package]] 4930 name = "tempfile" 4931 + version = "3.13.0" 4932 source = "registry+https://github.com/rust-lang/crates.io-index" 4933 + checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 4934 dependencies = [ 4935 "cfg-if", 4936 + "fastrand 2.1.1", 4937 + "once_cell", 4938 + "rustix 0.38.37", 4939 + "windows-sys 0.59.0", 4940 ] 4941 4942 [[package]] 4943 name = "thiserror" 4944 + version = "1.0.64" 4945 source = "registry+https://github.com/rust-lang/crates.io-index" 4946 + checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 4947 dependencies = [ 4948 "thiserror-impl", 4949 ] 4950 4951 [[package]] 4952 name = "thiserror-impl" 4953 + version = "1.0.64" 4954 source = "registry+https://github.com/rust-lang/crates.io-index" 4955 + checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 4956 dependencies = [ 4957 "proc-macro2", 4958 "quote", 4959 + "syn 2.0.79", 4960 ] 4961 4962 [[package]] ··· 5037 5038 [[package]] 5039 name = "tokio" 5040 + version = "1.40.0" 5041 source = "registry+https://github.com/rust-lang/crates.io-index" 5042 + checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 5043 dependencies = [ 5044 "backtrace", 5045 "bytes", 5046 "libc", 5047 "mio", 5048 "parking_lot", 5049 "pin-project-lite", 5050 "signal-hook-registry", 5051 "socket2 0.5.7", 5052 "tokio-macros", 5053 + "windows-sys 0.52.0", 5054 ] 5055 5056 [[package]] ··· 5065 5066 [[package]] 5067 name = "tokio-macros" 5068 + version = "2.4.0" 5069 source = "registry+https://github.com/rust-lang/crates.io-index" 5070 + checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 5071 dependencies = [ 5072 "proc-macro2", 5073 "quote", 5074 + "syn 2.0.79", 5075 ] 5076 5077 [[package]] ··· 5086 5087 [[package]] 5088 name = "tokio-openssl" 5089 + version = "0.6.5" 5090 source = "registry+https://github.com/rust-lang/crates.io-index" 5091 + checksum = "59df6849caa43bb7567f9a36f863c447d95a11d5903c9cc334ba32576a27eadd" 5092 dependencies = [ 5093 "openssl", 5094 "openssl-sys", 5095 "tokio", ··· 5129 5130 [[package]] 5131 name = "tokio-stream" 5132 + version = "0.1.16" 5133 source = "registry+https://github.com/rust-lang/crates.io-index" 5134 + checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" 5135 dependencies = [ 5136 "futures-core", 5137 "pin-project-lite", ··· 5140 5141 [[package]] 5142 name = "tokio-util" 5143 + version = "0.7.12" 5144 source = "registry+https://github.com/rust-lang/crates.io-index" 5145 + checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 5146 dependencies = [ 5147 "bytes", 5148 "futures-core", ··· 5153 5154 [[package]] 5155 name = "toml" 5156 + version = "0.8.19" 5157 source = "registry+https://github.com/rust-lang/crates.io-index" 5158 + checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 5159 dependencies = [ 5160 "serde", 5161 "serde_spanned", 5162 "toml_datetime", 5163 + "toml_edit", 5164 ] 5165 5166 [[package]] 5167 name = "toml_datetime" 5168 + version = "0.6.8" 5169 source = "registry+https://github.com/rust-lang/crates.io-index" 5170 + checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 5171 dependencies = [ 5172 "serde", 5173 ] 5174 5175 [[package]] 5176 name = "toml_edit" 5177 + version = "0.22.22" 5178 source = "registry+https://github.com/rust-lang/crates.io-index" 5179 + checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 5180 dependencies = [ 5181 + "indexmap 2.6.0", 5182 "serde", 5183 "serde_spanned", 5184 "toml_datetime", 5185 + "winnow", 5186 ] 5187 5188 [[package]] ··· 5254 5255 [[package]] 5256 name = "tower-layer" 5257 + version = "0.3.3" 5258 source = "registry+https://github.com/rust-lang/crates.io-index" 5259 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 5260 5261 [[package]] 5262 name = "tower-service" 5263 + version = "0.3.3" 5264 source = "registry+https://github.com/rust-lang/crates.io-index" 5265 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 5266 5267 [[package]] 5268 name = "tracing" ··· 5284 dependencies = [ 5285 "proc-macro2", 5286 "quote", 5287 + "syn 2.0.79", 5288 ] 5289 5290 [[package]] ··· 5310 5311 [[package]] 5312 name = "tracing-opentelemetry" 5313 + version = "0.24.0" 5314 source = "registry+https://github.com/rust-lang/crates.io-index" 5315 + checksum = "f68803492bf28ab40aeccaecc7021096bd256baf7ca77c3d425d89b35a7be4e4" 5316 dependencies = [ 5317 "js-sys", 5318 "once_cell", ··· 5389 5390 [[package]] 5391 name = "unicode-bidi" 5392 + version = "0.3.17" 5393 source = "registry+https://github.com/rust-lang/crates.io-index" 5394 + checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 5395 5396 [[package]] 5397 name = "unicode-ident" 5398 + version = "1.0.13" 5399 source = "registry+https://github.com/rust-lang/crates.io-index" 5400 + checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 5401 5402 [[package]] 5403 name = "unicode-normalization" 5404 + version = "0.1.24" 5405 source = "registry+https://github.com/rust-lang/crates.io-index" 5406 + checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 5407 dependencies = [ 5408 "tinyvec", 5409 ] 5410 5411 [[package]] 5412 name = "unicode-properties" 5413 + version = "0.1.3" 5414 source = "registry+https://github.com/rust-lang/crates.io-index" 5415 + checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 5416 5417 [[package]] 5418 name = "unicode_categories" ··· 5438 5439 [[package]] 5440 name = "ureq" 5441 + version = "2.10.1" 5442 source = "registry+https://github.com/rust-lang/crates.io-index" 5443 + checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" 5444 dependencies = [ 5445 "base64 0.22.1", 5446 "log", ··· 5475 5476 [[package]] 5477 name = "uuid" 5478 + version = "1.11.0" 5479 source = "registry+https://github.com/rust-lang/crates.io-index" 5480 + checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 5481 dependencies = [ 5482 "getrandom", 5483 "serde", ··· 5539 5540 [[package]] 5541 name = "version_check" 5542 + version = "0.9.5" 5543 source = "registry+https://github.com/rust-lang/crates.io-index" 5544 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 5545 5546 [[package]] 5547 name = "waker-fn" ··· 5581 5582 [[package]] 5583 name = "wasm-bindgen" 5584 + version = "0.2.95" 5585 source = "registry+https://github.com/rust-lang/crates.io-index" 5586 + checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" 5587 dependencies = [ 5588 "cfg-if", 5589 + "once_cell", 5590 "wasm-bindgen-macro", 5591 ] 5592 5593 [[package]] 5594 name = "wasm-bindgen-backend" 5595 + version = "0.2.95" 5596 source = "registry+https://github.com/rust-lang/crates.io-index" 5597 + checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" 5598 dependencies = [ 5599 "bumpalo", 5600 "log", 5601 "once_cell", 5602 "proc-macro2", 5603 "quote", 5604 + "syn 2.0.79", 5605 "wasm-bindgen-shared", 5606 ] 5607 5608 [[package]] 5609 name = "wasm-bindgen-futures" 5610 + version = "0.4.45" 5611 source = "registry+https://github.com/rust-lang/crates.io-index" 5612 + checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" 5613 dependencies = [ 5614 "cfg-if", 5615 "js-sys", ··· 5619 5620 [[package]] 5621 name = "wasm-bindgen-macro" 5622 + version = "0.2.95" 5623 source = "registry+https://github.com/rust-lang/crates.io-index" 5624 + checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" 5625 dependencies = [ 5626 "quote", 5627 "wasm-bindgen-macro-support", ··· 5629 5630 [[package]] 5631 name = "wasm-bindgen-macro-support" 5632 + version = "0.2.95" 5633 source = "registry+https://github.com/rust-lang/crates.io-index" 5634 + checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" 5635 dependencies = [ 5636 "proc-macro2", 5637 "quote", 5638 + "syn 2.0.79", 5639 "wasm-bindgen-backend", 5640 "wasm-bindgen-shared", 5641 ] 5642 5643 [[package]] 5644 name = "wasm-bindgen-shared" 5645 + version = "0.2.95" 5646 source = "registry+https://github.com/rust-lang/crates.io-index" 5647 + checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" 5648 5649 [[package]] 5650 name = "web-sys" 5651 + version = "0.3.72" 5652 source = "registry+https://github.com/rust-lang/crates.io-index" 5653 + checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" 5654 dependencies = [ 5655 "js-sys", 5656 "wasm-bindgen", ··· 5673 checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 5674 5675 [[package]] 5676 + name = "webpki-roots" 5677 + version = "0.26.6" 5678 source = "registry+https://github.com/rust-lang/crates.io-index" 5679 + checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 5680 dependencies = [ 5681 + "rustls-pki-types", 5682 ] 5683 5684 [[package]] 5685 name = "whoami" 5686 + version = "1.5.2" 5687 source = "registry+https://github.com/rust-lang/crates.io-index" 5688 + checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" 5689 dependencies = [ 5690 + "redox_syscall", 5691 "wasite", 5692 ] 5693 ··· 5739 ] 5740 5741 [[package]] 5742 + name = "windows-registry" 5743 + version = "0.2.0" 5744 + source = "registry+https://github.com/rust-lang/crates.io-index" 5745 + checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 5746 + dependencies = [ 5747 + "windows-result", 5748 + "windows-strings", 5749 + "windows-targets 0.52.6", 5750 + ] 5751 + 5752 + [[package]] 5753 + name = "windows-result" 5754 + version = "0.2.0" 5755 + source = "registry+https://github.com/rust-lang/crates.io-index" 5756 + checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 5757 + dependencies = [ 5758 + "windows-targets 0.52.6", 5759 + ] 5760 + 5761 + [[package]] 5762 + name = "windows-strings" 5763 + version = "0.1.0" 5764 + source = "registry+https://github.com/rust-lang/crates.io-index" 5765 + checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 5766 + dependencies = [ 5767 + "windows-result", 5768 + "windows-targets 0.52.6", 5769 + ] 5770 + 5771 + [[package]] 5772 name = "windows-sys" 5773 version = "0.48.0" 5774 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5782 version = "0.52.0" 5783 source = "registry+https://github.com/rust-lang/crates.io-index" 5784 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5785 + dependencies = [ 5786 + "windows-targets 0.52.6", 5787 + ] 5788 + 5789 + [[package]] 5790 + name = "windows-sys" 5791 + version = "0.59.0" 5792 + source = "registry+https://github.com/rust-lang/crates.io-index" 5793 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 5794 dependencies = [ 5795 "windows-targets 0.52.6", 5796 ] ··· 5918 5919 [[package]] 5920 name = "winnow" 5921 + version = "0.6.20" 5922 source = "registry+https://github.com/rust-lang/crates.io-index" 5923 + checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 5924 dependencies = [ 5925 "memchr", 5926 ] ··· 5936 ] 5937 5938 [[package]] 5939 name = "x509-cert" 5940 version = "0.2.5" 5941 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5975 source = "registry+https://github.com/rust-lang/crates.io-index" 5976 checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 5977 dependencies = [ 5978 + "byteorder", 5979 "zerocopy-derive", 5980 ] 5981 ··· 5987 dependencies = [ 5988 "proc-macro2", 5989 "quote", 5990 + "syn 2.0.79", 5991 ] 5992 5993 [[package]] ··· 5995 version = "1.8.1" 5996 source = "registry+https://github.com/rust-lang/crates.io-index" 5997 checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
+3 -3
pkgs/by-name/sv/svix-server/package.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "svix-server"; 6 - version = "1.38.0"; 7 8 src = fetchFromGitHub { 9 owner = "svix"; 10 repo = "svix-webhooks"; 11 rev = "v${version}"; 12 - hash = "sha256-gi6Jm0tf1lP10UYpouCleN32K71upYOudxjOoRgsGLg="; 13 }; 14 15 sourceRoot = "${src.name}/server"; ··· 18 lockFile = ./Cargo.lock; 19 outputHashes = { 20 "hyper-0.14.28" = "sha256-4HGGpM9Ce3l3EJnu5XsGfqhrD9EykpR+ihEJlSZc03Q="; 21 - "omniqueue-0.2.1" = "sha256-ql3KJRs0SfLdo75vF2HlZT2zRDamDrORsWmK+Oj7m1Q="; 22 }; 23 }; 24
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "svix-server"; 6 + version = "1.40.0"; 7 8 src = fetchFromGitHub { 9 owner = "svix"; 10 repo = "svix-webhooks"; 11 rev = "v${version}"; 12 + hash = "sha256-3rUyfFtsDOqJYwTipor1YSCdP+9ORYWmzl5Tt3/Kung="; 13 }; 14 15 sourceRoot = "${src.name}/server"; ··· 18 lockFile = ./Cargo.lock; 19 outputHashes = { 20 "hyper-0.14.28" = "sha256-4HGGpM9Ce3l3EJnu5XsGfqhrD9EykpR+ihEJlSZc03Q="; 21 + "omniqueue-0.2.1" = "sha256-ab0/WO45m1A56EUY8nLUuxKI9NZqjDar9Y0ua77UCi8="; 22 }; 23 }; 24
+2 -2
pkgs/by-name/te/tektoncd-cli/package.nix
··· 2 3 buildGoModule rec { 4 pname = "tektoncd-cli"; 5 - version = "0.38.1"; 6 7 src = fetchFromGitHub { 8 owner = "tektoncd"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-FZbuYKYT/LJ9php66N2RYGGYDJxDI9fWfIZAI8X+iRk="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "tektoncd-cli"; 5 + version = "0.39.0"; 6 7 src = fetchFromGitHub { 8 owner = "tektoncd"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-yEtHPA1MG+Cud9KhTrsvhQp1Q+Mu073AoNwOvZH8xBU="; 12 }; 13 14 vendorHash = null;
+3 -3
pkgs/by-name/wl/wlvncc/package.nix
··· 24 }: 25 stdenv.mkDerivation { 26 pname = "wlvncc"; 27 - version = "unstable-2023-01-05"; 28 29 src = fetchFromGitHub { 30 owner = "any1"; 31 repo = "wlvncc"; 32 - rev = "2b9a886edd38204ef36e9f9f65dd32aaa3784530"; 33 - hash = "sha256-0HbZEtDaLjr966RS+2GHc7N4nsivPIv57T/+AJliwUI="; 34 }; 35 36 nativeBuildInputs = [
··· 24 }: 25 stdenv.mkDerivation { 26 pname = "wlvncc"; 27 + version = "unstable-2024-11-23"; 28 29 src = fetchFromGitHub { 30 owner = "any1"; 31 repo = "wlvncc"; 32 + rev = "0489e29fba374a08be8ba4a64d492a3c74018f41"; 33 + hash = "sha256-jFP4O6zo1fYULOVX9+nuTNAy4NuBKsDKOy+WUQRUjdI="; 34 }; 35 36 nativeBuildInputs = [
+3 -3
pkgs/by-name/ya/yara-x/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "yara-x"; 13 - version = "0.10.0"; 14 15 src = fetchFromGitHub { 16 owner = "VirusTotal"; 17 repo = "yara-x"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-HZA4olgHYTlPnTZNGxQNQlGX//XgqslHOMOil5G76xs="; 20 }; 21 22 - cargoHash = "sha256-l66vRrFxwxVThBy98RWIpUi6SJkPH6VZLd5fkq5AStU="; 23 24 nativeBuildInputs = [ cmake installShellFiles ]; 25
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "yara-x"; 13 + version = "0.11.0"; 14 15 src = fetchFromGitHub { 16 owner = "VirusTotal"; 17 repo = "yara-x"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-14YHaaZpqB8448MGdKsYqxZ4N/+p92khQWRov3cO/eU="; 20 }; 21 22 + cargoHash = "sha256-gcRLnPlNVzA5nxdviWz8dDzblFujytYPrt7eyFgm5Lc="; 23 24 nativeBuildInputs = [ cmake installShellFiles ]; 25
+3 -3
pkgs/development/interpreters/wasmer/default.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "wasmer"; 14 - version = "5.0.1"; 15 16 src = fetchFromGitHub { 17 owner = "wasmerio"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-tfAGPBc36o5/XtVZ8IW6SFr+iWOkFzVTfe9jI4PpuA0="; 21 }; 22 23 - cargoHash = "sha256-zvQJpAjZNfa54se2xaRPWCWoCWsWw1btaHYrWlyUIZY="; 24 25 nativeBuildInputs = [ 26 rustPlatform.bindgenHook
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "wasmer"; 14 + version = "5.0.2"; 15 16 src = fetchFromGitHub { 17 owner = "wasmerio"; 18 repo = pname; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-u7O+EAhq1h96yWwQVY74vNKKaB+2r5nqhuD9Pktgqu0="; 21 }; 22 23 + cargoHash = "sha256-FLMGDD/o+gSPqX2dlHQP7zDx89B/MpjdWVpke9EPsBI="; 24 25 nativeBuildInputs = [ 26 rustPlatform.bindgenHook
+1 -1
pkgs/development/ocaml-modules/opam-core/default.nix
··· 2 , jsonm, ocamlgraph, re, sha, swhid_core, uutf 3 }: 4 5 - buildDunePackage rec { 6 pname = "opam-core"; 7 8 inherit (opam) src version;
··· 2 , jsonm, ocamlgraph, re, sha, swhid_core, uutf 3 }: 4 5 + buildDunePackage { 6 pname = "opam-core"; 7 8 inherit (opam) src version;
+1 -1
pkgs/development/ocaml-modules/opam-format/default.nix
··· 1 { lib, buildDunePackage, opam-core, opam-file-format }: 2 3 - buildDunePackage rec { 4 pname = "opam-format"; 5 6 inherit (opam-core) src version;
··· 1 { lib, buildDunePackage, opam-core, opam-file-format }: 2 3 + buildDunePackage { 4 pname = "opam-format"; 5 6 inherit (opam-core) src version;
+1 -1
pkgs/development/ocaml-modules/opam-repository/default.nix
··· 1 { lib, buildDunePackage, opam-format, curl }: 2 3 - buildDunePackage rec { 4 pname = "opam-repository"; 5 6 inherit (opam-format) src version;
··· 1 { lib, buildDunePackage, opam-format, curl }: 2 3 + buildDunePackage { 4 pname = "opam-repository"; 5 6 inherit (opam-format) src version;
+1 -1
pkgs/development/ocaml-modules/opam-state/default.nix
··· 1 { lib, buildDunePackage, opam, opam-repository, spdx_licenses }: 2 3 - buildDunePackage rec { 4 pname = "opam-state"; 5 6 inherit (opam) src version;
··· 1 { lib, buildDunePackage, opam, opam-repository, spdx_licenses }: 2 3 + buildDunePackage { 4 pname = "opam-state"; 5 6 inherit (opam) src version;
+2 -2
pkgs/development/python-modules/airtouch5py/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "airtouch5py"; 20 - version = "0.2.10"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "danzel"; 27 repo = "airtouch5py"; 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-8QMyp/Y60V64k1V8Hze5FsgpfHr8ZT1Xj/kQDP7CtjI="; 30 }; 31 32 build-system = [ poetry-core ];
··· 17 18 buildPythonPackage rec { 19 pname = "airtouch5py"; 20 + version = "0.2.11"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.10"; ··· 26 owner = "danzel"; 27 repo = "airtouch5py"; 28 rev = "refs/tags/${version}"; 29 + hash = "sha256-qJSqgdT1G26JOEjmsQv07IdWvApFvtHIdRGi9TFaKZ8="; 30 }; 31 32 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/bc-detect-secrets/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "bc-detect-secrets"; 20 - version = "1.5.18"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "bridgecrewio"; 27 repo = "detect-secrets"; 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-5PGEpdCMS9AerX9GZDFen7nhwPY393g1zo9Th9lUOE0="; 30 }; 31 32 build-system = [ setuptools ];
··· 17 18 buildPythonPackage rec { 19 pname = "bc-detect-secrets"; 20 + version = "1.5.27"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "bridgecrewio"; 27 repo = "detect-secrets"; 28 rev = "refs/tags/${version}"; 29 + hash = "sha256-nfqJTiQpyX3qsmhGXgE91895P+eGBZApDL7EKT/36hQ="; 30 }; 31 32 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/dvc/default.nix
··· 57 58 buildPythonPackage rec { 59 pname = "dvc"; 60 - version = "3.56.0"; 61 pyproject = true; 62 63 disabled = pythonOlder "3.8"; ··· 66 owner = "iterative"; 67 repo = "dvc"; 68 rev = "refs/tags/${version}"; 69 - hash = "sha256-9TV+YQ9UFgqr3IoM0indUYa48O+mhfNxzAI56UtB3+Y="; 70 }; 71 72 pythonRelaxDeps = [
··· 57 58 buildPythonPackage rec { 59 pname = "dvc"; 60 + version = "3.57.0"; 61 pyproject = true; 62 63 disabled = pythonOlder "3.8"; ··· 66 owner = "iterative"; 67 repo = "dvc"; 68 rev = "refs/tags/${version}"; 69 + hash = "sha256-2d/soNyOkeNdv4aXrvtfDFCdedT74kkWUlrp0k5skEM="; 70 }; 71 72 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/iteration-utilities/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "iteration-utilities"; 11 - version = "0.12.1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "MSeifert04"; 18 repo = "iteration_utilities"; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-BiBbmZHo5B/u//LItqEcKtGXOA6xK+T1zoitR9XIiSU="; 21 }; 22 23 nativeCheckInputs = [ pytestCheckHook ];
··· 8 9 buildPythonPackage rec { 10 pname = "iteration-utilities"; 11 + version = "0.13.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "MSeifert04"; 18 repo = "iteration_utilities"; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-SiqNUyuvsD5m5qz5ByYyVln3SSa4/D4EHpmM+pf8ngM="; 21 }; 22 23 nativeCheckInputs = [ pytestCheckHook ];
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20241124"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-fgJwTEVA54932I+GfnTuejApGjyupbORJ3xoPm7nwOY="; 22 }; 23 24 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 + version = "1.0.2.20241127"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-RoBtvaWAu9VRNSzbYkFZFEPvbUUu0tc/Z16bxm+ELas="; 22 }; 23 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyswitchbot/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pyswitchbot"; 19 - version = "0.53.2"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "Danielhiversen"; 26 repo = "pySwitchbot"; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-V0oTx2uRz58t5IN2atXVlyLvMg1zavzSbd+2NNEQ6V0="; 29 }; 30 31 build-system = [ setuptools ];
··· 16 17 buildPythonPackage rec { 18 pname = "pyswitchbot"; 19 + version = "0.54.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "Danielhiversen"; 26 repo = "pySwitchbot"; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-bKAVSg1WvovLiNHz5bejePEd4+foMuG1VItWKzlQc60="; 29 }; 30 31 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyvista/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "pyvista"; 18 - version = "0.44.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "pyvista"; 25 repo = "pyvista"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-P4kmsaeZqwEUdLJmfTRHkh8zdlOGLw+YLp9fa05xLXU="; 28 }; 29 30 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "pyvista"; 18 + version = "0.44.2"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "pyvista"; 25 repo = "pyvista"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-ZQfI0lmh/cwE224yk6a2G3gLUCsBjCQqPI1y4zYj0FI="; 28 }; 29 30 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ring-doorbell/default.nix
··· 23 24 buildPythonPackage rec { 25 pname = "ring-doorbell"; 26 - version = "0.9.12"; 27 pyproject = true; 28 29 disabled = pythonOlder "3.9"; ··· 31 src = fetchPypi { 32 pname = "ring_doorbell"; 33 inherit version; 34 - hash = "sha256-juRzba5TGsjLd+A2AZ3ULRhUXtE0JXhiiYivBjPH7Co="; 35 }; 36 37 pythonRelaxDeps = [ "requests-oauthlib" ];
··· 23 24 buildPythonPackage rec { 25 pname = "ring-doorbell"; 26 + version = "0.9.13"; 27 pyproject = true; 28 29 disabled = pythonOlder "3.9"; ··· 31 src = fetchPypi { 32 pname = "ring_doorbell"; 33 inherit version; 34 + hash = "sha256-M8lHODHdWXLvrDbQMeEgGaQMYCXicHTQta+XjJxSQlM="; 35 }; 36 37 pythonRelaxDeps = [ "requests-oauthlib" ];
+3 -3
pkgs/development/python-modules/samsungtvws/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "samsungtvws"; 27 - version = "2.6.0"; 28 format = "setuptools"; 29 disabled = isPy27; 30 31 src = fetchFromGitHub { 32 owner = "xchwarze"; 33 repo = "samsung-tv-ws-api"; 34 - rev = "v${version}"; 35 - hash = "sha256-mkjfimzu7paz+ZskartL052AfUBtL1xU0eOlrHgD1UE="; 36 }; 37 38 propagatedBuildInputs = [
··· 24 25 buildPythonPackage rec { 26 pname = "samsungtvws"; 27 + version = "2.7.0"; 28 format = "setuptools"; 29 disabled = isPy27; 30 31 src = fetchFromGitHub { 32 owner = "xchwarze"; 33 repo = "samsung-tv-ws-api"; 34 + rev = "refs/tags/v${version}"; 35 + hash = "sha256-HwpshNwWZQ5dIS7IaJJ5VaE1bERcX79B/Mu4ISkyDJo="; 36 }; 37 38 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/stookwijzer/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "stookwijzer"; 12 - version = "1.5.0"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "fwestenberg"; 17 repo = "stookwijzer"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-QZyuzOAz/VAThgZdhOGeOLvC+2wtp1mgCXzIekBm/Xs="; 20 }; 21 22 build-system = [ setuptools ];
··· 9 10 buildPythonPackage rec { 11 pname = "stookwijzer"; 12 + version = "1.5.1"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "fwestenberg"; 17 repo = "stookwijzer"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-zAlHB4ZAgbUBDBQbnoSXwB+iOKeWKtkwBbA4AAyNv00="; 20 }; 21 22 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/weheat/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "weheat"; 15 - version = "2024.09.23"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "wefabricate"; 22 repo = "wh-python"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-egxc4gJaFIjbdvDVmenN61Rsg1NmlJSqxdG/7con9mU="; 25 }; 26 27 pythonRelaxDeps = [
··· 12 13 buildPythonPackage rec { 14 pname = "weheat"; 15 + version = "2024.11.26"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "wefabricate"; 22 repo = "wh-python"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-KM1LcO+hmhG+9yyrL2QpeO+SKumR+SKyc+66NJMJijk="; 25 }; 26 27 pythonRelaxDeps = [
+3 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "checkov"; 9 - version = "3.2.296"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "bridgecrewio"; 14 repo = "checkov"; 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-lHfAbgi5Ut3vwkEqIEXrvBFhEn1exIEB1PZmbVnqKbU="; 17 }; 18 19 patches = [ ./flake8-compat-5.x.patch ]; ··· 119 "console" 120 # Assertion error 121 "test_runner" 122 # AssertionError: assert ['<?xml versi... 123 "test_get_cyclonedx_report" 124 # Test fails on Hydra
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "checkov"; 9 + version = "3.2.316"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "bridgecrewio"; 14 repo = "checkov"; 15 rev = "refs/tags/${version}"; 16 + hash = "sha256-dPjeKMDRPuT0zh7VXeTvw42YRElorJPEQHjrEllKgfA="; 17 }; 18 19 patches = [ ./flake8-compat-5.x.patch ]; ··· 119 "console" 120 # Assertion error 121 "test_runner" 122 + "test_same_resources_in_report_and_coordinator" 123 # AssertionError: assert ['<?xml versi... 124 "test_get_cyclonedx_report" 125 # Test fails on Hydra
+3 -3
pkgs/development/tools/ocaml/opam/default.nix
··· 6 7 stdenv.mkDerivation { 8 pname = "opam"; 9 - version = "2.2.0"; 10 11 src = fetchurl { 12 - url = "https://github.com/ocaml/opam/releases/download/2.2.0/opam-full-2.2.0-2.tar.gz"; 13 - sha256 = "459ed64e6643f05c677563a000e3baa05c76ce528064e9cb9ce6db49fff37c97"; 14 }; 15 16 strictDeps = true;
··· 6 7 stdenv.mkDerivation { 8 pname = "opam"; 9 + version = "2.3.0"; 10 11 src = fetchurl { 12 + url = "https://github.com/ocaml/opam/releases/download/2.3.0/opam-full-2.3.0.tar.gz"; 13 + hash = "sha256-UGunaGXcMVtn35qonnq9XBqJen8KkteyaUl0/cUys0Y="; 14 }; 15 16 strictDeps = true;
+1 -4
pkgs/development/tools/ocaml/opam/installer.nix
··· 1 - { unzip, opam, ocamlPackages }: 2 3 ocamlPackages.buildDunePackage { 4 pname = "opam-installer"; 5 6 - duneVersion = "3"; 7 - 8 inherit (opam) version src; 9 - nativeBuildInputs = [ unzip ]; 10 11 configureFlags = [ "--disable-checks" "--prefix=$out" ]; 12 buildInputs = with ocamlPackages; [ opam-format cmdliner ];
··· 1 + { opam, ocamlPackages }: 2 3 ocamlPackages.buildDunePackage { 4 pname = "opam-installer"; 5 6 inherit (opam) version src; 7 8 configureFlags = [ "--disable-checks" "--prefix=$out" ]; 9 buildInputs = with ocamlPackages; [ opam-format cmdliner ];
+16 -2
pkgs/servers/http/nginx/generic.nix
··· 1 - outer@{ lib, stdenv, fetchurl, fetchpatch, openssl, zlib, pcre2, libxml2, libxslt 2 , nginx-doc 3 4 , nixosTests ··· 66 removeReferencesTo 67 ] ++ nativeBuildInputs; 68 69 - buildInputs = [ openssl zlib pcre2 libxml2 libxslt perl ] 70 ++ buildInputs 71 ++ mapModules "inputs" 72 ++ lib.optional withGeoIP geoip ··· 126 env.NIX_CFLAGS_COMPILE = toString ([ 127 "-I${libxml2.dev}/include/libxml2" 128 "-Wno-error=implicit-fallthrough" 129 ] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [ 130 # fix build vts module on gcc11 131 "-Wno-error=stringop-overread" ··· 155 ''; 156 }) 157 ./nix-skip-check-logs-path.patch 158 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 159 (fetchpatch { 160 url = "https://raw.githubusercontent.com/openwrt/packages/c057dfb09c7027287c7862afab965a4cd95293a3/net/nginx/patches/102-sizeof_test_fix.patch";
··· 1 + outer@{ lib, stdenv, fetchurl, fetchpatch, openssl, zlib-ng, pcre2, libxml2, libxslt 2 , nginx-doc 3 4 , nixosTests ··· 66 removeReferencesTo 67 ] ++ nativeBuildInputs; 68 69 + buildInputs = [ openssl zlib-ng pcre2 libxml2 libxslt perl ] 70 ++ buildInputs 71 ++ mapModules "inputs" 72 ++ lib.optional withGeoIP geoip ··· 126 env.NIX_CFLAGS_COMPILE = toString ([ 127 "-I${libxml2.dev}/include/libxml2" 128 "-Wno-error=implicit-fallthrough" 129 + ( 130 + # zlig-ng patch needs this 131 + if stdenv.cc.isGNU then 132 + "-Wno-error=discarded-qualifiers" 133 + else 134 + "-Wno-error=incompatible-pointer-types-discards-qualifiers" 135 + ) 136 ] ++ lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [ 137 # fix build vts module on gcc11 138 "-Wno-error=stringop-overread" ··· 162 ''; 163 }) 164 ./nix-skip-check-logs-path.patch 165 + ] ++ lib.optionals (pname != "openresty") [ 166 + # https://github.com/NixOS/nixpkgs/issues/357522 167 + # https://github.com/zlib-ng/patches/blob/5a036c0a00120c75ee573b27f4f44ade80d82ff2/nginx/README.md 168 + (fetchpatch { 169 + url = "https://raw.githubusercontent.com/zlib-ng/patches/38756e6325a5d2cc32709b8e9549984c63a78815/nginx/1.26.2-zlib-ng.patch"; 170 + hash = "sha256-LX5kP6jFiqgt4ApKw5eqOAFJNkc5QI6kX8ZRvBYTi9k="; 171 + }) 172 ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 173 (fetchpatch { 174 url = "https://raw.githubusercontent.com/openwrt/packages/c057dfb09c7027287c7862afab965a4cd95293a3/net/nginx/patches/102-sizeof_test_fix.patch";
+2 -2
pkgs/stdenv/custom/default.nix
··· 17 (vanillaPackages: { 18 inherit config overlays; 19 stdenv = 20 - assert vanillaPackages.hostPlatform == localSystem; 21 - assert vanillaPackages.targetPlatform == localSystem; 22 config.replaceStdenv { pkgs = vanillaPackages; }; 23 }) 24
··· 17 (vanillaPackages: { 18 inherit config overlays; 19 stdenv = 20 + assert vanillaPackages.stdenv.hostPlatform == localSystem; 21 + assert vanillaPackages.stdenv.targetPlatform == localSystem; 22 config.replaceStdenv { pkgs = vanillaPackages; }; 23 }) 24
+1
pkgs/top-level/aliases.nix
··· 62 63 ### _ ### 64 _1password = lib.warn "_1password has been renamed to _1password-cli to better follow upstream name usage" _1password-cli; # Added 2024-10-24 65 66 ### A ### 67
··· 62 63 ### _ ### 64 _1password = lib.warn "_1password has been renamed to _1password-cli to better follow upstream name usage" _1password-cli; # Added 2024-10-24 65 + "7z2hashcat" = throw "'7z2hashcat' has been renamed to '_7z2hashcat' as the former isn't a valid variable name."; # Added 2024-11-27 66 67 ### A ### 68
+1 -5
pkgs/top-level/all-packages.nix
··· 1606 android-tools = lowPrio (darwin.apple_sdk_11_0.callPackage ../tools/misc/android-tools { }); 1607 1608 angie = callPackage ../servers/http/angie { 1609 - zlib = zlib-ng.override { withZlibCompat = true; }; 1610 withPerl = false; 1611 # We don't use `with` statement here on purpose! 1612 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 1614 }; 1615 1616 angieQuic = callPackage ../servers/http/angie { 1617 - zlib = zlib-ng.override { withZlibCompat = true; }; 1618 withPerl = false; 1619 withQuic = true; 1620 # We don't use `with` statement here on purpose! ··· 11771 nginx = nginxStable; 11772 11773 nginxQuic = callPackage ../servers/http/nginx/quic.nix { 11774 - zlib = zlib-ng.override { withZlibCompat = true; }; 11775 withPerl = false; 11776 # We don't use `with` statement here on purpose! 11777 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 11781 }; 11782 11783 nginxStable = callPackage ../servers/http/nginx/stable.nix { 11784 - zlib = zlib-ng.override { withZlibCompat = true; }; 11785 withPerl = false; 11786 # We don't use `with` statement here on purpose! 11787 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 11789 }; 11790 11791 nginxMainline = callPackage ../servers/http/nginx/mainline.nix { 11792 - zlib = zlib-ng.override { withZlibCompat = true; }; 11793 withKTLS = true; 11794 withPerl = false; 11795 # We don't use `with` statement here on purpose! ··· 11818 openafs = callPackage ../servers/openafs/1.8 { }; 11819 11820 openresty = callPackage ../servers/http/openresty { 11821 withPerl = false; 11822 modules = []; 11823 };
··· 1606 android-tools = lowPrio (darwin.apple_sdk_11_0.callPackage ../tools/misc/android-tools { }); 1607 1608 angie = callPackage ../servers/http/angie { 1609 withPerl = false; 1610 # We don't use `with` statement here on purpose! 1611 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 1613 }; 1614 1615 angieQuic = callPackage ../servers/http/angie { 1616 withPerl = false; 1617 withQuic = true; 1618 # We don't use `with` statement here on purpose! ··· 11769 nginx = nginxStable; 11770 11771 nginxQuic = callPackage ../servers/http/nginx/quic.nix { 11772 withPerl = false; 11773 # We don't use `with` statement here on purpose! 11774 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 11778 }; 11779 11780 nginxStable = callPackage ../servers/http/nginx/stable.nix { 11781 withPerl = false; 11782 # We don't use `with` statement here on purpose! 11783 # See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334 ··· 11785 }; 11786 11787 nginxMainline = callPackage ../servers/http/nginx/mainline.nix { 11788 withKTLS = true; 11789 withPerl = false; 11790 # We don't use `with` statement here on purpose! ··· 11813 openafs = callPackage ../servers/openafs/1.8 { }; 11814 11815 openresty = callPackage ../servers/http/openresty { 11816 + zlib-ng = zlib; 11817 withPerl = false; 11818 modules = []; 11819 };