Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 4f207f8e a3678b54

+633 -8447
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 274 274 word-breaking. So you want to write `extraArgs = [ "--prefer" "spaced pat" ]` 275 275 rather than previous `extraArgs = [ "--prefer 'spaced pat'" ]`. 276 276 277 + - `mkBinaryCache` now defaults to using `zstd` compression for the binary caches it creates. The previous `xz` compression method can be used by passing `compression = "xz";`. 278 + 277 279 - `nodePackages."@commitlint/config-conventional"` has been removed, as it is a library, and projects should depend on it instead. 278 280 279 281 - zigbee2mqtt is now available in version 2.x as `zigbee2mqtt_2`. In NixOS 25.11 we'll remove `zigbee2mqtt_1` and default to `zigbee2mqtt_2`. See the [breaking changes](https://github.com/Koenkk/zigbee2mqtt/discussions/24198) announcement for 2.0.0.
+14 -8
pkgs/applications/audio/samplv1/default.nix
··· 1 1 { 2 - mkDerivation, 3 2 lib, 3 + stdenv, 4 4 fetchurl, 5 5 pkg-config, 6 6 libjack2, ··· 11 11 qtbase, 12 12 qttools, 13 13 rubberband, 14 + wrapQtAppsHook, 15 + cmake, 16 + qtsvg, 14 17 }: 15 18 16 - mkDerivation rec { 19 + stdenv.mkDerivation rec { 17 20 pname = "samplv1"; 18 - version = "0.9.23"; 21 + version = "1.3.0"; 19 22 20 23 src = fetchurl { 21 - url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz"; 22 - sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0="; 24 + url = "mirror://sourceforge/samplv1/samplv1-${version}.tar.gz"; 25 + hash = "sha256-ZmRsiFDqJsG28FiFR/RbeXkeeLn2HBfImKQM5PaRF78="; 23 26 }; 24 27 25 28 nativeBuildInputs = [ 26 29 qttools 27 30 pkg-config 31 + wrapQtAppsHook 32 + cmake 28 33 ]; 29 34 30 35 buildInputs = [ ··· 35 40 lv2 36 41 qtbase 37 42 rubberband 43 + qtsvg 38 44 ]; 39 45 40 - meta = with lib; { 46 + meta = { 41 47 description = "Old-school all-digital polyphonic sampler synthesizer with stereo fx"; 42 48 mainProgram = "samplv1_jack"; 43 49 homepage = "http://samplv1.sourceforge.net/"; 44 - license = licenses.gpl2Plus; 45 - platforms = platforms.linux; 50 + license = lib.licenses.gpl2Plus; 51 + platforms = lib.platforms.linux; 46 52 maintainers = [ ]; 47 53 }; 48 54 }
+7 -17
pkgs/applications/graphics/seamly2d/default.nix
··· 17 17 python3, 18 18 qttools, 19 19 git, 20 + qtmultimedia, 20 21 }: 21 22 let 22 23 qtPython = python3.withPackages (pkgs: with pkgs; [ pyqt5 ]); 23 24 in 24 25 stdenv.mkDerivation rec { 25 26 pname = "seamly2d"; 26 - version = "2022-08-15.0339"; 27 + version = "2025.2.24.204"; 27 28 28 29 src = fetchFromGitHub { 29 30 owner = "FashionFreedom"; 30 31 repo = "Seamly2D"; 31 - rev = "v${version}"; 32 - sha256 = "13jxkg84jfz8g52zwhh5jvi23wryzkavwbsfalzr9m04blj5xnik"; 32 + tag = "v${version}"; 33 + hash = "sha256-Mz4uXYohMf5SE/NWbFtw3hXEIXBWr3A0zuWGeD+zkQE="; 33 34 }; 34 35 35 36 buildInputs = [ 37 + qtmultimedia 36 38 git 37 39 qtPython 38 40 qtbase ··· 56 58 ]; 57 59 58 60 postPatch = '' 59 - substituteInPlace common.pri \ 60 - --replace '$$[QT_INSTALL_HEADERS]/QtXmlPatterns' '${lib.getDev qtxmlpatterns}/include/QtXmlPatterns' \ 61 - --replace '$$[QT_INSTALL_HEADERS]/QtSvg' '${lib.getDev qtsvg}/include/QtSvg' \ 62 - --replace '$$[QT_INSTALL_HEADERS]/' '${lib.getDev qtbase}/include/' \ 63 - --replace '$$[QT_INSTALL_HEADERS]' '${lib.getDev qtbase}' 64 - substituteInPlace src/app/translations.pri \ 65 - --replace '$$[QT_INSTALL_BINS]/$$LRELEASE' '${lib.getDev qttools}/bin/lrelease' 66 61 substituteInPlace src/app/seamly2d/mainwindowsnogui.cpp \ 67 - --replace 'define PDFTOPS "pdftops"' 'define PDFTOPS "${lib.getBin poppler-utils}/bin/pdftops"' 62 + --replace-fail 'define PDFTOPS "pdftops"' 'define PDFTOPS "${lib.getBin poppler-utils}/bin/pdftops"' 68 63 substituteInPlace src/libs/vwidgets/export_format_combobox.cpp \ 69 - --replace 'define PDFTOPS "pdftops"' 'define PDFTOPS "${lib.getBin poppler-utils}/bin/pdftops"' 70 - substituteInPlace src/app/seamlyme/mapplication.cpp \ 71 - --replace 'diagrams.rcc' '../share/diagrams.rcc' 64 + --replace-fail 'define PDFTOPS "pdftops"' 'define PDFTOPS "${lib.getBin poppler-utils}/bin/pdftops"' 72 65 ''; 73 66 74 67 qmakeFlags = [ ··· 83 76 installFlags = [ "INSTALL_ROOT=$(out)" ]; 84 77 85 78 postInstall = '' 86 - mv $out/usr/share $out/ 87 - rmdir $out/usr 88 - 89 79 mv $out/share/seamly2d/* $out/share/. 90 80 rmdir $out/share/seamly2d 91 81
+2 -2
pkgs/applications/misc/lutris/default.nix
··· 74 74 in 75 75 buildPythonApplication rec { 76 76 pname = "lutris-unwrapped"; 77 - version = "0.5.18"; 77 + version = "0.5.19"; 78 78 79 79 src = fetchFromGitHub { 80 80 owner = "lutris"; 81 81 repo = "lutris"; 82 82 rev = "v${version}"; 83 - hash = "sha256-dI5hqWBWrOGYUEM9Mfm7bTh7BEc4e+T9gJeiZ3BiqmE="; 83 + hash = "sha256-CAXKnx5+60MITRM8enkYgFl5ZKM6HCXhCYNyG7kHhuQ="; 84 84 }; 85 85 86 86 nativeBuildInputs = [
+45 -18
pkgs/applications/misc/razergenie/default.nix
··· 8 8 qtbase, 9 9 qttools, 10 10 wrapQtAppsHook, 11 - enableExperimental ? false, 12 - includeMatrixDiscovery ? false, 11 + cmake, 13 12 }: 14 13 15 14 let 16 - version = "0.9.0"; 17 - pname = "razergenie"; 15 + libopenrazer = stdenv.mkDerivation (finalAttrs: { 16 + pname = "libopenrazer"; 17 + version = "0.3.0"; 18 18 19 + src = fetchFromGitHub { 20 + owner = "z3ntu"; 21 + repo = "libopenrazer"; 22 + tag = "v${finalAttrs.version}"; 23 + hash = "sha256-bU8Zsm/hM4HbPcoD191zwxU3x7f0i51evtVeD4jqw0U="; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + pkg-config 28 + meson 29 + ninja 30 + ]; 31 + 32 + buildInputs = [ 33 + qtbase 34 + qttools 35 + ]; 36 + 37 + dontWrapQtApps = true; 38 + 39 + meta = { 40 + homepage = "https://github.com/z3ntu/libopenrazer"; 41 + description = "Qt wrapper around the D-Bus API from OpenRazer"; 42 + license = lib.licenses.gpl3Plus; 43 + platforms = lib.platforms.linux; 44 + }; 45 + }); 19 46 in 20 - stdenv.mkDerivation { 21 - inherit pname version; 47 + stdenv.mkDerivation (finalAttrs: { 48 + pname = "razergenie"; 49 + version = "1.2.0"; 22 50 23 51 src = fetchFromGitHub { 24 52 owner = "z3ntu"; 25 53 repo = "RazerGenie"; 26 - rev = "v${version}"; 27 - sha256 = "17xlv26q8sdbav00wdm043449pg2424l3yaf8fvkc9rrlqkv13a4"; 54 + tag = "v${finalAttrs.version}"; 55 + hash = "sha256-kw7/Qf6L63PBuyq3TfgU2iGAKX0qLGiq6JgLnN+3tu4="; 28 56 }; 29 57 58 + postUnpack = ''ln -s ${libopenrazer} libopenrazer''; 59 + 30 60 nativeBuildInputs = [ 31 61 pkg-config 32 62 meson 33 63 ninja 64 + cmake 34 65 wrapQtAppsHook 35 66 ]; 36 67 37 68 buildInputs = [ 38 69 qtbase 39 70 qttools 71 + libopenrazer 40 72 ]; 41 73 42 - mesonFlags = [ 43 - "-Denable_experimental=${lib.boolToString enableExperimental}" 44 - "-Dinclude_matrix_discovery=${lib.boolToString includeMatrixDiscovery}" 45 - ]; 46 - 47 - meta = with lib; { 74 + meta = { 48 75 homepage = "https://github.com/z3ntu/RazerGenie"; 49 76 description = "Qt application for configuring your Razer devices under GNU/Linux"; 50 77 mainProgram = "razergenie"; 51 - license = licenses.gpl3; 52 - maintainers = with maintainers; [ 78 + license = lib.licenses.gpl3; 79 + maintainers = with lib.maintainers; [ 53 80 f4814n 54 81 Mogria 55 82 ]; 56 - platforms = platforms.linux; 83 + platforms = lib.platforms.linux; 57 84 }; 58 - } 85 + })
+4 -4
pkgs/applications/misc/whalebird/default.nix
··· 12 12 }: 13 13 stdenv.mkDerivation rec { 14 14 pname = "whalebird"; 15 - version = "6.1.0"; 15 + version = "6.2.0-unstable-2025-02-26"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "h3poteto"; 19 19 repo = "whalebird-desktop"; 20 - rev = "v${version}"; 21 - hash = "sha256-Jf+vhsfVjNrxdBkwwh3D3d2AlsGHfmEn90dq2QrKi2k="; 20 + rev = "4f84b962eb338a6251d32f67994b71dc1b44d796"; 21 + hash = "sha256-BBd9VGLtab6DuMODBnEAdZ/aNp1xV/5vkyprUCHR4z8="; 22 22 }; 23 23 # we cannot use fetchYarnDeps because that doesn't support yarn 2/berry lockfiles 24 24 offlineCache = stdenv.mkDerivation { ··· 41 41 ''; 42 42 43 43 outputHashMode = "recursive"; 44 - outputHash = "sha256-SJCJq1vkO/jH9YgB3rV/pK4wV5Prm3sNjOj9YwL6XTw="; 44 + outputHash = "sha256-IDOtmpiVcqy7u/pf1ZqDxY+0fo0sh7cPYG8HKyOnVMk="; 45 45 }; 46 46 47 47 nativeBuildInputs = [
+6 -6
pkgs/applications/networking/instant-messengers/gajim/default.nix
··· 6 6 7 7 # Native dependencies 8 8 python3, 9 - gtk3, 9 + gtk4, 10 10 gobject-introspection, 11 11 adwaita-icon-theme, 12 - gtksourceview4, 12 + gtksourceview5, 13 13 glib-networking, 14 14 15 15 # Test dependencies ··· 40 40 41 41 python3.pkgs.buildPythonApplication rec { 42 42 pname = "gajim"; 43 - version = "1.9.5"; 43 + version = "2.0.0"; 44 44 45 45 src = fetchurl { 46 46 url = "https://gajim.org/downloads/${lib.versions.majorMinor version}/gajim-${version}.tar.gz"; 47 - hash = "sha256-f99NsOsWp+vGecI2DxRfZOCrz/DxaRPEX5LI642HVjw="; 47 + hash = "sha256-q/KAWmZsHvfhEi4MkAawh+veJ4bUWEcEcFEKQUBnMmA="; 48 48 }; 49 49 50 50 format = "pyproject"; 51 51 52 52 buildInputs = 53 53 [ 54 - gtk3 54 + gtk4 55 55 adwaita-icon-theme 56 - gtksourceview4 56 + gtksourceview5 57 57 glib-networking 58 58 ] 59 59 ++ lib.optionals enableJingle [
+13
pkgs/applications/office/kbibtex/cpp-17-for-icu.patch
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 901e6979..d4fd549e 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -10,7 +10,7 @@ project( 6 + LANGUAGES CXX 7 + ) 8 + 9 + -set(CMAKE_CXX_STANDARD 11) 10 + +set(CMAKE_CXX_STANDARD 17) 11 + set(QT_MIN_VERSION 5.9.0) 12 + # Somewhat arbitrary chosen version number ... 13 + set(KF5_MIN_VERSION 5.51)
+5
pkgs/applications/office/kbibtex/default.nix
··· 41 41 hash = "sha256-sSeyQKfNd8U4YZ3IgqOZs8bM13oEQopJevkG8U0JuMQ="; 42 42 }; 43 43 44 + patches = [ 45 + # TODO remove when kbibtex updates past 0.10.0 46 + ./cpp-17-for-icu.patch 47 + ]; 48 + 44 49 nativeBuildInputs = [ 45 50 extra-cmake-modules 46 51 shared-mime-info
+12 -11
pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "obs-replay-source"; 13 - version = "1.6.13-unstable-2024-02-03"; 13 + version = "1.8.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "exeldro"; 17 17 repo = "obs-replay-source"; 18 - rev = "6590fde1c8e4f8c733016646a8165d52e28d094b"; 19 - hash = "sha256-foIzWNlU72FWXZVWR8TEiqJJMfl1vWYDTyhV6thYJbA="; 18 + tag = finalAttrs.version; 19 + hash = "sha256-0IBH4Wb4dbbwqu7DsMb/pfnA8dYRbsW7cBW2XTjQK0U="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake ]; 23 + 23 24 buildInputs = [ 24 25 libcaption 25 26 obs-studio ··· 27 28 ]; 28 29 29 30 postInstall = '' 30 - mkdir -p "$out/lib" "$out/share" 31 - mv "$out/obs-plugins/64bit" "$out/lib/obs-plugins" 32 - rm -rf "$out/obs-plugins" 33 - mv "$out/data" "$out/share/obs" 31 + mkdir -p $out/lib $out/share 32 + mv $out/obs-plugins/64bit $out/lib/obs-plugins 33 + rm -rf $out/obs-plugins 34 + mv $out/data $out/share/obs 34 35 ''; 35 36 36 37 dontWrapQtApps = true; 37 38 38 - meta = with lib; { 39 + meta = { 39 40 description = "Replay source for OBS studio"; 40 41 homepage = "https://github.com/exeldro/obs-replay-source"; 41 - license = licenses.gpl2Only; 42 - platforms = platforms.linux; 43 - maintainers = with maintainers; [ pschmitt ]; 42 + license = lib.licenses.gpl2Only; 43 + platforms = lib.platforms.linux; 44 + maintainers = with lib.maintainers; [ pschmitt ]; 44 45 }; 45 46 })
+7 -13
pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "obs-scale-to-sound"; 11 - version = "1.2.3"; 11 + version = "1.2.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dimtpap"; 15 15 repo = "obs-scale-to-sound"; 16 - rev = version; 17 - sha256 = "sha256-q/zNHPazNwmd7GHXrxNgajtOhcW+oTgH9rkIBzJpdpA="; 16 + tag = version; 17 + hash = "sha256-N6OMufx4+WyLGnIZQNxwlPdlmsa+GoZhuDMS9NIbIGE="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ]; 21 + 21 22 buildInputs = [ obs-studio ]; 22 23 23 24 cmakeFlags = [ 24 25 "-DBUILD_OUT_OF_TREE=On" 25 26 ]; 26 27 27 - postInstall = '' 28 - mkdir $out/lib $out/share 29 - mv $out/obs-plugins/64bit $out/lib/obs-plugins 30 - rm -rf $out/obs-plugins 31 - mv $out/data $out/share/obs 32 - ''; 33 - 34 - meta = with lib; { 28 + meta = { 35 29 description = "OBS filter plugin that scales a source reactively to sound levels"; 36 30 homepage = "https://github.com/dimtpap/obs-scale-to-sound"; 37 - maintainers = with maintainers; [ flexiondotorg ]; 38 - license = licenses.gpl2Plus; 31 + maintainers = with lib.maintainers; [ flexiondotorg ]; 32 + license = lib.licenses.gpl2Plus; 39 33 platforms = [ 40 34 "x86_64-linux" 41 35 "i686-linux"
+10 -9
pkgs/applications/video/obs-studio/plugins/obs-source-clone.nix
··· 6 6 obs-studio, 7 7 }: 8 8 9 - stdenv.mkDerivation { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "obs-source-clone"; 11 - version = "0.1.4-unstable-2024-02-19"; 11 + version = "0.1.5"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "exeldro"; 15 15 repo = "obs-source-clone"; 16 - rev = "d1524d5d932d6841a1fbd6061cc4a0033fb615b7"; 17 - hash = "sha256-W9IIIGQdreI2FQGii5NUB5tVHcqsiYAKTutOHEPCyms="; 16 + tag = finalAttrs.version; 17 + hash = "sha256-0rBtFPfqVvB333eeWRpVe4TgrJTiBTIzsV/SSe3EgOc="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ]; 21 + 21 22 buildInputs = [ obs-studio ]; 22 23 23 24 cmakeFlags = [ ··· 28 29 rm -rf $out/obs-plugins $out/data 29 30 ''; 30 31 31 - meta = with lib; { 32 + meta = { 32 33 description = "Plugin for OBS Studio to clone sources"; 33 34 homepage = "https://github.com/exeldro/obs-source-clone"; 34 - maintainers = with maintainers; [ flexiondotorg ]; 35 - license = licenses.gpl2Plus; 36 - platforms = platforms.linux; 35 + maintainers = with lib.maintainers; [ flexiondotorg ]; 36 + license = lib.licenses.gpl2Plus; 37 + platforms = lib.platforms.linux; 37 38 }; 38 - } 39 + })
+2 -2
pkgs/by-name/_1/_1oom/package.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "1oom"; 20 - version = "1.11"; 20 + version = "1.11.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "1oom-fork"; 24 24 repo = "1oom"; 25 25 tag = "v${version}"; 26 - hash = "sha256-xEHFuCOyuWmee6kgOc0WUk1iWWFqfFb42F7shGZmutQ="; 26 + hash = "sha256-nHg9QPZNl9ieRkn8m+aOhaYg4y2WssYmolj/A5sMvF8="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ autoreconfHook ];
+24 -27
pkgs/by-name/bi/bililiverecorder/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchzip 4 - , makeWrapper 5 - , dotnetCorePackages 1 + { 2 + lib, 3 + stdenv, 4 + fetchzip, 5 + makeWrapper, 6 + dotnetCorePackages, 6 7 }: 7 8 8 9 let 10 + dotnet = 11 + with dotnetCorePackages; 12 + combinePackages [ 13 + runtime_8_0-bin 14 + aspnetcore_8_0-bin 15 + ]; 16 + in 17 + stdenv.mkDerivation rec { 9 18 pname = "bililiverecorder"; 10 - 11 - dotnet = with dotnetCorePackages; combinePackages [ 12 - runtime_6_0-bin 13 - aspnetcore_6_0-bin 14 - ]; 15 - 16 - version = "2.13.0"; 17 - hash = "sha256-4OQ2gut/eLk4CXRN5E3Z8XobXsT3bSmtmJEcHzHcz/0="; 18 - 19 - in 20 - stdenv.mkDerivation { 21 - inherit pname version; 19 + version = "2.15.1"; 22 20 23 21 src = fetchzip { 24 22 url = "https://github.com/BililiveRecorder/BililiveRecorder/releases/download/v${version}/BililiveRecorder-CLI-any.zip"; 23 + hash = "sha256-ugzFiuLe+Al3aRvEM3D4kqnaFrFR4Pr95UlEg0VGvvU="; 25 24 stripRoot = false; 26 - inherit hash; 27 25 }; 28 26 29 27 nativeBuildInputs = [ makeWrapper ]; ··· 31 29 installPhase = '' 32 30 runHook preInstall 33 31 34 - mkdir -p $out/{bin,share/${pname}-${version}} 35 - cp -r * $out/share/${pname}-${version}/. 36 - 37 - makeWrapper "${dotnet}/bin/dotnet" $out/bin/BililiveRecorder \ 38 - --add-flags "$out/share/${pname}-${version}/BililiveRecorder.Cli.dll" 32 + mkdir -p $out/{bin,lib} 33 + cp -r . $out/lib/bililiverecorder 34 + makeWrapper ${dotnet}/bin/dotnet $out/bin/BililiveRecorder \ 35 + --add-flags $out/lib/bililiverecorder/BililiveRecorder.Cli.dll 39 36 40 37 runHook postInstall 41 38 ''; 42 39 43 - meta = with lib; { 40 + meta = { 44 41 description = "Convenient free open source bilibili live recording tool"; 45 42 homepage = "https://rec.danmuji.org/"; 46 43 changelog = "https://github.com/BililiveRecorder/BililiveRecorder/releases/tag/${version}"; 47 44 mainProgram = "BililiveRecorder"; 48 - license = licenses.gpl3Only; 49 - maintainers = with maintainers; [ zaldnoay ]; 50 - platforms = platforms.unix; 45 + license = lib.licenses.gpl3Only; 46 + maintainers = with lib.maintainers; [ zaldnoay ]; 47 + platforms = lib.platforms.unix; 51 48 }; 52 49 }
+1 -1
pkgs/by-name/ce/celeste/package.nix
··· 34 34 cargoHash = "sha256-OBGDnhpVLOPdYhofWfeaueklt7KBkLhM02JNvuvUQ2Q="; 35 35 36 36 postPatch = '' 37 - pushd $cargoDepsCopy/librclone-sys 37 + pushd $cargoDepsCopy/librclone-sys-* 38 38 oldHash=$(sha256sum build.rs | cut -d " " -f 1) 39 39 patch -p2 < ${./librclone-path.patch} 40 40 substituteInPlace build.rs \
+2 -2
pkgs/by-name/ci/circt/package.nix
··· 19 19 in 20 20 stdenv.mkDerivation rec { 21 21 pname = "circt"; 22 - version = "1.106.0"; 22 + version = "1.107.0"; 23 23 src = fetchFromGitHub { 24 24 owner = "llvm"; 25 25 repo = "circt"; 26 26 rev = "firtool-${version}"; 27 - hash = "sha256-uVvW8Rh4qCHJrkImHEwOySxszeKHGMGiEY5zmu3tk10="; 27 + hash = "sha256-mTZP/QfxMaHXfFzvfyBEGOm1fApivRY03UK9fQE2Pt4="; 28 28 fetchSubmodules = true; 29 29 }; 30 30
+2 -2
pkgs/by-name/cr/crystal-dock/package.nix
··· 8 8 }: 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "crystal-dock"; 11 - version = "2.7"; 11 + version = "2.8"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dangvd"; 15 15 repo = "crystal-dock"; 16 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-VxdVB/DLVvmHGvZ2JI/mZCCWIdopYhObJuN4MKh+l4A="; 17 + hash = "sha256-93rtDl+6eMXc02NO4anPMoocozMnWntMJjzMaQs8sMQ="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+5 -5
pkgs/by-name/db/dbgate/package.nix
··· 7 7 }: 8 8 let 9 9 pname = "dbgate"; 10 - version = "6.1.0"; 10 + version = "6.2.0"; 11 11 src = 12 12 fetchurl 13 13 { 14 14 aarch64-linux = { 15 15 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_arm64.AppImage"; 16 - hash = "sha256-gUACJGegHFhOd9t/MVt5imwsTnOKA9Q66dKtzLHzjSo="; 16 + hash = "sha256-ZhF8ZxfJSNWg4AGj84oSs3/lJLiijSZDGXdnyuFLV7Q="; 17 17 }; 18 18 x86_64-linux = { 19 19 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-linux_x86_64.AppImage"; 20 - hash = "sha256-hSqBwsroOWcyHuUimkiy13tdTKqdAjXOnECv5J9KRbw="; 20 + hash = "sha256-d6+24Bn12v32fwRGK0GHkkDbNzknMIBbpNDygmIT9/E="; 21 21 }; 22 22 x86_64-darwin = { 23 23 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_x64.dmg"; 24 - hash = "sha256-tUY9TM/wP7N1giZpBlzCQlF+01XT7HA4v/kTrT57jX8="; 24 + hash = "sha256-6gwjI0nlhzh0rLevdFRkcPPUrlxrwwIDSnD4mENtHc8="; 25 25 }; 26 26 aarch64-darwin = { 27 27 url = "https://github.com/dbgate/dbgate/releases/download/v${version}/dbgate-${version}-mac_universal.dmg"; 28 - hash = "sha256-b5IJfpe3XnY1bSI6dzQro8PY4L72aFKy9GtolgFZzsA="; 28 + hash = "sha256-cSFtA/rjkE6lxxs1DR6yvP6WR9a4gjzsdUo8/oyz4/I="; 29 29 }; 30 30 } 31 31 .${stdenv.system} or (throw "dbgate: ${stdenv.system} is unsupported.");
+4 -4
pkgs/by-name/fl/flaca/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "flaca"; 12 - version = "3.2.0"; 12 + version = "3.2.3"; 13 13 14 14 src = 15 15 let ··· 17 17 owner = "Blobfolio"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-pT3CizoqMQe+JljuDbV7hQpUmG+fx/ES2reupeX60iY="; 20 + hash = "sha256-GpxOTu7yjJ9IFMKVkgjLeKGNEUiKw0ZeWQorfhaOTsg="; 21 21 }; 22 22 lockFile = fetchurl { 23 23 url = "https://github.com/Blobfolio/flaca/releases/download/v${version}/Cargo.lock"; 24 - hash = "sha256-Ek33acdDA9iMgpyIdx12arKtPHoKaIrfh5GNdgT7ib0="; 24 + hash = "sha256-SaqQ4U8JXTFlp1EqkNZ6VV8KyPXHYtEycfZn/68SeHY="; 25 25 }; 26 26 in 27 27 runCommand "source-with-lock" { nativeBuildInputs = [ lndir ]; } '' ··· 33 33 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 34 34 35 35 useFetchCargoVendor = true; 36 - cargoHash = "sha256-3NGW1GEwksu9Al/qOg3rfnFcfSyICTgKlPW10Y8q80Y="; 36 + cargoHash = "sha256-MdPPLv0836rVxVrl8PXMDufHdTtmBBhJ/EuG4qcK3Kk="; 37 37 38 38 meta = with lib; { 39 39 description = "CLI tool to losslessly compress JPEG and PNG images";
+2 -2
pkgs/by-name/ga/gamescope/package.nix
··· 48 48 in 49 49 stdenv.mkDerivation (finalAttrs: { 50 50 pname = "gamescope"; 51 - version = "3.16.1"; 51 + version = "3.16.2"; 52 52 53 53 src = fetchFromGitHub { 54 54 owner = "ValveSoftware"; 55 55 repo = "gamescope"; 56 56 tag = finalAttrs.version; 57 57 fetchSubmodules = true; 58 - hash = "sha256-+0QGt4UADJmZok2LzvL+GBad0t4vVL4HXq27399zH3Y="; 58 + hash = "sha256-vKl2wYAt051+1IaCGB1ylGa83WTS+neqZwtQ/4MyCck="; 59 59 }; 60 60 61 61 patches = [
+20
pkgs/by-name/go/golink/darwin-sandbox-fix.patch
··· 1 + --- vendor/modernc.org/libc/honnef.co/go/netdb/netdb.go 2 + +++ vendor/modernc.org/libc/honnef.co/go/netdb/netdb.go 3 + @@ -696,7 +696,7 @@ func init() { 4 + // Load protocols 5 + data, err := ioutil.ReadFile("/etc/protocols") 6 + if err != nil { 7 + - if !os.IsNotExist(err) { 8 + + if !os.IsNotExist(err) && !os.IsPermission(err) { 9 + panic(err) 10 + } 11 + 12 + @@ -732,7 +732,7 @@ func init() { 13 + // Load services 14 + data, err = ioutil.ReadFile("/etc/services") 15 + if err != nil { 16 + - if !os.IsNotExist(err) { 17 + + if !os.IsNotExist(err) && !os.IsPermission(err) { 18 + panic(err) 19 + } 20 +
+12 -5
pkgs/by-name/go/golink/package.nix
··· 1 1 { 2 + git, 2 3 lib, 3 4 buildGoModule, 4 5 fetchFromGitHub, ··· 6 7 7 8 buildGoModule rec { 8 9 pname = "golink"; 9 - version = "0-unstable-2024-01-26"; 10 + version = "1.0.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "tailscale"; 13 14 repo = "golink"; 14 - # https://github.com/tailscale/golink/issues/104 15 - rev = "d9de913fb174ec2569a15b6e2dbe5cb6e4a0a853"; 16 - hash = "sha256-w6jRbajEQkOrBqxDnQreSmSB5DNL9flWjloShiIBM+M="; 15 + tag = "v${version}"; 16 + hash = "sha256-cIml0ewF5j2cQySLHkMmV1rl7cVH8wuoPFeFDCARi1A="; 17 17 }; 18 18 19 - vendorHash = "sha256-R/o3csZC/M9nm0k5STL7AhbG5J4LtdxqKaVjM/9ggW8="; 19 + vendorHash = "sha256-QIAkmqXWH3X2dIoWyVcqFXVHBwzyv1dNPfdkzD5LuSE="; 20 + 21 + overrideModAttrs = old: { 22 + # netdb.go allows /etc/protocols and /etc/services to not exist and happily proceeds, but it panic()s if they exist but return permission denied. 23 + postBuild = '' 24 + patch -p0 < ${./darwin-sandbox-fix.patch} 25 + ''; 26 + }; 20 27 21 28 ldflags = [ 22 29 "-s"
+2 -4
pkgs/by-name/gz/gzdoom/package.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "gzdoom"; 28 - version = "4.14.0"; 28 + version = "4.14.1"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "ZDoom"; 32 32 repo = "gzdoom"; 33 33 rev = "g${version}"; 34 34 fetchSubmodules = true; 35 - hash = "sha256-+gLWt1qBKl8xGK6sALnjqPuXcBexjWKbEkbRMFtLcbE="; 35 + hash = "sha256-Hrqi2xpyMGcTJ2rI59EpcEtoJ+gCGmwEy+F396M3f/4="; 36 36 }; 37 - 38 - patches = [ ./string_format.patch ]; 39 37 40 38 outputs = [ "out" ] ++ lib.optionals stdenv.hostPlatform.isLinux [ "doc" ]; 41 39
-13
pkgs/by-name/gz/gzdoom/string_format.patch
··· 1 - diff --git a/src/common/engine/i_net.cpp b/src/common/engine/i_net.cpp 2 - index ad106bbc4..0a67062a0 100644 3 - --- a/src/common/engine/i_net.cpp 4 - +++ b/src/common/engine/i_net.cpp 5 - @@ -1072,7 +1072,7 @@ void I_NetError(const char* error) 6 - { 7 - doomcom.numnodes = 0; 8 - StartWindow->NetClose(); 9 - - I_FatalError(error); 10 - + I_FatalError("%s", error); 11 - } 12 - 13 - // todo: later these must be dispatched by the main menu, not the start screen.
+3 -3
pkgs/by-name/ha/handbrake/package.nix
··· 93 93 VideoToolbox 94 94 ; 95 95 inherit (darwin) libobjc; 96 - version = "1.9.0"; 96 + version = "1.9.2"; 97 97 98 98 src = fetchFromGitHub { 99 99 owner = "HandBrake"; 100 100 repo = "HandBrake"; 101 101 # uses version commit for logic in version.txt 102 - rev = "fa9154a20f3f64fdc183a097e6b63f7fd4bc6cab"; 103 - hash = "sha256-Asf8NgYk4xxIkevYA0B62T8CTSaB7SHq0lHXkawVxb8="; 102 + rev = "e117cfe7fca37abeec59ea4201e5d93ed7477746"; 103 + hash = "sha256-cOEgFVvBgV0kYnTc7d1CdzoN7mMjd8rxSmc6i/dbRWI="; 104 104 }; 105 105 106 106 # Handbrake maintains a set of ffmpeg patches. In particular, these
+1
pkgs/by-name/jd/jdom/package.nix
··· 27 27 description = "Java-based solution for accessing, manipulating, and outputting XML data from Java code"; 28 28 homepage = "http://www.jdom.org"; 29 29 platforms = platforms.unix; 30 + sourceProvenance = with sourceTypes; [ binaryBytecode ]; 30 31 license = licenses.bsdOriginal; 31 32 }; 32 33 }
+4 -4
pkgs/by-name/ma/matrix-authentication-service/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "matrix-authentication-service"; 20 - version = "0.13.0"; 20 + version = "0.14.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "element-hq"; 24 24 repo = "matrix-authentication-service"; 25 25 tag = "v${version}"; 26 - hash = "sha256-rFex6stw++xNrcCYnYn3N0HrUQd91DAw9QU0R2MUzyQ="; 26 + hash = "sha256-s6LVCISmbG3ubY/67DcUUE/pnTJSE0v9n8INmLMQNcw="; 27 27 }; 28 28 29 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-u3C6JmaPU4/pyg8Ko01Y33UkuqrVa2lV/jYdMUAF6ng="; 30 + cargoHash = "sha256-VJiIt0/zTJgCCskevb4/p62im/lAMkyJSiFUdaIdKO8="; 31 31 32 32 npmDeps = fetchNpmDeps { 33 33 name = "${pname}-${version}-npm-deps"; 34 34 src = "${src}/${npmRoot}"; 35 - hash = "sha256-4tFE7za2bBOCtX0fSaLvvyD4UTGtvtJlgO30lHCv07Y="; 35 + hash = "sha256-5Hq7wbvm3bLUSLAkLd3SNdwYCVhniV4XMCI84mO0iTc="; 36 36 }; 37 37 38 38 npmRoot = "frontend";
+8 -8
pkgs/by-name/ma/matrix-hookshot/package.json
··· 1 1 { 2 2 "name": "matrix-hookshot", 3 - "version": "6.0.2", 3 + "version": "6.0.3", 4 4 "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", 5 5 "main": "lib/app.js", 6 6 "repository": "https://github.com/matrix-org/matrix-hookshot", ··· 51 51 "@vector-im/compound-design-tokens": "^2.0.1", 52 52 "@vector-im/compound-web": "^7.3.0", 53 53 "ajv": "^8.11.0", 54 - "axios": "^1.7.5", 54 + "axios": "^1.7.9", 55 55 "clsx": "^2.1.1", 56 56 "cors": "^2.8.5", 57 57 "date-fns": "^4.1.0", 58 58 "express": "^4.20.0", 59 - "figma-js": "^1.14.0", 59 + "figma-js": "^1.16.1-0", 60 60 "helmet": "^7.1.0", 61 61 "http-status-codes": "^2.2.0", 62 62 "ioredis": "^5.2.3", 63 63 "jira-client": "^8.2.2", 64 64 "markdown-it": "^14.0.0", 65 65 "matrix-appservice-bridge": "^9.0.1", 66 - "matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@0.7.1-element.7", 66 + "matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@0.7.1-element.8", 67 67 "matrix-widget-api": "^1.10.0", 68 68 "micromatch": "^4.0.8", 69 69 "mime": "^4.0.4", 70 70 "node-emoji": "^2.1.3", 71 - "parse-duration": "^1.1.0", 71 + "parse-duration": "^2.1.3", 72 72 "preact-render-to-string": "^6.3.1", 73 73 "prom-client": "^15.1.0", 74 74 "quickjs-emscripten": "^0.31.0", ··· 105 105 "@types/node": "^22", 106 106 "@types/xml2js": "^0.4.11", 107 107 "@uiw/react-codemirror": "^4.12.3", 108 - "babel-cli": "^6.26.0", 108 + "@babel/core": "^7.26.9", 109 109 "babel-jest": "^29.7.0", 110 110 "busboy": "^1.6.0", 111 111 "chai": "^4", ··· 117 117 "jest": "^29.7.0", 118 118 "mocha": "^10.8.2", 119 119 "nyc": "^17.1.0", 120 - "preact": "^10.24.3", 120 + "preact": "^10.26.2", 121 121 "rimraf": "6.0.1", 122 122 "sass": "^1.81.0", 123 123 "ts-node": "10.9.2", 124 124 "typescript": "^5.7.2", 125 125 "typescript-eslint": "^8.16.0", 126 - "vite": "^5.4.11" 126 + "vite": "^5.4.12" 127 127 }, 128 128 "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" 129 129 }
+4 -4
pkgs/by-name/ma/matrix-hookshot/pin.json
··· 1 1 { 2 - "version": "6.0.2", 3 - "srcHash": "sha256-uqbKpmqiy0rU8ByMRUqyjGmEdZgAhYiMrh0VEwwcbK8=", 4 - "yarnHash": "0sjc333cl115pm3w69aknf20n85r8nisrdjx1231101zrz01nhhh", 5 - "cargoHash": "sha256-4Ix5eqv3BMoTzfadayJqXICW+zZzSp2e6XJQrWraW60==" 2 + "version": "6.0.3", 3 + "srcHash": "sha256-r7CMHaLkb+YMHjBmItal1+Fa9GW7qwIcgUIY9DdfTgM=", 4 + "yarnHash": "1mga0d81xsydqrr8wbwysm4d74xjw13dicw66x3zbqn94lpcsw6g", 5 + "cargoHash": "sha256-4Ix5eqv3BMoTzfadayJqXICW+zZzSp2e6XJQrWraW60=" 6 6 }
+3 -2
pkgs/by-name/me/melodeon/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "melodeon"; 11 - version = "0.4.3"; 11 + version = "0.4.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "CDrummond"; 15 15 repo = "melodeon"; 16 16 tag = finalAttrs.version; 17 - hash = "sha256-Og0o4Iy0mvGE7H5IY9h7uo7w64jZjXtdsGd4ApYO8oU="; 17 + hash = "sha256-RlUQdidBUI3+xNpzgcffjQHjMpz7L7cJQPPCcTkvLRw="; 18 18 fetchSubmodules = true; 19 19 }; 20 20 21 21 buildInputs = [ 22 22 qt6.qtbase 23 23 qt6.qtwebengine 24 + qt6.qtsvg 24 25 ]; 25 26 26 27 nativeBuildInputs = [
+3 -3
pkgs/by-name/mu/multiviewer-for-f1/package.nix
··· 24 24 xorg, 25 25 }: 26 26 let 27 - id = "203624820"; 27 + id = "232635194"; 28 28 in 29 29 stdenvNoCC.mkDerivation rec { 30 30 pname = "multiviewer-for-f1"; 31 - version = "1.36.2"; 31 + version = "1.38.1"; 32 32 33 33 src = fetchurl { 34 34 url = "https://releases.multiviewer.dev/download/${id}/multiviewer-for-f1_${version}_amd64.deb"; 35 - sha256 = "sha256-b9Sx5Zcn+zQ9yFwrosHp1bTENByhBUU3VJfZA2HPoPU="; 35 + sha256 = "sha256-3UgpjQdZYr48MPoqgHci6Yvo+jxK7oa3THl/JuL8tRo="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+7 -3
pkgs/by-name/ni/nicotine-plus/package.nix
··· 10 10 python3Packages, 11 11 libadwaita, 12 12 }: 13 - python3Packages.buildPythonApplication rec { 13 + let 14 + 14 15 pname = "nicotine-plus"; 15 - version = "3.3.7"; 16 + version = "3.3.8"; 17 + in 18 + python3Packages.buildPythonApplication { 19 + inherit pname version; 16 20 pyproject = true; 17 21 src = fetchFromGitHub { 18 22 owner = "nicotine-plus"; 19 23 repo = "nicotine-plus"; 20 24 tag = version; 21 - hash = "sha256-Rj+dDkBXNV4l4A9LxjBApzBQ4c1edP5XjoPfpifkDoM="; 25 + hash = "sha256-KgFxMcL/sT00fkXLgdfDMAMODi4N1j1Y/oEKbjGaRdY="; 22 26 }; 23 27 24 28 nativeBuildInputs = [
+4 -4
pkgs/by-name/nz/nzbget/package.nix
··· 21 21 par2TurboSrc = fetchFromGitHub { 22 22 owner = "nzbgetcom"; 23 23 repo = "par2cmdline-turbo"; 24 - rev = "v1.1.1-nzbget-20241128"; # from cmake/par2-turbo.cmake 25 - hash = "sha256-YBv61DAUWgf4jGQciTsGX7SAC2oZZ6h/lnJgJ40gMZE="; 24 + rev = "v1.2.0-nzbget-20250213"; # from cmake/par2-turbo.cmake 25 + hash = "sha256-IHoSvW9bKxMRXbxd41A5268rpi7/+LRxC3HANHtawkQ="; 26 26 }; 27 27 in 28 28 stdenv.mkDerivation (finalAttrs: { 29 29 pname = "nzbget"; 30 - version = "24.5"; 30 + version = "24.6"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "nzbgetcom"; 34 34 repo = "nzbget"; 35 35 rev = "v${finalAttrs.version}"; 36 - hash = "sha256-HftzgdG6AjCyJVMV2btjBRLJLQ0wc1f8FJzGDWrdxR4="; 36 + hash = "sha256-N2cYnZUk5//hjNRen1FaIlvG+nC2tXtvffr368AIOkA="; 37 37 }; 38 38 39 39 patches = [
+19 -6
pkgs/by-name/nz/nzbget/remove-git-usage.patch
··· 1 + From 78c826e1f4ccee24652f5301b720f05866ec00c6 Mon Sep 17 00:00:00 2001 2 + From: Morgan Helton <mhelton@gmail.com> 3 + Date: Tue, 25 Feb 2025 20:36:19 -0600 4 + Subject: [PATCH] feat: use pre-fetched par2-turbo 5 + 6 + --- 7 + cmake/par2-turbo.cmake | 19 +++++++------------ 8 + 1 file changed, 7 insertions(+), 12 deletions(-) 9 + 1 10 diff --git a/cmake/par2-turbo.cmake b/cmake/par2-turbo.cmake 2 - index 4fa76b54..cf293452 100644 11 + index b0f2e70e..ff3389e0 100644 3 12 --- a/cmake/par2-turbo.cmake 4 13 +++ b/cmake/par2-turbo.cmake 5 - @@ -24,17 +24,13 @@ if(CMAKE_SYSROOT) 14 + @@ -39,18 +39,13 @@ if(CMAKE_SYSROOT) 6 15 ) 7 16 endif() 8 17 ··· 10 19 - par2-turbo 11 20 - PREFIX par2-turbo 12 21 - GIT_REPOSITORY https://github.com/nzbgetcom/par2cmdline-turbo.git 13 - - GIT_TAG v1.1.1-nzbget-20241128 22 + - GIT_TAG v1.2.0-nzbget-20250213 14 23 - TLS_VERIFY TRUE 15 24 - GIT_SHALLOW TRUE 16 25 - GIT_PROGRESS TRUE 17 26 - DOWNLOAD_EXTRACT_TIMESTAMP TRUE 18 - - CMAKE_ARGS ${CMAKE_ARGS} 27 + - BUILD_BYPRODUCTS ${PAR2_LIBS} 28 + - CMAKE_ARGS ${CMAKE_ARGS} 19 29 - INSTALL_COMMAND "" 20 - + 21 30 +ExternalProject_Add( 22 31 + par2-turbo 23 32 + PREFIX par2-turbo 24 33 + SOURCE_DIR ${CMAKE_BINARY_DIR}/par2-turbo/src/par2-turbo 34 + + BUILD_BYPRODUCTS ${PAR2_LIBS} 25 35 + CMAKE_ARGS ${CMAKE_ARGS} 26 36 + INSTALL_COMMAND "" 27 37 ) 28 38 29 - if(WIN32) 39 + set(LIBS ${LIBS} ${PAR2_LIBS}) 40 + -- 41 + 2.48.1 42 +
-17
pkgs/by-name/pr/pretalx/package.nix
··· 14 14 packageOverrides = final: prev: { 15 15 django = prev.django_5; 16 16 17 - django-bootstrap4 = prev.django-bootstrap4.overridePythonAttrs (oldAttrs: rec { 18 - version = "3.0.0"; 19 - src = oldAttrs.src.override { 20 - tag = "v${version}"; 21 - hash = "sha256-a8BopUwZjmvxOzBVqs4fTo0SY8sEEloGUw90daYWfz8="; 22 - }; 23 - 24 - propagatedBuildInputs = with final; [ 25 - beautifulsoup4 26 - django 27 - ]; 28 - 29 - # fails with some assertions 30 - doCheck = false; 31 - }); 32 - 33 17 django-extensions = prev.django-extensions.overridePythonAttrs { 34 18 # Compat issues with Django 5.1 35 19 # https://github.com/django-extensions/django-extensions/issues/1885 ··· 127 111 defusedcsv 128 112 defusedxml 129 113 django 130 - django-bootstrap4 131 114 django-compressor 132 115 django-context-decorator 133 116 django-countries
+1
pkgs/by-name/pr/pretix/package.nix
··· 92 92 93 93 pythonRelaxDeps = [ 94 94 "beautifulsoup4" 95 + "django-bootstrap3" 95 96 "django-phonenumber-field" 96 97 "dnspython" 97 98 "drf_ujson2"
+5 -5
pkgs/by-name/qu/quickjs-ng/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "quickjs-ng"; 12 - version = "0.6.1"; 12 + version = "0.8.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "quickjs-ng"; 16 16 repo = "quickjs"; 17 - rev = "v${finalAttrs.version}"; 18 - hash = "sha256-7IAkmlzgiPVd8yRv7LU5a7HWCB+eQk1Ur1KwZupwty0="; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-o0Cpy+20EqNdNENaYlasJcKIGU7W4RYBcTMsQwFTUNc="; 19 19 }; 20 20 21 21 outputs = [ ··· 45 45 strictDeps = true; 46 46 47 47 postBuild = '' 48 - pushd ../doc 48 + pushd ../docs 49 49 makeinfo *texi 50 50 popd 51 51 ''; 52 52 53 53 postInstall = '' 54 - pushd ../doc 54 + pushd ../docs 55 55 install -Dm644 -t ''${!outputInfo}/share/info *info 56 56 popd 57 57 '';
+12 -11
pkgs/by-name/ra/rappel/package.nix
··· 1 1 { 2 + lib, 3 + stdenv, 2 4 fetchFromGitHub, 3 5 libedit, 4 6 makeWrapper, 5 7 nasm, 6 - lib, 7 - stdenv, 8 8 }: 9 9 10 - stdenv.mkDerivation rec { 10 + stdenv.mkDerivation { 11 11 pname = "rappel"; 12 - version = "unstable-2019-09-09"; 12 + version = "0-unstable-2024-03-07"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "yrp604"; 16 16 repo = "rappel"; 17 - rev = "31a06762d34880ff2ed7176ca71bd8a6b91b10d5"; 18 - sha256 = "0wj3hypqfrjra8mwmn32hs5qs6ic81cq3gn1v0b2fba6vkqcsqfy"; 17 + rev = "981d8faf32b984e791841193498f46313fb6a56d"; 18 + hash = "sha256-EnHNwasET3EdYjOQtvg4SDC9cWIA7RKP6xox3Ux9oRk="; 19 19 }; 20 20 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 21 23 buildInputs = [ libedit ]; 22 - nativeBuildInputs = [ makeWrapper ]; 23 24 24 25 installPhase = '' 25 26 runHook preInstall ··· 30 31 runHook postInstall 31 32 ''; 32 33 33 - meta = with lib; { 34 + meta = { 34 35 homepage = "https://github.com/yrp604/rappel"; 35 36 description = "Pretty janky assembly REPL"; 36 37 mainProgram = "rappel"; 37 - license = licenses.bsdOriginal; 38 - maintainers = [ maintainers.pamplemousse ]; 39 - platforms = platforms.linux; 38 + license = lib.licenses.bsdOriginal; 39 + maintainers = [ lib.maintainers.pamplemousse ]; 40 + platforms = lib.platforms.linux; 40 41 }; 41 42 }
+2 -11
pkgs/by-name/ra/raze/package.nix
··· 20 20 21 21 stdenv.mkDerivation (finalAttrs: { 22 22 pname = "raze"; 23 - version = "1.10.2"; 23 + version = "1.11.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "ZDoom"; 27 27 repo = "Raze"; 28 28 tag = finalAttrs.version; 29 - hash = "sha256-R3Sm/cibg+D2QPS4UisRp91xvz3Ine2BUR8jF5Rbj1g="; 29 + hash = "sha256-P8iwCkLch8054PwnGmgqTPWA8O2yyMruDeUDJGxDI2Q="; 30 30 leaveDotGit = true; 31 31 postFetch = '' 32 32 cd $out ··· 34 34 rm -rf .git 35 35 ''; 36 36 }; 37 - 38 - patches = [ 39 - # Fix build with gcc14 40 - (fetchpatch { 41 - name = "fix-gcc14.patch"; 42 - url = "https://github.com/ZDoom/Raze/commit/f3cad8426cd808be5ded036ed12a497d27d3742e.patch"; 43 - hash = "sha256-TMx5gFmcuSQbVPjpBnKgK7EluqPSWhLF+TU8ZRaL7LE="; 44 - }) 45 - ]; 46 37 47 38 nativeBuildInputs = [ 48 39 cmake
+28 -15
pkgs/by-name/re/revolt-desktop/package.nix
··· 7 7 makeWrapper, 8 8 electron, 9 9 }: 10 - (stdenvNoCC.mkDerivation { 10 + (stdenvNoCC.mkDerivation rec { 11 11 pname = "revolt-desktop"; 12 - version = "1.0.6"; 12 + version = "1.0.8"; 13 13 dontConfigure = true; 14 14 dontBuild = true; 15 - meta = with lib; { 15 + meta = { 16 16 description = "Open source user-first chat platform"; 17 17 homepage = "https://revolt.chat/"; 18 18 changelog = "https://github.com/revoltchat/desktop/releases/tag/v${version}"; 19 - license = licenses.agpl3Only; 20 - maintainers = with maintainers; [ 19 + license = lib.licenses.agpl3Only; 20 + maintainers = with lib.maintainers; [ 21 21 heyimnova 22 22 caralice 23 23 ]; 24 - platforms = platforms.linux ++ platforms.darwin; 25 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 24 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 25 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 26 26 mainProgram = "revolt-desktop"; 27 27 }; 28 28 nativeBuildInputs = [ makeWrapper ]; ··· 30 30 ( 31 31 final: prev: 32 32 let 33 - inherit (prev) pname version; 33 + inherit (prev) version; 34 34 in 35 35 if stdenvNoCC.hostPlatform.isLinux then 36 36 { 37 - src = fetchurl { 38 - url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-linux.AppImage"; 39 - hash = "sha256-Wsm6ef2Reenq3/aKGaP2yzlOuLKaxKtRHCLLMxvWUUY="; 40 - }; 37 + src = 38 + { 39 + x86_64-linux = fetchurl { 40 + url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-${version}.AppImage"; 41 + hash = "sha256-L23Je5p7VmQpOLC+IfmQRk2CKKUm4rNBdsYLvqLTlRY="; 42 + }; 43 + armv7l-linux = fetchurl { 44 + url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-${version}-armv7l.AppImage"; 45 + hash = "sha256-Qwya5tgHjMB8IJi0ueGmkzgQMQu+rlsDoWIVpl6Vj2w="; 46 + }; 47 + aarch64-linux = fetchurl { 48 + url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-${version}-arm64.AppImage"; 49 + hash = "sha256-VQXyXaL4Ma3peO1duAlyFwkb1CRQ/4DNZhjiAnhms6I="; 50 + }; 51 + } 52 + .${stdenvNoCC.hostPlatform.system} 53 + or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); 41 54 42 55 appimageContents = appimageTools.extractType2 { inherit (final) src pname version; }; 43 56 ··· 53 66 cp -a ${final.appimageContents}/usr/share/icons $out/share/icons 54 67 55 68 substituteInPlace $out/share/applications/revolt-desktop.desktop \ 56 - --replace 'Exec=AppRun' 'Exec=revolt-desktop' 69 + --replace-fail 'Exec=AppRun' 'Exec=revolt-desktop' 57 70 58 71 runHook postInstall 59 72 ''; ··· 68 81 assert stdenvNoCC.hostPlatform.isDarwin; 69 82 { 70 83 src = fetchzip { 71 - url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-${version}-mac.zip"; 72 - hash = "sha256-XxmKcIfJtHfi6SahrRHMeTAuyVqiN9Yhayjis10vD2w="; 84 + url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-${version}-universal-mac.zip"; 85 + hash = "sha256-CpG1LLYYHa9ho4rotDwSS+wNIJ2z0kBPqu70xKEFg+k="; 73 86 stripRoot = false; 74 87 }; 75 88
+3 -3
pkgs/by-name/ru/rustus/package.nix
··· 12 12 13 13 let 14 14 pname = "rustus"; 15 - version = "1.1.2"; 15 + version = "1.1.3"; 16 16 in 17 17 rustPlatform.buildRustPackage { 18 18 inherit pname version; ··· 21 21 owner = "s3rius"; 22 22 repo = "rustus"; 23 23 tag = version; 24 - hash = "sha256-GgivjhgM1jl6fCNO5tPjtQmQl/me8FxXskZ4laTnkVE="; 24 + hash = "sha256-ALnb6ICg+TZRuHayhozwJ5+imabgjBYX4W42ydhkzv0="; 25 25 }; 26 26 27 27 useFetchCargoVendor = true; 28 - cargoHash = "sha256-dDcdGTtwReplQgkvDjZKvQ71tdTvyXaF2vXWgOd6Eio="; 28 + cargoHash = "sha256-df92+gp/DtdHwPxJF89zKHjmVWzfrjnD8wAlrPRyyxk="; 29 29 30 30 env.OPENSSL_NO_VENDOR = 1; 31 31
+18 -8
pkgs/by-name/sc/scorecard/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildGoModule, 4 5 fetchFromGitHub, 5 6 installShellFiles, 6 7 testers, 7 8 scorecard, 9 + gitMinimal, 8 10 }: 9 11 10 12 buildGoModule rec { 11 13 pname = "scorecard"; 12 - version = "5.0.0"; 14 + version = "5.1.1"; 13 15 14 16 src = fetchFromGitHub { 15 17 owner = "ossf"; 16 - repo = pname; 17 - rev = "v${version}"; 18 - hash = "sha256-9DuADuEIoZNwkvdKyqus2zNfIK31Jc3+bPW3/z8fvlc="; 18 + repo = "scorecard"; 19 + tag = "v${version}"; 20 + hash = "sha256-6lJ+duP/gTC2xIIWbLL0hx2UYS/no4vd8pqTDR18G8Y="; 19 21 # populate values otherwise taken care of by goreleaser, 20 22 # unfortunately these require us to use git. By doing 21 23 # this in postFetch we can delete .git afterwards and ··· 29 31 find "$out" -name .git -print0 | xargs -0 rm -rf 30 32 ''; 31 33 }; 32 - vendorHash = "sha256-apOVAlGjaYSrW4qtUdDNgqwWxnVlBLhrefWEUvN4lzE="; 34 + vendorHash = 35 + if stdenv.hostPlatform.isLinux then 36 + "sha256-zWMmbC0lkjlIwrfq3ql0+ndn/4y/PW92TgTiUYfEn0M=" 37 + else 38 + "sha256-/AtW36Pl5W+WNVCKhC0WMwYS848MUvAaKdm+i8t88D8="; 33 39 34 40 nativeBuildInputs = [ installShellFiles ]; 35 41 ··· 47 53 ldflags+=" -X sigs.k8s.io/release-utils/version.gitCommit=$(cat COMMIT)" 48 54 ldflags+=" -X sigs.k8s.io/release-utils/version.buildDate=$(cat SOURCE_DATE_EPOCH)" 49 55 ''; 56 + 57 + __darwinAllowLocalNetworking = true; 58 + 59 + nativeCheckInputs = [ gitMinimal ]; 50 60 51 61 preCheck = '' 52 62 # Feed in all but the e2e tests for testing ··· 84 94 version = "v${version}"; 85 95 }; 86 96 87 - meta = with lib; { 97 + meta = { 88 98 homepage = "https://github.com/ossf/scorecard"; 89 99 changelog = "https://github.com/ossf/scorecard/releases/tag/v${version}"; 90 100 description = "Security health metrics for Open Source"; 91 101 mainProgram = "scorecard"; 92 - license = licenses.asl20; 93 - maintainers = with maintainers; [ 102 + license = lib.licenses.asl20; 103 + maintainers = with lib.maintainers; [ 94 104 jk 95 105 developer-guy 96 106 ];
+7 -6
pkgs/by-name/si/simgear/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - fetchurl, 4 + fetchFromGitLab, 5 5 plib, 6 6 libglut, 7 7 xorgproto, ··· 27 27 curl, 28 28 }: 29 29 let 30 - version = "2020.3.19"; 31 - shortVersion = builtins.substring 0 6 version; 30 + version = "2024.1.1"; 32 31 in 33 32 stdenv.mkDerivation rec { 34 33 pname = "simgear"; 35 34 inherit version; 36 35 37 - src = fetchurl { 38 - url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 39 - sha256 = "sha256-O5N8W5RCJHjl15EUvc1seOQ6Cm/7qXVEqG1EHD+ejDo="; 36 + src = fetchFromGitLab { 37 + owner = "flightgear"; 38 + repo = "simgear"; 39 + tag = "v${version}"; 40 + hash = "sha256-hOA/q/cTsqRy82rTAXRxyHBDdw93TW9UL+K5Jq5b/08="; 40 41 }; 41 42 42 43 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/sm/smile/package.nix
··· 15 15 16 16 python3.pkgs.buildPythonApplication rec { 17 17 pname = "smile"; 18 - version = "2.9.5"; 18 + version = "2.10.1"; 19 19 pyproject = false; # Builds with meson 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "mijorus"; 23 23 repo = "smile"; 24 - rev = version; 25 - hash = "sha256-WwkwJXRnIvBS0cdcmJhErZLe0wwvarUdE7rpx7qcd2E="; 24 + tag = version; 25 + hash = "sha256-tDdzq2a58x1MVV43IhTZQ/zrVBd2D4BW4102ZEUSWLo="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+7 -6
pkgs/by-name/sn/snapmaker-luban/package.nix
··· 35 35 pango, 36 36 gcc-unwrapped, 37 37 udev, 38 + python311, 38 39 }: 39 40 40 41 stdenv.mkDerivation rec { 41 42 pname = "snapmaker-luban"; 42 - version = "4.14.0"; 43 + version = "4.15.0"; 43 44 44 45 src = fetchurl { 45 46 url = "https://github.com/Snapmaker/Luban/releases/download/v${version}/snapmaker-luban-${version}-linux-x64.tar.gz"; 46 - hash = "sha256-/cJxVhY9zJdsg8l+BxJDr53/Lsz4JMBGMIS2HD6NXvM="; 47 + hash = "sha256-X4XNzkl5ky3C8fj92J9OQxj12zmIQ+xS02wYLWo94oU="; 47 48 }; 48 49 49 50 nativeBuildInputs = [ ··· 70 71 libgbm 71 72 nspr 72 73 nss 74 + (lib.getLib stdenv.cc.cc) 75 + python311 73 76 ]; 74 77 75 78 libPath = lib.makeLibraryPath [ ··· 102 105 udev 103 106 ]; 104 107 105 - autoPatchelfIgnoreMissingDeps = [ 106 - "libc.musl-x86_64.so.1" 107 - ]; 108 + autoPatchelfIgnoreMissingDeps = [ "libc.musl-x86_64.so.1" ]; 108 109 109 110 dontWrapGApps = true; 110 111 dontConfigure = true; ··· 125 126 --prefix LD_LIBRARY_PATH : ${libPath}:$out/snapmaker-luban 126 127 127 128 ln -s $out/opt/snapmaker-luban $out/bin/snapmaker-luban 128 - ln -s $out/opt/resources/app/app/resources/images/snap-luban-logo-64x64.png $out/share/pixmaps/snapmaker-luban.png 129 + ln -s $out/opt/resources/app/src/app/resources/images/snapmaker-logo.png $out/share/pixmaps/snapmaker-luban.png 129 130 130 131 runHook postInstall 131 132 '';
+2 -2
pkgs/by-name/sn/snyk/package.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "1.1295.3"; 11 + version = "1.1295.4"; 12 12 in 13 13 buildNpmPackage { 14 14 pname = "snyk"; ··· 18 18 owner = "snyk"; 19 19 repo = "cli"; 20 20 tag = "v${version}"; 21 - hash = "sha256-I7x+HjucTEhiAC6bocMeQO/eAWHYcqwA9FXYvcef3Og="; 21 + hash = "sha256-71wyFHiRRWPE3C+6o742rggb44EwXF0k+SmuS1NWuIE="; 22 22 }; 23 23 24 24 npmDepsHash = "sha256-RuIavwtTbgo5Ni7oGH2i5VAcVxfS4wKKSX6qHD8CHIw=";
+8 -5
pkgs/by-name/sq/sql-studio/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 + darwin, 4 5 rustPlatform, 5 6 buildNpmPackage, 6 7 fetchFromGitHub, 7 8 }: 8 9 let 9 10 pname = "sql-studio"; 10 - version = "0.1.32"; 11 + version = "0.1.35"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "frectonz"; 14 15 repo = "sql-studio"; 15 16 rev = version; 16 - hash = "sha256-PDNTOzzoJ3a/OljnZux9ttts/ntwep2rC01IxIfMU1k="; 17 + hash = "sha256-ZWGV4DYf+85LIGVDc8hcWSEJsM6UisuCB2Wd2kiw/sk="; 17 18 }; 18 19 19 20 ui = buildNpmPackage { ··· 30 31 inherit pname version src; 31 32 32 33 useFetchCargoVendor = true; 33 - cargoHash = "sha256-pvoQ73aW5XbnQJVCuV7lyrN3mg85Ye4913RzrA3S8J4="; 34 + 35 + cargoHash = "sha256-rWG5iPXiG7kCf0yLAqcQi8AM3qv/WTUiY4cVrjpUc/Y="; 34 36 35 37 preBuild = '' 36 38 cp -pr --reflink=auto -- ${ui} ui/dist 37 39 ''; 40 + 41 + buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Foundation ]; 38 42 39 43 meta = { 40 - description = "SQL Database Explorer [SQLite, libSQL, PostgreSQL, MySQL/MariaDB, DuckDB, ClickHouse]"; 44 + description = "SQL Database Explorer [SQLite, libSQL, PostgreSQL, MySQL/MariaDB, ClickHouse, Microsoft SQL Server]"; 41 45 homepage = "https://github.com/frectonz/sql-studio"; 42 46 mainProgram = "sql-studio"; 43 47 license = lib.licenses.mit; 44 48 maintainers = [ lib.maintainers.frectonz ]; 45 49 platforms = lib.platforms.all; 46 - broken = stdenv.hostPlatform.isDarwin; 47 50 }; 48 51 }
-148
pkgs/by-name/su/surrealist/0001-Cargo.patch
··· 1 - diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock 2 - index 55f480a8..a69f9ed9 100644 3 - --- a/src-tauri/Cargo.lock 4 - +++ b/src-tauri/Cargo.lock 5 - @@ -1839,6 +1839,22 @@ dependencies = [ 6 - "tower-service", 7 - ] 8 - 9 - +[[package]] 10 - +name = "hyper-tls" 11 - +version = "0.6.0" 12 - +source = "registry+https://github.com/rust-lang/crates.io-index" 13 - +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 14 - +dependencies = [ 15 - + "bytes", 16 - + "http-body-util", 17 - + "hyper", 18 - + "hyper-util", 19 - + "native-tls", 20 - + "tokio", 21 - + "tokio-native-tls", 22 - + "tower-service", 23 - +] 24 - + 25 - [[package]] 26 - name = "hyper-util" 27 - version = "0.1.3" 28 - @@ -2302,6 +2318,23 @@ dependencies = [ 29 - "windows-sys 0.52.0", 30 - ] 31 - 32 - +[[package]] 33 - +name = "native-tls" 34 - +version = "0.2.12" 35 - +source = "registry+https://github.com/rust-lang/crates.io-index" 36 - +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 37 - +dependencies = [ 38 - + "libc", 39 - + "log", 40 - + "openssl", 41 - + "openssl-probe", 42 - + "openssl-sys", 43 - + "schannel", 44 - + "security-framework", 45 - + "security-framework-sys", 46 - + "tempfile", 47 - +] 48 - + 49 - [[package]] 50 - name = "ndk" 51 - version = "0.7.0" 52 - @@ -2511,6 +2544,12 @@ dependencies = [ 53 - "syn 2.0.50", 54 - ] 55 - 56 - +[[package]] 57 - +name = "openssl-probe" 58 - +version = "0.1.5" 59 - +source = "registry+https://github.com/rust-lang/crates.io-index" 60 - +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 61 - + 62 - [[package]] 63 - name = "openssl-src" 64 - version = "300.2.3+3.2.1" 65 - @@ -3416,6 +3455,15 @@ dependencies = [ 66 - "winapi-util", 67 - ] 68 - 69 - +[[package]] 70 - +name = "schannel" 71 - +version = "0.1.23" 72 - +source = "registry+https://github.com/rust-lang/crates.io-index" 73 - +checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 74 - +dependencies = [ 75 - + "windows-sys 0.52.0", 76 - +] 77 - + 78 - [[package]] 79 - name = "schemars" 80 - version = "0.8.19" 81 - @@ -3460,6 +3508,29 @@ version = "4.1.0" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 84 - 85 - +[[package]] 86 - +name = "security-framework" 87 - +version = "2.10.0" 88 - +source = "registry+https://github.com/rust-lang/crates.io-index" 89 - +checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" 90 - +dependencies = [ 91 - + "bitflags 1.3.2", 92 - + "core-foundation", 93 - + "core-foundation-sys", 94 - + "libc", 95 - + "security-framework-sys", 96 - +] 97 - + 98 - +[[package]] 99 - +name = "security-framework-sys" 100 - +version = "2.11.1" 101 - +source = "registry+https://github.com/rust-lang/crates.io-index" 102 - +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" 103 - +dependencies = [ 104 - + "core-foundation-sys", 105 - + "libc", 106 - +] 107 - + 108 - [[package]] 109 - name = "selectors" 110 - version = "0.22.0" 111 - @@ -3847,6 +3918,7 @@ name = "surrealist" 112 - version = "0.0.0" 113 - dependencies = [ 114 - "dirs", 115 - + "hyper-tls", 116 - "log", 117 - "openssl", 118 - "portpicker", 119 - @@ -4563,6 +4635,16 @@ dependencies = [ 120 - "windows-sys 0.48.0", 121 - ] 122 - 123 - +[[package]] 124 - +name = "tokio-native-tls" 125 - +version = "0.3.1" 126 - +source = "registry+https://github.com/rust-lang/crates.io-index" 127 - +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 128 - +dependencies = [ 129 - + "native-tls", 130 - + "tokio", 131 - +] 132 - + 133 - [[package]] 134 - name = "tokio-rustls" 135 - version = "0.25.0" 136 - diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml 137 - index 3e3ab7ee..b6612f95 100644 138 - --- a/src-tauri/Cargo.toml 139 - +++ b/src-tauri/Cargo.toml 140 - @@ -28,6 +28,8 @@ time = { version = "0.3", default-features = false} 141 - log = "^0.4" 142 - url = "2" 143 - 144 - +hyper-tls = "0.6.0" 145 - + 146 - [target.'cfg(target_os = "linux")'.dependencies] 147 - openssl = { version = "0.10.64", features = ["vendored"] } 148 -
+5 -16
pkgs/by-name/su/surrealist/package.nix
··· 50 50 in 51 51 stdenv.mkDerivation (finalAttrs: { 52 52 pname = "surrealist"; 53 - version = "3.1.9"; 53 + version = "3.2.4"; 54 54 55 55 src = fetchFromGitHub { 56 56 owner = "surrealdb"; 57 57 repo = "surrealist"; 58 58 rev = "surrealist-v${finalAttrs.version}"; 59 - hash = "sha256-p+Tyu65A+vykqafu1RCRKYFXb435Uyu9WxUoEqjI8d8="; 59 + hash = "sha256-FWNGC0QoEUu1h3e3sfgWmbvqcNNvfWXU7PEjTXxu9Qo="; 60 60 }; 61 61 62 - # HACK: A dependency (surrealist -> tauri -> **reqwest**) contains hyper-tls 63 - # as an actually optional dependency. It ends up in the `Cargo.lock` file of 64 - # tauri, but not in the one of surrealist. We apply a patch to `Cargo.toml` 65 - # and `Cargo.lock` to ensure that we have it in our vendor archive. This may 66 - # be a result of the following bug: 67 - # https://github.com/rust-lang/cargo/issues/10801 68 - patches = [ 69 - ./0001-Cargo.patch 70 - ]; 71 - 72 62 cargoDeps = rustPlatform.fetchCargoVendor { 73 - inherit (finalAttrs) patches src; 63 + inherit (finalAttrs) src; 74 64 sourceRoot = "${finalAttrs.src.name}/${finalAttrs.cargoRoot}"; 75 - hash = "sha256-qrPIcWpdrvTmaFcfKAfz+n8a6lp6IcIMq9ZCHaa7AHQ="; 76 - patchFlags = [ "-p2" ]; 65 + hash = "sha256-Su9ZOPIskV5poeS8pgtri+sZANBpdgnuCsQqE4WKFdA="; 77 66 }; 78 67 79 68 pnpmDeps = pnpm_9.fetchDeps { 80 69 inherit (finalAttrs) pname version src; 81 - hash = "sha256-JwOY6Z8UjbrodSQ3csnT+puftbQUDF3NIK7o6rSpl2o="; 70 + hash = "sha256-oreeV9g16/F7JGLApi0Uq+vTqNhIg7Lg1Z4k00RUOYI="; 82 71 }; 83 72 84 73 nativeBuildInputs = [
+3 -3
pkgs/by-name/sy/syn2mas/package.nix
··· 6 6 7 7 buildNpmPackage rec { 8 8 pname = "syn2mas"; 9 - version = "0.14.0"; 9 + version = "0.14.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "element-hq"; 13 13 repo = "matrix-authentication-service"; 14 14 rev = "v${version}"; 15 - hash = "sha256-k+om7LfHcVr5ugJAXicFIcz2CNGGEzVb+O8uXdVukpE="; 15 + hash = "sha256-s6LVCISmbG3ubY/67DcUUE/pnTJSE0v9n8INmLMQNcw="; 16 16 }; 17 17 18 18 sourceRoot = "${src.name}/tools/syn2mas"; 19 19 20 - npmDepsHash = "sha256-n/YkWm4JoXAY6smULQNQDTHGtYkPBXsxfo3BU05zIbA="; 20 + npmDepsHash = "sha256-H3N0wm7M9GUvB32fch2TWulmmcU5Cb3SuWLkOkIZBqY="; 21 21 22 22 dontBuild = true; 23 23
+9 -7
pkgs/by-name/tb/tbls/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "tbls"; 13 - version = "1.80.0"; 13 + version = "1.82.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "k1LoW"; 17 17 repo = "tbls"; 18 - rev = "v${version}"; 19 - hash = "sha256-3ix0BmPPHbbQReF5XRlrmIqfYGqcHLCbbe4dcXFF3ys="; 18 + tag = "v${version}"; 19 + hash = "sha256-wDovKX+1QjZ/IN73nDJ8zoIq74l8E6xXH2c3ZF7YW7A="; 20 20 }; 21 21 22 - vendorHash = "sha256-8Kj4G/oYKaoANU09kI56nF9kURzg+Y8pB7YO1b6nvuA="; 22 + vendorHash = "sha256-+OnlEe5znRBhLxf8M1vAP7OmvYIvIR6avbUvYbL/Mfc="; 23 + 24 + excludedPackages = [ "scripts/jsonschema" ]; 23 25 24 26 nativeBuildInputs = [ installShellFiles ]; 25 27 ··· 50 52 inherit version; 51 53 }; 52 54 53 - meta = with lib; { 55 + meta = { 54 56 description = "Tool to generate documentation based on a database structure"; 55 57 homepage = "https://github.com/k1LoW/tbls"; 56 58 changelog = "https://github.com/k1LoW/tbls/blob/${src.rev}/CHANGELOG.md"; 57 - license = licenses.mit; 58 - maintainers = with maintainers; [ azahi ]; 59 + license = lib.licenses.mit; 60 + maintainers = with lib.maintainers; [ azahi ]; 59 61 mainProgram = "tbls"; 60 62 }; 61 63 }
+17 -17
pkgs/by-name/up/upbound/sources-main.json
··· 8 8 "fetchurlAttrSet": { 9 9 "docker-credential-up": { 10 10 "aarch64-darwin": { 11 - "hash": "sha256-3fx/wjBoFxmeo55QbRw9cl4GFCFehGpZeVAw1bvooSk=", 12 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/docker-credential-up/darwin_arm64.tar.gz" 11 + "hash": "sha256-hbNbKN2qDZW/py7ofrspt8sEx8bUbJAhTDqkkwfTHKI=", 12 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/docker-credential-up/darwin_arm64.tar.gz" 13 13 }, 14 14 "aarch64-linux": { 15 - "hash": "sha256-FeF7D8WLpK8S6b7QCLaOI7Dm2EzbDqJVp9tfh13BJuU=", 16 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/docker-credential-up/linux_arm64.tar.gz" 15 + "hash": "sha256-Ys7EQrdZcjwY4AdwRJW7mPaCqOvgCOSPq/Y8UG3UkwM=", 16 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/docker-credential-up/linux_arm64.tar.gz" 17 17 }, 18 18 "x86_64-darwin": { 19 - "hash": "sha256-00y9wGMwu5ZsTzlNkSvdwEse5eV4xzLiwQjgSTnmW5w=", 20 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/docker-credential-up/darwin_amd64.tar.gz" 19 + "hash": "sha256-BxDELML833LLokK92R4Dtb7G8uMyJgTfSXlgb1cpAfc=", 20 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/docker-credential-up/darwin_amd64.tar.gz" 21 21 }, 22 22 "x86_64-linux": { 23 - "hash": "sha256-oObO/T/2yOFDaNVJGQCqna130Tyx/sEOCAQMDYhVlNI=", 24 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/docker-credential-up/linux_amd64.tar.gz" 23 + "hash": "sha256-zcvvXk4Eoc8JUBNz5BMhdhQc7360RFqQMXiY0+rb0lU=", 24 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/docker-credential-up/linux_amd64.tar.gz" 25 25 } 26 26 }, 27 27 "up": { 28 28 "aarch64-darwin": { 29 - "hash": "sha256-Bf6O6rsth3D5h5olxqHxULuxxPtNhxP+gN69mJnlQTg=", 30 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/up/darwin_arm64.tar.gz" 29 + "hash": "sha256-4G3KqSmR8KErMpo2L2M2UmCea813zbpfiUthFUV/p1I=", 30 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/up/darwin_arm64.tar.gz" 31 31 }, 32 32 "aarch64-linux": { 33 - "hash": "sha256-svTHCjw2ZrTEscNpizOmg9leQAbzhWcPfst3nMUhUXg=", 34 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/up/linux_arm64.tar.gz" 33 + "hash": "sha256-MPp61tPuYw/aSdZC0N7/KNW7FS6E0WpJUNDXptNNiag=", 34 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/up/linux_arm64.tar.gz" 35 35 }, 36 36 "x86_64-darwin": { 37 - "hash": "sha256-1LxqRHQjNlRFTGhEyOR9uW407LkqdpVjB3w57hNT/Zk=", 38 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/up/darwin_amd64.tar.gz" 37 + "hash": "sha256-gSKB11iONjsTlPq48F1AWTu+rQEmrc/X9v/TGIfV6zg=", 38 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/up/darwin_amd64.tar.gz" 39 39 }, 40 40 "x86_64-linux": { 41 - "hash": "sha256-ZLjhD7uCpBURYozX1IjUTJDzPuKFedIZQhRvMqMMsLY=", 42 - "url": "https://cli.upbound.io/main/v0.38.0-0.rc.0.29.g59359e0/bundle/up/linux_amd64.tar.gz" 41 + "hash": "sha256-xfE6yt+o9gT+AOKFQRHDZDmX75poQTREt1Rm6ew/q04=", 42 + "url": "https://cli.upbound.io/main/v0.39.0-0.rc.0.80.g101d5d22/bundle/up/linux_amd64.tar.gz" 43 43 } 44 44 } 45 45 }, ··· 49 49 "x86_64-darwin", 50 50 "x86_64-linux" 51 51 ], 52 - "version": "0.38.0-0.rc.0.29.g59359e0" 52 + "version": "0.39.0-0.rc.0.80.g101d5d22" 53 53 }
+2 -2
pkgs/by-name/zi/zigbee2mqtt_2/package.nix
··· 16 16 in 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "zigbee2mqtt"; 19 - version = "2.1.2"; 19 + version = "2.1.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "Koenkk"; 23 23 repo = "zigbee2mqtt"; 24 24 tag = finalAttrs.version; 25 - hash = "sha256-ZQAM2i2bO+5Yl1jc1EdEHEV4V2fLSqF8OHn4YCL6m80="; 25 + hash = "sha256-ouZPbgZMnm0GCSfuIkIA4fv1k4TOsSH49stMn9IQBBs="; 26 26 }; 27 27 28 28 pnpmDeps = pnpm.fetchDeps {
+6 -10
pkgs/development/python-modules/django-bootstrap3/default.nix
··· 4 4 fetchFromGitHub, 5 5 6 6 # build-system 7 - setuptools, 8 - setuptools-scm, 7 + hatchling, 9 8 10 - # non-propagates 9 + # dependencies 11 10 django, 12 11 13 12 # tests ··· 17 16 18 17 buildPythonPackage rec { 19 18 pname = "django-bootstrap3"; 20 - version = "24.3"; 19 + version = "25.1"; 21 20 format = "pyproject"; 22 21 23 22 src = fetchFromGitHub { 24 23 owner = "zostera"; 25 24 repo = "django-bootstrap3"; 26 25 tag = "v${version}"; 27 - hash = "sha256-7aHGTa98NaHg6C+fxuQsrPk/8XjHB3awp+gAWysOhAw="; 26 + hash = "sha256-gRDU2IDE6cOVBJzdOs8Ww9mItMy/2DPMYusC0TCTqkI="; 28 27 }; 29 28 30 - nativeBuildInputs = [ 31 - setuptools 32 - setuptools-scm 33 - ]; 29 + build-system = [ hatchling ]; 34 30 35 - buildInputs = [ django ]; 31 + dependencies = [ django ]; 36 32 37 33 pythonImportsCheck = [ "bootstrap3" ]; 38 34
+4 -9
pkgs/development/python-modules/django-bootstrap4/default.nix
··· 4 4 fetchFromGitHub, 5 5 6 6 # build-system 7 - setuptools, 8 - setuptools-scm, 7 + hatchling, 9 8 10 9 # non-propagates 11 10 django, ··· 14 13 beautifulsoup4, 15 14 16 15 # tests 17 - python, 18 16 pytest-django, 19 17 pytestCheckHook, 20 18 }: 21 19 22 20 buildPythonPackage rec { 23 21 pname = "django-bootstrap4"; 24 - version = "24.4"; 22 + version = "25.1"; 25 23 pyproject = true; 26 24 27 25 src = fetchFromGitHub { 28 26 owner = "zostera"; 29 27 repo = "django-bootstrap4"; 30 28 tag = "v${version}"; 31 - hash = "sha256-9URZ+10GVX171Zht49UQEDkVOZ7LfOtUvapLydzNAlk="; 29 + hash = "sha256-WIz7T2f3xvsT2rSq1MUFwHpvzgHyLgTRpzb9z98sUmo="; 32 30 }; 33 31 34 - build-system = [ 35 - setuptools 36 - setuptools-scm 37 - ]; 32 + build-system = [ hatchling ]; 38 33 39 34 dependencies = [ beautifulsoup4 ]; 40 35
+5 -9
pkgs/development/python-modules/django-bootstrap5/default.nix
··· 4 4 buildPythonPackage, 5 5 django, 6 6 fetchFromGitHub, 7 + hatchling, 7 8 jinja2, 8 9 pillow, 9 10 pytest-django, 10 11 pytestCheckHook, 11 12 pythonOlder, 12 - setuptools-scm, 13 - setuptools, 14 13 }: 15 14 16 15 buildPythonPackage rec { 17 16 pname = "django-bootstrap5"; 18 - version = "24.3"; 17 + version = "25.1"; 19 18 pyproject = true; 20 19 21 20 disabled = pythonOlder "3.7"; ··· 24 23 owner = "zostera"; 25 24 repo = "django-bootstrap5"; 26 25 rev = "v${version}"; 27 - hash = "sha256-8e0Pi4uSvQhiLYiMgOqWJWDc/KPMXxyU5pnT9jvFZLU="; 26 + hash = "sha256-5VYw9Kq33/YFW9mFzkFzhrxavfx6r/CtC1SJhZbanhg="; 28 27 }; 29 28 30 - build-system = [ 31 - setuptools 32 - setuptools-scm 33 - ]; 29 + build-system = [ hatchling ]; 34 30 35 31 dependencies = [ django ]; 36 32 ··· 44 40 pillow 45 41 pytest-django 46 42 pytestCheckHook 47 - ] ++ lib.flatten (builtins.attrValues optional-dependencies); 43 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 48 44 49 45 preCheck = '' 50 46 export DJANGO_SETTINGS_MODULE=tests.app.settings
+16 -11
pkgs/development/python-modules/django-js-asset/default.nix
··· 4 4 fetchFromGitHub, 5 5 hatchling, 6 6 django, 7 - python, 7 + pytest-django, 8 + pytestCheckHook, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "django-js-asset"; 12 - version = "3.0.1"; 13 - format = "pyproject"; 13 + version = "3.1"; 14 + pyproject = true; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "matthiask"; 17 - repo = pname; 18 + repo = "django-js-asset"; 18 19 tag = version; 19 - hash = "sha256-WBybDzGPoPbeUnrw6O41ton0x0rLjPcHBVMg1RZceWI="; 20 + hash = "sha256-a/aYchhfb+8Xn3Mkf0UmpSzZ7JZT9KoZu/3+FUNJ7Bo="; 20 21 }; 21 22 22 - nativeBuildInputs = [ hatchling ]; 23 + build-system = [ hatchling ]; 23 24 24 - propagatedBuildInputs = [ django ]; 25 + dependencies = [ django ]; 25 26 26 27 pythonImportsCheck = [ "js_asset" ]; 27 28 28 - checkPhase = '' 29 - runHook preCheck 30 - ${python.interpreter} tests/manage.py test testapp 31 - runHook postCheck 29 + nativeCheckInputs = [ 30 + pytest-django 31 + pytestCheckHook 32 + ]; 33 + 34 + preCheck = '' 35 + export DJANGO_SETTINGS_MODULE=tests.testapp.settings 32 36 ''; 33 37 34 38 meta = with lib; { 39 + changelog = "https://github.com/matthiask/django-js-asset/blob/${version}/CHANGELOG.rst"; 35 40 description = "Script tag with additional attributes for django.forms.Media"; 36 41 homepage = "https://github.com/matthiask/django-js-asset"; 37 42 maintainers = with maintainers; [ hexa ];
+4
pkgs/development/python-modules/isbnlib/default.nix
··· 21 21 22 22 build-system = [ setuptools ]; 23 23 24 + dependencies = [ 25 + setuptools # needed for 'pkg_resources' 26 + ]; 27 + 24 28 nativeCheckInputs = [ 25 29 pytestCheckHook 26 30 pytest-cov-stub
+2 -2
pkgs/development/python-modules/msmart-ng/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "msmart-ng"; 20 - version = "2025.2.1"; 20 + version = "2025.2.2"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "mill1000"; 25 25 repo = "midea-msmart"; 26 26 tag = version; 27 - hash = "sha256-hkjwmmwQ/V7vn/CmwBRybTusPHuRA5CN1iOXN7VDV0c="; 27 + hash = "sha256-h+yWa1N5XmYdWzpEyVtdD/n+A0V1aFRvMHCaty6SnnM="; 28 28 }; 29 29 30 30 build-system = [
+2 -2
pkgs/development/python-modules/nbxmpp/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "nbxmpp"; 19 - version = "5.0.4"; 19 + version = "6.0.0"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.10"; ··· 26 26 owner = "gajim"; 27 27 repo = "python-nbxmpp"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-5UFhR5WYxHJSRk2G5ik1IuNW1ra/IHoU/LNqiA95R94="; 29 + hash = "sha256-qy1+N5h2T4mkxuX3aaywuq8WDLuNFH5fDyJf9z57BOg="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+7 -7
pkgs/development/python-modules/sdkmanager/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "sdkmanager"; 16 - version = "0.6.8"; 16 + version = "0.6.11"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.5"; 20 20 21 21 src = fetchFromGitLab { 22 22 owner = "fdroid"; 23 - repo = pname; 24 - rev = version; 25 - hash = "sha256-Ev90WS/T+Rb8h/21XHQdy/GePhGiYWwyfP88OUyBojQ="; 23 + repo = "sdkmanager"; 24 + tag = version; 25 + hash = "sha256-UBBko5copc5y9kdUr8jqJgijxRLfpRuJmT1QSow/eVg="; 26 26 }; 27 27 28 28 pythonRelaxDeps = [ "urllib3" ]; ··· 47 47 48 48 pythonImportsCheck = [ "sdkmanager" ]; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 homepage = "https://gitlab.com/fdroid/sdkmanager"; 52 52 description = "Drop-in replacement for sdkmanager from the Android SDK written in Python"; 53 53 mainProgram = "sdkmanager"; 54 - license = licenses.agpl3Plus; 55 - maintainers = with maintainers; [ linsui ]; 54 + license = lib.licenses.agpl3Plus; 55 + maintainers = with lib.maintainers; [ linsui ]; 56 56 }; 57 57 }
+7 -1
pkgs/development/python-modules/swisshydrodata/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 pytestCheckHook, 6 + pytest-cov-stub, 6 7 pythonOlder, 7 8 requests-mock, 8 9 requests, 10 + aiohttp, 9 11 setuptools, 10 12 }: 11 13 ··· 25 27 26 28 build-system = [ setuptools ]; 27 29 28 - dependencies = [ requests ]; 30 + dependencies = [ 31 + requests 32 + aiohttp 33 + ]; 29 34 30 35 nativeCheckInputs = [ 31 36 pytestCheckHook 37 + pytest-cov-stub 32 38 requests-mock 33 39 ]; 34 40
+2 -2
pkgs/development/python-modules/tlds/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "tlds"; 11 - version = "2024092600"; 11 + version = "2025022800"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kichik"; 16 16 repo = "tlds"; 17 17 tag = version; 18 - hash = "sha256-ybqC0FUrTyTO2UfS/bCAUdzKtcK06wTeLv1Mv/R8RS0="; 18 + hash = "sha256-USFuifbcSET5Kfz8xPsJDTKxYKfqaB9RXegVz8FM5m4="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ setuptools ];
+1 -2
pkgs/development/tools/electron/binary/generic.nix
··· 151 151 dontBuild = true; 152 152 153 153 installPhase = '' 154 - mkdir -p $out/libexec/electron $out/bin 154 + mkdir -p $out/libexec/electron 155 155 unzip -d $out/libexec/electron $src 156 - ln -s $out/libexec/electron/electron $out/bin 157 156 chmod u-x $out/libexec/electron/*.so* 158 157 ''; 159 158
+2 -2
pkgs/development/web/nodejs/v18.nix
··· 21 21 in 22 22 buildNodejs { 23 23 inherit enableNpm; 24 - version = "18.20.6"; 25 - sha256 = "c669b48b632fa6797d4f5fa7bbd2b476ec961120957864402226cc9fd8ebbc0e"; 24 + version = "18.20.7"; 25 + sha256 = "9a89659fad80c1b6da33d29f43f5865483ccb1952ddad434ee22f8193607277f"; 26 26 patches = [ 27 27 ./configure-emulator-node18.patch 28 28 ./configure-armv6-vfpv2.patch
+15 -11
pkgs/games/flightgear/default.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - fetchurl, 4 + fetchFromGitLab, 5 5 wrapQtAppsHook, 6 6 libglut, 7 7 freealut, ··· 28 28 udev, 29 29 fltk13, 30 30 apr, 31 - makeDesktopItem, 32 31 qtbase, 32 + qtquickcontrols2, 33 33 qtdeclarative, 34 34 glew, 35 35 curl, 36 36 }: 37 37 38 38 let 39 - version = "2020.3.19"; 40 - shortVersion = builtins.substring 0 6 version; 39 + version = "2024.1.1"; 41 40 data = stdenv.mkDerivation rec { 42 41 pname = "flightgear-data"; 43 42 inherit version; 44 43 45 - src = fetchurl { 46 - url = "mirror://sourceforge/flightgear/release-${shortVersion}/FlightGear-${version}-data.txz"; 47 - sha256 = "sha256-863EnNBU+rYTdxHwMV6HbBu99lO6H3mKGuyumm6YR5U="; 44 + src = fetchFromGitLab { 45 + owner = "flightgear"; 46 + repo = "fgdata"; 47 + tag = "v${version}"; 48 + hash = "sha256-PdqsIZw9mSrvnqqB/fVFjWPW9njhXLWR/2LQCMoBLQI="; 48 49 }; 49 50 50 51 dontUnpack = true; 51 52 52 53 installPhase = '' 53 54 mkdir -p "$out/share/FlightGear" 54 - tar xf "${src}" -C "$out/share/FlightGear/" --strip-components=1 55 + cp ${src}/* -a "$out/share/FlightGear/" 55 56 ''; 56 57 }; 57 58 in ··· 60 61 # inheriting data for `nix-prefetch-url -A pkgs.flightgear.data.src` 61 62 inherit version data; 62 63 63 - src = fetchurl { 64 - url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 65 - sha256 = "sha256-Fn0I3pzA9yIYs3myPNflbH9u4Y19VZUS2lGjvWfzjm4="; 64 + src = fetchFromGitLab { 65 + owner = "flightgear"; 66 + repo = "flightgear"; 67 + tag = "v${version}"; 68 + hash = "sha256-h4N18VAbJGQSBKA+eEQxej5e5MEwAcZpvH+dpTypM+k="; 66 69 }; 67 70 68 71 nativeBuildInputs = [ ··· 95 98 fltk13 96 99 apr 97 100 qtbase 101 + qtquickcontrols2 98 102 glew 99 103 qtdeclarative 100 104 curl
+3 -4
pkgs/games/heroic/default.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "heroic-unwrapped"; 20 - version = "2.15.2"; 20 + version = "2.16.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "Heroic-Games-Launcher"; 24 24 repo = "HeroicGamesLauncher"; 25 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-AndJqk1VAUdC4pOTRzyfhdxmzJMskGF6pUiqPs3fIy4="; 26 + hash = "sha256-cuaYgoVyfJHop9MQjHMCVvDMHc9iEDK60r3raTk4QyY="; 27 27 }; 28 28 29 29 pnpmDeps = pnpm_9.fetchDeps { 30 30 inherit (finalAttrs) pname version src; 31 - hash = "sha256-/7JIeQZt3QsKrjujSucRLiHfhfSllK7FeumNA4eHqSY="; 31 + hash = "sha256-OeCO3ozt8TS+A6b8tz667d5UavaFWiw9HpAjuyzLti8="; 32 32 }; 33 33 34 34 nativeBuildInputs = [ ··· 95 95 install -D "flatpak/com.heroicgameslauncher.hgl.desktop" "$out/share/applications/com.heroicgameslauncher.hgl.desktop" 96 96 install -D "src/frontend/assets/heroic-icon.svg" "$out/share/icons/hicolor/scalable/apps/com.heroicgameslauncher.hgl.svg" 97 97 substituteInPlace "$out/share/applications/com.heroicgameslauncher.hgl.desktop" \ 98 - --replace-fail "StartupWMClass=Heroic" "StartupWMClass=heroic" \ 99 98 --replace-fail "Exec=heroic-run" "Exec=heroic" 100 99 101 100 runHook postInstall
+1
pkgs/games/heroic/fhsenv.nix
··· 35 35 perl 36 36 psmisc 37 37 python3 38 + umu-launcher 38 39 unzip 39 40 which 40 41 xorg.xrandr
+116 -94
pkgs/misc/arm-trusted-firmware/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchFromGitLab, openssl, pkgsCross, buildPackages 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + fetchFromGitLab, 6 + openssl, 7 + pkgsCross, 8 + buildPackages, 2 9 3 - # Warning: this blob (hdcp.bin) runs on the main CPU (not the GPU) at 4 - # privilege level EL3, which is above both the kernel and the 5 - # hypervisor. 6 - # 7 - # This parameter applies only to platforms which are believed to use 8 - # hdcp.bin. On all other platforms, or if unfreeIncludeHDCPBlob=false, 9 - # hdcp.bin will be deleted before building. 10 - , unfreeIncludeHDCPBlob ? true 10 + # Warning: this blob (hdcp.bin) runs on the main CPU (not the GPU) at 11 + # privilege level EL3, which is above both the kernel and the 12 + # hypervisor. 13 + # 14 + # This parameter applies only to platforms which are believed to use 15 + # hdcp.bin. On all other platforms, or if unfreeIncludeHDCPBlob=false, 16 + # hdcp.bin will be deleted before building. 17 + unfreeIncludeHDCPBlob ? true, 11 18 }: 12 19 13 20 let 14 - buildArmTrustedFirmware = { filesToInstall 15 - , installDir ? "$out" 16 - , platform ? null 17 - , platformCanUseHDCPBlob ? false # set this to true if the platform is able to use hdcp.bin 18 - , extraMakeFlags ? [] 19 - , extraMeta ? {} 20 - , ... } @ args: 21 + buildArmTrustedFirmware = 22 + { 23 + filesToInstall, 24 + installDir ? "$out", 25 + platform ? null, 26 + platformCanUseHDCPBlob ? false, # set this to true if the platform is able to use hdcp.bin 27 + extraMakeFlags ? [ ], 28 + extraMeta ? { }, 29 + ... 30 + }@args: 21 31 22 - # delete hdcp.bin if either: the platform is thought to 23 - # not need it or unfreeIncludeHDCPBlob is false 24 - let deleteHDCPBlobBeforeBuild = !platformCanUseHDCPBlob || !unfreeIncludeHDCPBlob; in 32 + # delete hdcp.bin if either: the platform is thought to 33 + # not need it or unfreeIncludeHDCPBlob is false 34 + let 35 + deleteHDCPBlobBeforeBuild = !platformCanUseHDCPBlob || !unfreeIncludeHDCPBlob; 36 + in 25 37 26 - stdenv.mkDerivation (rec { 38 + stdenv.mkDerivation ( 39 + rec { 27 40 28 - pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}"; 29 - version = "2.10.0"; 41 + pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}"; 42 + version = "2.12.1"; 30 43 31 - src = fetchFromGitHub { 32 - owner = "ARM-software"; 33 - repo = "arm-trusted-firmware"; 34 - rev = "v${version}"; 35 - hash = "sha256-CAuftVST9Fje/DWaaoX0K2SfWwlGMaUFG4huuwsTOSU="; 36 - }; 44 + src = fetchFromGitHub { 45 + owner = "ARM-software"; 46 + repo = "arm-trusted-firmware"; 47 + tag = "lts-v${version}"; 48 + hash = "sha256-yPWygW1swSwL3DrHPNIlTeTeV7XG4C9ALFA/+OTiz+4="; 49 + }; 37 50 38 - patches = lib.optionals deleteHDCPBlobBeforeBuild [ 39 - # this is a rebased version of https://gitlab.com/vicencb/kevinboot/-/blob/master/atf.patch 40 - ./remove-hdcp-blob.patch 41 - ]; 51 + patches = lib.optionals deleteHDCPBlobBeforeBuild [ 52 + # this is a rebased version of https://gitlab.com/vicencb/kevinboot/-/blob/master/atf.patch 53 + ./remove-hdcp-blob.patch 54 + ]; 42 55 43 - postPatch = lib.optionalString deleteHDCPBlobBeforeBuild '' 44 - rm plat/rockchip/rk3399/drivers/dp/hdcp.bin 45 - ''; 56 + postPatch = lib.optionalString deleteHDCPBlobBeforeBuild '' 57 + rm plat/rockchip/rk3399/drivers/dp/hdcp.bin 58 + ''; 46 59 47 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 60 + depsBuildBuild = [ buildPackages.stdenv.cc ]; 48 61 49 - # For Cortex-M0 firmware in RK3399 50 - nativeBuildInputs = [ pkgsCross.arm-embedded.stdenv.cc ]; 62 + # For Cortex-M0 firmware in RK3399 63 + nativeBuildInputs = [ pkgsCross.arm-embedded.stdenv.cc ]; 64 + # Make the new toolchain guessing (from 2.11+) happy 65 + # https://github.com/ARM-software/arm-trusted-firmware/blob/4ec2948fe3f65dba2f19e691e702f7de2949179c/make_helpers/toolchains/rk3399-m0.mk#L21-L22 66 + rk3399-m0-oc = "${pkgsCross.arm-embedded.stdenv.cc.targetPrefix}objcopy"; 51 67 52 - buildInputs = [ openssl ]; 68 + # Some platforms like sun50i_a64 have ENABLE_LTO := 1, which requires $(ARCH)-ld/cc-id == "gnu-gcc" 69 + aarch64-cc-id = "gnu-gcc"; 70 + aarch64-ld-id = "gnu-gcc"; 53 71 54 - makeFlags = [ 55 - "HOSTCC=$(CC_FOR_BUILD)" 56 - "M0_CROSS_COMPILE=${pkgsCross.arm-embedded.stdenv.cc.targetPrefix}" 57 - "CROSS_COMPILE=${stdenv.cc.targetPrefix}" 58 - # binutils 2.39 regression 59 - # `warning: /build/source/build/rk3399/release/bl31/bl31.elf has a LOAD segment with RWX permissions` 60 - # See also: https://developer.trustedfirmware.org/T996 61 - "LDFLAGS=-no-warn-rwx-segments" 62 - ] ++ (lib.optional (platform != null) "PLAT=${platform}") 63 - ++ extraMakeFlags; 72 + buildInputs = [ openssl ]; 73 + 74 + makeFlags = 75 + [ 76 + "HOSTCC=$(CC_FOR_BUILD)" 77 + "M0_CROSS_COMPILE=${pkgsCross.arm-embedded.stdenv.cc.targetPrefix}" 78 + "CROSS_COMPILE=${stdenv.cc.targetPrefix}" 79 + # Make the new toolchain guessing (from 2.11+) happy 80 + "AS=${stdenv.cc.targetPrefix}cc" 81 + "OC=${stdenv.cc.targetPrefix}objcopy" 82 + "OD=${stdenv.cc.targetPrefix}objdump" 83 + # Passing OpenSSL path according to docs/design/trusted-board-boot-build.rst 84 + "OPENSSL_DIR=${openssl}" 85 + ] 86 + ++ (lib.optional (platform != null) "PLAT=${platform}") 87 + ++ extraMakeFlags; 64 88 65 - installPhase = '' 66 - runHook preInstall 89 + installPhase = '' 90 + runHook preInstall 67 91 68 - mkdir -p ${installDir} 69 - cp ${lib.concatStringsSep " " filesToInstall} ${installDir} 92 + mkdir -p ${installDir} 93 + cp ${lib.concatStringsSep " " filesToInstall} ${installDir} 70 94 71 - runHook postInstall 72 - ''; 95 + runHook postInstall 96 + ''; 73 97 74 - hardeningDisable = [ "all" ]; 75 - dontStrip = true; 98 + hardeningDisable = [ "all" ]; 99 + dontStrip = true; 76 100 77 - # Fatal error: can't create build/sun50iw1p1/release/bl31/sunxi_clocks.o: No such file or directory 78 - enableParallelBuilding = false; 101 + # Fatal error: can't create build/sun50iw1p1/release/bl31/sunxi_clocks.o: No such file or directory 102 + enableParallelBuilding = false; 79 103 80 - meta = with lib; { 81 - homepage = "https://github.com/ARM-software/arm-trusted-firmware"; 82 - description = "Reference implementation of secure world software for ARMv8-A"; 83 - license = [ licenses.bsd3 ] ++ lib.optionals (!deleteHDCPBlobBeforeBuild) [ licenses.unfreeRedistributable ]; 84 - maintainers = with maintainers; [ lopsided98 ]; 85 - } // extraMeta; 86 - } // builtins.removeAttrs args [ "extraMeta" ]); 104 + meta = 105 + with lib; 106 + { 107 + homepage = "https://github.com/ARM-software/arm-trusted-firmware"; 108 + description = "Reference implementation of secure world software for ARMv8-A"; 109 + license = [ 110 + licenses.bsd3 111 + ] ++ lib.optionals (!deleteHDCPBlobBeforeBuild) [ licenses.unfreeRedistributable ]; 112 + maintainers = with maintainers; [ lopsided98 ]; 113 + } 114 + // extraMeta; 115 + } 116 + // builtins.removeAttrs args [ "extraMeta" ] 117 + ); 87 118 88 - in { 119 + in 120 + { 89 121 inherit buildArmTrustedFirmware; 90 122 91 123 armTrustedFirmwareTools = buildArmTrustedFirmware rec { ··· 96 128 depsBuildBuild = [ ]; 97 129 extraMakeFlags = [ 98 130 "HOSTCC=${stdenv.cc.targetPrefix}gcc" 99 - "fiptool" "certtool" 131 + "fiptool" 132 + "certtool" 100 133 ]; 101 134 filesToInstall = [ 102 135 "tools/fiptool/fiptool" ··· 110 143 111 144 armTrustedFirmwareAllwinner = buildArmTrustedFirmware rec { 112 145 platform = "sun50i_a64"; 113 - extraMeta.platforms = ["aarch64-linux"]; 114 - filesToInstall = ["build/${platform}/release/bl31.bin"]; 146 + extraMeta.platforms = [ "aarch64-linux" ]; 147 + filesToInstall = [ "build/${platform}/release/bl31.bin" ]; 115 148 }; 116 149 117 150 armTrustedFirmwareAllwinnerH616 = buildArmTrustedFirmware rec { 118 151 platform = "sun50i_h616"; 119 - extraMeta.platforms = ["aarch64-linux"]; 120 - filesToInstall = ["build/${platform}/release/bl31.bin"]; 152 + extraMeta.platforms = [ "aarch64-linux" ]; 153 + filesToInstall = [ "build/${platform}/release/bl31.bin" ]; 121 154 }; 122 155 123 156 armTrustedFirmwareAllwinnerH6 = buildArmTrustedFirmware rec { 124 157 platform = "sun50i_h6"; 125 - extraMeta.platforms = ["aarch64-linux"]; 126 - filesToInstall = ["build/${platform}/release/bl31.bin"]; 158 + extraMeta.platforms = [ "aarch64-linux" ]; 159 + filesToInstall = [ "build/${platform}/release/bl31.bin" ]; 127 160 }; 128 161 129 162 armTrustedFirmwareQemu = buildArmTrustedFirmware rec { 130 163 platform = "qemu"; 131 - extraMeta.platforms = ["aarch64-linux"]; 164 + extraMeta.platforms = [ "aarch64-linux" ]; 132 165 filesToInstall = [ 133 166 "build/${platform}/release/bl1.bin" 134 167 "build/${platform}/release/bl2.bin" ··· 139 172 armTrustedFirmwareRK3328 = buildArmTrustedFirmware rec { 140 173 extraMakeFlags = [ "bl31" ]; 141 174 platform = "rk3328"; 142 - extraMeta.platforms = ["aarch64-linux"]; 143 - filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 175 + extraMeta.platforms = [ "aarch64-linux" ]; 176 + filesToInstall = [ "build/${platform}/release/bl31/bl31.elf" ]; 144 177 }; 145 178 146 179 armTrustedFirmwareRK3399 = buildArmTrustedFirmware rec { 147 180 extraMakeFlags = [ "bl31" ]; 148 181 platform = "rk3399"; 149 - extraMeta.platforms = ["aarch64-linux"]; 150 - filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 182 + extraMeta.platforms = [ "aarch64-linux" ]; 183 + filesToInstall = [ "build/${platform}/release/bl31/bl31.elf" ]; 151 184 platformCanUseHDCPBlob = true; 152 185 }; 153 186 154 187 armTrustedFirmwareRK3588 = buildArmTrustedFirmware rec { 155 188 extraMakeFlags = [ "bl31" ]; 156 189 platform = "rk3588"; 157 - extraMeta.platforms = ["aarch64-linux"]; 158 - filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"]; 159 - 160 - # TODO: remove this once the following get merged: 161 - # 1: https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/21840 162 - # 2: https://review.trustedfirmware.org/c/ci/tf-a-ci-scripts/+/21833 163 - src = fetchFromGitLab { 164 - domain = "gitlab.collabora.com"; 165 - owner = "hardware-enablement/rockchip-3588"; 166 - repo = "trusted-firmware-a"; 167 - rev = "002d8e85ce5f4f06ebc2c2c52b4923a514bfa701"; 168 - hash = "sha256-1XOG7ILIgWa3uXUmAh9WTfSGLD/76OsmWrUhIxm/zTg="; 169 - }; 190 + extraMeta.platforms = [ "aarch64-linux" ]; 191 + filesToInstall = [ "build/${platform}/release/bl31/bl31.elf" ]; 170 192 }; 171 193 172 194 armTrustedFirmwareS905 = buildArmTrustedFirmware rec { 173 195 extraMakeFlags = [ "bl31" ]; 174 196 platform = "gxbb"; 175 - extraMeta.platforms = ["aarch64-linux"]; 176 - filesToInstall = [ "build/${platform}/release/bl31.bin"]; 197 + extraMeta.platforms = [ "aarch64-linux" ]; 198 + filesToInstall = [ "build/${platform}/release/bl31.bin" ]; 177 199 }; 178 200 }
+2 -2
pkgs/servers/home-assistant/custom-components/midea_ac/package.nix
··· 8 8 buildHomeAssistantComponent rec { 9 9 owner = "mill1000"; 10 10 domain = "midea_ac"; 11 - version = "2025.2.1"; 11 + version = "2025.2.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mill1000"; 15 15 repo = "midea-ac-py"; 16 16 tag = version; 17 - hash = "sha256-3s80zljCFPxott5rLwq4yWJPmD/baCMyQU/qKLrX/Vs="; 17 + hash = "sha256-GfIdt5HRjtTKrndsICrLL3mttVzlMbOd9GP7+2HUPTA="; 18 18 }; 19 19 20 20 dependencies = [ msmart-ng ];
+7 -7
pkgs/servers/mail/spf-engine/default.nix
··· 11 11 12 12 buildPythonApplication rec { 13 13 pname = "spf-engine"; 14 - version = "3.0.4"; 15 - format = "pyproject"; 14 + version = "3.1.0"; 15 + pyproject = true; 16 16 17 17 src = fetchurl { 18 - url = "https://launchpad.net/${pname}/${lib.versions.majorMinor version}/${version}/+download/${pname}-${version}.tar.gz"; 19 - sha256 = "sha256-Gcw7enNIb/TrZEYa0Z04ezHUmfMmc1J+aEH6FlXbhTo="; 18 + url = "https://launchpad.net/${pname}/${lib.versions.majorMinor version}/${version}/+download/spf-engine-${version}.tar.gz"; 19 + hash = "sha256-HUuMxYFCqItLFgMSnrkwfmJWqgFGyI1RWgmljb+jkWk="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ flit-core ]; ··· 34 34 "spf_engine.policyd_spf" 35 35 ]; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 homepage = "https://launchpad.net/spf-engine/"; 39 39 description = "Postfix policy engine for Sender Policy Framework (SPF) checking"; 40 - maintainers = with maintainers; [ abbradar ]; 41 - license = licenses.asl20; 40 + maintainers = with lib.maintainers; [ abbradar ]; 41 + license = lib.licenses.asl20; 42 42 }; 43 43 }
-7753
pkgs/servers/search/qdrant/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "actix-codec" 7 - version = "0.5.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe" 10 - dependencies = [ 11 - "bitflags 1.3.2", 12 - "bytes", 13 - "futures-core", 14 - "futures-sink", 15 - "log", 16 - "memchr", 17 - "pin-project-lite", 18 - "tokio", 19 - "tokio-util", 20 - ] 21 - 22 - [[package]] 23 - name = "actix-cors" 24 - version = "0.7.0" 25 - source = "registry+https://github.com/rust-lang/crates.io-index" 26 - checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" 27 - dependencies = [ 28 - "actix-utils", 29 - "actix-web", 30 - "derive_more", 31 - "futures-util", 32 - "log", 33 - "once_cell", 34 - "smallvec", 35 - ] 36 - 37 - [[package]] 38 - name = "actix-files" 39 - version = "0.6.6" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "0773d59061dedb49a8aed04c67291b9d8cf2fe0b60130a381aab53c6dd86e9be" 42 - dependencies = [ 43 - "actix-http", 44 - "actix-service", 45 - "actix-utils", 46 - "actix-web", 47 - "bitflags 2.4.1", 48 - "bytes", 49 - "derive_more", 50 - "futures-core", 51 - "http-range", 52 - "log", 53 - "mime", 54 - "mime_guess", 55 - "percent-encoding", 56 - "pin-project-lite", 57 - "v_htmlescape", 58 - ] 59 - 60 - [[package]] 61 - name = "actix-http" 62 - version = "3.7.0" 63 - source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "4eb9843d84c775696c37d9a418bbb01b932629d01870722c0f13eb3f95e2536d" 65 - dependencies = [ 66 - "actix-codec", 67 - "actix-rt", 68 - "actix-service", 69 - "actix-tls", 70 - "actix-utils", 71 - "ahash", 72 - "base64 0.22.0", 73 - "bitflags 2.4.1", 74 - "brotli", 75 - "bytes", 76 - "bytestring", 77 - "derive_more", 78 - "encoding_rs", 79 - "flate2", 80 - "futures-core", 81 - "h2 0.3.26", 82 - "http 0.2.9", 83 - "httparse", 84 - "httpdate", 85 - "itoa", 86 - "language-tags", 87 - "local-channel", 88 - "mime", 89 - "percent-encoding", 90 - "pin-project-lite", 91 - "rand 0.8.5", 92 - "sha1", 93 - "smallvec", 94 - "tokio", 95 - "tokio-util", 96 - "tracing", 97 - "zstd", 98 - ] 99 - 100 - [[package]] 101 - name = "actix-macros" 102 - version = "0.2.3" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" 105 - dependencies = [ 106 - "quote", 107 - "syn 1.0.107", 108 - ] 109 - 110 - [[package]] 111 - name = "actix-multipart" 112 - version = "0.7.2" 113 - source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "d5118a26dee7e34e894f7e85aa0ee5080ae4c18bf03c0e30d49a80e418f00a53" 115 - dependencies = [ 116 - "actix-multipart-derive", 117 - "actix-utils", 118 - "actix-web", 119 - "derive_more", 120 - "futures-core", 121 - "futures-util", 122 - "httparse", 123 - "local-waker", 124 - "log", 125 - "memchr", 126 - "mime", 127 - "rand 0.8.5", 128 - "serde", 129 - "serde_json", 130 - "serde_plain", 131 - "tempfile", 132 - "tokio", 133 - ] 134 - 135 - [[package]] 136 - name = "actix-multipart-derive" 137 - version = "0.7.0" 138 - source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "e11eb847f49a700678ea2fa73daeb3208061afa2b9d1a8527c03390f4c4a1c6b" 140 - dependencies = [ 141 - "darling", 142 - "parse-size", 143 - "proc-macro2", 144 - "quote", 145 - "syn 2.0.79", 146 - ] 147 - 148 - [[package]] 149 - name = "actix-router" 150 - version = "0.5.3" 151 - source = "registry+https://github.com/rust-lang/crates.io-index" 152 - checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 153 - dependencies = [ 154 - "bytestring", 155 - "cfg-if", 156 - "http 0.2.9", 157 - "regex", 158 - "regex-lite", 159 - "serde", 160 - "tracing", 161 - ] 162 - 163 - [[package]] 164 - name = "actix-rt" 165 - version = "2.7.0" 166 - source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000" 168 - dependencies = [ 169 - "futures-core", 170 - "tokio", 171 - ] 172 - 173 - [[package]] 174 - name = "actix-server" 175 - version = "2.1.1" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824" 178 - dependencies = [ 179 - "actix-rt", 180 - "actix-service", 181 - "actix-utils", 182 - "futures-core", 183 - "futures-util", 184 - "mio 0.8.11", 185 - "num_cpus", 186 - "socket2 0.4.9", 187 - "tokio", 188 - "tracing", 189 - ] 190 - 191 - [[package]] 192 - name = "actix-service" 193 - version = "2.0.2" 194 - source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 196 - dependencies = [ 197 - "futures-core", 198 - "paste", 199 - "pin-project-lite", 200 - ] 201 - 202 - [[package]] 203 - name = "actix-tls" 204 - version = "3.4.0" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389" 207 - dependencies = [ 208 - "actix-rt", 209 - "actix-service", 210 - "actix-utils", 211 - "futures-core", 212 - "impl-more", 213 - "pin-project-lite", 214 - "rustls-pki-types", 215 - "tokio", 216 - "tokio-rustls 0.26.0", 217 - "tokio-util", 218 - "tracing", 219 - ] 220 - 221 - [[package]] 222 - name = "actix-utils" 223 - version = "3.0.1" 224 - source = "registry+https://github.com/rust-lang/crates.io-index" 225 - checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 226 - dependencies = [ 227 - "local-waker", 228 - "pin-project-lite", 229 - ] 230 - 231 - [[package]] 232 - name = "actix-web" 233 - version = "4.9.0" 234 - source = "registry+https://github.com/rust-lang/crates.io-index" 235 - checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" 236 - dependencies = [ 237 - "actix-codec", 238 - "actix-http", 239 - "actix-macros", 240 - "actix-router", 241 - "actix-rt", 242 - "actix-server", 243 - "actix-service", 244 - "actix-tls", 245 - "actix-utils", 246 - "actix-web-codegen", 247 - "ahash", 248 - "bytes", 249 - "bytestring", 250 - "cfg-if", 251 - "cookie", 252 - "derive_more", 253 - "encoding_rs", 254 - "futures-core", 255 - "futures-util", 256 - "impl-more", 257 - "itoa", 258 - "language-tags", 259 - "log", 260 - "mime", 261 - "once_cell", 262 - "pin-project-lite", 263 - "regex", 264 - "regex-lite", 265 - "serde", 266 - "serde_json", 267 - "serde_urlencoded", 268 - "smallvec", 269 - "socket2 0.5.5", 270 - "time", 271 - "url", 272 - ] 273 - 274 - [[package]] 275 - name = "actix-web-codegen" 276 - version = "4.3.0" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 279 - dependencies = [ 280 - "actix-router", 281 - "proc-macro2", 282 - "quote", 283 - "syn 2.0.79", 284 - ] 285 - 286 - [[package]] 287 - name = "actix-web-extras" 288 - version = "0.1.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "ef1dfa234e9b71ed142e54b26b4cc9e13ef4ac563cf1a2be810b0c3d057781ea" 291 - dependencies = [ 292 - "actix-web", 293 - "futures-core", 294 - "futures-util", 295 - "pin-project-lite", 296 - ] 297 - 298 - [[package]] 299 - name = "actix-web-validator" 300 - version = "6.0.0" 301 - source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "0f65804955af25ad36225100983ec8d92f14795e7f8080073f8147d0b768c78e" 303 - dependencies = [ 304 - "actix-http", 305 - "actix-router", 306 - "actix-web", 307 - "bytes", 308 - "futures", 309 - "futures-util", 310 - "log", 311 - "mime", 312 - "serde", 313 - "serde_json", 314 - "serde_qs", 315 - "serde_urlencoded", 316 - "thiserror", 317 - "validator", 318 - ] 319 - 320 - [[package]] 321 - name = "addr2line" 322 - version = "0.19.0" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 325 - dependencies = [ 326 - "gimli", 327 - ] 328 - 329 - [[package]] 330 - name = "adler" 331 - version = "1.0.2" 332 - source = "registry+https://github.com/rust-lang/crates.io-index" 333 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 334 - 335 - [[package]] 336 - name = "adler2" 337 - version = "2.0.0" 338 - source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 340 - 341 - [[package]] 342 - name = "adler32" 343 - version = "1.2.0" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 346 - 347 - [[package]] 348 - name = "ahash" 349 - version = "0.8.11" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 352 - dependencies = [ 353 - "cfg-if", 354 - "getrandom 0.2.11", 355 - "once_cell", 356 - "serde", 357 - "version_check", 358 - "zerocopy", 359 - ] 360 - 361 - [[package]] 362 - name = "aho-corasick" 363 - version = "1.1.3" 364 - source = "registry+https://github.com/rust-lang/crates.io-index" 365 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 366 - dependencies = [ 367 - "memchr", 368 - ] 369 - 370 - [[package]] 371 - name = "aligned-vec" 372 - version = "0.6.1" 373 - source = "registry+https://github.com/rust-lang/crates.io-index" 374 - checksum = "7e0966165eaf052580bd70eb1b32cb3d6245774c0104d1b2793e9650bf83b52a" 375 - dependencies = [ 376 - "equator", 377 - ] 378 - 379 - [[package]] 380 - name = "alloc-no-stdlib" 381 - version = "2.0.4" 382 - source = "registry+https://github.com/rust-lang/crates.io-index" 383 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 384 - 385 - [[package]] 386 - name = "alloc-stdlib" 387 - version = "0.2.2" 388 - source = "registry+https://github.com/rust-lang/crates.io-index" 389 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 390 - dependencies = [ 391 - "alloc-no-stdlib", 392 - ] 393 - 394 - [[package]] 395 - name = "allocator-api2" 396 - version = "0.2.16" 397 - source = "registry+https://github.com/rust-lang/crates.io-index" 398 - checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 399 - 400 - [[package]] 401 - name = "android-tzdata" 402 - version = "0.1.1" 403 - source = "registry+https://github.com/rust-lang/crates.io-index" 404 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 405 - 406 - [[package]] 407 - name = "android_system_properties" 408 - version = "0.1.5" 409 - source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 411 - dependencies = [ 412 - "libc", 413 - ] 414 - 415 - [[package]] 416 - name = "anes" 417 - version = "0.1.6" 418 - source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 420 - 421 - [[package]] 422 - name = "anstream" 423 - version = "0.6.11" 424 - source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 426 - dependencies = [ 427 - "anstyle", 428 - "anstyle-parse", 429 - "anstyle-query", 430 - "anstyle-wincon", 431 - "colorchoice", 432 - "utf8parse", 433 - ] 434 - 435 - [[package]] 436 - name = "anstyle" 437 - version = "1.0.8" 438 - source = "registry+https://github.com/rust-lang/crates.io-index" 439 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 440 - 441 - [[package]] 442 - name = "anstyle-parse" 443 - version = "0.2.0" 444 - source = "registry+https://github.com/rust-lang/crates.io-index" 445 - checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 446 - dependencies = [ 447 - "utf8parse", 448 - ] 449 - 450 - [[package]] 451 - name = "anstyle-query" 452 - version = "1.0.0" 453 - source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 455 - dependencies = [ 456 - "windows-sys 0.48.0", 457 - ] 458 - 459 - [[package]] 460 - name = "anstyle-wincon" 461 - version = "3.0.1" 462 - source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 464 - dependencies = [ 465 - "anstyle", 466 - "windows-sys 0.48.0", 467 - ] 468 - 469 - [[package]] 470 - name = "antidote" 471 - version = "1.0.0" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "34fde25430d87a9388dadbe6e34d7f72a462c8b43ac8d309b42b0a8505d7e2a5" 474 - 475 - [[package]] 476 - name = "anyhow" 477 - version = "1.0.89" 478 - source = "registry+https://github.com/rust-lang/crates.io-index" 479 - checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" 480 - 481 - [[package]] 482 - name = "api" 483 - version = "1.12.1" 484 - dependencies = [ 485 - "chrono", 486 - "common", 487 - "itertools 0.13.0", 488 - "parking_lot", 489 - "prost 0.12.6", 490 - "prost-build 0.12.6", 491 - "prost-wkt-types", 492 - "rand 0.8.5", 493 - "schemars", 494 - "segment", 495 - "serde", 496 - "serde_json", 497 - "sparse", 498 - "thiserror", 499 - "tokio", 500 - "tonic 0.11.0", 501 - "tonic-build", 502 - "tracing", 503 - "uuid", 504 - "validator", 505 - ] 506 - 507 - [[package]] 508 - name = "approx" 509 - version = "0.5.1" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" 512 - dependencies = [ 513 - "num-traits", 514 - ] 515 - 516 - [[package]] 517 - name = "arc-swap" 518 - version = "1.7.1" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 521 - 522 - [[package]] 523 - name = "arrayvec" 524 - version = "0.4.12" 525 - source = "registry+https://github.com/rust-lang/crates.io-index" 526 - checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" 527 - dependencies = [ 528 - "nodrop", 529 - ] 530 - 531 - [[package]] 532 - name = "arrayvec" 533 - version = "0.7.2" 534 - source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 536 - 537 - [[package]] 538 - name = "async-stream" 539 - version = "0.3.3" 540 - source = "registry+https://github.com/rust-lang/crates.io-index" 541 - checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 542 - dependencies = [ 543 - "async-stream-impl", 544 - "futures-core", 545 - ] 546 - 547 - [[package]] 548 - name = "async-stream-impl" 549 - version = "0.3.3" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 552 - dependencies = [ 553 - "proc-macro2", 554 - "quote", 555 - "syn 1.0.107", 556 - ] 557 - 558 - [[package]] 559 - name = "async-trait" 560 - version = "0.1.83" 561 - source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 563 - dependencies = [ 564 - "proc-macro2", 565 - "quote", 566 - "syn 2.0.79", 567 - ] 568 - 569 - [[package]] 570 - name = "atomic_refcell" 571 - version = "0.1.13" 572 - source = "registry+https://github.com/rust-lang/crates.io-index" 573 - checksum = "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c" 574 - 575 - [[package]] 576 - name = "atomicwrites" 577 - version = "0.4.4" 578 - source = "registry+https://github.com/rust-lang/crates.io-index" 579 - checksum = "3ef1bb8d1b645fe38d51dfc331d720fb5fc2c94b440c76cc79c80ff265ca33e3" 580 - dependencies = [ 581 - "rustix 0.38.37", 582 - "tempfile", 583 - "windows-sys 0.52.0", 584 - ] 585 - 586 - [[package]] 587 - name = "atty" 588 - version = "0.2.14" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 591 - dependencies = [ 592 - "hermit-abi 0.1.19", 593 - "libc", 594 - "winapi", 595 - ] 596 - 597 - [[package]] 598 - name = "autocfg" 599 - version = "1.1.0" 600 - source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 602 - 603 - [[package]] 604 - name = "axum" 605 - version = "0.6.12" 606 - source = "registry+https://github.com/rust-lang/crates.io-index" 607 - checksum = "349f8ccfd9221ee7d1f3d4b33e1f8319b3a81ed8f61f2ea40b37b859794b4491" 608 - dependencies = [ 609 - "async-trait", 610 - "axum-core 0.3.3", 611 - "bitflags 1.3.2", 612 - "bytes", 613 - "futures-util", 614 - "http 0.2.9", 615 - "http-body 0.4.5", 616 - "hyper 0.14.26", 617 - "itoa", 618 - "matchit", 619 - "memchr", 620 - "mime", 621 - "percent-encoding", 622 - "pin-project-lite", 623 - "rustversion", 624 - "serde", 625 - "sync_wrapper 0.1.2", 626 - "tower 0.4.13", 627 - "tower-layer", 628 - "tower-service", 629 - ] 630 - 631 - [[package]] 632 - name = "axum" 633 - version = "0.7.5" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 636 - dependencies = [ 637 - "async-trait", 638 - "axum-core 0.4.3", 639 - "bytes", 640 - "futures-util", 641 - "http 1.0.0", 642 - "http-body 1.0.0", 643 - "http-body-util", 644 - "itoa", 645 - "matchit", 646 - "memchr", 647 - "mime", 648 - "percent-encoding", 649 - "pin-project-lite", 650 - "rustversion", 651 - "serde", 652 - "sync_wrapper 1.0.1", 653 - "tower 0.4.13", 654 - "tower-layer", 655 - "tower-service", 656 - ] 657 - 658 - [[package]] 659 - name = "axum-core" 660 - version = "0.3.3" 661 - source = "registry+https://github.com/rust-lang/crates.io-index" 662 - checksum = "b2f958c80c248b34b9a877a643811be8dbca03ca5ba827f2b63baf3a81e5fc4e" 663 - dependencies = [ 664 - "async-trait", 665 - "bytes", 666 - "futures-util", 667 - "http 0.2.9", 668 - "http-body 0.4.5", 669 - "mime", 670 - "rustversion", 671 - "tower-layer", 672 - "tower-service", 673 - ] 674 - 675 - [[package]] 676 - name = "axum-core" 677 - version = "0.4.3" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 680 - dependencies = [ 681 - "async-trait", 682 - "bytes", 683 - "futures-util", 684 - "http 1.0.0", 685 - "http-body 1.0.0", 686 - "http-body-util", 687 - "mime", 688 - "pin-project-lite", 689 - "rustversion", 690 - "sync_wrapper 0.1.2", 691 - "tower-layer", 692 - "tower-service", 693 - ] 694 - 695 - [[package]] 696 - name = "backtrace" 697 - version = "0.3.67" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 700 - dependencies = [ 701 - "addr2line", 702 - "cc", 703 - "cfg-if", 704 - "libc", 705 - "miniz_oxide 0.6.2", 706 - "object", 707 - "rustc-demangle", 708 - ] 709 - 710 - [[package]] 711 - name = "base64" 712 - version = "0.13.1" 713 - source = "registry+https://github.com/rust-lang/crates.io-index" 714 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 715 - 716 - [[package]] 717 - name = "base64" 718 - version = "0.21.0" 719 - source = "registry+https://github.com/rust-lang/crates.io-index" 720 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 721 - 722 - [[package]] 723 - name = "base64" 724 - version = "0.22.0" 725 - source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" 727 - 728 - [[package]] 729 - name = "bincode" 730 - version = "1.3.3" 731 - source = "registry+https://github.com/rust-lang/crates.io-index" 732 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 733 - dependencies = [ 734 - "serde", 735 - ] 736 - 737 - [[package]] 738 - name = "bindgen" 739 - version = "0.69.4" 740 - source = "registry+https://github.com/rust-lang/crates.io-index" 741 - checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 742 - dependencies = [ 743 - "bitflags 2.4.1", 744 - "cexpr", 745 - "clang-sys", 746 - "itertools 0.12.1", 747 - "lazy_static", 748 - "lazycell", 749 - "proc-macro2", 750 - "quote", 751 - "regex", 752 - "rustc-hash 1.1.0", 753 - "shlex", 754 - "syn 2.0.79", 755 - ] 756 - 757 - [[package]] 758 - name = "binout" 759 - version = "0.2.1" 760 - source = "registry+https://github.com/rust-lang/crates.io-index" 761 - checksum = "b60b1af88a588fca5fe424ae7d735bc52814f80ff57614f57043cc4e2024f2ea" 762 - 763 - [[package]] 764 - name = "bit-set" 765 - version = "0.5.3" 766 - source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 768 - dependencies = [ 769 - "bit-vec", 770 - ] 771 - 772 - [[package]] 773 - name = "bit-vec" 774 - version = "0.6.3" 775 - source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 777 - 778 - [[package]] 779 - name = "bitflags" 780 - version = "1.3.2" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 783 - 784 - [[package]] 785 - name = "bitflags" 786 - version = "2.4.1" 787 - source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 789 - dependencies = [ 790 - "serde", 791 - ] 792 - 793 - [[package]] 794 - name = "bitm" 795 - version = "0.4.2" 796 - source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "b06e8e5bec3490b9f6f3adbb78aa4f53e8396fd9994e8a62a346b44ea7c15f35" 798 - dependencies = [ 799 - "dyn_size_of", 800 - ] 801 - 802 - [[package]] 803 - name = "bitpacking" 804 - version = "0.9.2" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92" 807 - dependencies = [ 808 - "crunchy", 809 - ] 810 - 811 - [[package]] 812 - name = "bitvec" 813 - version = "1.0.1" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 816 - dependencies = [ 817 - "funty", 818 - "radium", 819 - "tap", 820 - "wyz", 821 - ] 822 - 823 - [[package]] 824 - name = "blake2-rfc" 825 - version = "0.2.18" 826 - source = "registry+https://github.com/rust-lang/crates.io-index" 827 - checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" 828 - dependencies = [ 829 - "arrayvec 0.4.12", 830 - "constant_time_eq 0.1.5", 831 - ] 832 - 833 - [[package]] 834 - name = "block-buffer" 835 - version = "0.10.3" 836 - source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 838 - dependencies = [ 839 - "generic-array", 840 - ] 841 - 842 - [[package]] 843 - name = "borsh" 844 - version = "1.5.1" 845 - source = "registry+https://github.com/rust-lang/crates.io-index" 846 - checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 847 - dependencies = [ 848 - "cfg_aliases", 849 - ] 850 - 851 - [[package]] 852 - name = "brotli" 853 - version = "6.0.0" 854 - source = "registry+https://github.com/rust-lang/crates.io-index" 855 - checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 856 - dependencies = [ 857 - "alloc-no-stdlib", 858 - "alloc-stdlib", 859 - "brotli-decompressor", 860 - ] 861 - 862 - [[package]] 863 - name = "brotli-decompressor" 864 - version = "4.0.0" 865 - source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "e6221fe77a248b9117d431ad93761222e1cf8ff282d9d1d5d9f53d6299a1cf76" 867 - dependencies = [ 868 - "alloc-no-stdlib", 869 - "alloc-stdlib", 870 - ] 871 - 872 - [[package]] 873 - name = "bumpalo" 874 - version = "3.11.1" 875 - source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 877 - 878 - [[package]] 879 - name = "bytemuck" 880 - version = "1.18.0" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" 883 - 884 - [[package]] 885 - name = "byteorder" 886 - version = "1.5.0" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 889 - 890 - [[package]] 891 - name = "bytes" 892 - version = "1.7.2" 893 - source = "registry+https://github.com/rust-lang/crates.io-index" 894 - checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 895 - 896 - [[package]] 897 - name = "bytestring" 898 - version = "1.2.0" 899 - source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "f7f83e57d9154148e355404702e2694463241880b939570d7c97c014da7a69a1" 901 - dependencies = [ 902 - "bytes", 903 - ] 904 - 905 - [[package]] 906 - name = "bzip2-sys" 907 - version = "0.1.11+1.0.8" 908 - source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 910 - dependencies = [ 911 - "cc", 912 - "libc", 913 - "pkg-config", 914 - ] 915 - 916 - [[package]] 917 - name = "cancel" 918 - version = "0.0.0" 919 - dependencies = [ 920 - "thiserror", 921 - "tokio", 922 - "tokio-util", 923 - ] 924 - 925 - [[package]] 926 - name = "cast" 927 - version = "0.3.0" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 930 - 931 - [[package]] 932 - name = "cc" 933 - version = "1.1.28" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1" 936 - dependencies = [ 937 - "jobserver", 938 - "libc", 939 - "shlex", 940 - ] 941 - 942 - [[package]] 943 - name = "cedarwood" 944 - version = "0.4.6" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90" 947 - dependencies = [ 948 - "smallvec", 949 - ] 950 - 951 - [[package]] 952 - name = "cexpr" 953 - version = "0.6.0" 954 - source = "registry+https://github.com/rust-lang/crates.io-index" 955 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 956 - dependencies = [ 957 - "nom", 958 - ] 959 - 960 - [[package]] 961 - name = "cfg-if" 962 - version = "1.0.0" 963 - source = "registry+https://github.com/rust-lang/crates.io-index" 964 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 965 - 966 - [[package]] 967 - name = "cfg_aliases" 968 - version = "0.2.1" 969 - source = "registry+https://github.com/rust-lang/crates.io-index" 970 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 971 - 972 - [[package]] 973 - name = "cgroups-rs" 974 - version = "0.3.4" 975 - source = "registry+https://github.com/rust-lang/crates.io-index" 976 - checksum = "6db7c2f5545da4c12c5701455d9471da5f07db52e49b9cccb4f5512226dd0836" 977 - dependencies = [ 978 - "libc", 979 - "log", 980 - "nix 0.25.1", 981 - "regex", 982 - "thiserror", 983 - ] 984 - 985 - [[package]] 986 - name = "charabia" 987 - version = "0.9.1" 988 - source = "registry+https://github.com/rust-lang/crates.io-index" 989 - checksum = "55ff52497324e7d168505a16949ae836c14595606fab94687238d2f6c8d4c798" 990 - dependencies = [ 991 - "aho-corasick", 992 - "csv", 993 - "either", 994 - "fst", 995 - "irg-kvariants", 996 - "jieba-rs", 997 - "lindera", 998 - "once_cell", 999 - "pinyin", 1000 - "serde", 1001 - "slice-group-by", 1002 - "unicode-normalization", 1003 - "whatlang", 1004 - ] 1005 - 1006 - [[package]] 1007 - name = "chrono" 1008 - version = "0.4.38" 1009 - source = "registry+https://github.com/rust-lang/crates.io-index" 1010 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 1011 - dependencies = [ 1012 - "android-tzdata", 1013 - "iana-time-zone", 1014 - "js-sys", 1015 - "num-traits", 1016 - "serde", 1017 - "wasm-bindgen", 1018 - "windows-targets 0.52.6", 1019 - ] 1020 - 1021 - [[package]] 1022 - name = "ci_info" 1023 - version = "0.10.2" 1024 - source = "registry+https://github.com/rust-lang/crates.io-index" 1025 - checksum = "24f638c70e8c5753795cc9a8c07c44da91554a09e4cf11a7326e8161b0a3c45e" 1026 - dependencies = [ 1027 - "envmnt", 1028 - ] 1029 - 1030 - [[package]] 1031 - name = "ciborium" 1032 - version = "0.2.0" 1033 - source = "registry+https://github.com/rust-lang/crates.io-index" 1034 - checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 1035 - dependencies = [ 1036 - "ciborium-io", 1037 - "ciborium-ll", 1038 - "serde", 1039 - ] 1040 - 1041 - [[package]] 1042 - name = "ciborium-io" 1043 - version = "0.2.0" 1044 - source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 1046 - 1047 - [[package]] 1048 - name = "ciborium-ll" 1049 - version = "0.2.0" 1050 - source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 1052 - dependencies = [ 1053 - "ciborium-io", 1054 - "half 1.8.2", 1055 - ] 1056 - 1057 - [[package]] 1058 - name = "clang-sys" 1059 - version = "1.4.0" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 1062 - dependencies = [ 1063 - "glob", 1064 - "libc", 1065 - "libloading", 1066 - ] 1067 - 1068 - [[package]] 1069 - name = "clap" 1070 - version = "3.2.25" 1071 - source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 1073 - dependencies = [ 1074 - "atty", 1075 - "bitflags 1.3.2", 1076 - "clap_derive 3.2.25", 1077 - "clap_lex 0.2.4", 1078 - "indexmap 1.9.2", 1079 - "once_cell", 1080 - "strsim 0.10.0", 1081 - "termcolor", 1082 - "textwrap", 1083 - ] 1084 - 1085 - [[package]] 1086 - name = "clap" 1087 - version = "4.5.19" 1088 - source = "registry+https://github.com/rust-lang/crates.io-index" 1089 - checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615" 1090 - dependencies = [ 1091 - "clap_builder", 1092 - "clap_derive 4.5.18", 1093 - ] 1094 - 1095 - [[package]] 1096 - name = "clap_builder" 1097 - version = "4.5.19" 1098 - source = "registry+https://github.com/rust-lang/crates.io-index" 1099 - checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b" 1100 - dependencies = [ 1101 - "anstream", 1102 - "anstyle", 1103 - "clap_lex 0.7.0", 1104 - "strsim 0.11.0", 1105 - ] 1106 - 1107 - [[package]] 1108 - name = "clap_derive" 1109 - version = "3.2.25" 1110 - source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 1112 - dependencies = [ 1113 - "heck 0.4.1", 1114 - "proc-macro-error", 1115 - "proc-macro2", 1116 - "quote", 1117 - "syn 1.0.107", 1118 - ] 1119 - 1120 - [[package]] 1121 - name = "clap_derive" 1122 - version = "4.5.18" 1123 - source = "registry+https://github.com/rust-lang/crates.io-index" 1124 - checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 1125 - dependencies = [ 1126 - "heck 0.5.0", 1127 - "proc-macro2", 1128 - "quote", 1129 - "syn 2.0.79", 1130 - ] 1131 - 1132 - [[package]] 1133 - name = "clap_lex" 1134 - version = "0.2.4" 1135 - source = "registry+https://github.com/rust-lang/crates.io-index" 1136 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 1137 - dependencies = [ 1138 - "os_str_bytes", 1139 - ] 1140 - 1141 - [[package]] 1142 - name = "clap_lex" 1143 - version = "0.7.0" 1144 - source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 1146 - 1147 - [[package]] 1148 - name = "codespan-reporting" 1149 - version = "0.11.1" 1150 - source = "registry+https://github.com/rust-lang/crates.io-index" 1151 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1152 - dependencies = [ 1153 - "termcolor", 1154 - "unicode-width", 1155 - ] 1156 - 1157 - [[package]] 1158 - name = "collection" 1159 - version = "0.4.2" 1160 - dependencies = [ 1161 - "actix-files", 1162 - "actix-web", 1163 - "actix-web-validator", 1164 - "api", 1165 - "approx", 1166 - "arc-swap", 1167 - "async-trait", 1168 - "atomicwrites", 1169 - "bitvec", 1170 - "bytes", 1171 - "cancel", 1172 - "chrono", 1173 - "collection", 1174 - "common", 1175 - "criterion", 1176 - "env_logger", 1177 - "fnv", 1178 - "fs4", 1179 - "fs_extra", 1180 - "futures", 1181 - "hashring", 1182 - "indexmap 2.6.0", 1183 - "indicatif", 1184 - "io", 1185 - "issues", 1186 - "itertools 0.13.0", 1187 - "lazy_static", 1188 - "log", 1189 - "merge", 1190 - "object_store", 1191 - "ordered-float 4.3.0", 1192 - "parking_lot", 1193 - "pprof 0.13.0", 1194 - "proptest", 1195 - "rand 0.8.5", 1196 - "ringbuffer", 1197 - "rmp-serde", 1198 - "rstest", 1199 - "schemars", 1200 - "segment", 1201 - "semver", 1202 - "serde", 1203 - "serde_cbor", 1204 - "serde_json", 1205 - "serde_variant", 1206 - "sha2", 1207 - "smallvec", 1208 - "sparse", 1209 - "strum", 1210 - "tar", 1211 - "tempfile", 1212 - "thiserror", 1213 - "tinyvec", 1214 - "tokio", 1215 - "tokio-util", 1216 - "tonic 0.11.0", 1217 - "tracing", 1218 - "url", 1219 - "uuid", 1220 - "validator", 1221 - "wal", 1222 - ] 1223 - 1224 - [[package]] 1225 - name = "colorchoice" 1226 - version = "1.0.0" 1227 - source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 1229 - 1230 - [[package]] 1231 - name = "colored" 1232 - version = "2.1.0" 1233 - source = "registry+https://github.com/rust-lang/crates.io-index" 1234 - checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 1235 - dependencies = [ 1236 - "lazy_static", 1237 - "windows-sys 0.48.0", 1238 - ] 1239 - 1240 - [[package]] 1241 - name = "common" 1242 - version = "0.0.0" 1243 - dependencies = [ 1244 - "common", 1245 - "criterion", 1246 - "lazy_static", 1247 - "log", 1248 - "memmap2 0.9.5", 1249 - "num_cpus", 1250 - "ordered-float 4.3.0", 1251 - "ph", 1252 - "rand 0.8.5", 1253 - "semver", 1254 - "serde", 1255 - "tap", 1256 - "tar", 1257 - "tempfile", 1258 - "thiserror", 1259 - "thread-priority", 1260 - "tokio", 1261 - "validator", 1262 - "zerocopy", 1263 - ] 1264 - 1265 - [[package]] 1266 - name = "config" 1267 - version = "0.14.0" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" 1270 - dependencies = [ 1271 - "async-trait", 1272 - "convert_case 0.6.0", 1273 - "json5", 1274 - "lazy_static", 1275 - "nom", 1276 - "pathdiff", 1277 - "ron", 1278 - "rust-ini", 1279 - "serde", 1280 - "serde_json", 1281 - "toml 0.8.9", 1282 - "yaml-rust", 1283 - ] 1284 - 1285 - [[package]] 1286 - name = "console" 1287 - version = "0.15.2" 1288 - source = "registry+https://github.com/rust-lang/crates.io-index" 1289 - checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" 1290 - dependencies = [ 1291 - "encode_unicode", 1292 - "lazy_static", 1293 - "libc", 1294 - "terminal_size", 1295 - "unicode-width", 1296 - "winapi", 1297 - ] 1298 - 1299 - [[package]] 1300 - name = "console-api" 1301 - version = "0.8.0" 1302 - source = "registry+https://github.com/rust-lang/crates.io-index" 1303 - checksum = "86ed14aa9c9f927213c6e4f3ef75faaad3406134efe84ba2cb7983431d5f0931" 1304 - dependencies = [ 1305 - "futures-core", 1306 - "prost 0.13.1", 1307 - "prost-types 0.13.1", 1308 - "tonic 0.12.1", 1309 - "tracing-core", 1310 - ] 1311 - 1312 - [[package]] 1313 - name = "console-subscriber" 1314 - version = "0.4.0" 1315 - source = "registry+https://github.com/rust-lang/crates.io-index" 1316 - checksum = "e2e3a111a37f3333946ebf9da370ba5c5577b18eb342ec683eb488dd21980302" 1317 - dependencies = [ 1318 - "console-api", 1319 - "crossbeam-channel", 1320 - "crossbeam-utils", 1321 - "futures-task", 1322 - "hdrhistogram", 1323 - "humantime", 1324 - "hyper-util", 1325 - "parking_lot", 1326 - "prost 0.13.1", 1327 - "prost-types 0.13.1", 1328 - "serde", 1329 - "serde_json", 1330 - "thread_local", 1331 - "tokio", 1332 - "tokio-stream", 1333 - "tonic 0.12.1", 1334 - "tracing", 1335 - "tracing-core", 1336 - "tracing-subscriber", 1337 - ] 1338 - 1339 - [[package]] 1340 - name = "const-random" 1341 - version = "0.1.17" 1342 - source = "registry+https://github.com/rust-lang/crates.io-index" 1343 - checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" 1344 - dependencies = [ 1345 - "const-random-macro", 1346 - ] 1347 - 1348 - [[package]] 1349 - name = "const-random-macro" 1350 - version = "0.1.16" 1351 - source = "registry+https://github.com/rust-lang/crates.io-index" 1352 - checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 1353 - dependencies = [ 1354 - "getrandom 0.2.11", 1355 - "once_cell", 1356 - "tiny-keccak", 1357 - ] 1358 - 1359 - [[package]] 1360 - name = "constant_time_eq" 1361 - version = "0.1.5" 1362 - source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1364 - 1365 - [[package]] 1366 - name = "constant_time_eq" 1367 - version = "0.3.1" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" 1370 - 1371 - [[package]] 1372 - name = "convert_case" 1373 - version = "0.4.0" 1374 - source = "registry+https://github.com/rust-lang/crates.io-index" 1375 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1376 - 1377 - [[package]] 1378 - name = "convert_case" 1379 - version = "0.6.0" 1380 - source = "registry+https://github.com/rust-lang/crates.io-index" 1381 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 1382 - dependencies = [ 1383 - "unicode-segmentation", 1384 - ] 1385 - 1386 - [[package]] 1387 - name = "cookie" 1388 - version = "0.16.2" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 1391 - dependencies = [ 1392 - "percent-encoding", 1393 - "time", 1394 - "version_check", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "core-foundation" 1399 - version = "0.9.4" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1402 - dependencies = [ 1403 - "core-foundation-sys", 1404 - "libc", 1405 - ] 1406 - 1407 - [[package]] 1408 - name = "core-foundation-sys" 1409 - version = "0.8.6" 1410 - source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1412 - 1413 - [[package]] 1414 - name = "cpp_demangle" 1415 - version = "0.4.2" 1416 - source = "registry+https://github.com/rust-lang/crates.io-index" 1417 - checksum = "ee34052ee3d93d6d8f3e6f81d85c47921f6653a19a7b70e939e3e602d893a674" 1418 - dependencies = [ 1419 - "cfg-if", 1420 - ] 1421 - 1422 - [[package]] 1423 - name = "cpufeatures" 1424 - version = "0.2.5" 1425 - source = "registry+https://github.com/rust-lang/crates.io-index" 1426 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 1427 - dependencies = [ 1428 - "libc", 1429 - ] 1430 - 1431 - [[package]] 1432 - name = "crc32c" 1433 - version = "0.6.8" 1434 - source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" 1436 - dependencies = [ 1437 - "rustc_version", 1438 - ] 1439 - 1440 - [[package]] 1441 - name = "crc32fast" 1442 - version = "1.3.2" 1443 - source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1445 - dependencies = [ 1446 - "cfg-if", 1447 - ] 1448 - 1449 - [[package]] 1450 - name = "criterion" 1451 - version = "0.5.1" 1452 - source = "registry+https://github.com/rust-lang/crates.io-index" 1453 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1454 - dependencies = [ 1455 - "anes", 1456 - "cast", 1457 - "ciborium", 1458 - "clap 4.5.19", 1459 - "criterion-plot", 1460 - "is-terminal", 1461 - "itertools 0.10.5", 1462 - "num-traits", 1463 - "once_cell", 1464 - "oorandom", 1465 - "plotters", 1466 - "rayon", 1467 - "regex", 1468 - "serde", 1469 - "serde_derive", 1470 - "serde_json", 1471 - "tinytemplate", 1472 - "walkdir", 1473 - ] 1474 - 1475 - [[package]] 1476 - name = "criterion-plot" 1477 - version = "0.5.0" 1478 - source = "registry+https://github.com/rust-lang/crates.io-index" 1479 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1480 - dependencies = [ 1481 - "cast", 1482 - "itertools 0.10.5", 1483 - ] 1484 - 1485 - [[package]] 1486 - name = "crossbeam-channel" 1487 - version = "0.5.8" 1488 - source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 1490 - dependencies = [ 1491 - "cfg-if", 1492 - "crossbeam-utils", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "crossbeam-deque" 1497 - version = "0.8.2" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 1500 - dependencies = [ 1501 - "cfg-if", 1502 - "crossbeam-epoch", 1503 - "crossbeam-utils", 1504 - ] 1505 - 1506 - [[package]] 1507 - name = "crossbeam-epoch" 1508 - version = "0.9.13" 1509 - source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 1511 - dependencies = [ 1512 - "autocfg", 1513 - "cfg-if", 1514 - "crossbeam-utils", 1515 - "memoffset", 1516 - "scopeguard", 1517 - ] 1518 - 1519 - [[package]] 1520 - name = "crossbeam-utils" 1521 - version = "0.8.14" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 1524 - dependencies = [ 1525 - "cfg-if", 1526 - ] 1527 - 1528 - [[package]] 1529 - name = "crunchy" 1530 - version = "0.2.2" 1531 - source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1533 - 1534 - [[package]] 1535 - name = "crypto-common" 1536 - version = "0.1.6" 1537 - source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1539 - dependencies = [ 1540 - "generic-array", 1541 - "typenum", 1542 - ] 1543 - 1544 - [[package]] 1545 - name = "csv" 1546 - version = "1.3.0" 1547 - source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 1549 - dependencies = [ 1550 - "csv-core", 1551 - "itoa", 1552 - "ryu", 1553 - "serde", 1554 - ] 1555 - 1556 - [[package]] 1557 - name = "csv-core" 1558 - version = "0.1.11" 1559 - source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 1561 - dependencies = [ 1562 - "memchr", 1563 - ] 1564 - 1565 - [[package]] 1566 - name = "cxx" 1567 - version = "1.0.85" 1568 - source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "5add3fc1717409d029b20c5b6903fc0c0b02fa6741d820054f4a2efa5e5816fd" 1570 - dependencies = [ 1571 - "cc", 1572 - "cxxbridge-flags", 1573 - "cxxbridge-macro", 1574 - "link-cplusplus", 1575 - ] 1576 - 1577 - [[package]] 1578 - name = "cxx-build" 1579 - version = "1.0.85" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "b4c87959ba14bc6fbc61df77c3fcfe180fc32b93538c4f1031dd802ccb5f2ff0" 1582 - dependencies = [ 1583 - "cc", 1584 - "codespan-reporting", 1585 - "once_cell", 1586 - "proc-macro2", 1587 - "quote", 1588 - "scratch", 1589 - "syn 1.0.107", 1590 - ] 1591 - 1592 - [[package]] 1593 - name = "cxxbridge-flags" 1594 - version = "1.0.85" 1595 - source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "69a3e162fde4e594ed2b07d0f83c6c67b745e7f28ce58c6df5e6b6bef99dfb59" 1597 - 1598 - [[package]] 1599 - name = "cxxbridge-macro" 1600 - version = "1.0.85" 1601 - source = "registry+https://github.com/rust-lang/crates.io-index" 1602 - checksum = "3e7e2adeb6a0d4a282e581096b06e1791532b7d576dcde5ccd9382acf55db8e6" 1603 - dependencies = [ 1604 - "proc-macro2", 1605 - "quote", 1606 - "syn 1.0.107", 1607 - ] 1608 - 1609 - [[package]] 1610 - name = "darling" 1611 - version = "0.20.8" 1612 - source = "registry+https://github.com/rust-lang/crates.io-index" 1613 - checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" 1614 - dependencies = [ 1615 - "darling_core", 1616 - "darling_macro", 1617 - ] 1618 - 1619 - [[package]] 1620 - name = "darling_core" 1621 - version = "0.20.8" 1622 - source = "registry+https://github.com/rust-lang/crates.io-index" 1623 - checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" 1624 - dependencies = [ 1625 - "fnv", 1626 - "ident_case", 1627 - "proc-macro2", 1628 - "quote", 1629 - "strsim 0.10.0", 1630 - "syn 2.0.79", 1631 - ] 1632 - 1633 - [[package]] 1634 - name = "darling_macro" 1635 - version = "0.20.8" 1636 - source = "registry+https://github.com/rust-lang/crates.io-index" 1637 - checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" 1638 - dependencies = [ 1639 - "darling_core", 1640 - "quote", 1641 - "syn 2.0.79", 1642 - ] 1643 - 1644 - [[package]] 1645 - name = "dashmap" 1646 - version = "6.1.0" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 1649 - dependencies = [ 1650 - "cfg-if", 1651 - "crossbeam-utils", 1652 - "hashbrown 0.14.2", 1653 - "lock_api", 1654 - "once_cell", 1655 - "parking_lot_core", 1656 - ] 1657 - 1658 - [[package]] 1659 - name = "data-encoding" 1660 - version = "2.6.0" 1661 - source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 1663 - 1664 - [[package]] 1665 - name = "dataset" 1666 - version = "0.0.0" 1667 - dependencies = [ 1668 - "anyhow", 1669 - "flate2", 1670 - "indicatif", 1671 - "reqwest 0.12.8", 1672 - ] 1673 - 1674 - [[package]] 1675 - name = "debugid" 1676 - version = "0.8.0" 1677 - source = "registry+https://github.com/rust-lang/crates.io-index" 1678 - checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 1679 - dependencies = [ 1680 - "uuid", 1681 - ] 1682 - 1683 - [[package]] 1684 - name = "delegate" 1685 - version = "0.13.0" 1686 - source = "registry+https://github.com/rust-lang/crates.io-index" 1687 - checksum = "5060bb0febb73fa907273f8a7ed17ab4bf831d585eac835b28ec24a1e2460956" 1688 - dependencies = [ 1689 - "proc-macro2", 1690 - "quote", 1691 - "syn 2.0.79", 1692 - ] 1693 - 1694 - [[package]] 1695 - name = "derive_builder" 1696 - version = "0.20.0" 1697 - source = "registry+https://github.com/rust-lang/crates.io-index" 1698 - checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 1699 - dependencies = [ 1700 - "derive_builder_macro", 1701 - ] 1702 - 1703 - [[package]] 1704 - name = "derive_builder_core" 1705 - version = "0.20.0" 1706 - source = "registry+https://github.com/rust-lang/crates.io-index" 1707 - checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 1708 - dependencies = [ 1709 - "darling", 1710 - "proc-macro2", 1711 - "quote", 1712 - "syn 2.0.79", 1713 - ] 1714 - 1715 - [[package]] 1716 - name = "derive_builder_macro" 1717 - version = "0.20.0" 1718 - source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 1720 - dependencies = [ 1721 - "derive_builder_core", 1722 - "syn 2.0.79", 1723 - ] 1724 - 1725 - [[package]] 1726 - name = "derive_more" 1727 - version = "0.99.17" 1728 - source = "registry+https://github.com/rust-lang/crates.io-index" 1729 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1730 - dependencies = [ 1731 - "convert_case 0.4.0", 1732 - "proc-macro2", 1733 - "quote", 1734 - "rustc_version", 1735 - "syn 1.0.107", 1736 - ] 1737 - 1738 - [[package]] 1739 - name = "digest" 1740 - version = "0.10.7" 1741 - source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1743 - dependencies = [ 1744 - "block-buffer", 1745 - "crypto-common", 1746 - ] 1747 - 1748 - [[package]] 1749 - name = "dlv-list" 1750 - version = "0.5.2" 1751 - source = "registry+https://github.com/rust-lang/crates.io-index" 1752 - checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 1753 - dependencies = [ 1754 - "const-random", 1755 - ] 1756 - 1757 - [[package]] 1758 - name = "docopt" 1759 - version = "1.1.1" 1760 - source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f" 1762 - dependencies = [ 1763 - "lazy_static", 1764 - "regex", 1765 - "serde", 1766 - "strsim 0.10.0", 1767 - ] 1768 - 1769 - [[package]] 1770 - name = "dyn-clone" 1771 - version = "1.0.10" 1772 - source = "registry+https://github.com/rust-lang/crates.io-index" 1773 - checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60" 1774 - 1775 - [[package]] 1776 - name = "dyn_size_of" 1777 - version = "0.4.2" 1778 - source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "33d4f78a40b1ec35bf8cafdaaf607ba2f773c366b0b3bda48937cacd7a8d5134" 1780 - 1781 - [[package]] 1782 - name = "earcutr" 1783 - version = "0.4.2" 1784 - source = "registry+https://github.com/rust-lang/crates.io-index" 1785 - checksum = "0812b44697951d35fde8fcb0da81c9de7e809e825a66bbf1ecb79d9829d4ca3d" 1786 - dependencies = [ 1787 - "itertools 0.10.5", 1788 - "num-traits", 1789 - ] 1790 - 1791 - [[package]] 1792 - name = "either" 1793 - version = "1.13.0" 1794 - source = "registry+https://github.com/rust-lang/crates.io-index" 1795 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 1796 - 1797 - [[package]] 1798 - name = "encode_unicode" 1799 - version = "0.3.6" 1800 - source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1802 - 1803 - [[package]] 1804 - name = "encoding" 1805 - version = "0.2.33" 1806 - source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 1808 - dependencies = [ 1809 - "encoding-index-japanese", 1810 - "encoding-index-korean", 1811 - "encoding-index-simpchinese", 1812 - "encoding-index-singlebyte", 1813 - "encoding-index-tradchinese", 1814 - ] 1815 - 1816 - [[package]] 1817 - name = "encoding-index-japanese" 1818 - version = "1.20141219.5" 1819 - source = "registry+https://github.com/rust-lang/crates.io-index" 1820 - checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 1821 - dependencies = [ 1822 - "encoding_index_tests", 1823 - ] 1824 - 1825 - [[package]] 1826 - name = "encoding-index-korean" 1827 - version = "1.20141219.5" 1828 - source = "registry+https://github.com/rust-lang/crates.io-index" 1829 - checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 1830 - dependencies = [ 1831 - "encoding_index_tests", 1832 - ] 1833 - 1834 - [[package]] 1835 - name = "encoding-index-simpchinese" 1836 - version = "1.20141219.5" 1837 - source = "registry+https://github.com/rust-lang/crates.io-index" 1838 - checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 1839 - dependencies = [ 1840 - "encoding_index_tests", 1841 - ] 1842 - 1843 - [[package]] 1844 - name = "encoding-index-singlebyte" 1845 - version = "1.20141219.5" 1846 - source = "registry+https://github.com/rust-lang/crates.io-index" 1847 - checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 1848 - dependencies = [ 1849 - "encoding_index_tests", 1850 - ] 1851 - 1852 - [[package]] 1853 - name = "encoding-index-tradchinese" 1854 - version = "1.20141219.5" 1855 - source = "registry+https://github.com/rust-lang/crates.io-index" 1856 - checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 1857 - dependencies = [ 1858 - "encoding_index_tests", 1859 - ] 1860 - 1861 - [[package]] 1862 - name = "encoding_index_tests" 1863 - version = "0.1.4" 1864 - source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 1866 - 1867 - [[package]] 1868 - name = "encoding_rs" 1869 - version = "0.8.33" 1870 - source = "registry+https://github.com/rust-lang/crates.io-index" 1871 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1872 - dependencies = [ 1873 - "cfg-if", 1874 - ] 1875 - 1876 - [[package]] 1877 - name = "encoding_rs_io" 1878 - version = "0.1.7" 1879 - source = "registry+https://github.com/rust-lang/crates.io-index" 1880 - checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83" 1881 - dependencies = [ 1882 - "encoding_rs", 1883 - ] 1884 - 1885 - [[package]] 1886 - name = "env_filter" 1887 - version = "0.1.0" 1888 - source = "registry+https://github.com/rust-lang/crates.io-index" 1889 - checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 1890 - dependencies = [ 1891 - "log", 1892 - "regex", 1893 - ] 1894 - 1895 - [[package]] 1896 - name = "env_logger" 1897 - version = "0.11.5" 1898 - source = "registry+https://github.com/rust-lang/crates.io-index" 1899 - checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 1900 - dependencies = [ 1901 - "anstream", 1902 - "anstyle", 1903 - "env_filter", 1904 - "humantime", 1905 - "log", 1906 - ] 1907 - 1908 - [[package]] 1909 - name = "envmnt" 1910 - version = "0.8.4" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "a2d328fc287c61314c4a61af7cfdcbd7e678e39778488c7cb13ec133ce0f4059" 1913 - dependencies = [ 1914 - "fsio", 1915 - "indexmap 1.9.2", 1916 - ] 1917 - 1918 - [[package]] 1919 - name = "equator" 1920 - version = "0.2.2" 1921 - source = "registry+https://github.com/rust-lang/crates.io-index" 1922 - checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea" 1923 - dependencies = [ 1924 - "equator-macro", 1925 - ] 1926 - 1927 - [[package]] 1928 - name = "equator-macro" 1929 - version = "0.2.1" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" 1932 - dependencies = [ 1933 - "proc-macro2", 1934 - "quote", 1935 - "syn 2.0.79", 1936 - ] 1937 - 1938 - [[package]] 1939 - name = "equivalent" 1940 - version = "1.0.1" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1943 - 1944 - [[package]] 1945 - name = "erased-serde" 1946 - version = "0.4.2" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "55d05712b2d8d88102bc9868020c9e5c7a1f5527c452b9b97450a1d006140ba7" 1949 - dependencies = [ 1950 - "serde", 1951 - ] 1952 - 1953 - [[package]] 1954 - name = "errno" 1955 - version = "0.3.8" 1956 - source = "registry+https://github.com/rust-lang/crates.io-index" 1957 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1958 - dependencies = [ 1959 - "libc", 1960 - "windows-sys 0.52.0", 1961 - ] 1962 - 1963 - [[package]] 1964 - name = "fastrand" 1965 - version = "2.1.1" 1966 - source = "registry+https://github.com/rust-lang/crates.io-index" 1967 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 1968 - 1969 - [[package]] 1970 - name = "filetime" 1971 - version = "0.2.19" 1972 - source = "registry+https://github.com/rust-lang/crates.io-index" 1973 - checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 1974 - dependencies = [ 1975 - "cfg-if", 1976 - "libc", 1977 - "redox_syscall 0.2.16", 1978 - "windows-sys 0.42.0", 1979 - ] 1980 - 1981 - [[package]] 1982 - name = "findshlibs" 1983 - version = "0.10.2" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 1986 - dependencies = [ 1987 - "cc", 1988 - "lazy_static", 1989 - "libc", 1990 - "winapi", 1991 - ] 1992 - 1993 - [[package]] 1994 - name = "fixedbitset" 1995 - version = "0.4.2" 1996 - source = "registry+https://github.com/rust-lang/crates.io-index" 1997 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1998 - 1999 - [[package]] 2000 - name = "flate2" 2001 - version = "1.0.34" 2002 - source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 2004 - dependencies = [ 2005 - "crc32fast", 2006 - "miniz_oxide 0.8.0", 2007 - ] 2008 - 2009 - [[package]] 2010 - name = "float_next_after" 2011 - version = "1.0.0" 2012 - source = "registry+https://github.com/rust-lang/crates.io-index" 2013 - checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8" 2014 - 2015 - [[package]] 2016 - name = "fnv" 2017 - version = "1.0.7" 2018 - source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2020 - 2021 - [[package]] 2022 - name = "foreign-types" 2023 - version = "0.5.0" 2024 - source = "registry+https://github.com/rust-lang/crates.io-index" 2025 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 2026 - dependencies = [ 2027 - "foreign-types-macros", 2028 - "foreign-types-shared", 2029 - ] 2030 - 2031 - [[package]] 2032 - name = "foreign-types-macros" 2033 - version = "0.2.3" 2034 - source = "registry+https://github.com/rust-lang/crates.io-index" 2035 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 2036 - dependencies = [ 2037 - "proc-macro2", 2038 - "quote", 2039 - "syn 2.0.79", 2040 - ] 2041 - 2042 - [[package]] 2043 - name = "foreign-types-shared" 2044 - version = "0.3.1" 2045 - source = "registry+https://github.com/rust-lang/crates.io-index" 2046 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 2047 - 2048 - [[package]] 2049 - name = "form_urlencoded" 2050 - version = "1.2.1" 2051 - source = "registry+https://github.com/rust-lang/crates.io-index" 2052 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 2053 - dependencies = [ 2054 - "percent-encoding", 2055 - ] 2056 - 2057 - [[package]] 2058 - name = "fs4" 2059 - version = "0.9.1" 2060 - source = "registry+https://github.com/rust-lang/crates.io-index" 2061 - checksum = "e8c6b3bd49c37d2aa3f3f2220233b29a7cd23f79d1fe70e5337d25fb390793de" 2062 - dependencies = [ 2063 - "rustix 0.38.37", 2064 - "windows-sys 0.52.0", 2065 - ] 2066 - 2067 - [[package]] 2068 - name = "fs_extra" 2069 - version = "1.3.0" 2070 - source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 2072 - 2073 - [[package]] 2074 - name = "fsio" 2075 - version = "0.1.3" 2076 - source = "registry+https://github.com/rust-lang/crates.io-index" 2077 - checksum = "c1fd087255f739f4f1aeea69f11b72f8080e9c2e7645cd06955dad4a178a49e3" 2078 - 2079 - [[package]] 2080 - name = "fst" 2081 - version = "0.4.7" 2082 - source = "registry+https://github.com/rust-lang/crates.io-index" 2083 - checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" 2084 - 2085 - [[package]] 2086 - name = "funty" 2087 - version = "2.0.0" 2088 - source = "registry+https://github.com/rust-lang/crates.io-index" 2089 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2090 - 2091 - [[package]] 2092 - name = "futures" 2093 - version = "0.3.31" 2094 - source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 2096 - dependencies = [ 2097 - "futures-channel", 2098 - "futures-core", 2099 - "futures-executor", 2100 - "futures-io", 2101 - "futures-sink", 2102 - "futures-task", 2103 - "futures-util", 2104 - ] 2105 - 2106 - [[package]] 2107 - name = "futures-channel" 2108 - version = "0.3.31" 2109 - source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 2111 - dependencies = [ 2112 - "futures-core", 2113 - "futures-sink", 2114 - ] 2115 - 2116 - [[package]] 2117 - name = "futures-core" 2118 - version = "0.3.31" 2119 - source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 2121 - 2122 - [[package]] 2123 - name = "futures-executor" 2124 - version = "0.3.31" 2125 - source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 2127 - dependencies = [ 2128 - "futures-core", 2129 - "futures-task", 2130 - "futures-util", 2131 - ] 2132 - 2133 - [[package]] 2134 - name = "futures-io" 2135 - version = "0.3.31" 2136 - source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 2138 - 2139 - [[package]] 2140 - name = "futures-macro" 2141 - version = "0.3.31" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 2144 - dependencies = [ 2145 - "proc-macro2", 2146 - "quote", 2147 - "syn 2.0.79", 2148 - ] 2149 - 2150 - [[package]] 2151 - name = "futures-sink" 2152 - version = "0.3.31" 2153 - source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 2155 - 2156 - [[package]] 2157 - name = "futures-task" 2158 - version = "0.3.31" 2159 - source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 2161 - 2162 - [[package]] 2163 - name = "futures-timer" 2164 - version = "3.0.3" 2165 - source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 2167 - 2168 - [[package]] 2169 - name = "futures-util" 2170 - version = "0.3.31" 2171 - source = "registry+https://github.com/rust-lang/crates.io-index" 2172 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 2173 - dependencies = [ 2174 - "futures-channel", 2175 - "futures-core", 2176 - "futures-io", 2177 - "futures-macro", 2178 - "futures-sink", 2179 - "futures-task", 2180 - "memchr", 2181 - "pin-project-lite", 2182 - "pin-utils", 2183 - "slab", 2184 - ] 2185 - 2186 - [[package]] 2187 - name = "fxhash" 2188 - version = "0.2.1" 2189 - source = "registry+https://github.com/rust-lang/crates.io-index" 2190 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 2191 - dependencies = [ 2192 - "byteorder", 2193 - ] 2194 - 2195 - [[package]] 2196 - name = "generator" 2197 - version = "0.7.4" 2198 - source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a" 2200 - dependencies = [ 2201 - "cc", 2202 - "libc", 2203 - "log", 2204 - "rustversion", 2205 - "windows 0.48.0", 2206 - ] 2207 - 2208 - [[package]] 2209 - name = "generic-array" 2210 - version = "0.14.6" 2211 - source = "registry+https://github.com/rust-lang/crates.io-index" 2212 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 2213 - dependencies = [ 2214 - "typenum", 2215 - "version_check", 2216 - ] 2217 - 2218 - [[package]] 2219 - name = "generic-tests" 2220 - version = "0.1.2" 2221 - source = "registry+https://github.com/rust-lang/crates.io-index" 2222 - checksum = "eeb39ec0dacc89541b6eced815ab9e97f6b7d44078628abb090c6437763fd050" 2223 - dependencies = [ 2224 - "proc-macro2", 2225 - "quote", 2226 - "syn 1.0.107", 2227 - ] 2228 - 2229 - [[package]] 2230 - name = "geo" 2231 - version = "0.28.0" 2232 - source = "registry+https://github.com/rust-lang/crates.io-index" 2233 - checksum = "f811f663912a69249fa620dcd2a005db7254529da2d8a0b23942e81f47084501" 2234 - dependencies = [ 2235 - "earcutr", 2236 - "float_next_after", 2237 - "geo-types", 2238 - "geographiclib-rs", 2239 - "log", 2240 - "num-traits", 2241 - "robust", 2242 - "rstar", 2243 - "spade", 2244 - ] 2245 - 2246 - [[package]] 2247 - name = "geo-types" 2248 - version = "0.7.13" 2249 - source = "registry+https://github.com/rust-lang/crates.io-index" 2250 - checksum = "9ff16065e5720f376fbced200a5ae0f47ace85fd70b7e54269790281353b6d61" 2251 - dependencies = [ 2252 - "approx", 2253 - "num-traits", 2254 - "rstar", 2255 - "serde", 2256 - ] 2257 - 2258 - [[package]] 2259 - name = "geographiclib-rs" 2260 - version = "0.2.3" 2261 - source = "registry+https://github.com/rust-lang/crates.io-index" 2262 - checksum = "8ea804e7bd3c6a4ca6a01edfa35231557a8a81d4d3f3e1e2b650d028c42592be" 2263 - dependencies = [ 2264 - "lazy_static", 2265 - ] 2266 - 2267 - [[package]] 2268 - name = "geohash" 2269 - version = "0.13.1" 2270 - source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "0fb94b1a65401d6cbf22958a9040aa364812c26674f841bee538b12c135db1e6" 2272 - dependencies = [ 2273 - "geo-types", 2274 - "libm", 2275 - ] 2276 - 2277 - [[package]] 2278 - name = "getopts" 2279 - version = "0.2.21" 2280 - source = "registry+https://github.com/rust-lang/crates.io-index" 2281 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 2282 - dependencies = [ 2283 - "unicode-width", 2284 - ] 2285 - 2286 - [[package]] 2287 - name = "getrandom" 2288 - version = "0.1.16" 2289 - source = "registry+https://github.com/rust-lang/crates.io-index" 2290 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2291 - dependencies = [ 2292 - "cfg-if", 2293 - "libc", 2294 - "wasi 0.9.0+wasi-snapshot-preview1", 2295 - ] 2296 - 2297 - [[package]] 2298 - name = "getrandom" 2299 - version = "0.2.11" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 2302 - dependencies = [ 2303 - "cfg-if", 2304 - "js-sys", 2305 - "libc", 2306 - "wasi 0.11.0+wasi-snapshot-preview1", 2307 - "wasm-bindgen", 2308 - ] 2309 - 2310 - [[package]] 2311 - name = "getset" 2312 - version = "0.1.2" 2313 - source = "registry+https://github.com/rust-lang/crates.io-index" 2314 - checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 2315 - dependencies = [ 2316 - "proc-macro-error", 2317 - "proc-macro2", 2318 - "quote", 2319 - "syn 1.0.107", 2320 - ] 2321 - 2322 - [[package]] 2323 - name = "gimli" 2324 - version = "0.27.0" 2325 - source = "registry+https://github.com/rust-lang/crates.io-index" 2326 - checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793" 2327 - 2328 - [[package]] 2329 - name = "glob" 2330 - version = "0.3.1" 2331 - source = "registry+https://github.com/rust-lang/crates.io-index" 2332 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2333 - 2334 - [[package]] 2335 - name = "h2" 2336 - version = "0.3.26" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2339 - dependencies = [ 2340 - "bytes", 2341 - "fnv", 2342 - "futures-core", 2343 - "futures-sink", 2344 - "futures-util", 2345 - "http 0.2.9", 2346 - "indexmap 2.6.0", 2347 - "slab", 2348 - "tokio", 2349 - "tokio-util", 2350 - "tracing", 2351 - ] 2352 - 2353 - [[package]] 2354 - name = "h2" 2355 - version = "0.4.4" 2356 - source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" 2358 - dependencies = [ 2359 - "bytes", 2360 - "fnv", 2361 - "futures-core", 2362 - "futures-sink", 2363 - "futures-util", 2364 - "http 1.0.0", 2365 - "indexmap 2.6.0", 2366 - "slab", 2367 - "tokio", 2368 - "tokio-util", 2369 - "tracing", 2370 - ] 2371 - 2372 - [[package]] 2373 - name = "half" 2374 - version = "1.8.2" 2375 - source = "registry+https://github.com/rust-lang/crates.io-index" 2376 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 2377 - 2378 - [[package]] 2379 - name = "half" 2380 - version = "2.4.1" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 2383 - dependencies = [ 2384 - "cfg-if", 2385 - "crunchy", 2386 - "num-traits", 2387 - "serde", 2388 - ] 2389 - 2390 - [[package]] 2391 - name = "hash32" 2392 - version = "0.3.1" 2393 - source = "registry+https://github.com/rust-lang/crates.io-index" 2394 - checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 2395 - dependencies = [ 2396 - "byteorder", 2397 - ] 2398 - 2399 - [[package]] 2400 - name = "hashbrown" 2401 - version = "0.12.3" 2402 - source = "registry+https://github.com/rust-lang/crates.io-index" 2403 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2404 - 2405 - [[package]] 2406 - name = "hashbrown" 2407 - version = "0.13.2" 2408 - source = "registry+https://github.com/rust-lang/crates.io-index" 2409 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2410 - 2411 - [[package]] 2412 - name = "hashbrown" 2413 - version = "0.14.2" 2414 - source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 2416 - dependencies = [ 2417 - "ahash", 2418 - "allocator-api2", 2419 - ] 2420 - 2421 - [[package]] 2422 - name = "hashbrown" 2423 - version = "0.15.0" 2424 - source = "registry+https://github.com/rust-lang/crates.io-index" 2425 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 2426 - 2427 - [[package]] 2428 - name = "hashring" 2429 - version = "0.3.6" 2430 - source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "43bfd649ac5e0f82ae98d547450f1d31af49742be255b5380c61fc8513b9df11" 2432 - dependencies = [ 2433 - "siphasher", 2434 - ] 2435 - 2436 - [[package]] 2437 - name = "hdrhistogram" 2438 - version = "7.5.2" 2439 - source = "registry+https://github.com/rust-lang/crates.io-index" 2440 - checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8" 2441 - dependencies = [ 2442 - "base64 0.13.1", 2443 - "byteorder", 2444 - "flate2", 2445 - "nom", 2446 - "num-traits", 2447 - ] 2448 - 2449 - [[package]] 2450 - name = "heapless" 2451 - version = "0.8.0" 2452 - source = "registry+https://github.com/rust-lang/crates.io-index" 2453 - checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" 2454 - dependencies = [ 2455 - "hash32", 2456 - "stable_deref_trait", 2457 - ] 2458 - 2459 - [[package]] 2460 - name = "heck" 2461 - version = "0.4.1" 2462 - source = "registry+https://github.com/rust-lang/crates.io-index" 2463 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2464 - 2465 - [[package]] 2466 - name = "heck" 2467 - version = "0.5.0" 2468 - source = "registry+https://github.com/rust-lang/crates.io-index" 2469 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2470 - 2471 - [[package]] 2472 - name = "hermit-abi" 2473 - version = "0.1.19" 2474 - source = "registry+https://github.com/rust-lang/crates.io-index" 2475 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 2476 - dependencies = [ 2477 - "libc", 2478 - ] 2479 - 2480 - [[package]] 2481 - name = "hermit-abi" 2482 - version = "0.3.9" 2483 - source = "registry+https://github.com/rust-lang/crates.io-index" 2484 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2485 - 2486 - [[package]] 2487 - name = "hex" 2488 - version = "0.4.3" 2489 - source = "registry+https://github.com/rust-lang/crates.io-index" 2490 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2491 - 2492 - [[package]] 2493 - name = "http" 2494 - version = "0.2.9" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 2497 - dependencies = [ 2498 - "bytes", 2499 - "fnv", 2500 - "itoa", 2501 - ] 2502 - 2503 - [[package]] 2504 - name = "http" 2505 - version = "1.0.0" 2506 - source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" 2508 - dependencies = [ 2509 - "bytes", 2510 - "fnv", 2511 - "itoa", 2512 - ] 2513 - 2514 - [[package]] 2515 - name = "http-body" 2516 - version = "0.4.5" 2517 - source = "registry+https://github.com/rust-lang/crates.io-index" 2518 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2519 - dependencies = [ 2520 - "bytes", 2521 - "http 0.2.9", 2522 - "pin-project-lite", 2523 - ] 2524 - 2525 - [[package]] 2526 - name = "http-body" 2527 - version = "1.0.0" 2528 - source = "registry+https://github.com/rust-lang/crates.io-index" 2529 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2530 - dependencies = [ 2531 - "bytes", 2532 - "http 1.0.0", 2533 - ] 2534 - 2535 - [[package]] 2536 - name = "http-body-util" 2537 - version = "0.1.1" 2538 - source = "registry+https://github.com/rust-lang/crates.io-index" 2539 - checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" 2540 - dependencies = [ 2541 - "bytes", 2542 - "futures-core", 2543 - "http 1.0.0", 2544 - "http-body 1.0.0", 2545 - "pin-project-lite", 2546 - ] 2547 - 2548 - [[package]] 2549 - name = "http-range" 2550 - version = "0.1.5" 2551 - source = "registry+https://github.com/rust-lang/crates.io-index" 2552 - checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 2553 - 2554 - [[package]] 2555 - name = "http-serde" 2556 - version = "2.0.0" 2557 - source = "registry+https://github.com/rust-lang/crates.io-index" 2558 - checksum = "7fb7239a6d49eda628c2dfdd7e982c59b0c3f0fb99ce45c4237f02a520030688" 2559 - dependencies = [ 2560 - "http 1.0.0", 2561 - "serde", 2562 - ] 2563 - 2564 - [[package]] 2565 - name = "httparse" 2566 - version = "1.8.0" 2567 - source = "registry+https://github.com/rust-lang/crates.io-index" 2568 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2569 - 2570 - [[package]] 2571 - name = "httpdate" 2572 - version = "1.0.2" 2573 - source = "registry+https://github.com/rust-lang/crates.io-index" 2574 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2575 - 2576 - [[package]] 2577 - name = "humantime" 2578 - version = "2.1.0" 2579 - source = "registry+https://github.com/rust-lang/crates.io-index" 2580 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2581 - 2582 - [[package]] 2583 - name = "hyper" 2584 - version = "0.14.26" 2585 - source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 2587 - dependencies = [ 2588 - "bytes", 2589 - "futures-channel", 2590 - "futures-core", 2591 - "futures-util", 2592 - "h2 0.3.26", 2593 - "http 0.2.9", 2594 - "http-body 0.4.5", 2595 - "httparse", 2596 - "httpdate", 2597 - "itoa", 2598 - "pin-project-lite", 2599 - "socket2 0.4.9", 2600 - "tokio", 2601 - "tower-service", 2602 - "tracing", 2603 - "want", 2604 - ] 2605 - 2606 - [[package]] 2607 - name = "hyper" 2608 - version = "1.4.1" 2609 - source = "registry+https://github.com/rust-lang/crates.io-index" 2610 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 2611 - dependencies = [ 2612 - "bytes", 2613 - "futures-channel", 2614 - "futures-util", 2615 - "h2 0.4.4", 2616 - "http 1.0.0", 2617 - "http-body 1.0.0", 2618 - "httparse", 2619 - "httpdate", 2620 - "itoa", 2621 - "pin-project-lite", 2622 - "smallvec", 2623 - "tokio", 2624 - "want", 2625 - ] 2626 - 2627 - [[package]] 2628 - name = "hyper-rustls" 2629 - version = "0.24.2" 2630 - source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2632 - dependencies = [ 2633 - "futures-util", 2634 - "http 0.2.9", 2635 - "hyper 0.14.26", 2636 - "rustls 0.21.11", 2637 - "tokio", 2638 - "tokio-rustls 0.24.1", 2639 - ] 2640 - 2641 - [[package]] 2642 - name = "hyper-rustls" 2643 - version = "0.27.2" 2644 - source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 2646 - dependencies = [ 2647 - "futures-util", 2648 - "http 1.0.0", 2649 - "hyper 1.4.1", 2650 - "hyper-util", 2651 - "rustls 0.23.14", 2652 - "rustls-native-certs 0.7.0", 2653 - "rustls-pki-types", 2654 - "tokio", 2655 - "tokio-rustls 0.26.0", 2656 - "tower-service", 2657 - "webpki-roots 0.26.1", 2658 - ] 2659 - 2660 - [[package]] 2661 - name = "hyper-timeout" 2662 - version = "0.4.1" 2663 - source = "registry+https://github.com/rust-lang/crates.io-index" 2664 - checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2665 - dependencies = [ 2666 - "hyper 0.14.26", 2667 - "pin-project-lite", 2668 - "tokio", 2669 - "tokio-io-timeout", 2670 - ] 2671 - 2672 - [[package]] 2673 - name = "hyper-timeout" 2674 - version = "0.5.1" 2675 - source = "registry+https://github.com/rust-lang/crates.io-index" 2676 - checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" 2677 - dependencies = [ 2678 - "hyper 1.4.1", 2679 - "hyper-util", 2680 - "pin-project-lite", 2681 - "tokio", 2682 - "tower-service", 2683 - ] 2684 - 2685 - [[package]] 2686 - name = "hyper-util" 2687 - version = "0.1.6" 2688 - source = "registry+https://github.com/rust-lang/crates.io-index" 2689 - checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" 2690 - dependencies = [ 2691 - "bytes", 2692 - "futures-channel", 2693 - "futures-util", 2694 - "http 1.0.0", 2695 - "http-body 1.0.0", 2696 - "hyper 1.4.1", 2697 - "pin-project-lite", 2698 - "socket2 0.5.5", 2699 - "tokio", 2700 - "tower 0.4.13", 2701 - "tower-service", 2702 - "tracing", 2703 - ] 2704 - 2705 - [[package]] 2706 - name = "iana-time-zone" 2707 - version = "0.1.53" 2708 - source = "registry+https://github.com/rust-lang/crates.io-index" 2709 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 2710 - dependencies = [ 2711 - "android_system_properties", 2712 - "core-foundation-sys", 2713 - "iana-time-zone-haiku", 2714 - "js-sys", 2715 - "wasm-bindgen", 2716 - "winapi", 2717 - ] 2718 - 2719 - [[package]] 2720 - name = "iana-time-zone-haiku" 2721 - version = "0.1.1" 2722 - source = "registry+https://github.com/rust-lang/crates.io-index" 2723 - checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 2724 - dependencies = [ 2725 - "cxx", 2726 - "cxx-build", 2727 - ] 2728 - 2729 - [[package]] 2730 - name = "ident_case" 2731 - version = "1.0.1" 2732 - source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2734 - 2735 - [[package]] 2736 - name = "idna" 2737 - version = "0.5.0" 2738 - source = "registry+https://github.com/rust-lang/crates.io-index" 2739 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2740 - dependencies = [ 2741 - "unicode-bidi", 2742 - "unicode-normalization", 2743 - ] 2744 - 2745 - [[package]] 2746 - name = "impl-more" 2747 - version = "0.1.6" 2748 - source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" 2750 - 2751 - [[package]] 2752 - name = "indexmap" 2753 - version = "1.9.2" 2754 - source = "registry+https://github.com/rust-lang/crates.io-index" 2755 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 2756 - dependencies = [ 2757 - "autocfg", 2758 - "hashbrown 0.12.3", 2759 - "serde", 2760 - ] 2761 - 2762 - [[package]] 2763 - name = "indexmap" 2764 - version = "2.6.0" 2765 - source = "registry+https://github.com/rust-lang/crates.io-index" 2766 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 2767 - dependencies = [ 2768 - "equivalent", 2769 - "hashbrown 0.15.0", 2770 - "serde", 2771 - ] 2772 - 2773 - [[package]] 2774 - name = "indicatif" 2775 - version = "0.17.8" 2776 - source = "registry+https://github.com/rust-lang/crates.io-index" 2777 - checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 2778 - dependencies = [ 2779 - "console", 2780 - "instant", 2781 - "number_prefix", 2782 - "portable-atomic", 2783 - "unicode-width", 2784 - ] 2785 - 2786 - [[package]] 2787 - name = "inferno" 2788 - version = "0.11.18" 2789 - source = "registry+https://github.com/rust-lang/crates.io-index" 2790 - checksum = "abfb2e51b23c338595ae0b6bdaaa7a4a8b860b8d788a4331cb07b50fe5dea71b" 2791 - dependencies = [ 2792 - "ahash", 2793 - "indexmap 2.6.0", 2794 - "is-terminal", 2795 - "itoa", 2796 - "log", 2797 - "num-format", 2798 - "once_cell", 2799 - "quick-xml 0.26.0", 2800 - "rgb", 2801 - "str_stack", 2802 - ] 2803 - 2804 - [[package]] 2805 - name = "instant" 2806 - version = "0.1.12" 2807 - source = "registry+https://github.com/rust-lang/crates.io-index" 2808 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2809 - dependencies = [ 2810 - "cfg-if", 2811 - ] 2812 - 2813 - [[package]] 2814 - name = "inventory" 2815 - version = "0.3.14" 2816 - source = "registry+https://github.com/rust-lang/crates.io-index" 2817 - checksum = "c8573b2b1fb643a372c73b23f4da5f888677feef3305146d68a539250a9bccc7" 2818 - 2819 - [[package]] 2820 - name = "io" 2821 - version = "0.0.0" 2822 - dependencies = [ 2823 - "atomicwrites", 2824 - "bincode", 2825 - "nix 0.29.0", 2826 - "semver", 2827 - "serde", 2828 - "serde_json", 2829 - "thiserror", 2830 - ] 2831 - 2832 - [[package]] 2833 - name = "io-lifetimes" 2834 - version = "1.0.11" 2835 - source = "registry+https://github.com/rust-lang/crates.io-index" 2836 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2837 - dependencies = [ 2838 - "hermit-abi 0.3.9", 2839 - "libc", 2840 - "windows-sys 0.48.0", 2841 - ] 2842 - 2843 - [[package]] 2844 - name = "io-uring" 2845 - version = "0.7.0" 2846 - source = "registry+https://github.com/rust-lang/crates.io-index" 2847 - checksum = "5e81902f02e8d5323264098a3db443ca31f179a8d38d9cd9325f19cea31b9b02" 2848 - dependencies = [ 2849 - "bitflags 2.4.1", 2850 - "cfg-if", 2851 - "libc", 2852 - ] 2853 - 2854 - [[package]] 2855 - name = "ipnet" 2856 - version = "2.7.0" 2857 - source = "registry+https://github.com/rust-lang/crates.io-index" 2858 - checksum = "11b0d96e660696543b251e58030cf9787df56da39dab19ad60eae7353040917e" 2859 - 2860 - [[package]] 2861 - name = "irg-kvariants" 2862 - version = "0.1.1" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "ef2af7c331f2536964a32b78a7d2e0963d78b42f4a76323b16cc7d94b1ddce26" 2865 - dependencies = [ 2866 - "csv", 2867 - "once_cell", 2868 - "serde", 2869 - ] 2870 - 2871 - [[package]] 2872 - name = "is-terminal" 2873 - version = "0.4.6" 2874 - source = "registry+https://github.com/rust-lang/crates.io-index" 2875 - checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 2876 - dependencies = [ 2877 - "hermit-abi 0.3.9", 2878 - "io-lifetimes", 2879 - "rustix 0.37.27", 2880 - "windows-sys 0.45.0", 2881 - ] 2882 - 2883 - [[package]] 2884 - name = "is_sorted" 2885 - version = "0.1.1" 2886 - source = "registry+https://github.com/rust-lang/crates.io-index" 2887 - checksum = "357376465c37db3372ef6a00585d336ed3d0f11d4345eef77ebcb05865392b21" 2888 - 2889 - [[package]] 2890 - name = "issues" 2891 - version = "0.0.0" 2892 - dependencies = [ 2893 - "chrono", 2894 - "dashmap", 2895 - "http 1.0.0", 2896 - "http-serde", 2897 - "schemars", 2898 - "serde", 2899 - "serde_json", 2900 - "serial_test", 2901 - ] 2902 - 2903 - [[package]] 2904 - name = "itertools" 2905 - version = "0.10.5" 2906 - source = "registry+https://github.com/rust-lang/crates.io-index" 2907 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2908 - dependencies = [ 2909 - "either", 2910 - ] 2911 - 2912 - [[package]] 2913 - name = "itertools" 2914 - version = "0.12.1" 2915 - source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2917 - dependencies = [ 2918 - "either", 2919 - ] 2920 - 2921 - [[package]] 2922 - name = "itertools" 2923 - version = "0.13.0" 2924 - source = "registry+https://github.com/rust-lang/crates.io-index" 2925 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 2926 - dependencies = [ 2927 - "either", 2928 - ] 2929 - 2930 - [[package]] 2931 - name = "itoa" 2932 - version = "1.0.5" 2933 - source = "registry+https://github.com/rust-lang/crates.io-index" 2934 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 2935 - 2936 - [[package]] 2937 - name = "jieba-rs" 2938 - version = "0.7.0" 2939 - source = "registry+https://github.com/rust-lang/crates.io-index" 2940 - checksum = "c1e2b0210dc78b49337af9e49d7ae41a39dceac6e5985613f1cf7763e2f76a25" 2941 - dependencies = [ 2942 - "cedarwood", 2943 - "derive_builder", 2944 - "fxhash", 2945 - "lazy_static", 2946 - "phf", 2947 - "phf_codegen", 2948 - "regex", 2949 - ] 2950 - 2951 - [[package]] 2952 - name = "jobserver" 2953 - version = "0.1.31" 2954 - source = "registry+https://github.com/rust-lang/crates.io-index" 2955 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2956 - dependencies = [ 2957 - "libc", 2958 - ] 2959 - 2960 - [[package]] 2961 - name = "js-sys" 2962 - version = "0.3.69" 2963 - source = "registry+https://github.com/rust-lang/crates.io-index" 2964 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2965 - dependencies = [ 2966 - "wasm-bindgen", 2967 - ] 2968 - 2969 - [[package]] 2970 - name = "json" 2971 - version = "0.12.4" 2972 - source = "registry+https://github.com/rust-lang/crates.io-index" 2973 - checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" 2974 - 2975 - [[package]] 2976 - name = "json5" 2977 - version = "0.4.1" 2978 - source = "registry+https://github.com/rust-lang/crates.io-index" 2979 - checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" 2980 - dependencies = [ 2981 - "pest", 2982 - "pest_derive", 2983 - "serde", 2984 - ] 2985 - 2986 - [[package]] 2987 - name = "jsonwebtoken" 2988 - version = "9.3.0" 2989 - source = "registry+https://github.com/rust-lang/crates.io-index" 2990 - checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 2991 - dependencies = [ 2992 - "base64 0.21.0", 2993 - "js-sys", 2994 - "pem", 2995 - "ring 0.17.5", 2996 - "serde", 2997 - "serde_json", 2998 - "simple_asn1", 2999 - ] 3000 - 3001 - [[package]] 3002 - name = "kanaria" 3003 - version = "0.2.0" 3004 - source = "registry+https://github.com/rust-lang/crates.io-index" 3005 - checksum = "c0f9d9652540055ac4fded998a73aca97d965899077ab1212587437da44196ff" 3006 - dependencies = [ 3007 - "bitflags 1.3.2", 3008 - ] 3009 - 3010 - [[package]] 3011 - name = "language-tags" 3012 - version = "0.3.2" 3013 - source = "registry+https://github.com/rust-lang/crates.io-index" 3014 - checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 3015 - 3016 - [[package]] 3017 - name = "lazy_static" 3018 - version = "1.5.0" 3019 - source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3021 - 3022 - [[package]] 3023 - name = "lazycell" 3024 - version = "1.3.0" 3025 - source = "registry+https://github.com/rust-lang/crates.io-index" 3026 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 3027 - 3028 - [[package]] 3029 - name = "libc" 3030 - version = "0.2.159" 3031 - source = "registry+https://github.com/rust-lang/crates.io-index" 3032 - checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" 3033 - 3034 - [[package]] 3035 - name = "libflate" 3036 - version = "1.4.0" 3037 - source = "registry+https://github.com/rust-lang/crates.io-index" 3038 - checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18" 3039 - dependencies = [ 3040 - "adler32", 3041 - "crc32fast", 3042 - "libflate_lz77", 3043 - ] 3044 - 3045 - [[package]] 3046 - name = "libflate_lz77" 3047 - version = "1.2.0" 3048 - source = "registry+https://github.com/rust-lang/crates.io-index" 3049 - checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf" 3050 - dependencies = [ 3051 - "rle-decode-fast", 3052 - ] 3053 - 3054 - [[package]] 3055 - name = "libloading" 3056 - version = "0.7.4" 3057 - source = "registry+https://github.com/rust-lang/crates.io-index" 3058 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 3059 - dependencies = [ 3060 - "cfg-if", 3061 - "winapi", 3062 - ] 3063 - 3064 - [[package]] 3065 - name = "libm" 3066 - version = "0.2.6" 3067 - source = "registry+https://github.com/rust-lang/crates.io-index" 3068 - checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 3069 - 3070 - [[package]] 3071 - name = "librocksdb-sys" 3072 - version = "0.16.0+8.10.0" 3073 - source = "registry+https://github.com/rust-lang/crates.io-index" 3074 - checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" 3075 - dependencies = [ 3076 - "bindgen", 3077 - "bzip2-sys", 3078 - "cc", 3079 - "glob", 3080 - "libc", 3081 - "libz-sys", 3082 - "lz4-sys", 3083 - ] 3084 - 3085 - [[package]] 3086 - name = "libz-sys" 3087 - version = "1.1.8" 3088 - source = "registry+https://github.com/rust-lang/crates.io-index" 3089 - checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 3090 - dependencies = [ 3091 - "cc", 3092 - "pkg-config", 3093 - "vcpkg", 3094 - ] 3095 - 3096 - [[package]] 3097 - name = "lindera" 3098 - version = "0.32.2" 3099 - source = "registry+https://github.com/rust-lang/crates.io-index" 3100 - checksum = "c6cbc1aad631a7da0a7e9bc4b8669fa92ac9ca8eeb7b35a807376dd3034443ff" 3101 - dependencies = [ 3102 - "lindera-analyzer", 3103 - "lindera-core", 3104 - "lindera-dictionary", 3105 - "lindera-filter", 3106 - "lindera-tokenizer", 3107 - ] 3108 - 3109 - [[package]] 3110 - name = "lindera-analyzer" 3111 - version = "0.32.2" 3112 - source = "registry+https://github.com/rust-lang/crates.io-index" 3113 - checksum = "74508ffbb24e36905d1718b261460e378a748029b07bcd7e06f0d18500b8194c" 3114 - dependencies = [ 3115 - "anyhow", 3116 - "bincode", 3117 - "byteorder", 3118 - "encoding", 3119 - "kanaria", 3120 - "lindera-cc-cedict-builder", 3121 - "lindera-core", 3122 - "lindera-dictionary", 3123 - "lindera-filter", 3124 - "lindera-ipadic-builder", 3125 - "lindera-ko-dic-builder", 3126 - "lindera-tokenizer", 3127 - "lindera-unidic-builder", 3128 - "once_cell", 3129 - "regex", 3130 - "serde", 3131 - "serde_json", 3132 - "thiserror", 3133 - "unicode-blocks", 3134 - "unicode-normalization", 3135 - "unicode-segmentation", 3136 - "yada", 3137 - ] 3138 - 3139 - [[package]] 3140 - name = "lindera-assets" 3141 - version = "0.32.2" 3142 - source = "registry+https://github.com/rust-lang/crates.io-index" 3143 - checksum = "6a677c371ecb3bd02b751be306ea09876cd47cf426303ad5f10a3fd6f9a4ded6" 3144 - dependencies = [ 3145 - "encoding", 3146 - "flate2", 3147 - "lindera-core", 3148 - "tar", 3149 - "ureq", 3150 - ] 3151 - 3152 - [[package]] 3153 - name = "lindera-cc-cedict" 3154 - version = "0.32.2" 3155 - source = "registry+https://github.com/rust-lang/crates.io-index" 3156 - checksum = "c35944000d05a177e981f037b5f0805f283b32f05a0c35713003bef136ca8cb4" 3157 - dependencies = [ 3158 - "bincode", 3159 - "byteorder", 3160 - "lindera-cc-cedict-builder", 3161 - "lindera-core", 3162 - "lindera-decompress", 3163 - "once_cell", 3164 - ] 3165 - 3166 - [[package]] 3167 - name = "lindera-cc-cedict-builder" 3168 - version = "0.32.2" 3169 - source = "registry+https://github.com/rust-lang/crates.io-index" 3170 - checksum = "85b8f642bc9c9130682569975772a17336c6aab26d11fc0f823f3e663167ace6" 3171 - dependencies = [ 3172 - "anyhow", 3173 - "lindera-core", 3174 - "lindera-decompress", 3175 - "lindera-dictionary-builder", 3176 - ] 3177 - 3178 - [[package]] 3179 - name = "lindera-compress" 3180 - version = "0.32.2" 3181 - source = "registry+https://github.com/rust-lang/crates.io-index" 3182 - checksum = "a7825d8d63592aa5727d67bd209170ac82df56c369533efbf0ddbac277bb68ec" 3183 - dependencies = [ 3184 - "anyhow", 3185 - "flate2", 3186 - "lindera-decompress", 3187 - ] 3188 - 3189 - [[package]] 3190 - name = "lindera-core" 3191 - version = "0.32.2" 3192 - source = "registry+https://github.com/rust-lang/crates.io-index" 3193 - checksum = "0c28191456debc98af6aa5f7db77872471983e9fa2a737b1c232b6ef543aed62" 3194 - dependencies = [ 3195 - "anyhow", 3196 - "bincode", 3197 - "byteorder", 3198 - "encoding_rs", 3199 - "log", 3200 - "once_cell", 3201 - "serde", 3202 - "thiserror", 3203 - "yada", 3204 - ] 3205 - 3206 - [[package]] 3207 - name = "lindera-decompress" 3208 - version = "0.32.2" 3209 - source = "registry+https://github.com/rust-lang/crates.io-index" 3210 - checksum = "4788a1ead2f63f3fc2888109272921dedd86a87b7d0bf05e9daab46600daac51" 3211 - dependencies = [ 3212 - "anyhow", 3213 - "flate2", 3214 - "serde", 3215 - ] 3216 - 3217 - [[package]] 3218 - name = "lindera-dictionary" 3219 - version = "0.32.2" 3220 - source = "registry+https://github.com/rust-lang/crates.io-index" 3221 - checksum = "bdf5f91725e32b9a21b1656baa7030766c9bafc4de4b4ddeb8ffdde7224dd2f6" 3222 - dependencies = [ 3223 - "anyhow", 3224 - "bincode", 3225 - "byteorder", 3226 - "lindera-cc-cedict", 3227 - "lindera-cc-cedict-builder", 3228 - "lindera-core", 3229 - "lindera-ipadic", 3230 - "lindera-ipadic-builder", 3231 - "lindera-ipadic-neologd", 3232 - "lindera-ipadic-neologd-builder", 3233 - "lindera-ko-dic", 3234 - "lindera-ko-dic-builder", 3235 - "lindera-unidic", 3236 - "lindera-unidic-builder", 3237 - "serde", 3238 - "strum", 3239 - "strum_macros", 3240 - ] 3241 - 3242 - [[package]] 3243 - name = "lindera-dictionary-builder" 3244 - version = "0.32.2" 3245 - source = "registry+https://github.com/rust-lang/crates.io-index" 3246 - checksum = "e41f00ba7ac541b0ffd8c30e7a73f2dd197546cc5780462ec4f2e4782945a780" 3247 - dependencies = [ 3248 - "anyhow", 3249 - "bincode", 3250 - "byteorder", 3251 - "csv", 3252 - "derive_builder", 3253 - "encoding", 3254 - "encoding_rs", 3255 - "encoding_rs_io", 3256 - "glob", 3257 - "lindera-compress", 3258 - "lindera-core", 3259 - "lindera-decompress", 3260 - "log", 3261 - "yada", 3262 - ] 3263 - 3264 - [[package]] 3265 - name = "lindera-filter" 3266 - version = "0.32.2" 3267 - source = "registry+https://github.com/rust-lang/crates.io-index" 3268 - checksum = "273d27e01e1377e2647314a4a5b9bdca4b52a867b319069ebae8c10191146eca" 3269 - dependencies = [ 3270 - "anyhow", 3271 - "csv", 3272 - "kanaria", 3273 - "lindera-cc-cedict-builder", 3274 - "lindera-core", 3275 - "lindera-dictionary", 3276 - "lindera-ipadic-builder", 3277 - "lindera-ko-dic-builder", 3278 - "lindera-unidic-builder", 3279 - "once_cell", 3280 - "regex", 3281 - "serde", 3282 - "serde_json", 3283 - "unicode-blocks", 3284 - "unicode-normalization", 3285 - "unicode-segmentation", 3286 - "yada", 3287 - ] 3288 - 3289 - [[package]] 3290 - name = "lindera-ipadic" 3291 - version = "0.32.2" 3292 - source = "registry+https://github.com/rust-lang/crates.io-index" 3293 - checksum = "b97a52ff0af5acb700093badaf7078051ab9ffd9071859724445a60193995f1f" 3294 - dependencies = [ 3295 - "bincode", 3296 - "byteorder", 3297 - "lindera-core", 3298 - "lindera-decompress", 3299 - "lindera-ipadic-builder", 3300 - "once_cell", 3301 - ] 3302 - 3303 - [[package]] 3304 - name = "lindera-ipadic-builder" 3305 - version = "0.32.2" 3306 - source = "registry+https://github.com/rust-lang/crates.io-index" 3307 - checksum = "bf5031c52686128db13f774b2c5a8abfd52b4cc1f904041d8411aa19d630ce4d" 3308 - dependencies = [ 3309 - "anyhow", 3310 - "lindera-core", 3311 - "lindera-decompress", 3312 - "lindera-dictionary-builder", 3313 - ] 3314 - 3315 - [[package]] 3316 - name = "lindera-ipadic-neologd" 3317 - version = "0.32.2" 3318 - source = "registry+https://github.com/rust-lang/crates.io-index" 3319 - checksum = "d6b36764b27b169aa11d24888141f206a6c246a5b195c1e67127485bac512fb6" 3320 - dependencies = [ 3321 - "bincode", 3322 - "byteorder", 3323 - "lindera-core", 3324 - "lindera-decompress", 3325 - "lindera-ipadic-neologd-builder", 3326 - "once_cell", 3327 - ] 3328 - 3329 - [[package]] 3330 - name = "lindera-ipadic-neologd-builder" 3331 - version = "0.32.2" 3332 - source = "registry+https://github.com/rust-lang/crates.io-index" 3333 - checksum = "abf36e40ace904741efdd883ed5c4dba6425f65156a0fb5d3f73a386335950dc" 3334 - dependencies = [ 3335 - "anyhow", 3336 - "lindera-core", 3337 - "lindera-decompress", 3338 - "lindera-dictionary-builder", 3339 - ] 3340 - 3341 - [[package]] 3342 - name = "lindera-ko-dic" 3343 - version = "0.32.2" 3344 - source = "registry+https://github.com/rust-lang/crates.io-index" 3345 - checksum = "4c92a1a3564b531953f0238cbcea392f2905f7b27b449978cf9e702a80e1086d" 3346 - dependencies = [ 3347 - "bincode", 3348 - "byteorder", 3349 - "lindera-assets", 3350 - "lindera-core", 3351 - "lindera-decompress", 3352 - "lindera-ko-dic-builder", 3353 - "once_cell", 3354 - ] 3355 - 3356 - [[package]] 3357 - name = "lindera-ko-dic-builder" 3358 - version = "0.32.2" 3359 - source = "registry+https://github.com/rust-lang/crates.io-index" 3360 - checksum = "9f2c60425abc1548570c2568858f74a1f042105ecd89faa39c651b4315350fd9" 3361 - dependencies = [ 3362 - "anyhow", 3363 - "lindera-core", 3364 - "lindera-decompress", 3365 - "lindera-dictionary-builder", 3366 - ] 3367 - 3368 - [[package]] 3369 - name = "lindera-tokenizer" 3370 - version = "0.32.2" 3371 - source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "903e558981bcb6f59870aa7d6b4bcb09e8f7db778886a6a70f67fd74c9fa2ca3" 3373 - dependencies = [ 3374 - "bincode", 3375 - "lindera-core", 3376 - "lindera-dictionary", 3377 - "once_cell", 3378 - "serde", 3379 - "serde_json", 3380 - ] 3381 - 3382 - [[package]] 3383 - name = "lindera-unidic" 3384 - version = "0.32.2" 3385 - source = "registry+https://github.com/rust-lang/crates.io-index" 3386 - checksum = "d227c3ce9cbd905f865c46c65a0470fd04e89b71104d7f92baa71a212ffe1d4b" 3387 - dependencies = [ 3388 - "bincode", 3389 - "byteorder", 3390 - "lindera-assets", 3391 - "lindera-core", 3392 - "lindera-decompress", 3393 - "lindera-unidic-builder", 3394 - "once_cell", 3395 - ] 3396 - 3397 - [[package]] 3398 - name = "lindera-unidic-builder" 3399 - version = "0.32.2" 3400 - source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "99e2c50015c242e02c451acb6748667ac6fd1d3d667cd7db48cd89e2f2d2377e" 3402 - dependencies = [ 3403 - "anyhow", 3404 - "lindera-core", 3405 - "lindera-decompress", 3406 - "lindera-dictionary-builder", 3407 - ] 3408 - 3409 - [[package]] 3410 - name = "link-cplusplus" 3411 - version = "1.0.8" 3412 - source = "registry+https://github.com/rust-lang/crates.io-index" 3413 - checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 3414 - dependencies = [ 3415 - "cc", 3416 - ] 3417 - 3418 - [[package]] 3419 - name = "linked-hash-map" 3420 - version = "0.5.6" 3421 - source = "registry+https://github.com/rust-lang/crates.io-index" 3422 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3423 - 3424 - [[package]] 3425 - name = "linux-raw-sys" 3426 - version = "0.3.8" 3427 - source = "registry+https://github.com/rust-lang/crates.io-index" 3428 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 3429 - 3430 - [[package]] 3431 - name = "linux-raw-sys" 3432 - version = "0.4.14" 3433 - source = "registry+https://github.com/rust-lang/crates.io-index" 3434 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 3435 - 3436 - [[package]] 3437 - name = "local-channel" 3438 - version = "0.1.3" 3439 - source = "registry+https://github.com/rust-lang/crates.io-index" 3440 - checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" 3441 - dependencies = [ 3442 - "futures-core", 3443 - "futures-sink", 3444 - "futures-util", 3445 - "local-waker", 3446 - ] 3447 - 3448 - [[package]] 3449 - name = "local-waker" 3450 - version = "0.1.3" 3451 - source = "registry+https://github.com/rust-lang/crates.io-index" 3452 - checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" 3453 - 3454 - [[package]] 3455 - name = "lock_api" 3456 - version = "0.4.11" 3457 - source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 3459 - dependencies = [ 3460 - "autocfg", 3461 - "scopeguard", 3462 - "serde", 3463 - ] 3464 - 3465 - [[package]] 3466 - name = "log" 3467 - version = "0.4.22" 3468 - source = "registry+https://github.com/rust-lang/crates.io-index" 3469 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 3470 - 3471 - [[package]] 3472 - name = "loom" 3473 - version = "0.7.1" 3474 - source = "registry+https://github.com/rust-lang/crates.io-index" 3475 - checksum = "7e045d70ddfbc984eacfa964ded019534e8f6cbf36f6410aee0ed5cefa5a9175" 3476 - dependencies = [ 3477 - "cfg-if", 3478 - "generator", 3479 - "scoped-tls", 3480 - "tracing", 3481 - "tracing-subscriber", 3482 - ] 3483 - 3484 - [[package]] 3485 - name = "lz4-sys" 3486 - version = "1.9.4" 3487 - source = "registry+https://github.com/rust-lang/crates.io-index" 3488 - checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" 3489 - dependencies = [ 3490 - "cc", 3491 - "libc", 3492 - ] 3493 - 3494 - [[package]] 3495 - name = "macro_rules_attribute" 3496 - version = "0.2.0" 3497 - source = "registry+https://github.com/rust-lang/crates.io-index" 3498 - checksum = "8a82271f7bc033d84bbca59a3ce3e4159938cb08a9c3aebbe54d215131518a13" 3499 - dependencies = [ 3500 - "macro_rules_attribute-proc_macro", 3501 - "paste", 3502 - ] 3503 - 3504 - [[package]] 3505 - name = "macro_rules_attribute-proc_macro" 3506 - version = "0.2.0" 3507 - source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "b8dd856d451cc0da70e2ef2ce95a18e39a93b7558bedf10201ad28503f918568" 3509 - 3510 - [[package]] 3511 - name = "matchers" 3512 - version = "0.1.0" 3513 - source = "registry+https://github.com/rust-lang/crates.io-index" 3514 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 3515 - dependencies = [ 3516 - "regex-automata 0.1.10", 3517 - ] 3518 - 3519 - [[package]] 3520 - name = "matchit" 3521 - version = "0.7.0" 3522 - source = "registry+https://github.com/rust-lang/crates.io-index" 3523 - checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 3524 - 3525 - [[package]] 3526 - name = "md-5" 3527 - version = "0.10.6" 3528 - source = "registry+https://github.com/rust-lang/crates.io-index" 3529 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 3530 - dependencies = [ 3531 - "cfg-if", 3532 - "digest", 3533 - ] 3534 - 3535 - [[package]] 3536 - name = "memchr" 3537 - version = "2.7.4" 3538 - source = "registry+https://github.com/rust-lang/crates.io-index" 3539 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 3540 - 3541 - [[package]] 3542 - name = "memmap2" 3543 - version = "0.5.10" 3544 - source = "registry+https://github.com/rust-lang/crates.io-index" 3545 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 3546 - dependencies = [ 3547 - "libc", 3548 - ] 3549 - 3550 - [[package]] 3551 - name = "memmap2" 3552 - version = "0.9.5" 3553 - source = "registry+https://github.com/rust-lang/crates.io-index" 3554 - checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 3555 - dependencies = [ 3556 - "libc", 3557 - ] 3558 - 3559 - [[package]] 3560 - name = "memoffset" 3561 - version = "0.7.1" 3562 - source = "registry+https://github.com/rust-lang/crates.io-index" 3563 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 3564 - dependencies = [ 3565 - "autocfg", 3566 - ] 3567 - 3568 - [[package]] 3569 - name = "memory" 3570 - version = "0.0.0" 3571 - dependencies = [ 3572 - "bitvec", 3573 - "log", 3574 - "memmap2 0.9.5", 3575 - "parking_lot", 3576 - "rand 0.8.5", 3577 - "serde", 3578 - "tempfile", 3579 - "thiserror", 3580 - ] 3581 - 3582 - [[package]] 3583 - name = "merge" 3584 - version = "0.1.0" 3585 - source = "registry+https://github.com/rust-lang/crates.io-index" 3586 - checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9" 3587 - dependencies = [ 3588 - "merge_derive", 3589 - "num-traits", 3590 - ] 3591 - 3592 - [[package]] 3593 - name = "merge_derive" 3594 - version = "0.1.0" 3595 - source = "registry+https://github.com/rust-lang/crates.io-index" 3596 - checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07" 3597 - dependencies = [ 3598 - "proc-macro-error", 3599 - "proc-macro2", 3600 - "quote", 3601 - "syn 1.0.107", 3602 - ] 3603 - 3604 - [[package]] 3605 - name = "mime" 3606 - version = "0.3.16" 3607 - source = "registry+https://github.com/rust-lang/crates.io-index" 3608 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 3609 - 3610 - [[package]] 3611 - name = "mime_guess" 3612 - version = "2.0.4" 3613 - source = "registry+https://github.com/rust-lang/crates.io-index" 3614 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 3615 - dependencies = [ 3616 - "mime", 3617 - "unicase", 3618 - ] 3619 - 3620 - [[package]] 3621 - name = "minimal-lexical" 3622 - version = "0.2.1" 3623 - source = "registry+https://github.com/rust-lang/crates.io-index" 3624 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3625 - 3626 - [[package]] 3627 - name = "miniz_oxide" 3628 - version = "0.6.2" 3629 - source = "registry+https://github.com/rust-lang/crates.io-index" 3630 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 3631 - dependencies = [ 3632 - "adler", 3633 - ] 3634 - 3635 - [[package]] 3636 - name = "miniz_oxide" 3637 - version = "0.8.0" 3638 - source = "registry+https://github.com/rust-lang/crates.io-index" 3639 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 3640 - dependencies = [ 3641 - "adler2", 3642 - ] 3643 - 3644 - [[package]] 3645 - name = "mio" 3646 - version = "0.8.11" 3647 - source = "registry+https://github.com/rust-lang/crates.io-index" 3648 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 3649 - dependencies = [ 3650 - "libc", 3651 - "log", 3652 - "wasi 0.11.0+wasi-snapshot-preview1", 3653 - "windows-sys 0.48.0", 3654 - ] 3655 - 3656 - [[package]] 3657 - name = "mio" 3658 - version = "1.0.1" 3659 - source = "registry+https://github.com/rust-lang/crates.io-index" 3660 - checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" 3661 - dependencies = [ 3662 - "hermit-abi 0.3.9", 3663 - "libc", 3664 - "wasi 0.11.0+wasi-snapshot-preview1", 3665 - "windows-sys 0.52.0", 3666 - ] 3667 - 3668 - [[package]] 3669 - name = "multimap" 3670 - version = "0.8.3" 3671 - source = "registry+https://github.com/rust-lang/crates.io-index" 3672 - checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 3673 - 3674 - [[package]] 3675 - name = "names" 3676 - version = "0.14.0" 3677 - source = "registry+https://github.com/rust-lang/crates.io-index" 3678 - checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" 3679 - dependencies = [ 3680 - "clap 3.2.25", 3681 - "rand 0.8.5", 3682 - ] 3683 - 3684 - [[package]] 3685 - name = "nias" 3686 - version = "0.5.0" 3687 - source = "registry+https://github.com/rust-lang/crates.io-index" 3688 - checksum = "ab250442c86f1850815b5d268639dff018c0627022bc1940eb2d642ca1ce12f0" 3689 - 3690 - [[package]] 3691 - name = "nix" 3692 - version = "0.25.1" 3693 - source = "registry+https://github.com/rust-lang/crates.io-index" 3694 - checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 3695 - dependencies = [ 3696 - "autocfg", 3697 - "bitflags 1.3.2", 3698 - "cfg-if", 3699 - "libc", 3700 - ] 3701 - 3702 - [[package]] 3703 - name = "nix" 3704 - version = "0.26.2" 3705 - source = "registry+https://github.com/rust-lang/crates.io-index" 3706 - checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 3707 - dependencies = [ 3708 - "bitflags 1.3.2", 3709 - "cfg-if", 3710 - "libc", 3711 - "static_assertions", 3712 - ] 3713 - 3714 - [[package]] 3715 - name = "nix" 3716 - version = "0.29.0" 3717 - source = "registry+https://github.com/rust-lang/crates.io-index" 3718 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 3719 - dependencies = [ 3720 - "bitflags 2.4.1", 3721 - "cfg-if", 3722 - "cfg_aliases", 3723 - "libc", 3724 - ] 3725 - 3726 - [[package]] 3727 - name = "nodrop" 3728 - version = "0.1.14" 3729 - source = "registry+https://github.com/rust-lang/crates.io-index" 3730 - checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 3731 - 3732 - [[package]] 3733 - name = "nom" 3734 - version = "7.1.3" 3735 - source = "registry+https://github.com/rust-lang/crates.io-index" 3736 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3737 - dependencies = [ 3738 - "memchr", 3739 - "minimal-lexical", 3740 - ] 3741 - 3742 - [[package]] 3743 - name = "ntapi" 3744 - version = "0.4.1" 3745 - source = "registry+https://github.com/rust-lang/crates.io-index" 3746 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3747 - dependencies = [ 3748 - "winapi", 3749 - ] 3750 - 3751 - [[package]] 3752 - name = "nu-ansi-term" 3753 - version = "0.46.0" 3754 - source = "registry+https://github.com/rust-lang/crates.io-index" 3755 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3756 - dependencies = [ 3757 - "overload", 3758 - "winapi", 3759 - ] 3760 - 3761 - [[package]] 3762 - name = "num-bigint" 3763 - version = "0.4.4" 3764 - source = "registry+https://github.com/rust-lang/crates.io-index" 3765 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 3766 - dependencies = [ 3767 - "autocfg", 3768 - "num-integer", 3769 - "num-traits", 3770 - ] 3771 - 3772 - [[package]] 3773 - name = "num-cmp" 3774 - version = "0.1.0" 3775 - source = "registry+https://github.com/rust-lang/crates.io-index" 3776 - checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa" 3777 - 3778 - [[package]] 3779 - name = "num-derive" 3780 - version = "0.4.2" 3781 - source = "registry+https://github.com/rust-lang/crates.io-index" 3782 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 3783 - dependencies = [ 3784 - "proc-macro2", 3785 - "quote", 3786 - "syn 2.0.79", 3787 - ] 3788 - 3789 - [[package]] 3790 - name = "num-format" 3791 - version = "0.4.4" 3792 - source = "registry+https://github.com/rust-lang/crates.io-index" 3793 - checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 3794 - dependencies = [ 3795 - "arrayvec 0.7.2", 3796 - "itoa", 3797 - ] 3798 - 3799 - [[package]] 3800 - name = "num-integer" 3801 - version = "0.1.46" 3802 - source = "registry+https://github.com/rust-lang/crates.io-index" 3803 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3804 - dependencies = [ 3805 - "num-traits", 3806 - ] 3807 - 3808 - [[package]] 3809 - name = "num-traits" 3810 - version = "0.2.19" 3811 - source = "registry+https://github.com/rust-lang/crates.io-index" 3812 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3813 - dependencies = [ 3814 - "autocfg", 3815 - "libm", 3816 - ] 3817 - 3818 - [[package]] 3819 - name = "num_cpus" 3820 - version = "1.16.0" 3821 - source = "registry+https://github.com/rust-lang/crates.io-index" 3822 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3823 - dependencies = [ 3824 - "hermit-abi 0.3.9", 3825 - "libc", 3826 - ] 3827 - 3828 - [[package]] 3829 - name = "num_threads" 3830 - version = "0.1.7" 3831 - source = "registry+https://github.com/rust-lang/crates.io-index" 3832 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 3833 - dependencies = [ 3834 - "libc", 3835 - ] 3836 - 3837 - [[package]] 3838 - name = "number_prefix" 3839 - version = "0.4.0" 3840 - source = "registry+https://github.com/rust-lang/crates.io-index" 3841 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 3842 - 3843 - [[package]] 3844 - name = "object" 3845 - version = "0.30.0" 3846 - source = "registry+https://github.com/rust-lang/crates.io-index" 3847 - checksum = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb" 3848 - dependencies = [ 3849 - "memchr", 3850 - ] 3851 - 3852 - [[package]] 3853 - name = "object_store" 3854 - version = "0.11.0" 3855 - source = "registry+https://github.com/rust-lang/crates.io-index" 3856 - checksum = "25a0c4b3a0e31f8b66f71ad8064521efa773910196e2cde791436f13409f3b45" 3857 - dependencies = [ 3858 - "async-trait", 3859 - "base64 0.22.0", 3860 - "bytes", 3861 - "chrono", 3862 - "futures", 3863 - "humantime", 3864 - "hyper 1.4.1", 3865 - "itertools 0.13.0", 3866 - "md-5", 3867 - "parking_lot", 3868 - "percent-encoding", 3869 - "quick-xml 0.36.0", 3870 - "rand 0.8.5", 3871 - "reqwest 0.12.8", 3872 - "ring 0.17.5", 3873 - "serde", 3874 - "serde_json", 3875 - "snafu", 3876 - "tokio", 3877 - "tracing", 3878 - "url", 3879 - "walkdir", 3880 - ] 3881 - 3882 - [[package]] 3883 - name = "once_cell" 3884 - version = "1.19.0" 3885 - source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 3887 - 3888 - [[package]] 3889 - name = "oorandom" 3890 - version = "11.1.3" 3891 - source = "registry+https://github.com/rust-lang/crates.io-index" 3892 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3893 - 3894 - [[package]] 3895 - name = "openssl-probe" 3896 - version = "0.1.5" 3897 - source = "registry+https://github.com/rust-lang/crates.io-index" 3898 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3899 - 3900 - [[package]] 3901 - name = "ordered-float" 3902 - version = "2.10.1" 3903 - source = "registry+https://github.com/rust-lang/crates.io-index" 3904 - checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 3905 - dependencies = [ 3906 - "num-traits", 3907 - ] 3908 - 3909 - [[package]] 3910 - name = "ordered-float" 3911 - version = "4.3.0" 3912 - source = "registry+https://github.com/rust-lang/crates.io-index" 3913 - checksum = "44d501f1a72f71d3c063a6bbc8f7271fa73aa09fe5d6283b6571e2ed176a2537" 3914 - dependencies = [ 3915 - "num-traits", 3916 - ] 3917 - 3918 - [[package]] 3919 - name = "ordered-multimap" 3920 - version = "0.6.0" 3921 - source = "registry+https://github.com/rust-lang/crates.io-index" 3922 - checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 3923 - dependencies = [ 3924 - "dlv-list", 3925 - "hashbrown 0.13.2", 3926 - ] 3927 - 3928 - [[package]] 3929 - name = "os_str_bytes" 3930 - version = "6.6.1" 3931 - source = "registry+https://github.com/rust-lang/crates.io-index" 3932 - checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 3933 - 3934 - [[package]] 3935 - name = "overload" 3936 - version = "0.1.1" 3937 - source = "registry+https://github.com/rust-lang/crates.io-index" 3938 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3939 - 3940 - [[package]] 3941 - name = "parking_lot" 3942 - version = "0.12.3" 3943 - source = "registry+https://github.com/rust-lang/crates.io-index" 3944 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3945 - dependencies = [ 3946 - "lock_api", 3947 - "parking_lot_core", 3948 - ] 3949 - 3950 - [[package]] 3951 - name = "parking_lot_core" 3952 - version = "0.9.9" 3953 - source = "registry+https://github.com/rust-lang/crates.io-index" 3954 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 3955 - dependencies = [ 3956 - "backtrace", 3957 - "cfg-if", 3958 - "libc", 3959 - "petgraph", 3960 - "redox_syscall 0.4.1", 3961 - "smallvec", 3962 - "thread-id", 3963 - "windows-targets 0.48.0", 3964 - ] 3965 - 3966 - [[package]] 3967 - name = "parse-size" 3968 - version = "1.0.0" 3969 - source = "registry+https://github.com/rust-lang/crates.io-index" 3970 - checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae" 3971 - 3972 - [[package]] 3973 - name = "paste" 3974 - version = "1.0.11" 3975 - source = "registry+https://github.com/rust-lang/crates.io-index" 3976 - checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" 3977 - 3978 - [[package]] 3979 - name = "pathdiff" 3980 - version = "0.2.1" 3981 - source = "registry+https://github.com/rust-lang/crates.io-index" 3982 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 3983 - 3984 - [[package]] 3985 - name = "pem" 3986 - version = "3.0.3" 3987 - source = "registry+https://github.com/rust-lang/crates.io-index" 3988 - checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" 3989 - dependencies = [ 3990 - "base64 0.21.0", 3991 - "serde", 3992 - ] 3993 - 3994 - [[package]] 3995 - name = "percent-encoding" 3996 - version = "2.3.1" 3997 - source = "registry+https://github.com/rust-lang/crates.io-index" 3998 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3999 - 4000 - [[package]] 4001 - name = "permutation_iterator" 4002 - version = "0.1.2" 4003 - source = "registry+https://github.com/rust-lang/crates.io-index" 4004 - checksum = "b55405179fe06e4e3820ddaf9f9b51cdff9e7496af9554acdb2b1921a86ca9cb" 4005 - dependencies = [ 4006 - "blake2-rfc", 4007 - "rand 0.7.3", 4008 - ] 4009 - 4010 - [[package]] 4011 - name = "pest" 4012 - version = "2.5.1" 4013 - source = "registry+https://github.com/rust-lang/crates.io-index" 4014 - checksum = "cc8bed3549e0f9b0a2a78bf7c0018237a2cdf085eecbbc048e52612438e4e9d0" 4015 - dependencies = [ 4016 - "thiserror", 4017 - "ucd-trie", 4018 - ] 4019 - 4020 - [[package]] 4021 - name = "pest_derive" 4022 - version = "2.5.1" 4023 - source = "registry+https://github.com/rust-lang/crates.io-index" 4024 - checksum = "cdc078600d06ff90d4ed238f0119d84ab5d43dbaad278b0e33a8820293b32344" 4025 - dependencies = [ 4026 - "pest", 4027 - "pest_generator", 4028 - ] 4029 - 4030 - [[package]] 4031 - name = "pest_generator" 4032 - version = "2.5.1" 4033 - source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "28a1af60b1c4148bb269006a750cff8e2ea36aff34d2d96cf7be0b14d1bed23c" 4035 - dependencies = [ 4036 - "pest", 4037 - "pest_meta", 4038 - "proc-macro2", 4039 - "quote", 4040 - "syn 1.0.107", 4041 - ] 4042 - 4043 - [[package]] 4044 - name = "pest_meta" 4045 - version = "2.5.1" 4046 - source = "registry+https://github.com/rust-lang/crates.io-index" 4047 - checksum = "fec8605d59fc2ae0c6c1aefc0c7c7a9769732017c0ce07f7a9cfffa7b4404f20" 4048 - dependencies = [ 4049 - "once_cell", 4050 - "pest", 4051 - "sha1", 4052 - ] 4053 - 4054 - [[package]] 4055 - name = "petgraph" 4056 - version = "0.6.2" 4057 - source = "registry+https://github.com/rust-lang/crates.io-index" 4058 - checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 4059 - dependencies = [ 4060 - "fixedbitset", 4061 - "indexmap 1.9.2", 4062 - ] 4063 - 4064 - [[package]] 4065 - name = "ph" 4066 - version = "0.8.4" 4067 - source = "registry+https://github.com/rust-lang/crates.io-index" 4068 - checksum = "2662713b3e8e02977b289a7ada32d672ae5477b5c23f290e5999122d53658847" 4069 - dependencies = [ 4070 - "aligned-vec", 4071 - "binout", 4072 - "bitm", 4073 - "dyn_size_of", 4074 - "rayon", 4075 - "wyhash", 4076 - ] 4077 - 4078 - [[package]] 4079 - name = "phf" 4080 - version = "0.11.2" 4081 - source = "registry+https://github.com/rust-lang/crates.io-index" 4082 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 4083 - dependencies = [ 4084 - "phf_shared", 4085 - ] 4086 - 4087 - [[package]] 4088 - name = "phf_codegen" 4089 - version = "0.11.2" 4090 - source = "registry+https://github.com/rust-lang/crates.io-index" 4091 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 4092 - dependencies = [ 4093 - "phf_generator", 4094 - "phf_shared", 4095 - ] 4096 - 4097 - [[package]] 4098 - name = "phf_generator" 4099 - version = "0.11.2" 4100 - source = "registry+https://github.com/rust-lang/crates.io-index" 4101 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 4102 - dependencies = [ 4103 - "phf_shared", 4104 - "rand 0.8.5", 4105 - ] 4106 - 4107 - [[package]] 4108 - name = "phf_shared" 4109 - version = "0.11.2" 4110 - source = "registry+https://github.com/rust-lang/crates.io-index" 4111 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 4112 - dependencies = [ 4113 - "siphasher", 4114 - ] 4115 - 4116 - [[package]] 4117 - name = "pin-project" 4118 - version = "1.0.12" 4119 - source = "registry+https://github.com/rust-lang/crates.io-index" 4120 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 4121 - dependencies = [ 4122 - "pin-project-internal", 4123 - ] 4124 - 4125 - [[package]] 4126 - name = "pin-project-internal" 4127 - version = "1.0.12" 4128 - source = "registry+https://github.com/rust-lang/crates.io-index" 4129 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 4130 - dependencies = [ 4131 - "proc-macro2", 4132 - "quote", 4133 - "syn 1.0.107", 4134 - ] 4135 - 4136 - [[package]] 4137 - name = "pin-project-lite" 4138 - version = "0.2.12" 4139 - source = "registry+https://github.com/rust-lang/crates.io-index" 4140 - checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 4141 - 4142 - [[package]] 4143 - name = "pin-utils" 4144 - version = "0.1.0" 4145 - source = "registry+https://github.com/rust-lang/crates.io-index" 4146 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4147 - 4148 - [[package]] 4149 - name = "pinyin" 4150 - version = "0.10.0" 4151 - source = "registry+https://github.com/rust-lang/crates.io-index" 4152 - checksum = "16f2611cd06a1ac239a0cea4521de9eb068a6ca110324ee00631aa68daa74fc0" 4153 - 4154 - [[package]] 4155 - name = "pkg-config" 4156 - version = "0.3.26" 4157 - source = "registry+https://github.com/rust-lang/crates.io-index" 4158 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 4159 - 4160 - [[package]] 4161 - name = "plotters" 4162 - version = "0.3.4" 4163 - source = "registry+https://github.com/rust-lang/crates.io-index" 4164 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 4165 - dependencies = [ 4166 - "num-traits", 4167 - "plotters-backend", 4168 - "plotters-svg", 4169 - "wasm-bindgen", 4170 - "web-sys", 4171 - ] 4172 - 4173 - [[package]] 4174 - name = "plotters-backend" 4175 - version = "0.3.4" 4176 - source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 4178 - 4179 - [[package]] 4180 - name = "plotters-svg" 4181 - version = "0.3.3" 4182 - source = "registry+https://github.com/rust-lang/crates.io-index" 4183 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 4184 - dependencies = [ 4185 - "plotters-backend", 4186 - ] 4187 - 4188 - [[package]] 4189 - name = "portable-atomic" 4190 - version = "1.3.2" 4191 - source = "registry+https://github.com/rust-lang/crates.io-index" 4192 - checksum = "dc59d1bcc64fc5d021d67521f818db868368028108d37f0e98d74e33f68297b5" 4193 - 4194 - [[package]] 4195 - name = "pprof" 4196 - version = "0.12.1" 4197 - source = "registry+https://github.com/rust-lang/crates.io-index" 4198 - checksum = "978385d59daf9269189d052ca8a84c1acfd0715c0599a5d5188d4acc078ca46a" 4199 - dependencies = [ 4200 - "backtrace", 4201 - "cfg-if", 4202 - "findshlibs", 4203 - "libc", 4204 - "log", 4205 - "nix 0.26.2", 4206 - "once_cell", 4207 - "parking_lot", 4208 - "smallvec", 4209 - "symbolic-demangle", 4210 - "tempfile", 4211 - "thiserror", 4212 - ] 4213 - 4214 - [[package]] 4215 - name = "pprof" 4216 - version = "0.13.0" 4217 - source = "registry+https://github.com/rust-lang/crates.io-index" 4218 - checksum = "ef5c97c51bd34c7e742402e216abdeb44d415fbe6ae41d56b114723e953711cb" 4219 - dependencies = [ 4220 - "backtrace", 4221 - "cfg-if", 4222 - "findshlibs", 4223 - "inferno", 4224 - "libc", 4225 - "log", 4226 - "nix 0.26.2", 4227 - "once_cell", 4228 - "parking_lot", 4229 - "prost 0.12.6", 4230 - "prost-build 0.12.6", 4231 - "prost-derive 0.12.6", 4232 - "sha2", 4233 - "smallvec", 4234 - "symbolic-demangle", 4235 - "tempfile", 4236 - "thiserror", 4237 - ] 4238 - 4239 - [[package]] 4240 - name = "ppv-lite86" 4241 - version = "0.2.17" 4242 - source = "registry+https://github.com/rust-lang/crates.io-index" 4243 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 4244 - 4245 - [[package]] 4246 - name = "prettyplease" 4247 - version = "0.1.22" 4248 - source = "registry+https://github.com/rust-lang/crates.io-index" 4249 - checksum = "2c8992a85d8e93a28bdf76137db888d3874e3b230dee5ed8bebac4c9f7617773" 4250 - dependencies = [ 4251 - "proc-macro2", 4252 - "syn 1.0.107", 4253 - ] 4254 - 4255 - [[package]] 4256 - name = "prettyplease" 4257 - version = "0.2.17" 4258 - source = "registry+https://github.com/rust-lang/crates.io-index" 4259 - checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7" 4260 - dependencies = [ 4261 - "proc-macro2", 4262 - "syn 2.0.79", 4263 - ] 4264 - 4265 - [[package]] 4266 - name = "proc-macro-crate" 4267 - version = "3.2.0" 4268 - source = "registry+https://github.com/rust-lang/crates.io-index" 4269 - checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 4270 - dependencies = [ 4271 - "toml_edit 0.22.22", 4272 - ] 4273 - 4274 - [[package]] 4275 - name = "proc-macro-error" 4276 - version = "1.0.4" 4277 - source = "registry+https://github.com/rust-lang/crates.io-index" 4278 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 4279 - dependencies = [ 4280 - "proc-macro-error-attr", 4281 - "proc-macro2", 4282 - "quote", 4283 - "syn 1.0.107", 4284 - "version_check", 4285 - ] 4286 - 4287 - [[package]] 4288 - name = "proc-macro-error-attr" 4289 - version = "1.0.4" 4290 - source = "registry+https://github.com/rust-lang/crates.io-index" 4291 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 4292 - dependencies = [ 4293 - "proc-macro2", 4294 - "quote", 4295 - "version_check", 4296 - ] 4297 - 4298 - [[package]] 4299 - name = "proc-macro2" 4300 - version = "1.0.86" 4301 - source = "registry+https://github.com/rust-lang/crates.io-index" 4302 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 4303 - dependencies = [ 4304 - "unicode-ident", 4305 - ] 4306 - 4307 - [[package]] 4308 - name = "procfs" 4309 - version = "0.17.0" 4310 - source = "registry+https://github.com/rust-lang/crates.io-index" 4311 - checksum = "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f" 4312 - dependencies = [ 4313 - "bitflags 2.4.1", 4314 - "hex", 4315 - "procfs-core", 4316 - "rustix 0.38.37", 4317 - ] 4318 - 4319 - [[package]] 4320 - name = "procfs-core" 4321 - version = "0.17.0" 4322 - source = "registry+https://github.com/rust-lang/crates.io-index" 4323 - checksum = "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec" 4324 - dependencies = [ 4325 - "bitflags 2.4.1", 4326 - "hex", 4327 - ] 4328 - 4329 - [[package]] 4330 - name = "prometheus" 4331 - version = "0.13.4" 4332 - source = "registry+https://github.com/rust-lang/crates.io-index" 4333 - checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" 4334 - dependencies = [ 4335 - "cfg-if", 4336 - "fnv", 4337 - "lazy_static", 4338 - "memchr", 4339 - "parking_lot", 4340 - "thiserror", 4341 - ] 4342 - 4343 - [[package]] 4344 - name = "proptest" 4345 - version = "1.5.0" 4346 - source = "registry+https://github.com/rust-lang/crates.io-index" 4347 - checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" 4348 - dependencies = [ 4349 - "bit-set", 4350 - "bit-vec", 4351 - "bitflags 2.4.1", 4352 - "lazy_static", 4353 - "num-traits", 4354 - "rand 0.8.5", 4355 - "rand_chacha 0.3.1", 4356 - "rand_xorshift", 4357 - "regex-syntax 0.8.5", 4358 - "rusty-fork", 4359 - "tempfile", 4360 - "unarray", 4361 - ] 4362 - 4363 - [[package]] 4364 - name = "prost" 4365 - version = "0.11.9" 4366 - source = "registry+https://github.com/rust-lang/crates.io-index" 4367 - checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 4368 - dependencies = [ 4369 - "bytes", 4370 - "prost-derive 0.11.9", 4371 - ] 4372 - 4373 - [[package]] 4374 - name = "prost" 4375 - version = "0.12.6" 4376 - source = "registry+https://github.com/rust-lang/crates.io-index" 4377 - checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" 4378 - dependencies = [ 4379 - "bytes", 4380 - "prost-derive 0.12.6", 4381 - ] 4382 - 4383 - [[package]] 4384 - name = "prost" 4385 - version = "0.13.1" 4386 - source = "registry+https://github.com/rust-lang/crates.io-index" 4387 - checksum = "e13db3d3fde688c61e2446b4d843bc27a7e8af269a69440c0308021dc92333cc" 4388 - dependencies = [ 4389 - "bytes", 4390 - "prost-derive 0.13.1", 4391 - ] 4392 - 4393 - [[package]] 4394 - name = "prost-build" 4395 - version = "0.11.9" 4396 - source = "registry+https://github.com/rust-lang/crates.io-index" 4397 - checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 4398 - dependencies = [ 4399 - "bytes", 4400 - "heck 0.4.1", 4401 - "itertools 0.10.5", 4402 - "lazy_static", 4403 - "log", 4404 - "multimap", 4405 - "petgraph", 4406 - "prettyplease 0.1.22", 4407 - "prost 0.11.9", 4408 - "prost-types 0.11.9", 4409 - "regex", 4410 - "syn 1.0.107", 4411 - "tempfile", 4412 - "which", 4413 - ] 4414 - 4415 - [[package]] 4416 - name = "prost-build" 4417 - version = "0.12.6" 4418 - source = "registry+https://github.com/rust-lang/crates.io-index" 4419 - checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" 4420 - dependencies = [ 4421 - "bytes", 4422 - "heck 0.5.0", 4423 - "itertools 0.12.1", 4424 - "log", 4425 - "multimap", 4426 - "once_cell", 4427 - "petgraph", 4428 - "prettyplease 0.2.17", 4429 - "prost 0.12.6", 4430 - "prost-types 0.12.6", 4431 - "pulldown-cmark", 4432 - "pulldown-cmark-to-cmark", 4433 - "regex", 4434 - "syn 2.0.79", 4435 - "tempfile", 4436 - ] 4437 - 4438 - [[package]] 4439 - name = "prost-derive" 4440 - version = "0.11.9" 4441 - source = "registry+https://github.com/rust-lang/crates.io-index" 4442 - checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 4443 - dependencies = [ 4444 - "anyhow", 4445 - "itertools 0.10.5", 4446 - "proc-macro2", 4447 - "quote", 4448 - "syn 1.0.107", 4449 - ] 4450 - 4451 - [[package]] 4452 - name = "prost-derive" 4453 - version = "0.12.6" 4454 - source = "registry+https://github.com/rust-lang/crates.io-index" 4455 - checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" 4456 - dependencies = [ 4457 - "anyhow", 4458 - "itertools 0.12.1", 4459 - "proc-macro2", 4460 - "quote", 4461 - "syn 2.0.79", 4462 - ] 4463 - 4464 - [[package]] 4465 - name = "prost-derive" 4466 - version = "0.13.1" 4467 - source = "registry+https://github.com/rust-lang/crates.io-index" 4468 - checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca" 4469 - dependencies = [ 4470 - "anyhow", 4471 - "itertools 0.13.0", 4472 - "proc-macro2", 4473 - "quote", 4474 - "syn 2.0.79", 4475 - ] 4476 - 4477 - [[package]] 4478 - name = "prost-types" 4479 - version = "0.11.9" 4480 - source = "registry+https://github.com/rust-lang/crates.io-index" 4481 - checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 4482 - dependencies = [ 4483 - "prost 0.11.9", 4484 - ] 4485 - 4486 - [[package]] 4487 - name = "prost-types" 4488 - version = "0.12.6" 4489 - source = "registry+https://github.com/rust-lang/crates.io-index" 4490 - checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" 4491 - dependencies = [ 4492 - "prost 0.12.6", 4493 - ] 4494 - 4495 - [[package]] 4496 - name = "prost-types" 4497 - version = "0.13.1" 4498 - source = "registry+https://github.com/rust-lang/crates.io-index" 4499 - checksum = "cee5168b05f49d4b0ca581206eb14a7b22fafd963efe729ac48eb03266e25cc2" 4500 - dependencies = [ 4501 - "prost 0.13.1", 4502 - ] 4503 - 4504 - [[package]] 4505 - name = "prost-wkt" 4506 - version = "0.5.1" 4507 - source = "registry+https://github.com/rust-lang/crates.io-index" 4508 - checksum = "5fb7ec2850c138ebaa7ab682503b5d08c3cb330343e9c94776612928b6ddb53f" 4509 - dependencies = [ 4510 - "chrono", 4511 - "inventory", 4512 - "prost 0.12.6", 4513 - "serde", 4514 - "serde_derive", 4515 - "serde_json", 4516 - "typetag", 4517 - ] 4518 - 4519 - [[package]] 4520 - name = "prost-wkt-build" 4521 - version = "0.5.1" 4522 - source = "registry+https://github.com/rust-lang/crates.io-index" 4523 - checksum = "598b7365952c2ed4e32902de0533653aafbe5ae3da436e8e2335c7d375a1cef3" 4524 - dependencies = [ 4525 - "heck 0.5.0", 4526 - "prost 0.12.6", 4527 - "prost-build 0.12.6", 4528 - "prost-types 0.12.6", 4529 - "quote", 4530 - ] 4531 - 4532 - [[package]] 4533 - name = "prost-wkt-types" 4534 - version = "0.5.1" 4535 - source = "registry+https://github.com/rust-lang/crates.io-index" 4536 - checksum = "1a8eadc2381640a49c1fbfb9f4a857794b4e5bf5a2cbc2d858cfdb74f64dcd22" 4537 - dependencies = [ 4538 - "chrono", 4539 - "prost 0.12.6", 4540 - "prost-build 0.12.6", 4541 - "prost-types 0.12.6", 4542 - "prost-wkt", 4543 - "prost-wkt-build", 4544 - "regex", 4545 - "serde", 4546 - "serde_derive", 4547 - "serde_json", 4548 - ] 4549 - 4550 - [[package]] 4551 - name = "protobuf" 4552 - version = "2.28.0" 4553 - source = "registry+https://github.com/rust-lang/crates.io-index" 4554 - checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 4555 - 4556 - [[package]] 4557 - name = "protobuf-build" 4558 - version = "0.14.0" 4559 - source = "registry+https://github.com/rust-lang/crates.io-index" 4560 - checksum = "6fb3c02f54ecaf12572c1a60dbdb36b1f8f713a16105881143f2be84cca5bbe3" 4561 - dependencies = [ 4562 - "bitflags 1.3.2", 4563 - "proc-macro2", 4564 - "prost-build 0.11.9", 4565 - "quote", 4566 - "syn 1.0.107", 4567 - ] 4568 - 4569 - [[package]] 4570 - name = "pulldown-cmark" 4571 - version = "0.9.3" 4572 - source = "registry+https://github.com/rust-lang/crates.io-index" 4573 - checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" 4574 - dependencies = [ 4575 - "bitflags 1.3.2", 4576 - "memchr", 4577 - "unicase", 4578 - ] 4579 - 4580 - [[package]] 4581 - name = "pulldown-cmark-to-cmark" 4582 - version = "10.0.4" 4583 - source = "registry+https://github.com/rust-lang/crates.io-index" 4584 - checksum = "0194e6e1966c23cc5fd988714f85b18d548d773e81965413555d96569931833d" 4585 - dependencies = [ 4586 - "pulldown-cmark", 4587 - ] 4588 - 4589 - [[package]] 4590 - name = "pyroscope" 4591 - version = "0.5.7" 4592 - source = "registry+https://github.com/rust-lang/crates.io-index" 4593 - checksum = "ac8a53ce01af1087eaeee6ce7c4fbf50ea4040ab1825c0115c4bafa039644ba9" 4594 - dependencies = [ 4595 - "json", 4596 - "libc", 4597 - "libflate", 4598 - "log", 4599 - "names", 4600 - "prost 0.11.9", 4601 - "reqwest 0.11.27", 4602 - "thiserror", 4603 - "url", 4604 - "winapi", 4605 - ] 4606 - 4607 - [[package]] 4608 - name = "pyroscope_pprofrs" 4609 - version = "0.2.7" 4610 - source = "registry+https://github.com/rust-lang/crates.io-index" 4611 - checksum = "43f010b2a981a7f8449a650f25f309e520b5206ea2d89512dcb146aaa5518ff4" 4612 - dependencies = [ 4613 - "log", 4614 - "pprof 0.12.1", 4615 - "pyroscope", 4616 - "thiserror", 4617 - ] 4618 - 4619 - [[package]] 4620 - name = "qdrant" 4621 - version = "1.12.1" 4622 - dependencies = [ 4623 - "actix-cors", 4624 - "actix-files", 4625 - "actix-multipart", 4626 - "actix-web", 4627 - "actix-web-extras", 4628 - "actix-web-validator", 4629 - "anyhow", 4630 - "api", 4631 - "bytes", 4632 - "cancel", 4633 - "chrono", 4634 - "clap 4.5.19", 4635 - "collection", 4636 - "colored", 4637 - "common", 4638 - "config", 4639 - "console-subscriber", 4640 - "constant_time_eq 0.3.1", 4641 - "futures", 4642 - "futures-util", 4643 - "issues", 4644 - "itertools 0.13.0", 4645 - "jsonwebtoken", 4646 - "log", 4647 - "memory", 4648 - "parking_lot", 4649 - "prometheus", 4650 - "prost 0.11.9", 4651 - "pyroscope", 4652 - "pyroscope_pprofrs", 4653 - "raft", 4654 - "raft-proto", 4655 - "rand 0.8.5", 4656 - "reqwest 0.12.8", 4657 - "rstack-self", 4658 - "rustls 0.23.14", 4659 - "rustls-pemfile 2.2.0", 4660 - "rustls-pki-types", 4661 - "rusty-hook", 4662 - "schemars", 4663 - "sealed_test", 4664 - "segment", 4665 - "serde", 4666 - "serde_cbor", 4667 - "serde_json", 4668 - "serde_urlencoded", 4669 - "slog", 4670 - "slog-stdlog", 4671 - "storage", 4672 - "sys-info", 4673 - "tempfile", 4674 - "thiserror", 4675 - "tikv-jemallocator", 4676 - "tokio", 4677 - "tokio-util", 4678 - "tonic 0.11.0", 4679 - "tonic-reflection", 4680 - "tower 0.5.1", 4681 - "tower-layer", 4682 - "tracing", 4683 - "tracing-log", 4684 - "tracing-subscriber", 4685 - "tracing-tracy", 4686 - "uuid", 4687 - "validator", 4688 - "wal", 4689 - ] 4690 - 4691 - [[package]] 4692 - name = "quantization" 4693 - version = "0.1.0" 4694 - dependencies = [ 4695 - "cc", 4696 - "criterion", 4697 - "num-traits", 4698 - "num_threads", 4699 - "permutation_iterator", 4700 - "rand 0.8.5", 4701 - "rayon", 4702 - "serde", 4703 - "serde_json", 4704 - "tempfile", 4705 - ] 4706 - 4707 - [[package]] 4708 - name = "quick-error" 4709 - version = "1.2.3" 4710 - source = "registry+https://github.com/rust-lang/crates.io-index" 4711 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 4712 - 4713 - [[package]] 4714 - name = "quick-xml" 4715 - version = "0.26.0" 4716 - source = "registry+https://github.com/rust-lang/crates.io-index" 4717 - checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 4718 - dependencies = [ 4719 - "memchr", 4720 - ] 4721 - 4722 - [[package]] 4723 - name = "quick-xml" 4724 - version = "0.36.0" 4725 - source = "registry+https://github.com/rust-lang/crates.io-index" 4726 - checksum = "4091e032efecb09d7b1f711f487b85ab925632a842627e3200fb088382cde32c" 4727 - dependencies = [ 4728 - "memchr", 4729 - "serde", 4730 - ] 4731 - 4732 - [[package]] 4733 - name = "quinn" 4734 - version = "0.11.2" 4735 - source = "registry+https://github.com/rust-lang/crates.io-index" 4736 - checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" 4737 - dependencies = [ 4738 - "bytes", 4739 - "pin-project-lite", 4740 - "quinn-proto", 4741 - "quinn-udp", 4742 - "rustc-hash 1.1.0", 4743 - "rustls 0.23.14", 4744 - "thiserror", 4745 - "tokio", 4746 - "tracing", 4747 - ] 4748 - 4749 - [[package]] 4750 - name = "quinn-proto" 4751 - version = "0.11.8" 4752 - source = "registry+https://github.com/rust-lang/crates.io-index" 4753 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 4754 - dependencies = [ 4755 - "bytes", 4756 - "rand 0.8.5", 4757 - "ring 0.17.5", 4758 - "rustc-hash 2.0.0", 4759 - "rustls 0.23.14", 4760 - "slab", 4761 - "thiserror", 4762 - "tinyvec", 4763 - "tracing", 4764 - ] 4765 - 4766 - [[package]] 4767 - name = "quinn-udp" 4768 - version = "0.5.2" 4769 - source = "registry+https://github.com/rust-lang/crates.io-index" 4770 - checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46" 4771 - dependencies = [ 4772 - "libc", 4773 - "once_cell", 4774 - "socket2 0.5.5", 4775 - "tracing", 4776 - "windows-sys 0.52.0", 4777 - ] 4778 - 4779 - [[package]] 4780 - name = "quote" 4781 - version = "1.0.37" 4782 - source = "registry+https://github.com/rust-lang/crates.io-index" 4783 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 4784 - dependencies = [ 4785 - "proc-macro2", 4786 - ] 4787 - 4788 - [[package]] 4789 - name = "radium" 4790 - version = "0.7.0" 4791 - source = "registry+https://github.com/rust-lang/crates.io-index" 4792 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4793 - 4794 - [[package]] 4795 - name = "raft" 4796 - version = "0.7.0" 4797 - source = "registry+https://github.com/rust-lang/crates.io-index" 4798 - checksum = "f12688b23a649902762d4c11d854d73c49c9b93138f2de16403ef9f571ad5bae" 4799 - dependencies = [ 4800 - "fxhash", 4801 - "getset", 4802 - "protobuf", 4803 - "raft-proto", 4804 - "rand 0.8.5", 4805 - "slog", 4806 - "thiserror", 4807 - ] 4808 - 4809 - [[package]] 4810 - name = "raft-proto" 4811 - version = "0.7.0" 4812 - source = "registry+https://github.com/rust-lang/crates.io-index" 4813 - checksum = "fb6884896294f553e8d5cfbdb55080b9f5f2f43394afff59c9f077e0f4b46d6b" 4814 - dependencies = [ 4815 - "lazy_static", 4816 - "prost 0.11.9", 4817 - "protobuf", 4818 - "protobuf-build", 4819 - ] 4820 - 4821 - [[package]] 4822 - name = "rand" 4823 - version = "0.7.3" 4824 - source = "registry+https://github.com/rust-lang/crates.io-index" 4825 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 4826 - dependencies = [ 4827 - "getrandom 0.1.16", 4828 - "libc", 4829 - "rand_chacha 0.2.2", 4830 - "rand_core 0.5.1", 4831 - "rand_hc", 4832 - ] 4833 - 4834 - [[package]] 4835 - name = "rand" 4836 - version = "0.8.5" 4837 - source = "registry+https://github.com/rust-lang/crates.io-index" 4838 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4839 - dependencies = [ 4840 - "libc", 4841 - "rand_chacha 0.3.1", 4842 - "rand_core 0.6.4", 4843 - ] 4844 - 4845 - [[package]] 4846 - name = "rand_chacha" 4847 - version = "0.2.2" 4848 - source = "registry+https://github.com/rust-lang/crates.io-index" 4849 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 4850 - dependencies = [ 4851 - "ppv-lite86", 4852 - "rand_core 0.5.1", 4853 - ] 4854 - 4855 - [[package]] 4856 - name = "rand_chacha" 4857 - version = "0.3.1" 4858 - source = "registry+https://github.com/rust-lang/crates.io-index" 4859 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4860 - dependencies = [ 4861 - "ppv-lite86", 4862 - "rand_core 0.6.4", 4863 - ] 4864 - 4865 - [[package]] 4866 - name = "rand_core" 4867 - version = "0.5.1" 4868 - source = "registry+https://github.com/rust-lang/crates.io-index" 4869 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 4870 - dependencies = [ 4871 - "getrandom 0.1.16", 4872 - ] 4873 - 4874 - [[package]] 4875 - name = "rand_core" 4876 - version = "0.6.4" 4877 - source = "registry+https://github.com/rust-lang/crates.io-index" 4878 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4879 - dependencies = [ 4880 - "getrandom 0.2.11", 4881 - ] 4882 - 4883 - [[package]] 4884 - name = "rand_distr" 4885 - version = "0.4.3" 4886 - source = "registry+https://github.com/rust-lang/crates.io-index" 4887 - checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 4888 - dependencies = [ 4889 - "num-traits", 4890 - "rand 0.8.5", 4891 - ] 4892 - 4893 - [[package]] 4894 - name = "rand_hc" 4895 - version = "0.2.0" 4896 - source = "registry+https://github.com/rust-lang/crates.io-index" 4897 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 4898 - dependencies = [ 4899 - "rand_core 0.5.1", 4900 - ] 4901 - 4902 - [[package]] 4903 - name = "rand_xorshift" 4904 - version = "0.3.0" 4905 - source = "registry+https://github.com/rust-lang/crates.io-index" 4906 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 4907 - dependencies = [ 4908 - "rand_core 0.6.4", 4909 - ] 4910 - 4911 - [[package]] 4912 - name = "rayon" 4913 - version = "1.10.0" 4914 - source = "registry+https://github.com/rust-lang/crates.io-index" 4915 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 4916 - dependencies = [ 4917 - "either", 4918 - "rayon-core", 4919 - ] 4920 - 4921 - [[package]] 4922 - name = "rayon-core" 4923 - version = "1.12.1" 4924 - source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4926 - dependencies = [ 4927 - "crossbeam-deque", 4928 - "crossbeam-utils", 4929 - ] 4930 - 4931 - [[package]] 4932 - name = "redox_syscall" 4933 - version = "0.2.16" 4934 - source = "registry+https://github.com/rust-lang/crates.io-index" 4935 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 4936 - dependencies = [ 4937 - "bitflags 1.3.2", 4938 - ] 4939 - 4940 - [[package]] 4941 - name = "redox_syscall" 4942 - version = "0.4.1" 4943 - source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4945 - dependencies = [ 4946 - "bitflags 1.3.2", 4947 - ] 4948 - 4949 - [[package]] 4950 - name = "regex" 4951 - version = "1.11.0" 4952 - source = "registry+https://github.com/rust-lang/crates.io-index" 4953 - checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 4954 - dependencies = [ 4955 - "aho-corasick", 4956 - "memchr", 4957 - "regex-automata 0.4.8", 4958 - "regex-syntax 0.8.5", 4959 - ] 4960 - 4961 - [[package]] 4962 - name = "regex-automata" 4963 - version = "0.1.10" 4964 - source = "registry+https://github.com/rust-lang/crates.io-index" 4965 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 4966 - dependencies = [ 4967 - "regex-syntax 0.6.28", 4968 - ] 4969 - 4970 - [[package]] 4971 - name = "regex-automata" 4972 - version = "0.4.8" 4973 - source = "registry+https://github.com/rust-lang/crates.io-index" 4974 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 4975 - dependencies = [ 4976 - "aho-corasick", 4977 - "memchr", 4978 - "regex-syntax 0.8.5", 4979 - ] 4980 - 4981 - [[package]] 4982 - name = "regex-lite" 4983 - version = "0.1.5" 4984 - source = "registry+https://github.com/rust-lang/crates.io-index" 4985 - checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" 4986 - 4987 - [[package]] 4988 - name = "regex-syntax" 4989 - version = "0.6.28" 4990 - source = "registry+https://github.com/rust-lang/crates.io-index" 4991 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 4992 - 4993 - [[package]] 4994 - name = "regex-syntax" 4995 - version = "0.8.5" 4996 - source = "registry+https://github.com/rust-lang/crates.io-index" 4997 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 4998 - 4999 - [[package]] 5000 - name = "relative-path" 5001 - version = "1.9.3" 5002 - source = "registry+https://github.com/rust-lang/crates.io-index" 5003 - checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" 5004 - 5005 - [[package]] 5006 - name = "reqwest" 5007 - version = "0.11.27" 5008 - source = "registry+https://github.com/rust-lang/crates.io-index" 5009 - checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 5010 - dependencies = [ 5011 - "base64 0.21.0", 5012 - "bytes", 5013 - "encoding_rs", 5014 - "futures-core", 5015 - "futures-util", 5016 - "h2 0.3.26", 5017 - "http 0.2.9", 5018 - "http-body 0.4.5", 5019 - "hyper 0.14.26", 5020 - "hyper-rustls 0.24.2", 5021 - "ipnet", 5022 - "js-sys", 5023 - "log", 5024 - "mime", 5025 - "once_cell", 5026 - "percent-encoding", 5027 - "pin-project-lite", 5028 - "rustls 0.21.11", 5029 - "rustls-pemfile 1.0.3", 5030 - "serde", 5031 - "serde_json", 5032 - "serde_urlencoded", 5033 - "sync_wrapper 0.1.2", 5034 - "system-configuration", 5035 - "tokio", 5036 - "tokio-rustls 0.24.1", 5037 - "tower-service", 5038 - "url", 5039 - "wasm-bindgen", 5040 - "wasm-bindgen-futures", 5041 - "web-sys", 5042 - "webpki-roots 0.25.4", 5043 - "winreg", 5044 - ] 5045 - 5046 - [[package]] 5047 - name = "reqwest" 5048 - version = "0.12.8" 5049 - source = "registry+https://github.com/rust-lang/crates.io-index" 5050 - checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" 5051 - dependencies = [ 5052 - "base64 0.22.0", 5053 - "bytes", 5054 - "futures-channel", 5055 - "futures-core", 5056 - "futures-util", 5057 - "h2 0.4.4", 5058 - "http 1.0.0", 5059 - "http-body 1.0.0", 5060 - "http-body-util", 5061 - "hyper 1.4.1", 5062 - "hyper-rustls 0.27.2", 5063 - "hyper-util", 5064 - "ipnet", 5065 - "js-sys", 5066 - "log", 5067 - "mime", 5068 - "once_cell", 5069 - "percent-encoding", 5070 - "pin-project-lite", 5071 - "quinn", 5072 - "rustls 0.23.14", 5073 - "rustls-native-certs 0.8.0", 5074 - "rustls-pemfile 2.2.0", 5075 - "rustls-pki-types", 5076 - "serde", 5077 - "serde_json", 5078 - "serde_urlencoded", 5079 - "sync_wrapper 1.0.1", 5080 - "tokio", 5081 - "tokio-rustls 0.26.0", 5082 - "tokio-util", 5083 - "tower-service", 5084 - "url", 5085 - "wasm-bindgen", 5086 - "wasm-bindgen-futures", 5087 - "wasm-streams", 5088 - "web-sys", 5089 - "webpki-roots 0.26.1", 5090 - "windows-registry", 5091 - ] 5092 - 5093 - [[package]] 5094 - name = "rgb" 5095 - version = "0.8.50" 5096 - source = "registry+https://github.com/rust-lang/crates.io-index" 5097 - checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" 5098 - dependencies = [ 5099 - "bytemuck", 5100 - ] 5101 - 5102 - [[package]] 5103 - name = "ring" 5104 - version = "0.16.20" 5105 - source = "registry+https://github.com/rust-lang/crates.io-index" 5106 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 5107 - dependencies = [ 5108 - "cc", 5109 - "libc", 5110 - "once_cell", 5111 - "spin 0.5.2", 5112 - "untrusted 0.7.1", 5113 - "web-sys", 5114 - "winapi", 5115 - ] 5116 - 5117 - [[package]] 5118 - name = "ring" 5119 - version = "0.17.5" 5120 - source = "registry+https://github.com/rust-lang/crates.io-index" 5121 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 5122 - dependencies = [ 5123 - "cc", 5124 - "getrandom 0.2.11", 5125 - "libc", 5126 - "spin 0.9.8", 5127 - "untrusted 0.9.0", 5128 - "windows-sys 0.48.0", 5129 - ] 5130 - 5131 - [[package]] 5132 - name = "ringbuffer" 5133 - version = "0.15.0" 5134 - source = "registry+https://github.com/rust-lang/crates.io-index" 5135 - checksum = "3df6368f71f205ff9c33c076d170dd56ebf68e8161c733c0caa07a7a5509ed53" 5136 - 5137 - [[package]] 5138 - name = "rle-decode-fast" 5139 - version = "1.0.3" 5140 - source = "registry+https://github.com/rust-lang/crates.io-index" 5141 - checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 5142 - 5143 - [[package]] 5144 - name = "rmp" 5145 - version = "0.8.14" 5146 - source = "registry+https://github.com/rust-lang/crates.io-index" 5147 - checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4" 5148 - dependencies = [ 5149 - "byteorder", 5150 - "num-traits", 5151 - "paste", 5152 - ] 5153 - 5154 - [[package]] 5155 - name = "rmp-serde" 5156 - version = "1.3.0" 5157 - source = "registry+https://github.com/rust-lang/crates.io-index" 5158 - checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db" 5159 - dependencies = [ 5160 - "byteorder", 5161 - "rmp", 5162 - "serde", 5163 - ] 5164 - 5165 - [[package]] 5166 - name = "robust" 5167 - version = "1.1.0" 5168 - source = "registry+https://github.com/rust-lang/crates.io-index" 5169 - checksum = "cbf4a6aa5f6d6888f39e980649f3ad6b666acdce1d78e95b8a2cb076e687ae30" 5170 - 5171 - [[package]] 5172 - name = "rocksdb" 5173 - version = "0.22.0" 5174 - source = "registry+https://github.com/rust-lang/crates.io-index" 5175 - checksum = "6bd13e55d6d7b8cd0ea569161127567cd587676c99f4472f779a0279aa60a7a7" 5176 - dependencies = [ 5177 - "libc", 5178 - "librocksdb-sys", 5179 - ] 5180 - 5181 - [[package]] 5182 - name = "ron" 5183 - version = "0.8.1" 5184 - source = "registry+https://github.com/rust-lang/crates.io-index" 5185 - checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 5186 - dependencies = [ 5187 - "base64 0.21.0", 5188 - "bitflags 2.4.1", 5189 - "serde", 5190 - "serde_derive", 5191 - ] 5192 - 5193 - [[package]] 5194 - name = "rstack" 5195 - version = "0.3.3" 5196 - source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "e7df9d3ebd4f17b52e6134efe2fa20021c80688cbe823d481a729a993b730493" 5198 - dependencies = [ 5199 - "cfg-if", 5200 - "libc", 5201 - "log", 5202 - "unwind", 5203 - ] 5204 - 5205 - [[package]] 5206 - name = "rstack-self" 5207 - version = "0.3.0" 5208 - source = "registry+https://github.com/rust-lang/crates.io-index" 5209 - checksum = "6dd5030da3aba0ec731502f74ec38e63798eea6bc8b8ba5972129afe3eababd2" 5210 - dependencies = [ 5211 - "antidote", 5212 - "backtrace", 5213 - "bincode", 5214 - "lazy_static", 5215 - "libc", 5216 - "rstack", 5217 - "serde", 5218 - ] 5219 - 5220 - [[package]] 5221 - name = "rstar" 5222 - version = "0.12.0" 5223 - source = "registry+https://github.com/rust-lang/crates.io-index" 5224 - checksum = "133315eb94c7b1e8d0cb097e5a710d850263372fd028fff18969de708afc7008" 5225 - dependencies = [ 5226 - "heapless", 5227 - "num-traits", 5228 - "smallvec", 5229 - ] 5230 - 5231 - [[package]] 5232 - name = "rstest" 5233 - version = "0.23.0" 5234 - source = "registry+https://github.com/rust-lang/crates.io-index" 5235 - checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035" 5236 - dependencies = [ 5237 - "futures", 5238 - "futures-timer", 5239 - "rstest_macros", 5240 - "rustc_version", 5241 - ] 5242 - 5243 - [[package]] 5244 - name = "rstest_macros" 5245 - version = "0.23.0" 5246 - source = "registry+https://github.com/rust-lang/crates.io-index" 5247 - checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a" 5248 - dependencies = [ 5249 - "cfg-if", 5250 - "glob", 5251 - "proc-macro-crate", 5252 - "proc-macro2", 5253 - "quote", 5254 - "regex", 5255 - "relative-path", 5256 - "rustc_version", 5257 - "syn 2.0.79", 5258 - "unicode-ident", 5259 - ] 5260 - 5261 - [[package]] 5262 - name = "rust-ini" 5263 - version = "0.19.0" 5264 - source = "registry+https://github.com/rust-lang/crates.io-index" 5265 - checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 5266 - dependencies = [ 5267 - "cfg-if", 5268 - "ordered-multimap", 5269 - ] 5270 - 5271 - [[package]] 5272 - name = "rustc-demangle" 5273 - version = "0.1.21" 5274 - source = "registry+https://github.com/rust-lang/crates.io-index" 5275 - checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 5276 - 5277 - [[package]] 5278 - name = "rustc-hash" 5279 - version = "1.1.0" 5280 - source = "registry+https://github.com/rust-lang/crates.io-index" 5281 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 5282 - 5283 - [[package]] 5284 - name = "rustc-hash" 5285 - version = "2.0.0" 5286 - source = "registry+https://github.com/rust-lang/crates.io-index" 5287 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 5288 - 5289 - [[package]] 5290 - name = "rustc_version" 5291 - version = "0.4.1" 5292 - source = "registry+https://github.com/rust-lang/crates.io-index" 5293 - checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 5294 - dependencies = [ 5295 - "semver", 5296 - ] 5297 - 5298 - [[package]] 5299 - name = "rustix" 5300 - version = "0.37.27" 5301 - source = "registry+https://github.com/rust-lang/crates.io-index" 5302 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 5303 - dependencies = [ 5304 - "bitflags 1.3.2", 5305 - "errno", 5306 - "io-lifetimes", 5307 - "libc", 5308 - "linux-raw-sys 0.3.8", 5309 - "windows-sys 0.48.0", 5310 - ] 5311 - 5312 - [[package]] 5313 - name = "rustix" 5314 - version = "0.38.37" 5315 - source = "registry+https://github.com/rust-lang/crates.io-index" 5316 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 5317 - dependencies = [ 5318 - "bitflags 2.4.1", 5319 - "errno", 5320 - "libc", 5321 - "linux-raw-sys 0.4.14", 5322 - "windows-sys 0.52.0", 5323 - ] 5324 - 5325 - [[package]] 5326 - name = "rustls" 5327 - version = "0.21.11" 5328 - source = "registry+https://github.com/rust-lang/crates.io-index" 5329 - checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4" 5330 - dependencies = [ 5331 - "log", 5332 - "ring 0.17.5", 5333 - "rustls-webpki 0.101.7", 5334 - "sct", 5335 - ] 5336 - 5337 - [[package]] 5338 - name = "rustls" 5339 - version = "0.22.4" 5340 - source = "registry+https://github.com/rust-lang/crates.io-index" 5341 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 5342 - dependencies = [ 5343 - "log", 5344 - "ring 0.17.5", 5345 - "rustls-pki-types", 5346 - "rustls-webpki 0.102.8", 5347 - "subtle", 5348 - "zeroize", 5349 - ] 5350 - 5351 - [[package]] 5352 - name = "rustls" 5353 - version = "0.23.14" 5354 - source = "registry+https://github.com/rust-lang/crates.io-index" 5355 - checksum = "415d9944693cb90382053259f89fbb077ea730ad7273047ec63b19bc9b160ba8" 5356 - dependencies = [ 5357 - "log", 5358 - "once_cell", 5359 - "ring 0.17.5", 5360 - "rustls-pki-types", 5361 - "rustls-webpki 0.102.8", 5362 - "subtle", 5363 - "zeroize", 5364 - ] 5365 - 5366 - [[package]] 5367 - name = "rustls-native-certs" 5368 - version = "0.7.0" 5369 - source = "registry+https://github.com/rust-lang/crates.io-index" 5370 - checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 5371 - dependencies = [ 5372 - "openssl-probe", 5373 - "rustls-pemfile 2.2.0", 5374 - "rustls-pki-types", 5375 - "schannel", 5376 - "security-framework", 5377 - ] 5378 - 5379 - [[package]] 5380 - name = "rustls-native-certs" 5381 - version = "0.8.0" 5382 - source = "registry+https://github.com/rust-lang/crates.io-index" 5383 - checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" 5384 - dependencies = [ 5385 - "openssl-probe", 5386 - "rustls-pemfile 2.2.0", 5387 - "rustls-pki-types", 5388 - "schannel", 5389 - "security-framework", 5390 - ] 5391 - 5392 - [[package]] 5393 - name = "rustls-pemfile" 5394 - version = "1.0.3" 5395 - source = "registry+https://github.com/rust-lang/crates.io-index" 5396 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 5397 - dependencies = [ 5398 - "base64 0.21.0", 5399 - ] 5400 - 5401 - [[package]] 5402 - name = "rustls-pemfile" 5403 - version = "2.2.0" 5404 - source = "registry+https://github.com/rust-lang/crates.io-index" 5405 - checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 5406 - dependencies = [ 5407 - "rustls-pki-types", 5408 - ] 5409 - 5410 - [[package]] 5411 - name = "rustls-pki-types" 5412 - version = "1.9.0" 5413 - source = "registry+https://github.com/rust-lang/crates.io-index" 5414 - checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55" 5415 - 5416 - [[package]] 5417 - name = "rustls-webpki" 5418 - version = "0.101.7" 5419 - source = "registry+https://github.com/rust-lang/crates.io-index" 5420 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 5421 - dependencies = [ 5422 - "ring 0.17.5", 5423 - "untrusted 0.9.0", 5424 - ] 5425 - 5426 - [[package]] 5427 - name = "rustls-webpki" 5428 - version = "0.102.8" 5429 - source = "registry+https://github.com/rust-lang/crates.io-index" 5430 - checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 5431 - dependencies = [ 5432 - "ring 0.17.5", 5433 - "rustls-pki-types", 5434 - "untrusted 0.9.0", 5435 - ] 5436 - 5437 - [[package]] 5438 - name = "rustversion" 5439 - version = "1.0.11" 5440 - source = "registry+https://github.com/rust-lang/crates.io-index" 5441 - checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 5442 - 5443 - [[package]] 5444 - name = "rusty-fork" 5445 - version = "0.3.0" 5446 - source = "registry+https://github.com/rust-lang/crates.io-index" 5447 - checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 5448 - dependencies = [ 5449 - "fnv", 5450 - "quick-error", 5451 - "tempfile", 5452 - "wait-timeout", 5453 - ] 5454 - 5455 - [[package]] 5456 - name = "rusty-forkfork" 5457 - version = "0.4.0" 5458 - source = "registry+https://github.com/rust-lang/crates.io-index" 5459 - checksum = "7ce85af4dfa2fb0c0143121ab5e424c71ea693867357c9159b8777b59984c218" 5460 - dependencies = [ 5461 - "fnv", 5462 - "quick-error", 5463 - "tempfile", 5464 - "wait-timeout", 5465 - ] 5466 - 5467 - [[package]] 5468 - name = "rusty-hook" 5469 - version = "0.11.2" 5470 - source = "registry+https://github.com/rust-lang/crates.io-index" 5471 - checksum = "96cee9be61be7e1cbadd851e58ed7449c29c620f00b23df937cb9cbc04ac21a3" 5472 - dependencies = [ 5473 - "ci_info", 5474 - "getopts", 5475 - "nias", 5476 - "toml 0.5.10", 5477 - ] 5478 - 5479 - [[package]] 5480 - name = "ryu" 5481 - version = "1.0.12" 5482 - source = "registry+https://github.com/rust-lang/crates.io-index" 5483 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 5484 - 5485 - [[package]] 5486 - name = "same-file" 5487 - version = "1.0.6" 5488 - source = "registry+https://github.com/rust-lang/crates.io-index" 5489 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5490 - dependencies = [ 5491 - "winapi-util", 5492 - ] 5493 - 5494 - [[package]] 5495 - name = "scc" 5496 - version = "2.1.0" 5497 - source = "registry+https://github.com/rust-lang/crates.io-index" 5498 - checksum = "ec96560eea317a9cc4e0bb1f6a2c93c09a19b8c4fc5cb3fcc0ec1c094cd783e2" 5499 - dependencies = [ 5500 - "sdd", 5501 - ] 5502 - 5503 - [[package]] 5504 - name = "schannel" 5505 - version = "0.1.23" 5506 - source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 5508 - dependencies = [ 5509 - "windows-sys 0.52.0", 5510 - ] 5511 - 5512 - [[package]] 5513 - name = "schemars" 5514 - version = "0.8.21" 5515 - source = "registry+https://github.com/rust-lang/crates.io-index" 5516 - checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" 5517 - dependencies = [ 5518 - "chrono", 5519 - "dyn-clone", 5520 - "indexmap 1.9.2", 5521 - "indexmap 2.6.0", 5522 - "schemars_derive", 5523 - "serde", 5524 - "serde_json", 5525 - "url", 5526 - "uuid", 5527 - ] 5528 - 5529 - [[package]] 5530 - name = "schemars_derive" 5531 - version = "0.8.21" 5532 - source = "registry+https://github.com/rust-lang/crates.io-index" 5533 - checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" 5534 - dependencies = [ 5535 - "proc-macro2", 5536 - "quote", 5537 - "serde_derive_internals", 5538 - "syn 2.0.79", 5539 - ] 5540 - 5541 - [[package]] 5542 - name = "scoped-tls" 5543 - version = "1.0.1" 5544 - source = "registry+https://github.com/rust-lang/crates.io-index" 5545 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 5546 - 5547 - [[package]] 5548 - name = "scopeguard" 5549 - version = "1.1.0" 5550 - source = "registry+https://github.com/rust-lang/crates.io-index" 5551 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 5552 - 5553 - [[package]] 5554 - name = "scratch" 5555 - version = "1.0.3" 5556 - source = "registry+https://github.com/rust-lang/crates.io-index" 5557 - checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 5558 - 5559 - [[package]] 5560 - name = "sct" 5561 - version = "0.7.0" 5562 - source = "registry+https://github.com/rust-lang/crates.io-index" 5563 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 5564 - dependencies = [ 5565 - "ring 0.16.20", 5566 - "untrusted 0.7.1", 5567 - ] 5568 - 5569 - [[package]] 5570 - name = "sdd" 5571 - version = "0.2.0" 5572 - source = "registry+https://github.com/rust-lang/crates.io-index" 5573 - checksum = "b84345e4c9bd703274a082fb80caaa99b7612be48dfaa1dd9266577ec412309d" 5574 - 5575 - [[package]] 5576 - name = "seahash" 5577 - version = "4.1.0" 5578 - source = "registry+https://github.com/rust-lang/crates.io-index" 5579 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 5580 - 5581 - [[package]] 5582 - name = "sealed_test" 5583 - version = "1.1.0" 5584 - source = "registry+https://github.com/rust-lang/crates.io-index" 5585 - checksum = "2a1867f8f005bd7fb73c367e2e45dd628417906a2ca27597fe59cbf04279a222" 5586 - dependencies = [ 5587 - "fs_extra", 5588 - "rusty-forkfork", 5589 - "sealed_test_derive", 5590 - "tempfile", 5591 - ] 5592 - 5593 - [[package]] 5594 - name = "sealed_test_derive" 5595 - version = "1.1.0" 5596 - source = "registry+https://github.com/rust-lang/crates.io-index" 5597 - checksum = "77253fb2d4451418d07025826028bcb96ee42d3e58859689a70ce62908009db6" 5598 - dependencies = [ 5599 - "quote", 5600 - "syn 2.0.79", 5601 - ] 5602 - 5603 - [[package]] 5604 - name = "security-framework" 5605 - version = "2.10.0" 5606 - source = "registry+https://github.com/rust-lang/crates.io-index" 5607 - checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" 5608 - dependencies = [ 5609 - "bitflags 1.3.2", 5610 - "core-foundation", 5611 - "core-foundation-sys", 5612 - "libc", 5613 - "security-framework-sys", 5614 - ] 5615 - 5616 - [[package]] 5617 - name = "security-framework-sys" 5618 - version = "2.11.0" 5619 - source = "registry+https://github.com/rust-lang/crates.io-index" 5620 - checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 5621 - dependencies = [ 5622 - "core-foundation-sys", 5623 - "libc", 5624 - ] 5625 - 5626 - [[package]] 5627 - name = "segment" 5628 - version = "0.6.0" 5629 - dependencies = [ 5630 - "ahash", 5631 - "atomic_refcell", 5632 - "atomicwrites", 5633 - "bincode", 5634 - "bitpacking", 5635 - "bitvec", 5636 - "byteorder", 5637 - "cc", 5638 - "cgroups-rs", 5639 - "charabia", 5640 - "chrono", 5641 - "common", 5642 - "criterion", 5643 - "data-encoding", 5644 - "dataset", 5645 - "delegate", 5646 - "env_logger", 5647 - "fnv", 5648 - "fs_extra", 5649 - "generic-tests", 5650 - "geo", 5651 - "geohash", 5652 - "half 2.4.1", 5653 - "http 1.0.0", 5654 - "indexmap 2.6.0", 5655 - "indicatif", 5656 - "io", 5657 - "io-uring", 5658 - "is_sorted", 5659 - "issues", 5660 - "itertools 0.13.0", 5661 - "log", 5662 - "macro_rules_attribute", 5663 - "memmap2 0.9.5", 5664 - "memory", 5665 - "merge", 5666 - "nom", 5667 - "num-cmp", 5668 - "num-derive", 5669 - "num-traits", 5670 - "ordered-float 4.3.0", 5671 - "parking_lot", 5672 - "pprof 0.13.0", 5673 - "procfs", 5674 - "proptest", 5675 - "quantization", 5676 - "rand 0.8.5", 5677 - "rand_distr", 5678 - "rayon", 5679 - "rmp-serde", 5680 - "rocksdb", 5681 - "rstest", 5682 - "schemars", 5683 - "seahash", 5684 - "segment", 5685 - "semver", 5686 - "serde", 5687 - "serde-untagged", 5688 - "serde-value", 5689 - "serde_cbor", 5690 - "serde_json", 5691 - "serde_variant", 5692 - "sha2", 5693 - "smallvec", 5694 - "smol_str", 5695 - "sparse", 5696 - "strum", 5697 - "sysinfo", 5698 - "tar", 5699 - "tempfile", 5700 - "thiserror", 5701 - "tinyvec", 5702 - "tracing", 5703 - "uuid", 5704 - "validator", 5705 - "walkdir", 5706 - "zerocopy", 5707 - ] 5708 - 5709 - [[package]] 5710 - name = "semver" 5711 - version = "1.0.23" 5712 - source = "registry+https://github.com/rust-lang/crates.io-index" 5713 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 5714 - dependencies = [ 5715 - "serde", 5716 - ] 5717 - 5718 - [[package]] 5719 - name = "serde" 5720 - version = "1.0.210" 5721 - source = "registry+https://github.com/rust-lang/crates.io-index" 5722 - checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 5723 - dependencies = [ 5724 - "serde_derive", 5725 - ] 5726 - 5727 - [[package]] 5728 - name = "serde-untagged" 5729 - version = "0.1.6" 5730 - source = "registry+https://github.com/rust-lang/crates.io-index" 5731 - checksum = "2676ba99bd82f75cae5cbd2c8eda6fa0b8760f18978ea840e980dd5567b5c5b6" 5732 - dependencies = [ 5733 - "erased-serde", 5734 - "serde", 5735 - "typeid", 5736 - ] 5737 - 5738 - [[package]] 5739 - name = "serde-value" 5740 - version = "0.7.0" 5741 - source = "registry+https://github.com/rust-lang/crates.io-index" 5742 - checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 5743 - dependencies = [ 5744 - "ordered-float 2.10.1", 5745 - "serde", 5746 - ] 5747 - 5748 - [[package]] 5749 - name = "serde_cbor" 5750 - version = "0.11.2" 5751 - source = "registry+https://github.com/rust-lang/crates.io-index" 5752 - checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 5753 - dependencies = [ 5754 - "half 1.8.2", 5755 - "serde", 5756 - ] 5757 - 5758 - [[package]] 5759 - name = "serde_derive" 5760 - version = "1.0.210" 5761 - source = "registry+https://github.com/rust-lang/crates.io-index" 5762 - checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 5763 - dependencies = [ 5764 - "proc-macro2", 5765 - "quote", 5766 - "syn 2.0.79", 5767 - ] 5768 - 5769 - [[package]] 5770 - name = "serde_derive_internals" 5771 - version = "0.29.0" 5772 - source = "registry+https://github.com/rust-lang/crates.io-index" 5773 - checksum = "330f01ce65a3a5fe59a60c82f3c9a024b573b8a6e875bd233fe5f934e71d54e3" 5774 - dependencies = [ 5775 - "proc-macro2", 5776 - "quote", 5777 - "syn 2.0.79", 5778 - ] 5779 - 5780 - [[package]] 5781 - name = "serde_json" 5782 - version = "1.0.128" 5783 - source = "registry+https://github.com/rust-lang/crates.io-index" 5784 - checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 5785 - dependencies = [ 5786 - "indexmap 2.6.0", 5787 - "itoa", 5788 - "memchr", 5789 - "ryu", 5790 - "serde", 5791 - ] 5792 - 5793 - [[package]] 5794 - name = "serde_plain" 5795 - version = "1.0.1" 5796 - source = "registry+https://github.com/rust-lang/crates.io-index" 5797 - checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae" 5798 - dependencies = [ 5799 - "serde", 5800 - ] 5801 - 5802 - [[package]] 5803 - name = "serde_qs" 5804 - version = "0.13.0" 5805 - source = "registry+https://github.com/rust-lang/crates.io-index" 5806 - checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6" 5807 - dependencies = [ 5808 - "actix-web", 5809 - "futures", 5810 - "percent-encoding", 5811 - "serde", 5812 - "thiserror", 5813 - ] 5814 - 5815 - [[package]] 5816 - name = "serde_spanned" 5817 - version = "0.6.5" 5818 - source = "registry+https://github.com/rust-lang/crates.io-index" 5819 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 5820 - dependencies = [ 5821 - "serde", 5822 - ] 5823 - 5824 - [[package]] 5825 - name = "serde_urlencoded" 5826 - version = "0.7.1" 5827 - source = "registry+https://github.com/rust-lang/crates.io-index" 5828 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5829 - dependencies = [ 5830 - "form_urlencoded", 5831 - "itoa", 5832 - "ryu", 5833 - "serde", 5834 - ] 5835 - 5836 - [[package]] 5837 - name = "serde_variant" 5838 - version = "0.1.3" 5839 - source = "registry+https://github.com/rust-lang/crates.io-index" 5840 - checksum = "0a0068df419f9d9b6488fdded3f1c818522cdea328e02ce9d9f147380265a432" 5841 - dependencies = [ 5842 - "serde", 5843 - ] 5844 - 5845 - [[package]] 5846 - name = "serial_test" 5847 - version = "3.1.1" 5848 - source = "registry+https://github.com/rust-lang/crates.io-index" 5849 - checksum = "4b4b487fe2acf240a021cf57c6b2b4903b1e78ca0ecd862a71b71d2a51fed77d" 5850 - dependencies = [ 5851 - "once_cell", 5852 - "parking_lot", 5853 - "scc", 5854 - "serial_test_derive", 5855 - ] 5856 - 5857 - [[package]] 5858 - name = "serial_test_derive" 5859 - version = "3.1.1" 5860 - source = "registry+https://github.com/rust-lang/crates.io-index" 5861 - checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67" 5862 - dependencies = [ 5863 - "proc-macro2", 5864 - "quote", 5865 - "syn 2.0.79", 5866 - ] 5867 - 5868 - [[package]] 5869 - name = "sha1" 5870 - version = "0.10.5" 5871 - source = "registry+https://github.com/rust-lang/crates.io-index" 5872 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 5873 - dependencies = [ 5874 - "cfg-if", 5875 - "cpufeatures", 5876 - "digest", 5877 - ] 5878 - 5879 - [[package]] 5880 - name = "sha2" 5881 - version = "0.10.8" 5882 - source = "registry+https://github.com/rust-lang/crates.io-index" 5883 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 5884 - dependencies = [ 5885 - "cfg-if", 5886 - "cpufeatures", 5887 - "digest", 5888 - ] 5889 - 5890 - [[package]] 5891 - name = "sharded-slab" 5892 - version = "0.1.4" 5893 - source = "registry+https://github.com/rust-lang/crates.io-index" 5894 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 5895 - dependencies = [ 5896 - "lazy_static", 5897 - ] 5898 - 5899 - [[package]] 5900 - name = "shlex" 5901 - version = "1.3.0" 5902 - source = "registry+https://github.com/rust-lang/crates.io-index" 5903 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 5904 - 5905 - [[package]] 5906 - name = "signal-hook-registry" 5907 - version = "1.4.0" 5908 - source = "registry+https://github.com/rust-lang/crates.io-index" 5909 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 5910 - dependencies = [ 5911 - "libc", 5912 - ] 5913 - 5914 - [[package]] 5915 - name = "simple_asn1" 5916 - version = "0.6.2" 5917 - source = "registry+https://github.com/rust-lang/crates.io-index" 5918 - checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 5919 - dependencies = [ 5920 - "num-bigint", 5921 - "num-traits", 5922 - "thiserror", 5923 - "time", 5924 - ] 5925 - 5926 - [[package]] 5927 - name = "siphasher" 5928 - version = "0.3.10" 5929 - source = "registry+https://github.com/rust-lang/crates.io-index" 5930 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 5931 - 5932 - [[package]] 5933 - name = "slab" 5934 - version = "0.4.7" 5935 - source = "registry+https://github.com/rust-lang/crates.io-index" 5936 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 5937 - dependencies = [ 5938 - "autocfg", 5939 - ] 5940 - 5941 - [[package]] 5942 - name = "slice-group-by" 5943 - version = "0.3.1" 5944 - source = "registry+https://github.com/rust-lang/crates.io-index" 5945 - checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" 5946 - 5947 - [[package]] 5948 - name = "slog" 5949 - version = "2.7.0" 5950 - source = "registry+https://github.com/rust-lang/crates.io-index" 5951 - checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06" 5952 - 5953 - [[package]] 5954 - name = "slog-scope" 5955 - version = "4.4.0" 5956 - source = "registry+https://github.com/rust-lang/crates.io-index" 5957 - checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" 5958 - dependencies = [ 5959 - "arc-swap", 5960 - "lazy_static", 5961 - "slog", 5962 - ] 5963 - 5964 - [[package]] 5965 - name = "slog-stdlog" 5966 - version = "4.1.1" 5967 - source = "registry+https://github.com/rust-lang/crates.io-index" 5968 - checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" 5969 - dependencies = [ 5970 - "log", 5971 - "slog", 5972 - "slog-scope", 5973 - ] 5974 - 5975 - [[package]] 5976 - name = "smallvec" 5977 - version = "1.13.2" 5978 - source = "registry+https://github.com/rust-lang/crates.io-index" 5979 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 5980 - 5981 - [[package]] 5982 - name = "smol_str" 5983 - version = "0.3.1" 5984 - source = "registry+https://github.com/rust-lang/crates.io-index" 5985 - checksum = "66eaf762c5af19db3108300515c8aa7a50efc90ff745f4c62288052ebf9fdd25" 5986 - dependencies = [ 5987 - "borsh", 5988 - "serde", 5989 - ] 5990 - 5991 - [[package]] 5992 - name = "snafu" 5993 - version = "0.8.4" 5994 - source = "registry+https://github.com/rust-lang/crates.io-index" 5995 - checksum = "2b835cb902660db3415a672d862905e791e54d306c6e8189168c7f3d9ae1c79d" 5996 - dependencies = [ 5997 - "snafu-derive", 5998 - ] 5999 - 6000 - [[package]] 6001 - name = "snafu-derive" 6002 - version = "0.8.4" 6003 - source = "registry+https://github.com/rust-lang/crates.io-index" 6004 - checksum = "38d1e02fca405f6280643174a50c942219f0bbf4dbf7d480f1dd864d6f211ae5" 6005 - dependencies = [ 6006 - "heck 0.5.0", 6007 - "proc-macro2", 6008 - "quote", 6009 - "syn 2.0.79", 6010 - ] 6011 - 6012 - [[package]] 6013 - name = "socket2" 6014 - version = "0.4.9" 6015 - source = "registry+https://github.com/rust-lang/crates.io-index" 6016 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 6017 - dependencies = [ 6018 - "libc", 6019 - "winapi", 6020 - ] 6021 - 6022 - [[package]] 6023 - name = "socket2" 6024 - version = "0.5.5" 6025 - source = "registry+https://github.com/rust-lang/crates.io-index" 6026 - checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 6027 - dependencies = [ 6028 - "libc", 6029 - "windows-sys 0.48.0", 6030 - ] 6031 - 6032 - [[package]] 6033 - name = "spade" 6034 - version = "2.4.1" 6035 - source = "registry+https://github.com/rust-lang/crates.io-index" 6036 - checksum = "87a3ef2efbc408c9051c1a27ce7edff430d74531d31a480b7ca4f618072c2670" 6037 - dependencies = [ 6038 - "hashbrown 0.14.2", 6039 - "num-traits", 6040 - "robust", 6041 - "smallvec", 6042 - ] 6043 - 6044 - [[package]] 6045 - name = "sparse" 6046 - version = "0.1.0" 6047 - dependencies = [ 6048 - "bitpacking", 6049 - "common", 6050 - "criterion", 6051 - "dataset", 6052 - "generic-tests", 6053 - "half 2.4.1", 6054 - "indicatif", 6055 - "io", 6056 - "itertools 0.13.0", 6057 - "memmap2 0.9.5", 6058 - "memory", 6059 - "ordered-float 4.3.0", 6060 - "parking_lot", 6061 - "pprof 0.13.0", 6062 - "rand 0.8.5", 6063 - "schemars", 6064 - "serde", 6065 - "serde_json", 6066 - "sparse", 6067 - "tempfile", 6068 - "validator", 6069 - ] 6070 - 6071 - [[package]] 6072 - name = "spin" 6073 - version = "0.5.2" 6074 - source = "registry+https://github.com/rust-lang/crates.io-index" 6075 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 6076 - 6077 - [[package]] 6078 - name = "spin" 6079 - version = "0.9.8" 6080 - source = "registry+https://github.com/rust-lang/crates.io-index" 6081 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 6082 - 6083 - [[package]] 6084 - name = "stable_deref_trait" 6085 - version = "1.2.0" 6086 - source = "registry+https://github.com/rust-lang/crates.io-index" 6087 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 6088 - 6089 - [[package]] 6090 - name = "static_assertions" 6091 - version = "1.1.0" 6092 - source = "registry+https://github.com/rust-lang/crates.io-index" 6093 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 6094 - 6095 - [[package]] 6096 - name = "storage" 6097 - version = "0.2.0" 6098 - dependencies = [ 6099 - "anyhow", 6100 - "api", 6101 - "async-trait", 6102 - "atomicwrites", 6103 - "cancel", 6104 - "chrono", 6105 - "collection", 6106 - "common", 6107 - "env_logger", 6108 - "futures", 6109 - "http 0.2.9", 6110 - "io", 6111 - "issues", 6112 - "itertools 0.13.0", 6113 - "log", 6114 - "memory", 6115 - "parking_lot", 6116 - "proptest", 6117 - "prost 0.11.9", 6118 - "protobuf", 6119 - "raft", 6120 - "rand 0.8.5", 6121 - "reqwest 0.12.8", 6122 - "schemars", 6123 - "segment", 6124 - "serde", 6125 - "serde_cbor", 6126 - "serde_json", 6127 - "strum", 6128 - "tar", 6129 - "tempfile", 6130 - "thiserror", 6131 - "tokio", 6132 - "tonic 0.11.0", 6133 - "tracing", 6134 - "url", 6135 - "uuid", 6136 - "validator", 6137 - "wal", 6138 - ] 6139 - 6140 - [[package]] 6141 - name = "str_stack" 6142 - version = "0.1.0" 6143 - source = "registry+https://github.com/rust-lang/crates.io-index" 6144 - checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb" 6145 - 6146 - [[package]] 6147 - name = "strsim" 6148 - version = "0.10.0" 6149 - source = "registry+https://github.com/rust-lang/crates.io-index" 6150 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 6151 - 6152 - [[package]] 6153 - name = "strsim" 6154 - version = "0.11.0" 6155 - source = "registry+https://github.com/rust-lang/crates.io-index" 6156 - checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 6157 - 6158 - [[package]] 6159 - name = "strum" 6160 - version = "0.26.3" 6161 - source = "registry+https://github.com/rust-lang/crates.io-index" 6162 - checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 6163 - dependencies = [ 6164 - "strum_macros", 6165 - ] 6166 - 6167 - [[package]] 6168 - name = "strum_macros" 6169 - version = "0.26.4" 6170 - source = "registry+https://github.com/rust-lang/crates.io-index" 6171 - checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 6172 - dependencies = [ 6173 - "heck 0.5.0", 6174 - "proc-macro2", 6175 - "quote", 6176 - "rustversion", 6177 - "syn 2.0.79", 6178 - ] 6179 - 6180 - [[package]] 6181 - name = "subtle" 6182 - version = "2.5.0" 6183 - source = "registry+https://github.com/rust-lang/crates.io-index" 6184 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 6185 - 6186 - [[package]] 6187 - name = "symbolic-common" 6188 - version = "12.2.0" 6189 - source = "registry+https://github.com/rust-lang/crates.io-index" 6190 - checksum = "38f7afd8bcd36190409e6b71d89928f7f09d918a7aa3460d847bc49a538d672e" 6191 - dependencies = [ 6192 - "debugid", 6193 - "memmap2 0.5.10", 6194 - "stable_deref_trait", 6195 - "uuid", 6196 - ] 6197 - 6198 - [[package]] 6199 - name = "symbolic-demangle" 6200 - version = "12.2.0" 6201 - source = "registry+https://github.com/rust-lang/crates.io-index" 6202 - checksum = "ec64922563a36e3fe686b6d99f06f25dacad2a202ac7502ed642930a188fb20a" 6203 - dependencies = [ 6204 - "cpp_demangle", 6205 - "rustc-demangle", 6206 - "symbolic-common", 6207 - ] 6208 - 6209 - [[package]] 6210 - name = "syn" 6211 - version = "1.0.107" 6212 - source = "registry+https://github.com/rust-lang/crates.io-index" 6213 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 6214 - dependencies = [ 6215 - "proc-macro2", 6216 - "quote", 6217 - "unicode-ident", 6218 - ] 6219 - 6220 - [[package]] 6221 - name = "syn" 6222 - version = "2.0.79" 6223 - source = "registry+https://github.com/rust-lang/crates.io-index" 6224 - checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" 6225 - dependencies = [ 6226 - "proc-macro2", 6227 - "quote", 6228 - "unicode-ident", 6229 - ] 6230 - 6231 - [[package]] 6232 - name = "sync_wrapper" 6233 - version = "0.1.2" 6234 - source = "registry+https://github.com/rust-lang/crates.io-index" 6235 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 6236 - 6237 - [[package]] 6238 - name = "sync_wrapper" 6239 - version = "1.0.1" 6240 - source = "registry+https://github.com/rust-lang/crates.io-index" 6241 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 6242 - dependencies = [ 6243 - "futures-core", 6244 - ] 6245 - 6246 - [[package]] 6247 - name = "sys-info" 6248 - version = "0.9.1" 6249 - source = "registry+https://github.com/rust-lang/crates.io-index" 6250 - checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c" 6251 - dependencies = [ 6252 - "cc", 6253 - "libc", 6254 - ] 6255 - 6256 - [[package]] 6257 - name = "sysinfo" 6258 - version = "0.32.0" 6259 - source = "registry+https://github.com/rust-lang/crates.io-index" 6260 - checksum = "e3b5ae3f4f7d64646c46c4cae4e3f01d1c5d255c7406fdd7c7f999a94e488791" 6261 - dependencies = [ 6262 - "core-foundation-sys", 6263 - "libc", 6264 - "memchr", 6265 - "ntapi", 6266 - "rayon", 6267 - "windows 0.57.0", 6268 - ] 6269 - 6270 - [[package]] 6271 - name = "system-configuration" 6272 - version = "0.5.1" 6273 - source = "registry+https://github.com/rust-lang/crates.io-index" 6274 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 6275 - dependencies = [ 6276 - "bitflags 1.3.2", 6277 - "core-foundation", 6278 - "system-configuration-sys", 6279 - ] 6280 - 6281 - [[package]] 6282 - name = "system-configuration-sys" 6283 - version = "0.5.0" 6284 - source = "registry+https://github.com/rust-lang/crates.io-index" 6285 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 6286 - dependencies = [ 6287 - "core-foundation-sys", 6288 - "libc", 6289 - ] 6290 - 6291 - [[package]] 6292 - name = "tap" 6293 - version = "1.0.1" 6294 - source = "registry+https://github.com/rust-lang/crates.io-index" 6295 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6296 - 6297 - [[package]] 6298 - name = "tar" 6299 - version = "0.4.41" 6300 - source = "git+https://github.com/qdrant/tar-rs?branch=main#856dbd090eede1736604f23cfe99a104b5639734" 6301 - dependencies = [ 6302 - "filetime", 6303 - "libc", 6304 - "xattr", 6305 - ] 6306 - 6307 - [[package]] 6308 - name = "tempfile" 6309 - version = "3.13.0" 6310 - source = "registry+https://github.com/rust-lang/crates.io-index" 6311 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 6312 - dependencies = [ 6313 - "cfg-if", 6314 - "fastrand", 6315 - "once_cell", 6316 - "rustix 0.38.37", 6317 - "windows-sys 0.59.0", 6318 - ] 6319 - 6320 - [[package]] 6321 - name = "termcolor" 6322 - version = "1.1.3" 6323 - source = "registry+https://github.com/rust-lang/crates.io-index" 6324 - checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 6325 - dependencies = [ 6326 - "winapi-util", 6327 - ] 6328 - 6329 - [[package]] 6330 - name = "terminal_size" 6331 - version = "0.1.17" 6332 - source = "registry+https://github.com/rust-lang/crates.io-index" 6333 - checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 6334 - dependencies = [ 6335 - "libc", 6336 - "winapi", 6337 - ] 6338 - 6339 - [[package]] 6340 - name = "textwrap" 6341 - version = "0.16.1" 6342 - source = "registry+https://github.com/rust-lang/crates.io-index" 6343 - checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 6344 - 6345 - [[package]] 6346 - name = "thiserror" 6347 - version = "1.0.64" 6348 - source = "registry+https://github.com/rust-lang/crates.io-index" 6349 - checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 6350 - dependencies = [ 6351 - "thiserror-impl", 6352 - ] 6353 - 6354 - [[package]] 6355 - name = "thiserror-impl" 6356 - version = "1.0.64" 6357 - source = "registry+https://github.com/rust-lang/crates.io-index" 6358 - checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 6359 - dependencies = [ 6360 - "proc-macro2", 6361 - "quote", 6362 - "syn 2.0.79", 6363 - ] 6364 - 6365 - [[package]] 6366 - name = "thread-id" 6367 - version = "4.0.0" 6368 - source = "registry+https://github.com/rust-lang/crates.io-index" 6369 - checksum = "5fdfe0627923f7411a43ec9ec9c39c3a9b4151be313e0922042581fb6c9b717f" 6370 - dependencies = [ 6371 - "libc", 6372 - "redox_syscall 0.2.16", 6373 - "winapi", 6374 - ] 6375 - 6376 - [[package]] 6377 - name = "thread-priority" 6378 - version = "1.1.0" 6379 - source = "registry+https://github.com/rust-lang/crates.io-index" 6380 - checksum = "0d3b04d33c9633b8662b167b847c7ab521f83d1ae20f2321b65b5b925e532e36" 6381 - dependencies = [ 6382 - "bitflags 2.4.1", 6383 - "cfg-if", 6384 - "libc", 6385 - "log", 6386 - "rustversion", 6387 - "winapi", 6388 - ] 6389 - 6390 - [[package]] 6391 - name = "thread_local" 6392 - version = "1.1.7" 6393 - source = "registry+https://github.com/rust-lang/crates.io-index" 6394 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 6395 - dependencies = [ 6396 - "cfg-if", 6397 - "once_cell", 6398 - ] 6399 - 6400 - [[package]] 6401 - name = "tikv-jemalloc-sys" 6402 - version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" 6403 - source = "registry+https://github.com/rust-lang/crates.io-index" 6404 - checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d" 6405 - dependencies = [ 6406 - "cc", 6407 - "libc", 6408 - ] 6409 - 6410 - [[package]] 6411 - name = "tikv-jemallocator" 6412 - version = "0.6.0" 6413 - source = "registry+https://github.com/rust-lang/crates.io-index" 6414 - checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865" 6415 - dependencies = [ 6416 - "libc", 6417 - "tikv-jemalloc-sys", 6418 - ] 6419 - 6420 - [[package]] 6421 - name = "time" 6422 - version = "0.3.17" 6423 - source = "registry+https://github.com/rust-lang/crates.io-index" 6424 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 6425 - dependencies = [ 6426 - "itoa", 6427 - "serde", 6428 - "time-core", 6429 - "time-macros", 6430 - ] 6431 - 6432 - [[package]] 6433 - name = "time-core" 6434 - version = "0.1.0" 6435 - source = "registry+https://github.com/rust-lang/crates.io-index" 6436 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 6437 - 6438 - [[package]] 6439 - name = "time-macros" 6440 - version = "0.2.6" 6441 - source = "registry+https://github.com/rust-lang/crates.io-index" 6442 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 6443 - dependencies = [ 6444 - "time-core", 6445 - ] 6446 - 6447 - [[package]] 6448 - name = "tiny-keccak" 6449 - version = "2.0.2" 6450 - source = "registry+https://github.com/rust-lang/crates.io-index" 6451 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 6452 - dependencies = [ 6453 - "crunchy", 6454 - ] 6455 - 6456 - [[package]] 6457 - name = "tinytemplate" 6458 - version = "1.2.1" 6459 - source = "registry+https://github.com/rust-lang/crates.io-index" 6460 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 6461 - dependencies = [ 6462 - "serde", 6463 - "serde_json", 6464 - ] 6465 - 6466 - [[package]] 6467 - name = "tinyvec" 6468 - version = "1.8.0" 6469 - source = "registry+https://github.com/rust-lang/crates.io-index" 6470 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 6471 - dependencies = [ 6472 - "tinyvec_macros", 6473 - ] 6474 - 6475 - [[package]] 6476 - name = "tinyvec_macros" 6477 - version = "0.1.0" 6478 - source = "registry+https://github.com/rust-lang/crates.io-index" 6479 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 6480 - 6481 - [[package]] 6482 - name = "tokio" 6483 - version = "1.40.0" 6484 - source = "registry+https://github.com/rust-lang/crates.io-index" 6485 - checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 6486 - dependencies = [ 6487 - "backtrace", 6488 - "bytes", 6489 - "libc", 6490 - "mio 1.0.1", 6491 - "parking_lot", 6492 - "pin-project-lite", 6493 - "signal-hook-registry", 6494 - "socket2 0.5.5", 6495 - "tokio-macros", 6496 - "tracing", 6497 - "windows-sys 0.52.0", 6498 - ] 6499 - 6500 - [[package]] 6501 - name = "tokio-io-timeout" 6502 - version = "1.2.0" 6503 - source = "registry+https://github.com/rust-lang/crates.io-index" 6504 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 6505 - dependencies = [ 6506 - "pin-project-lite", 6507 - "tokio", 6508 - ] 6509 - 6510 - [[package]] 6511 - name = "tokio-macros" 6512 - version = "2.4.0" 6513 - source = "registry+https://github.com/rust-lang/crates.io-index" 6514 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 6515 - dependencies = [ 6516 - "proc-macro2", 6517 - "quote", 6518 - "syn 2.0.79", 6519 - ] 6520 - 6521 - [[package]] 6522 - name = "tokio-rustls" 6523 - version = "0.24.1" 6524 - source = "registry+https://github.com/rust-lang/crates.io-index" 6525 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 6526 - dependencies = [ 6527 - "rustls 0.21.11", 6528 - "tokio", 6529 - ] 6530 - 6531 - [[package]] 6532 - name = "tokio-rustls" 6533 - version = "0.25.0" 6534 - source = "registry+https://github.com/rust-lang/crates.io-index" 6535 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 6536 - dependencies = [ 6537 - "rustls 0.22.4", 6538 - "rustls-pki-types", 6539 - "tokio", 6540 - ] 6541 - 6542 - [[package]] 6543 - name = "tokio-rustls" 6544 - version = "0.26.0" 6545 - source = "registry+https://github.com/rust-lang/crates.io-index" 6546 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 6547 - dependencies = [ 6548 - "rustls 0.23.14", 6549 - "rustls-pki-types", 6550 - "tokio", 6551 - ] 6552 - 6553 - [[package]] 6554 - name = "tokio-stream" 6555 - version = "0.1.11" 6556 - source = "registry+https://github.com/rust-lang/crates.io-index" 6557 - checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 6558 - dependencies = [ 6559 - "futures-core", 6560 - "pin-project-lite", 6561 - "tokio", 6562 - ] 6563 - 6564 - [[package]] 6565 - name = "tokio-util" 6566 - version = "0.7.12" 6567 - source = "registry+https://github.com/rust-lang/crates.io-index" 6568 - checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 6569 - dependencies = [ 6570 - "bytes", 6571 - "futures-core", 6572 - "futures-sink", 6573 - "pin-project-lite", 6574 - "tokio", 6575 - ] 6576 - 6577 - [[package]] 6578 - name = "toml" 6579 - version = "0.5.10" 6580 - source = "registry+https://github.com/rust-lang/crates.io-index" 6581 - checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" 6582 - dependencies = [ 6583 - "serde", 6584 - ] 6585 - 6586 - [[package]] 6587 - name = "toml" 6588 - version = "0.8.9" 6589 - source = "registry+https://github.com/rust-lang/crates.io-index" 6590 - checksum = "c6a4b9e8023eb94392d3dca65d717c53abc5dad49c07cb65bb8fcd87115fa325" 6591 - dependencies = [ 6592 - "serde", 6593 - "serde_spanned", 6594 - "toml_datetime", 6595 - "toml_edit 0.21.1", 6596 - ] 6597 - 6598 - [[package]] 6599 - name = "toml_datetime" 6600 - version = "0.6.8" 6601 - source = "registry+https://github.com/rust-lang/crates.io-index" 6602 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 6603 - dependencies = [ 6604 - "serde", 6605 - ] 6606 - 6607 - [[package]] 6608 - name = "toml_edit" 6609 - version = "0.21.1" 6610 - source = "registry+https://github.com/rust-lang/crates.io-index" 6611 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 6612 - dependencies = [ 6613 - "indexmap 2.6.0", 6614 - "serde", 6615 - "serde_spanned", 6616 - "toml_datetime", 6617 - "winnow 0.5.37", 6618 - ] 6619 - 6620 - [[package]] 6621 - name = "toml_edit" 6622 - version = "0.22.22" 6623 - source = "registry+https://github.com/rust-lang/crates.io-index" 6624 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 6625 - dependencies = [ 6626 - "indexmap 2.6.0", 6627 - "toml_datetime", 6628 - "winnow 0.6.20", 6629 - ] 6630 - 6631 - [[package]] 6632 - name = "tonic" 6633 - version = "0.11.0" 6634 - source = "registry+https://github.com/rust-lang/crates.io-index" 6635 - checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" 6636 - dependencies = [ 6637 - "async-stream", 6638 - "async-trait", 6639 - "axum 0.6.12", 6640 - "base64 0.21.0", 6641 - "bytes", 6642 - "flate2", 6643 - "h2 0.3.26", 6644 - "http 0.2.9", 6645 - "http-body 0.4.5", 6646 - "hyper 0.14.26", 6647 - "hyper-timeout 0.4.1", 6648 - "percent-encoding", 6649 - "pin-project", 6650 - "prost 0.12.6", 6651 - "rustls-pemfile 2.2.0", 6652 - "rustls-pki-types", 6653 - "tokio", 6654 - "tokio-rustls 0.25.0", 6655 - "tokio-stream", 6656 - "tower 0.4.13", 6657 - "tower-layer", 6658 - "tower-service", 6659 - "tracing", 6660 - ] 6661 - 6662 - [[package]] 6663 - name = "tonic" 6664 - version = "0.12.1" 6665 - source = "registry+https://github.com/rust-lang/crates.io-index" 6666 - checksum = "38659f4a91aba8598d27821589f5db7dddd94601e7a01b1e485a50e5484c7401" 6667 - dependencies = [ 6668 - "async-stream", 6669 - "async-trait", 6670 - "axum 0.7.5", 6671 - "base64 0.22.0", 6672 - "bytes", 6673 - "h2 0.4.4", 6674 - "http 1.0.0", 6675 - "http-body 1.0.0", 6676 - "http-body-util", 6677 - "hyper 1.4.1", 6678 - "hyper-timeout 0.5.1", 6679 - "hyper-util", 6680 - "percent-encoding", 6681 - "pin-project", 6682 - "prost 0.13.1", 6683 - "socket2 0.5.5", 6684 - "tokio", 6685 - "tokio-stream", 6686 - "tower 0.4.13", 6687 - "tower-layer", 6688 - "tower-service", 6689 - "tracing", 6690 - ] 6691 - 6692 - [[package]] 6693 - name = "tonic-build" 6694 - version = "0.11.0" 6695 - source = "registry+https://github.com/rust-lang/crates.io-index" 6696 - checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2" 6697 - dependencies = [ 6698 - "prettyplease 0.2.17", 6699 - "proc-macro2", 6700 - "prost-build 0.12.6", 6701 - "quote", 6702 - "syn 2.0.79", 6703 - ] 6704 - 6705 - [[package]] 6706 - name = "tonic-reflection" 6707 - version = "0.11.0" 6708 - source = "registry+https://github.com/rust-lang/crates.io-index" 6709 - checksum = "548c227bd5c0fae5925812c4ec6c66ffcfced23ea370cb823f4d18f0fc1cb6a7" 6710 - dependencies = [ 6711 - "prost 0.12.6", 6712 - "prost-types 0.12.6", 6713 - "tokio", 6714 - "tokio-stream", 6715 - "tonic 0.11.0", 6716 - ] 6717 - 6718 - [[package]] 6719 - name = "tower" 6720 - version = "0.4.13" 6721 - source = "registry+https://github.com/rust-lang/crates.io-index" 6722 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 6723 - dependencies = [ 6724 - "futures-core", 6725 - "futures-util", 6726 - "indexmap 1.9.2", 6727 - "pin-project", 6728 - "pin-project-lite", 6729 - "rand 0.8.5", 6730 - "slab", 6731 - "tokio", 6732 - "tokio-util", 6733 - "tower-layer", 6734 - "tower-service", 6735 - "tracing", 6736 - ] 6737 - 6738 - [[package]] 6739 - name = "tower" 6740 - version = "0.5.1" 6741 - source = "registry+https://github.com/rust-lang/crates.io-index" 6742 - checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" 6743 - dependencies = [ 6744 - "futures-core", 6745 - "futures-util", 6746 - "pin-project-lite", 6747 - "sync_wrapper 0.1.2", 6748 - "tower-layer", 6749 - "tower-service", 6750 - ] 6751 - 6752 - [[package]] 6753 - name = "tower-layer" 6754 - version = "0.3.3" 6755 - source = "registry+https://github.com/rust-lang/crates.io-index" 6756 - checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 6757 - 6758 - [[package]] 6759 - name = "tower-service" 6760 - version = "0.3.3" 6761 - source = "registry+https://github.com/rust-lang/crates.io-index" 6762 - checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 6763 - 6764 - [[package]] 6765 - name = "tracing" 6766 - version = "0.1.40" 6767 - source = "registry+https://github.com/rust-lang/crates.io-index" 6768 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 6769 - dependencies = [ 6770 - "log", 6771 - "pin-project-lite", 6772 - "tracing-attributes", 6773 - "tracing-core", 6774 - ] 6775 - 6776 - [[package]] 6777 - name = "tracing-attributes" 6778 - version = "0.1.27" 6779 - source = "registry+https://github.com/rust-lang/crates.io-index" 6780 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 6781 - dependencies = [ 6782 - "proc-macro2", 6783 - "quote", 6784 - "syn 2.0.79", 6785 - ] 6786 - 6787 - [[package]] 6788 - name = "tracing-core" 6789 - version = "0.1.32" 6790 - source = "registry+https://github.com/rust-lang/crates.io-index" 6791 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 6792 - dependencies = [ 6793 - "once_cell", 6794 - "valuable", 6795 - ] 6796 - 6797 - [[package]] 6798 - name = "tracing-log" 6799 - version = "0.2.0" 6800 - source = "registry+https://github.com/rust-lang/crates.io-index" 6801 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 6802 - dependencies = [ 6803 - "log", 6804 - "once_cell", 6805 - "tracing-core", 6806 - ] 6807 - 6808 - [[package]] 6809 - name = "tracing-subscriber" 6810 - version = "0.3.18" 6811 - source = "registry+https://github.com/rust-lang/crates.io-index" 6812 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 6813 - dependencies = [ 6814 - "matchers", 6815 - "nu-ansi-term", 6816 - "once_cell", 6817 - "parking_lot", 6818 - "regex", 6819 - "sharded-slab", 6820 - "smallvec", 6821 - "thread_local", 6822 - "tracing", 6823 - "tracing-core", 6824 - "tracing-log", 6825 - ] 6826 - 6827 - [[package]] 6828 - name = "tracing-tracy" 6829 - version = "0.11.3" 6830 - source = "registry+https://github.com/rust-lang/crates.io-index" 6831 - checksum = "dc775fdaf33c3dfd19dc354729e65e87914bc67dcdc390ca1210807b8bee5902" 6832 - dependencies = [ 6833 - "tracing-core", 6834 - "tracing-subscriber", 6835 - "tracy-client", 6836 - ] 6837 - 6838 - [[package]] 6839 - name = "tracy-client" 6840 - version = "0.17.0" 6841 - source = "registry+https://github.com/rust-lang/crates.io-index" 6842 - checksum = "59fb931a64ff88984f86d3e9bcd1ae8843aa7fe44dd0f8097527bc172351741d" 6843 - dependencies = [ 6844 - "loom", 6845 - "once_cell", 6846 - "tracy-client-sys", 6847 - ] 6848 - 6849 - [[package]] 6850 - name = "tracy-client-sys" 6851 - version = "0.21.2" 6852 - source = "registry+https://github.com/rust-lang/crates.io-index" 6853 - checksum = "2cb915ea3af048554640d76dd6f1492589a6401a41a30d789b983c1ec280455a" 6854 - dependencies = [ 6855 - "cc", 6856 - ] 6857 - 6858 - [[package]] 6859 - name = "try-lock" 6860 - version = "0.2.3" 6861 - source = "registry+https://github.com/rust-lang/crates.io-index" 6862 - checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 6863 - 6864 - [[package]] 6865 - name = "typeid" 6866 - version = "1.0.0" 6867 - source = "registry+https://github.com/rust-lang/crates.io-index" 6868 - checksum = "059d83cc991e7a42fc37bd50941885db0888e34209f8cfd9aab07ddec03bc9cf" 6869 - 6870 - [[package]] 6871 - name = "typenum" 6872 - version = "1.16.0" 6873 - source = "registry+https://github.com/rust-lang/crates.io-index" 6874 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 6875 - 6876 - [[package]] 6877 - name = "typetag" 6878 - version = "0.2.15" 6879 - source = "registry+https://github.com/rust-lang/crates.io-index" 6880 - checksum = "c43148481c7b66502c48f35b8eef38b6ccdc7a9f04bd4cc294226d901ccc9bc7" 6881 - dependencies = [ 6882 - "erased-serde", 6883 - "inventory", 6884 - "once_cell", 6885 - "serde", 6886 - "typetag-impl", 6887 - ] 6888 - 6889 - [[package]] 6890 - name = "typetag-impl" 6891 - version = "0.2.15" 6892 - source = "registry+https://github.com/rust-lang/crates.io-index" 6893 - checksum = "291db8a81af4840c10d636e047cac67664e343be44e24dfdbd1492df9a5d3390" 6894 - dependencies = [ 6895 - "proc-macro2", 6896 - "quote", 6897 - "syn 2.0.79", 6898 - ] 6899 - 6900 - [[package]] 6901 - name = "ucd-trie" 6902 - version = "0.1.5" 6903 - source = "registry+https://github.com/rust-lang/crates.io-index" 6904 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 6905 - 6906 - [[package]] 6907 - name = "unarray" 6908 - version = "0.1.4" 6909 - source = "registry+https://github.com/rust-lang/crates.io-index" 6910 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 6911 - 6912 - [[package]] 6913 - name = "unicase" 6914 - version = "2.6.0" 6915 - source = "registry+https://github.com/rust-lang/crates.io-index" 6916 - checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 6917 - dependencies = [ 6918 - "version_check", 6919 - ] 6920 - 6921 - [[package]] 6922 - name = "unicode-bidi" 6923 - version = "0.3.13" 6924 - source = "registry+https://github.com/rust-lang/crates.io-index" 6925 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 6926 - 6927 - [[package]] 6928 - name = "unicode-blocks" 6929 - version = "0.1.9" 6930 - source = "registry+https://github.com/rust-lang/crates.io-index" 6931 - checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b" 6932 - 6933 - [[package]] 6934 - name = "unicode-ident" 6935 - version = "1.0.13" 6936 - source = "registry+https://github.com/rust-lang/crates.io-index" 6937 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 6938 - 6939 - [[package]] 6940 - name = "unicode-normalization" 6941 - version = "0.1.23" 6942 - source = "registry+https://github.com/rust-lang/crates.io-index" 6943 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 6944 - dependencies = [ 6945 - "tinyvec", 6946 - ] 6947 - 6948 - [[package]] 6949 - name = "unicode-segmentation" 6950 - version = "1.11.0" 6951 - source = "registry+https://github.com/rust-lang/crates.io-index" 6952 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 6953 - 6954 - [[package]] 6955 - name = "unicode-width" 6956 - version = "0.1.10" 6957 - source = "registry+https://github.com/rust-lang/crates.io-index" 6958 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 6959 - 6960 - [[package]] 6961 - name = "untrusted" 6962 - version = "0.7.1" 6963 - source = "registry+https://github.com/rust-lang/crates.io-index" 6964 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 6965 - 6966 - [[package]] 6967 - name = "untrusted" 6968 - version = "0.9.0" 6969 - source = "registry+https://github.com/rust-lang/crates.io-index" 6970 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6971 - 6972 - [[package]] 6973 - name = "unwind" 6974 - version = "0.4.1" 6975 - source = "registry+https://github.com/rust-lang/crates.io-index" 6976 - checksum = "f0e0da3c8d6b71dbaf219188cc0e7f9ca3943f3263ca479920338d92d7ea5e07" 6977 - dependencies = [ 6978 - "foreign-types", 6979 - "libc", 6980 - "unwind-sys", 6981 - ] 6982 - 6983 - [[package]] 6984 - name = "unwind-sys" 6985 - version = "0.1.3" 6986 - source = "registry+https://github.com/rust-lang/crates.io-index" 6987 - checksum = "d554005b247de226d124a523cae6cd6a4348277071258296dda837cf760e02e7" 6988 - dependencies = [ 6989 - "libc", 6990 - "pkg-config", 6991 - ] 6992 - 6993 - [[package]] 6994 - name = "ureq" 6995 - version = "2.9.6" 6996 - source = "registry+https://github.com/rust-lang/crates.io-index" 6997 - checksum = "11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35" 6998 - dependencies = [ 6999 - "base64 0.21.0", 7000 - "log", 7001 - "once_cell", 7002 - "rustls 0.22.4", 7003 - "rustls-pki-types", 7004 - "rustls-webpki 0.102.8", 7005 - "url", 7006 - "webpki-roots 0.26.1", 7007 - ] 7008 - 7009 - [[package]] 7010 - name = "url" 7011 - version = "2.5.2" 7012 - source = "registry+https://github.com/rust-lang/crates.io-index" 7013 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 7014 - dependencies = [ 7015 - "form_urlencoded", 7016 - "idna", 7017 - "percent-encoding", 7018 - "serde", 7019 - ] 7020 - 7021 - [[package]] 7022 - name = "utf8parse" 7023 - version = "0.2.1" 7024 - source = "registry+https://github.com/rust-lang/crates.io-index" 7025 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 7026 - 7027 - [[package]] 7028 - name = "uuid" 7029 - version = "1.10.0" 7030 - source = "registry+https://github.com/rust-lang/crates.io-index" 7031 - checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 7032 - dependencies = [ 7033 - "getrandom 0.2.11", 7034 - "serde", 7035 - ] 7036 - 7037 - [[package]] 7038 - name = "v_htmlescape" 7039 - version = "0.15.8" 7040 - source = "registry+https://github.com/rust-lang/crates.io-index" 7041 - checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" 7042 - 7043 - [[package]] 7044 - name = "validator" 7045 - version = "0.18.1" 7046 - source = "registry+https://github.com/rust-lang/crates.io-index" 7047 - checksum = "db79c75af171630a3148bd3e6d7c4f42b6a9a014c2945bc5ed0020cbb8d9478e" 7048 - dependencies = [ 7049 - "idna", 7050 - "once_cell", 7051 - "regex", 7052 - "serde", 7053 - "serde_derive", 7054 - "serde_json", 7055 - "url", 7056 - "validator_derive", 7057 - ] 7058 - 7059 - [[package]] 7060 - name = "validator_derive" 7061 - version = "0.18.1" 7062 - source = "registry+https://github.com/rust-lang/crates.io-index" 7063 - checksum = "55591299b7007f551ed1eb79a684af7672c19c3193fb9e0a31936987bb2438ec" 7064 - dependencies = [ 7065 - "darling", 7066 - "once_cell", 7067 - "proc-macro-error", 7068 - "proc-macro2", 7069 - "quote", 7070 - "syn 2.0.79", 7071 - ] 7072 - 7073 - [[package]] 7074 - name = "valuable" 7075 - version = "0.1.0" 7076 - source = "registry+https://github.com/rust-lang/crates.io-index" 7077 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 7078 - 7079 - [[package]] 7080 - name = "vcpkg" 7081 - version = "0.2.15" 7082 - source = "registry+https://github.com/rust-lang/crates.io-index" 7083 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 7084 - 7085 - [[package]] 7086 - name = "version_check" 7087 - version = "0.9.4" 7088 - source = "registry+https://github.com/rust-lang/crates.io-index" 7089 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 7090 - 7091 - [[package]] 7092 - name = "wait-timeout" 7093 - version = "0.2.0" 7094 - source = "registry+https://github.com/rust-lang/crates.io-index" 7095 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 7096 - dependencies = [ 7097 - "libc", 7098 - ] 7099 - 7100 - [[package]] 7101 - name = "wal" 7102 - version = "0.1.2" 7103 - source = "git+https://github.com/qdrant/wal.git?rev=7c9202d0874b719212e6eacedaa795bfdf43199c#7c9202d0874b719212e6eacedaa795bfdf43199c" 7104 - dependencies = [ 7105 - "byteorder", 7106 - "crc32c", 7107 - "crossbeam-channel", 7108 - "docopt", 7109 - "env_logger", 7110 - "fs4", 7111 - "log", 7112 - "memmap2 0.9.5", 7113 - "rand 0.8.5", 7114 - "rand_distr", 7115 - "rustix 0.38.37", 7116 - "serde", 7117 - ] 7118 - 7119 - [[package]] 7120 - name = "walkdir" 7121 - version = "2.5.0" 7122 - source = "registry+https://github.com/rust-lang/crates.io-index" 7123 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 7124 - dependencies = [ 7125 - "same-file", 7126 - "winapi-util", 7127 - ] 7128 - 7129 - [[package]] 7130 - name = "want" 7131 - version = "0.3.0" 7132 - source = "registry+https://github.com/rust-lang/crates.io-index" 7133 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 7134 - dependencies = [ 7135 - "log", 7136 - "try-lock", 7137 - ] 7138 - 7139 - [[package]] 7140 - name = "wasi" 7141 - version = "0.9.0+wasi-snapshot-preview1" 7142 - source = "registry+https://github.com/rust-lang/crates.io-index" 7143 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 7144 - 7145 - [[package]] 7146 - name = "wasi" 7147 - version = "0.11.0+wasi-snapshot-preview1" 7148 - source = "registry+https://github.com/rust-lang/crates.io-index" 7149 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 7150 - 7151 - [[package]] 7152 - name = "wasm-bindgen" 7153 - version = "0.2.92" 7154 - source = "registry+https://github.com/rust-lang/crates.io-index" 7155 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 7156 - dependencies = [ 7157 - "cfg-if", 7158 - "wasm-bindgen-macro", 7159 - ] 7160 - 7161 - [[package]] 7162 - name = "wasm-bindgen-backend" 7163 - version = "0.2.92" 7164 - source = "registry+https://github.com/rust-lang/crates.io-index" 7165 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 7166 - dependencies = [ 7167 - "bumpalo", 7168 - "log", 7169 - "once_cell", 7170 - "proc-macro2", 7171 - "quote", 7172 - "syn 2.0.79", 7173 - "wasm-bindgen-shared", 7174 - ] 7175 - 7176 - [[package]] 7177 - name = "wasm-bindgen-futures" 7178 - version = "0.4.42" 7179 - source = "registry+https://github.com/rust-lang/crates.io-index" 7180 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 7181 - dependencies = [ 7182 - "cfg-if", 7183 - "js-sys", 7184 - "wasm-bindgen", 7185 - "web-sys", 7186 - ] 7187 - 7188 - [[package]] 7189 - name = "wasm-bindgen-macro" 7190 - version = "0.2.92" 7191 - source = "registry+https://github.com/rust-lang/crates.io-index" 7192 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 7193 - dependencies = [ 7194 - "quote", 7195 - "wasm-bindgen-macro-support", 7196 - ] 7197 - 7198 - [[package]] 7199 - name = "wasm-bindgen-macro-support" 7200 - version = "0.2.92" 7201 - source = "registry+https://github.com/rust-lang/crates.io-index" 7202 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 7203 - dependencies = [ 7204 - "proc-macro2", 7205 - "quote", 7206 - "syn 2.0.79", 7207 - "wasm-bindgen-backend", 7208 - "wasm-bindgen-shared", 7209 - ] 7210 - 7211 - [[package]] 7212 - name = "wasm-bindgen-shared" 7213 - version = "0.2.92" 7214 - source = "registry+https://github.com/rust-lang/crates.io-index" 7215 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 7216 - 7217 - [[package]] 7218 - name = "wasm-streams" 7219 - version = "0.4.0" 7220 - source = "registry+https://github.com/rust-lang/crates.io-index" 7221 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 7222 - dependencies = [ 7223 - "futures-util", 7224 - "js-sys", 7225 - "wasm-bindgen", 7226 - "wasm-bindgen-futures", 7227 - "web-sys", 7228 - ] 7229 - 7230 - [[package]] 7231 - name = "web-sys" 7232 - version = "0.3.69" 7233 - source = "registry+https://github.com/rust-lang/crates.io-index" 7234 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 7235 - dependencies = [ 7236 - "js-sys", 7237 - "wasm-bindgen", 7238 - ] 7239 - 7240 - [[package]] 7241 - name = "webpki-roots" 7242 - version = "0.25.4" 7243 - source = "registry+https://github.com/rust-lang/crates.io-index" 7244 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 7245 - 7246 - [[package]] 7247 - name = "webpki-roots" 7248 - version = "0.26.1" 7249 - source = "registry+https://github.com/rust-lang/crates.io-index" 7250 - checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 7251 - dependencies = [ 7252 - "rustls-pki-types", 7253 - ] 7254 - 7255 - [[package]] 7256 - name = "whatlang" 7257 - version = "0.16.4" 7258 - source = "registry+https://github.com/rust-lang/crates.io-index" 7259 - checksum = "471d1c1645d361eb782a1650b1786a8fb58dd625e681a04c09f5ff7c8764a7b0" 7260 - dependencies = [ 7261 - "hashbrown 0.14.2", 7262 - "once_cell", 7263 - ] 7264 - 7265 - [[package]] 7266 - name = "which" 7267 - version = "4.3.0" 7268 - source = "registry+https://github.com/rust-lang/crates.io-index" 7269 - checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 7270 - dependencies = [ 7271 - "either", 7272 - "libc", 7273 - "once_cell", 7274 - ] 7275 - 7276 - [[package]] 7277 - name = "winapi" 7278 - version = "0.3.9" 7279 - source = "registry+https://github.com/rust-lang/crates.io-index" 7280 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 7281 - dependencies = [ 7282 - "winapi-i686-pc-windows-gnu", 7283 - "winapi-x86_64-pc-windows-gnu", 7284 - ] 7285 - 7286 - [[package]] 7287 - name = "winapi-i686-pc-windows-gnu" 7288 - version = "0.4.0" 7289 - source = "registry+https://github.com/rust-lang/crates.io-index" 7290 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 7291 - 7292 - [[package]] 7293 - name = "winapi-util" 7294 - version = "0.1.5" 7295 - source = "registry+https://github.com/rust-lang/crates.io-index" 7296 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 7297 - dependencies = [ 7298 - "winapi", 7299 - ] 7300 - 7301 - [[package]] 7302 - name = "winapi-x86_64-pc-windows-gnu" 7303 - version = "0.4.0" 7304 - source = "registry+https://github.com/rust-lang/crates.io-index" 7305 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 7306 - 7307 - [[package]] 7308 - name = "windows" 7309 - version = "0.48.0" 7310 - source = "registry+https://github.com/rust-lang/crates.io-index" 7311 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 7312 - dependencies = [ 7313 - "windows-targets 0.48.0", 7314 - ] 7315 - 7316 - [[package]] 7317 - name = "windows" 7318 - version = "0.57.0" 7319 - source = "registry+https://github.com/rust-lang/crates.io-index" 7320 - checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 7321 - dependencies = [ 7322 - "windows-core", 7323 - "windows-targets 0.52.6", 7324 - ] 7325 - 7326 - [[package]] 7327 - name = "windows-core" 7328 - version = "0.57.0" 7329 - source = "registry+https://github.com/rust-lang/crates.io-index" 7330 - checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 7331 - dependencies = [ 7332 - "windows-implement", 7333 - "windows-interface", 7334 - "windows-result 0.1.2", 7335 - "windows-targets 0.52.6", 7336 - ] 7337 - 7338 - [[package]] 7339 - name = "windows-implement" 7340 - version = "0.57.0" 7341 - source = "registry+https://github.com/rust-lang/crates.io-index" 7342 - checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 7343 - dependencies = [ 7344 - "proc-macro2", 7345 - "quote", 7346 - "syn 2.0.79", 7347 - ] 7348 - 7349 - [[package]] 7350 - name = "windows-interface" 7351 - version = "0.57.0" 7352 - source = "registry+https://github.com/rust-lang/crates.io-index" 7353 - checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 7354 - dependencies = [ 7355 - "proc-macro2", 7356 - "quote", 7357 - "syn 2.0.79", 7358 - ] 7359 - 7360 - [[package]] 7361 - name = "windows-registry" 7362 - version = "0.2.0" 7363 - source = "registry+https://github.com/rust-lang/crates.io-index" 7364 - checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 7365 - dependencies = [ 7366 - "windows-result 0.2.0", 7367 - "windows-strings", 7368 - "windows-targets 0.52.6", 7369 - ] 7370 - 7371 - [[package]] 7372 - name = "windows-result" 7373 - version = "0.1.2" 7374 - source = "registry+https://github.com/rust-lang/crates.io-index" 7375 - checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 7376 - dependencies = [ 7377 - "windows-targets 0.52.6", 7378 - ] 7379 - 7380 - [[package]] 7381 - name = "windows-result" 7382 - version = "0.2.0" 7383 - source = "registry+https://github.com/rust-lang/crates.io-index" 7384 - checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 7385 - dependencies = [ 7386 - "windows-targets 0.52.6", 7387 - ] 7388 - 7389 - [[package]] 7390 - name = "windows-strings" 7391 - version = "0.1.0" 7392 - source = "registry+https://github.com/rust-lang/crates.io-index" 7393 - checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 7394 - dependencies = [ 7395 - "windows-result 0.2.0", 7396 - "windows-targets 0.52.6", 7397 - ] 7398 - 7399 - [[package]] 7400 - name = "windows-sys" 7401 - version = "0.42.0" 7402 - source = "registry+https://github.com/rust-lang/crates.io-index" 7403 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 7404 - dependencies = [ 7405 - "windows_aarch64_gnullvm 0.42.2", 7406 - "windows_aarch64_msvc 0.42.2", 7407 - "windows_i686_gnu 0.42.2", 7408 - "windows_i686_msvc 0.42.2", 7409 - "windows_x86_64_gnu 0.42.2", 7410 - "windows_x86_64_gnullvm 0.42.2", 7411 - "windows_x86_64_msvc 0.42.2", 7412 - ] 7413 - 7414 - [[package]] 7415 - name = "windows-sys" 7416 - version = "0.45.0" 7417 - source = "registry+https://github.com/rust-lang/crates.io-index" 7418 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 7419 - dependencies = [ 7420 - "windows-targets 0.42.2", 7421 - ] 7422 - 7423 - [[package]] 7424 - name = "windows-sys" 7425 - version = "0.48.0" 7426 - source = "registry+https://github.com/rust-lang/crates.io-index" 7427 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 7428 - dependencies = [ 7429 - "windows-targets 0.48.0", 7430 - ] 7431 - 7432 - [[package]] 7433 - name = "windows-sys" 7434 - version = "0.52.0" 7435 - source = "registry+https://github.com/rust-lang/crates.io-index" 7436 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 7437 - dependencies = [ 7438 - "windows-targets 0.52.6", 7439 - ] 7440 - 7441 - [[package]] 7442 - name = "windows-sys" 7443 - version = "0.59.0" 7444 - source = "registry+https://github.com/rust-lang/crates.io-index" 7445 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 7446 - dependencies = [ 7447 - "windows-targets 0.52.6", 7448 - ] 7449 - 7450 - [[package]] 7451 - name = "windows-targets" 7452 - version = "0.42.2" 7453 - source = "registry+https://github.com/rust-lang/crates.io-index" 7454 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 7455 - dependencies = [ 7456 - "windows_aarch64_gnullvm 0.42.2", 7457 - "windows_aarch64_msvc 0.42.2", 7458 - "windows_i686_gnu 0.42.2", 7459 - "windows_i686_msvc 0.42.2", 7460 - "windows_x86_64_gnu 0.42.2", 7461 - "windows_x86_64_gnullvm 0.42.2", 7462 - "windows_x86_64_msvc 0.42.2", 7463 - ] 7464 - 7465 - [[package]] 7466 - name = "windows-targets" 7467 - version = "0.48.0" 7468 - source = "registry+https://github.com/rust-lang/crates.io-index" 7469 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 7470 - dependencies = [ 7471 - "windows_aarch64_gnullvm 0.48.0", 7472 - "windows_aarch64_msvc 0.48.0", 7473 - "windows_i686_gnu 0.48.0", 7474 - "windows_i686_msvc 0.48.0", 7475 - "windows_x86_64_gnu 0.48.0", 7476 - "windows_x86_64_gnullvm 0.48.0", 7477 - "windows_x86_64_msvc 0.48.0", 7478 - ] 7479 - 7480 - [[package]] 7481 - name = "windows-targets" 7482 - version = "0.52.6" 7483 - source = "registry+https://github.com/rust-lang/crates.io-index" 7484 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 7485 - dependencies = [ 7486 - "windows_aarch64_gnullvm 0.52.6", 7487 - "windows_aarch64_msvc 0.52.6", 7488 - "windows_i686_gnu 0.52.6", 7489 - "windows_i686_gnullvm", 7490 - "windows_i686_msvc 0.52.6", 7491 - "windows_x86_64_gnu 0.52.6", 7492 - "windows_x86_64_gnullvm 0.52.6", 7493 - "windows_x86_64_msvc 0.52.6", 7494 - ] 7495 - 7496 - [[package]] 7497 - name = "windows_aarch64_gnullvm" 7498 - version = "0.42.2" 7499 - source = "registry+https://github.com/rust-lang/crates.io-index" 7500 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 7501 - 7502 - [[package]] 7503 - name = "windows_aarch64_gnullvm" 7504 - version = "0.48.0" 7505 - source = "registry+https://github.com/rust-lang/crates.io-index" 7506 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 7507 - 7508 - [[package]] 7509 - name = "windows_aarch64_gnullvm" 7510 - version = "0.52.6" 7511 - source = "registry+https://github.com/rust-lang/crates.io-index" 7512 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 7513 - 7514 - [[package]] 7515 - name = "windows_aarch64_msvc" 7516 - version = "0.42.2" 7517 - source = "registry+https://github.com/rust-lang/crates.io-index" 7518 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 7519 - 7520 - [[package]] 7521 - name = "windows_aarch64_msvc" 7522 - version = "0.48.0" 7523 - source = "registry+https://github.com/rust-lang/crates.io-index" 7524 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 7525 - 7526 - [[package]] 7527 - name = "windows_aarch64_msvc" 7528 - version = "0.52.6" 7529 - source = "registry+https://github.com/rust-lang/crates.io-index" 7530 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 7531 - 7532 - [[package]] 7533 - name = "windows_i686_gnu" 7534 - version = "0.42.2" 7535 - source = "registry+https://github.com/rust-lang/crates.io-index" 7536 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 7537 - 7538 - [[package]] 7539 - name = "windows_i686_gnu" 7540 - version = "0.48.0" 7541 - source = "registry+https://github.com/rust-lang/crates.io-index" 7542 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 7543 - 7544 - [[package]] 7545 - name = "windows_i686_gnu" 7546 - version = "0.52.6" 7547 - source = "registry+https://github.com/rust-lang/crates.io-index" 7548 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 7549 - 7550 - [[package]] 7551 - name = "windows_i686_gnullvm" 7552 - version = "0.52.6" 7553 - source = "registry+https://github.com/rust-lang/crates.io-index" 7554 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 7555 - 7556 - [[package]] 7557 - name = "windows_i686_msvc" 7558 - version = "0.42.2" 7559 - source = "registry+https://github.com/rust-lang/crates.io-index" 7560 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 7561 - 7562 - [[package]] 7563 - name = "windows_i686_msvc" 7564 - version = "0.48.0" 7565 - source = "registry+https://github.com/rust-lang/crates.io-index" 7566 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 7567 - 7568 - [[package]] 7569 - name = "windows_i686_msvc" 7570 - version = "0.52.6" 7571 - source = "registry+https://github.com/rust-lang/crates.io-index" 7572 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 7573 - 7574 - [[package]] 7575 - name = "windows_x86_64_gnu" 7576 - version = "0.42.2" 7577 - source = "registry+https://github.com/rust-lang/crates.io-index" 7578 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 7579 - 7580 - [[package]] 7581 - name = "windows_x86_64_gnu" 7582 - version = "0.48.0" 7583 - source = "registry+https://github.com/rust-lang/crates.io-index" 7584 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 7585 - 7586 - [[package]] 7587 - name = "windows_x86_64_gnu" 7588 - version = "0.52.6" 7589 - source = "registry+https://github.com/rust-lang/crates.io-index" 7590 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 7591 - 7592 - [[package]] 7593 - name = "windows_x86_64_gnullvm" 7594 - version = "0.42.2" 7595 - source = "registry+https://github.com/rust-lang/crates.io-index" 7596 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 7597 - 7598 - [[package]] 7599 - name = "windows_x86_64_gnullvm" 7600 - version = "0.48.0" 7601 - source = "registry+https://github.com/rust-lang/crates.io-index" 7602 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 7603 - 7604 - [[package]] 7605 - name = "windows_x86_64_gnullvm" 7606 - version = "0.52.6" 7607 - source = "registry+https://github.com/rust-lang/crates.io-index" 7608 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 7609 - 7610 - [[package]] 7611 - name = "windows_x86_64_msvc" 7612 - version = "0.42.2" 7613 - source = "registry+https://github.com/rust-lang/crates.io-index" 7614 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 7615 - 7616 - [[package]] 7617 - name = "windows_x86_64_msvc" 7618 - version = "0.48.0" 7619 - source = "registry+https://github.com/rust-lang/crates.io-index" 7620 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 7621 - 7622 - [[package]] 7623 - name = "windows_x86_64_msvc" 7624 - version = "0.52.6" 7625 - source = "registry+https://github.com/rust-lang/crates.io-index" 7626 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 7627 - 7628 - [[package]] 7629 - name = "winnow" 7630 - version = "0.5.37" 7631 - source = "registry+https://github.com/rust-lang/crates.io-index" 7632 - checksum = "a7cad8365489051ae9f054164e459304af2e7e9bb407c958076c8bf4aef52da5" 7633 - dependencies = [ 7634 - "memchr", 7635 - ] 7636 - 7637 - [[package]] 7638 - name = "winnow" 7639 - version = "0.6.20" 7640 - source = "registry+https://github.com/rust-lang/crates.io-index" 7641 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 7642 - dependencies = [ 7643 - "memchr", 7644 - ] 7645 - 7646 - [[package]] 7647 - name = "winreg" 7648 - version = "0.50.0" 7649 - source = "registry+https://github.com/rust-lang/crates.io-index" 7650 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 7651 - dependencies = [ 7652 - "cfg-if", 7653 - "windows-sys 0.48.0", 7654 - ] 7655 - 7656 - [[package]] 7657 - name = "wyhash" 7658 - version = "0.5.0" 7659 - source = "registry+https://github.com/rust-lang/crates.io-index" 7660 - checksum = "baf6e163c25e3fac820b4b453185ea2dea3b6a3e0a721d4d23d75bd33734c295" 7661 - dependencies = [ 7662 - "rand_core 0.6.4", 7663 - ] 7664 - 7665 - [[package]] 7666 - name = "wyz" 7667 - version = "0.5.1" 7668 - source = "registry+https://github.com/rust-lang/crates.io-index" 7669 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 7670 - dependencies = [ 7671 - "tap", 7672 - ] 7673 - 7674 - [[package]] 7675 - name = "xattr" 7676 - version = "1.3.1" 7677 - source = "registry+https://github.com/rust-lang/crates.io-index" 7678 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 7679 - dependencies = [ 7680 - "libc", 7681 - "linux-raw-sys 0.4.14", 7682 - "rustix 0.38.37", 7683 - ] 7684 - 7685 - [[package]] 7686 - name = "yada" 7687 - version = "0.5.1" 7688 - source = "registry+https://github.com/rust-lang/crates.io-index" 7689 - checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd" 7690 - 7691 - [[package]] 7692 - name = "yaml-rust" 7693 - version = "0.4.5" 7694 - source = "registry+https://github.com/rust-lang/crates.io-index" 7695 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 7696 - dependencies = [ 7697 - "linked-hash-map", 7698 - ] 7699 - 7700 - [[package]] 7701 - name = "zerocopy" 7702 - version = "0.7.35" 7703 - source = "registry+https://github.com/rust-lang/crates.io-index" 7704 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 7705 - dependencies = [ 7706 - "byteorder", 7707 - "zerocopy-derive", 7708 - ] 7709 - 7710 - [[package]] 7711 - name = "zerocopy-derive" 7712 - version = "0.7.35" 7713 - source = "registry+https://github.com/rust-lang/crates.io-index" 7714 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 7715 - dependencies = [ 7716 - "proc-macro2", 7717 - "quote", 7718 - "syn 2.0.79", 7719 - ] 7720 - 7721 - [[package]] 7722 - name = "zeroize" 7723 - version = "1.7.0" 7724 - source = "registry+https://github.com/rust-lang/crates.io-index" 7725 - checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 7726 - 7727 - [[package]] 7728 - name = "zstd" 7729 - version = "0.13.0" 7730 - source = "registry+https://github.com/rust-lang/crates.io-index" 7731 - checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 7732 - dependencies = [ 7733 - "zstd-safe", 7734 - ] 7735 - 7736 - [[package]] 7737 - name = "zstd-safe" 7738 - version = "7.0.0" 7739 - source = "registry+https://github.com/rust-lang/crates.io-index" 7740 - checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" 7741 - dependencies = [ 7742 - "zstd-sys", 7743 - ] 7744 - 7745 - [[package]] 7746 - name = "zstd-sys" 7747 - version = "2.0.9+zstd.1.5.5" 7748 - source = "registry+https://github.com/rust-lang/crates.io-index" 7749 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 7750 - dependencies = [ 7751 - "cc", 7752 - "pkg-config", 7753 - ]
+19 -25
pkgs/servers/search/qdrant/default.nix
··· 10 10 nix-update-script, 11 11 Security, 12 12 SystemConfiguration, 13 + rust-jemalloc-sys-unprefixed, 13 14 }: 14 15 15 16 rustPlatform.buildRustPackage rec { 16 17 pname = "qdrant"; 17 - version = "1.12.1"; 18 + version = "1.13.4"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "qdrant"; 21 22 repo = "qdrant"; 22 23 tag = "v${version}"; 23 - sha256 = "sha256-q99roKqeC8lra29gyJertJLnVNFvKRFZ2agREvHZx6k="; 24 + hash = "sha256-77BuXTrQPtg7lus4WXukYSrJllR9hBMqn8+xAaq96z8="; 24 25 }; 25 26 26 - cargoLock = { 27 - lockFile = ./Cargo.lock; 28 - outputHashes = { 29 - "tar-0.4.41" = "sha256-32n96yoGbDzhgVZvISLGwxHuv7PGtxde5ma/YlsR1Gg="; 30 - "wal-0.1.2" = "sha256-QcyS0v7O1BziVT3oahebpq+u4l5JGaujCaRIPdmsJl4="; 31 - }; 32 - }; 27 + useFetchCargoVendor = true; 28 + 29 + cargoHash = "sha256-r+UilkSsV875j7tNkGJxuR/XC8Y1Fk4nqHYah9Z9q9c="; 30 + 31 + nativeBuildInputs = [ 32 + protobuf 33 + rustPlatform.bindgenHook 34 + pkg-config 35 + ]; 33 36 34 37 buildInputs = 35 38 [ 36 39 openssl 37 40 rust-jemalloc-sys 41 + rust-jemalloc-sys-unprefixed 38 42 ] 39 43 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 40 44 Security 41 45 SystemConfiguration 42 46 ]; 43 47 44 - nativeBuildInputs = [ 45 - protobuf 46 - rustPlatform.bindgenHook 47 - pkg-config 48 - ]; 49 - 50 - env = { 51 - # Needed to get openssl-sys to use pkg-config. 52 - OPENSSL_NO_VENDOR = 1; 53 - }; 48 + # Needed to get openssl-sys to use pkg-config. 49 + env.OPENSSL_NO_VENDOR = 1; 54 50 55 - passthru = { 56 - updateScript = nix-update-script { }; 57 - }; 51 + passthru.updateScript = nix-update-script { }; 58 52 59 - meta = with lib; { 53 + meta = { 60 54 description = "Vector Search Engine for the next generation of AI applications"; 61 55 longDescription = '' 62 56 Expects a config file at config/config.yaml with content similar to 63 57 https://github.com/qdrant/qdrant/blob/master/config/config.yaml 64 58 ''; 65 59 homepage = "https://github.com/qdrant/qdrant"; 66 - license = licenses.asl20; 67 - maintainers = with maintainers; [ dit7ya ]; 60 + license = lib.licenses.asl20; 61 + maintainers = with lib.maintainers; [ dit7ya ]; 68 62 }; 69 63 }
+10 -8
pkgs/tools/inputmethods/ibus-engines/ibus-table-chinese/default.nix
··· 14 14 src = fetchFromGitHub { 15 15 owner = "definite"; 16 16 repo = "ibus-table-chinese"; 17 - rev = "f1f6a3384f021caa3b84c517e2495086f9c34507"; 18 - sha256 = "14wpw3pvyrrqvg7al37jk2dxqfj9r4zf88j8k2n2lmdc50f3xs7k"; 17 + rev = "3380c96b5230721e9b80685a719508c505b8137a"; 18 + hash = "sha256-Ymzkim1k6KQxcSX2LaczRsxV2DYCFxIWI5xulmhOrw8="; 19 19 }; 20 20 21 21 cmakeFedoraSrc = fetchgit { 22 22 url = "https://pagure.io/cmake-fedora.git"; 23 23 rev = "7d5297759aef4cd086bdfa30cf6d4b2ad9446992"; 24 - sha256 = "0mx9jvxpiva9v2ffaqlyny48iqr073h84yw8ln43z2avv11ipr7n"; 24 + hash = "sha256-9uQbQ9hbiT+IpYh7guA4IOOIiLeeYuWc2EntePuWqVc="; 25 25 }; 26 26 in 27 27 stdenv.mkDerivation { 28 28 pname = "ibus-table-chinese"; 29 - version = "1.8.2"; 29 + version = "1.8.3"; 30 30 31 31 srcs = [ 32 32 src 33 33 cmakeFedoraSrc 34 34 ]; 35 + 35 36 sourceRoot = src.name; 36 37 37 38 postUnpack = '' ··· 73 74 cmake 74 75 pkg-config 75 76 ]; 77 + 76 78 buildInputs = [ 77 79 ibus 78 80 ibus-table 79 81 python3 80 82 ]; 81 83 82 - meta = with lib; { 84 + meta = { 83 85 isIbusEngine = true; 84 86 description = "Chinese tables for IBus-Table"; 85 87 homepage = "https://github.com/definite/ibus-table-chinese"; 86 - license = licenses.gpl3; 87 - platforms = platforms.linux; 88 - maintainers = with maintainers; [ pneumaticat ]; 88 + license = lib.licenses.gpl3; 89 + platforms = lib.platforms.linux; 90 + maintainers = with lib.maintainers; [ pneumaticat ]; 89 91 }; 90 92 }
+1
pkgs/top-level/aliases.nix
··· 419 419 emacsMacport = emacs-macport; # Added 2023-08-10 420 420 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 421 421 emacsWithPackages = throw "'emacsWithPackages' has been renamed to/replaced by 'emacs.pkgs.withPackages'"; # Converted to throw 2024-10-17 422 + emacsPackages = emacs.pkgs; # Added 2025-03-02 422 423 423 424 EmptyEpsilon = empty-epsilon; # Added 2024-07-14 424 425 enyo-doom = enyo-launcher; # Added 2022-09-09
+6 -9
pkgs/top-level/all-packages.nix
··· 13180 13180 ; 13181 13181 13182 13182 emacs-macport = emacs29-macport; 13183 - emacs = emacs29; 13184 - emacs-gtk = emacs29-gtk3; 13185 - emacs-nox = emacs29-nox; 13183 + emacs = emacs30; 13184 + emacs-gtk = emacs30-gtk3; 13185 + emacs-nox = emacs30-nox; 13186 + emacs-pgtk = emacs30-pgtk; 13186 13187 13187 13188 emacsPackagesFor = emacs: import ./emacs-packages.nix { 13188 13189 inherit (lib) makeScope makeOverridable dontRecurseIntoAttrs; 13189 13190 emacs' = emacs; 13190 13191 pkgs' = pkgs; # default pkgs used for bootstrapping the emacs package set 13191 13192 }; 13192 - 13193 - # This alias should live in aliases.nix but that would cause Hydra not to evaluate/build the packages. 13194 - # If you turn this into "real" alias again, please add it to pkgs/top-level/packages-config.nix again too 13195 - emacsPackages = emacs.pkgs // { __recurseIntoDerivationForReleaseJobs = true; }; 13196 13193 13197 13194 epick = callPackage ../applications/graphics/epick { 13198 13195 inherit (darwin.apple_sdk.frameworks) AppKit; ··· 15609 15606 wgnord = callPackage ../applications/networking/wgnord/default.nix { }; 15610 15607 15611 15608 whalebird = callPackage ../applications/misc/whalebird { 15612 - electron = electron_27; 15609 + electron = electron_34; 15613 15610 }; 15614 15611 15615 15612 inherit (windowmaker) dockapps; ··· 15911 15908 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 15912 15909 }; 15913 15910 15914 - samplv1 = libsForQt5.callPackage ../applications/audio/samplv1 { }; 15911 + samplv1 = qt6.callPackage ../applications/audio/samplv1 { }; 15915 15912 15916 15913 beancount = with python3.pkgs; toPythonApplication beancount; 15917 15914
+4
pkgs/top-level/packages-config.nix
··· 36 36 compiler = recurseIntoAttrs super.haskell.compiler; 37 37 }; 38 38 39 + # emacsPackages is an alias for emacs.pkgs 40 + # Re-introduce emacsPackages here so that emacs.pkgs can be searched. 41 + emacsPackages = emacs.pkgs; 42 + 39 43 # minimal-bootstrap packages aren't used for anything but bootstrapping our 40 44 # stdenv. They should not be used for any other purpose and therefore not 41 45 # show up in search results or repository tracking services that consume our