Merge remote-tracking branch 'origin/staging-next' into staging

K900 15bb2bfa 7e7177c6

+2262 -9023
+1
nixos/doc/manual/release-notes/rl-2505.section.md
··· 16 - LLVM has been updated from LLVM 16 (on Darwin) and LLVM 18 (on other platforms) to LLVM 19. 17 This introduces some backwards‐incompatible changes; see the [upstream release notes](https://releases.llvm.org/) for details. 18 19 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 20 21 ## New Modules {#sec-release-25.05-new-modules}
··· 16 - LLVM has been updated from LLVM 16 (on Darwin) and LLVM 18 (on other platforms) to LLVM 19. 17 This introduces some backwards‐incompatible changes; see the [upstream release notes](https://releases.llvm.org/) for details. 18 19 + - The default PHP version has been updated to 8.3. 20 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 21 22 ## New Modules {#sec-release-25.05-new-modules}
+1 -1
nixos/modules/services/web-apps/castopod.nix
··· 6 user = "castopod"; 7 8 # https://docs.castopod.org/getting-started/install.html#requirements 9 - phpPackage = pkgs.php.withExtensions ({ enabled, all }: with all; [ 10 intl 11 curl 12 mbstring
··· 6 user = "castopod"; 7 8 # https://docs.castopod.org/getting-started/install.html#requirements 9 + phpPackage = pkgs.php82.withExtensions ({ enabled, all }: with all; [ 10 intl 11 curl 12 mbstring
+9 -1
nixos/tests/incus/container.nix
··· 36 networking.nftables.enable = true; 37 }; 38 39 - testScript = '' 40 def instance_is_up(_) -> bool: 41 status, _ = machine.execute("incus exec container --disable-stdin --force-interactive /run/current-system/sw/bin/systemctl -- is-system-running") 42 return status == 0 ··· 93 meminfo = machine.succeed("incus exec container grep -- MemTotal /proc/meminfo").strip() 94 meminfo_bytes = " ".join(meminfo.split(' ')[-2:]) 95 assert meminfo_bytes == "125000 kB", f"Wrong amount of memory reported from /proc/meminfo, want: '125000 kB', got: '{meminfo_bytes}'" 96 97 with subtest("lxc-generator"): 98 with subtest("lxc-container generator configures plain container"):
··· 36 networking.nftables.enable = true; 37 }; 38 39 + testScript = # python 40 + '' 41 def instance_is_up(_) -> bool: 42 status, _ = machine.execute("incus exec container --disable-stdin --force-interactive /run/current-system/sw/bin/systemctl -- is-system-running") 43 return status == 0 ··· 94 meminfo = machine.succeed("incus exec container grep -- MemTotal /proc/meminfo").strip() 95 meminfo_bytes = " ".join(meminfo.split(' ')[-2:]) 96 assert meminfo_bytes == "125000 kB", f"Wrong amount of memory reported from /proc/meminfo, want: '125000 kB', got: '{meminfo_bytes}'" 97 + 98 + with subtest("virtual tpm can be configured"): 99 + machine.succeed("incus config device add container vtpm tpm path=/dev/tpm0 pathrm=/dev/tpmrm0") 100 + machine.succeed("incus exec container -- test -e /dev/tpm0") 101 + machine.succeed("incus exec container -- test -e /dev/tpmrm0") 102 + machine.succeed("incus config device remove container vtpm") 103 + machine.fail("incus exec container -- test -e /dev/tpm0") 104 105 with subtest("lxc-generator"): 106 with subtest("lxc-container generator configures plain container"):
+61 -31
nixos/tests/incus/storage.nix
··· 13 maintainers = lib.teams.lxc.members; 14 }; 15 16 - nodes.machine = 17 - { lib, ... }: 18 - { 19 - boot.supportedFilesystems = [ "zfs" ]; 20 - boot.zfs.forceImportRoot = false; 21 - environment.systemPackages = [ pkgs.parted ]; 22 - networking.hostId = "01234567"; 23 - networking.nftables.enable = true; 24 25 - virtualisation = { 26 - emptyDiskImages = [ 2048 ]; 27 - incus = { 28 - enable = true; 29 - package = incus; 30 - }; 31 }; 32 }; 33 34 - testScript = '' 35 - machine.wait_for_unit("incus.service") 36 37 - with subtest("Verify zfs pool created and usable"): 38 - machine.succeed( 39 - "zpool status", 40 - "parted --script /dev/vdb mklabel gpt", 41 - "zpool create zfs_pool /dev/vdb", 42 - ) 43 44 - machine.succeed("incus storage create zfs_pool zfs source=zfs_pool/incus") 45 - machine.succeed("zfs list zfs_pool/incus") 46 - machine.succeed("incus storage volume create zfs_pool test_fs --type filesystem") 47 - machine.succeed("incus storage volume create zfs_pool test_vol --type block") 48 - machine.succeed("incus storage show zfs_pool") 49 - machine.succeed("incus storage volume list zfs_pool") 50 - machine.succeed("incus storage volume show zfs_pool test_fs") 51 - machine.succeed("incus storage volume show zfs_pool test_vol") 52 - ''; 53 } 54 )
··· 13 maintainers = lib.teams.lxc.members; 14 }; 15 16 + nodes.machine = { 17 + boot.supportedFilesystems = [ "zfs" ]; 18 + boot.zfs.forceImportRoot = false; 19 + 20 + environment.systemPackages = [ pkgs.parted ]; 21 + 22 + networking.hostId = "01234567"; 23 + networking.nftables.enable = true; 24 25 + services.lvm = { 26 + boot.thin.enable = true; 27 + dmeventd.enable = true; 28 + }; 29 + 30 + virtualisation = { 31 + emptyDiskImages = [ 32 + 2048 33 + 2048 34 + ]; 35 + incus = { 36 + enable = true; 37 + package = incus; 38 }; 39 }; 40 + }; 41 42 + testScript = # python 43 + '' 44 + machine.wait_for_unit("incus.service") 45 46 + with subtest("Verify zfs pool created and usable"): 47 + machine.succeed( 48 + "zpool status", 49 + "parted --script /dev/vdb mklabel gpt", 50 + "zpool create zfs_pool /dev/vdb", 51 + ) 52 + 53 + machine.succeed("incus storage create zfs_pool zfs source=zfs_pool/incus") 54 + machine.succeed("zfs list zfs_pool/incus") 55 + 56 + machine.succeed("incus storage volume create zfs_pool test_fs --type filesystem") 57 + machine.succeed("incus storage volume create zfs_pool test_vol --type block") 58 59 + machine.succeed("incus storage show zfs_pool") 60 + machine.succeed("incus storage volume list zfs_pool") 61 + machine.succeed("incus storage volume show zfs_pool test_fs") 62 + machine.succeed("incus storage volume show zfs_pool test_vol") 63 + 64 + machine.succeed("incus create zfs1 --empty --storage zfs_pool") 65 + machine.succeed("incus list zfs1") 66 + 67 + with subtest("Verify lvm pool created and usable"): 68 + machine.succeed("incus storage create lvm_pool lvm source=/dev/vdc lvm.vg_name=incus_pool") 69 + machine.succeed("vgs incus_pool") 70 + 71 + machine.succeed("incus storage volume create lvm_pool test_fs --type filesystem") 72 + machine.succeed("incus storage volume create lvm_pool test_vol --type block") 73 + 74 + machine.succeed("incus storage show lvm_pool") 75 + 76 + machine.succeed("incus storage volume list lvm_pool") 77 + machine.succeed("incus storage volume show lvm_pool test_fs") 78 + machine.succeed("incus storage volume show lvm_pool test_vol") 79 + 80 + machine.succeed("incus create lvm1 --empty --storage zfs_pool") 81 + machine.succeed("incus list lvm1") 82 + ''; 83 } 84 )
+2 -4
nixos/tests/incus/virtual-machine.nix
··· 30 memorySize = 1024; 31 diskSize = 4096; 32 33 - # Provide a TPM to test vTPM support for guests 34 - tpm.enable = true; 35 - 36 incus = { 37 enable = true; 38 package = incus; ··· 41 networking.nftables.enable = true; 42 }; 43 44 - testScript = '' 45 def instance_is_up(_) -> bool: 46 status, _ = machine.execute("incus exec ${instance-name} --disable-stdin --force-interactive /run/current-system/sw/bin/systemctl -- is-system-running") 47 return status == 0
··· 30 memorySize = 1024; 31 diskSize = 4096; 32 33 incus = { 34 enable = true; 35 package = incus; ··· 38 networking.nftables.enable = true; 39 }; 40 41 + testScript = # python 42 + '' 43 def instance_is_up(_) -> bool: 44 status, _ = machine.execute("incus exec ${instance-name} --disable-stdin --force-interactive /run/current-system/sw/bin/systemctl -- is-system-running") 45 return status == 0
-128
pkgs/applications/blockchains/bisq-desktop/default.nix
··· 1 - { stdenv 2 - , lib 3 - , makeWrapper 4 - , fetchurl 5 - , makeDesktopItem 6 - , copyDesktopItems 7 - , imagemagick 8 - , openjdk11 9 - , dpkg 10 - , writeScript 11 - , bash 12 - , stripJavaArchivesHook 13 - , tor 14 - , zip 15 - , xz 16 - , findutils 17 - }: 18 - 19 - let 20 - bisq-launcher = args: writeScript "bisq-launcher" '' 21 - #! ${bash}/bin/bash 22 - 23 - # This is just a comment to convince Nix that Tor is a 24 - # runtime dependency; The Tor binary is in a *.jar file, 25 - # whereas Nix only scans for hashes in uncompressed text. 26 - # ${bisq-tor} 27 - 28 - classpath=@out@/lib/desktop.jar:@out@/lib/* 29 - 30 - exec "${openjdk11}/bin/java" -Djpackage.app-version=@version@ -XX:MaxRAM=8g -Xss1280k -XX:+UseG1GC -XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5 -XX:+UseStringDeduplication -Djava.net.preferIPv4Stack=true -classpath $classpath ${args} bisq.desktop.app.BisqAppMain "$@" 31 - ''; 32 - 33 - bisq-tor = writeScript "bisq-tor" '' 34 - #! ${bash}/bin/bash 35 - 36 - exec ${tor}/bin/tor "$@" 37 - ''; 38 - in 39 - stdenv.mkDerivation rec { 40 - pname = "bisq-desktop"; 41 - version = "1.9.17"; 42 - 43 - src = fetchurl { 44 - url = "https://github.com/bisq-network/bisq/releases/download/v${version}/Bisq-64bit-${version}.deb"; 45 - sha256 = "1wqzgxsm9p6lh0bmvw0byaxx1r5v64d024jf1pg9mykb1dnnx0wy"; 46 - }; 47 - 48 - nativeBuildInputs = [ 49 - copyDesktopItems 50 - dpkg 51 - imagemagick 52 - makeWrapper 53 - stripJavaArchivesHook 54 - xz 55 - zip 56 - findutils 57 - ]; 58 - 59 - desktopItems = [ 60 - (makeDesktopItem { 61 - name = "Bisq"; 62 - exec = "bisq-desktop"; 63 - icon = "bisq"; 64 - desktopName = "Bisq ${version}"; 65 - genericName = "Decentralized bitcoin exchange"; 66 - categories = [ "Network" "P2P" ]; 67 - }) 68 - 69 - (makeDesktopItem { 70 - name = "Bisq-hidpi"; 71 - exec = "bisq-desktop-hidpi"; 72 - icon = "bisq"; 73 - desktopName = "Bisq ${version} (HiDPI)"; 74 - genericName = "Decentralized bitcoin exchange"; 75 - categories = [ "Network" "P2P" ]; 76 - }) 77 - ]; 78 - 79 - unpackPhase = '' 80 - dpkg -x $src . 81 - ''; 82 - 83 - buildPhase = '' 84 - # Replace the embedded Tor binary (which is in a Tar archive) 85 - # with one from Nixpkgs. 86 - 87 - mkdir -p native/linux/x64/ 88 - cp ${bisq-tor} ./tor 89 - tar --sort=name --mtime="@$SOURCE_DATE_EPOCH" -cJf native/linux/x64/tor.tar.xz tor 90 - tor_jar_file=$(find ./opt/bisq/lib/app -name "tor-binary-linux64-*.jar") 91 - zip -r $tor_jar_file native 92 - ''; 93 - 94 - installPhase = '' 95 - runHook preInstall 96 - 97 - mkdir -p $out $out/bin 98 - cp -r opt/bisq/lib/app $out/lib 99 - 100 - install -D -m 777 ${bisq-launcher ""} $out/bin/bisq-desktop 101 - substituteAllInPlace $out/bin/bisq-desktop 102 - 103 - install -D -m 777 ${bisq-launcher "-Dglass.gtk.uiScale=2.0"} $out/bin/bisq-desktop-hidpi 104 - substituteAllInPlace $out/bin/bisq-desktop-hidpi 105 - 106 - for n in 16 24 32 48 64 96 128 256; do 107 - size=$n"x"$n 108 - convert opt/bisq/lib/Bisq.png -resize $size bisq.png 109 - install -Dm644 -t $out/share/icons/hicolor/$size/apps bisq.png 110 - done; 111 - 112 - runHook postInstall 113 - ''; 114 - 115 - passthru.updateScript = ./update.sh; 116 - 117 - meta = with lib; { 118 - description = "Decentralized bitcoin exchange network"; 119 - homepage = "https://bisq.network"; 120 - changelog = "https://github.com/bisq-network/bisq/releases/tag/v${version}"; 121 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 122 - license = licenses.mit; 123 - maintainers = with maintainers; [ juaningan emmanuelrosa ]; 124 - platforms = [ "x86_64-linux" ]; 125 - # Requires OpenJFX 11 or 16, which are both EOL. 126 - broken = true; 127 - }; 128 - }
···
-21
pkgs/applications/blockchains/bisq-desktop/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p curl jq gnused gnupg common-updater-scripts 3 - 4 - set -eu -o pipefail 5 - 6 - version="$(curl -s https://api.github.com/repos/bisq-network/bisq/releases| jq '.[] | {name,prerelease} | select(.prerelease==false) | limit(1;.[])' | sed 's/[\"v]//g' | head -n 1)" 7 - depname="Bisq-64bit-$version.deb" 8 - src="https://github.com/bisq-network/bisq/releases/download/v$version/$depname" 9 - signature="$src.asc" 10 - 11 - pushd $(mktemp -d --suffix=-bisq-updater) 12 - export GNUPGHOME=$PWD/gnupg 13 - mkdir -m 700 -p "$GNUPGHOME" 14 - curl -L -o "$depname" -- "$src" 15 - curl -L -o signature.asc -- "$signature" 16 - curl https://bisq.network/pubkey/E222AA02.asc | gpg --import 17 - gpg --batch --verify signature.asc "$depname" 18 - sha256=$(nix-prefetch-url --type sha256 "file://$PWD/$depname") 19 - popd 20 - 21 - update-source-version bisq-desktop "$version" "$sha256"
···
+3 -3
pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix
··· 20 21 melpaBuild { 22 pname = "voicemacs"; 23 - version = "0-unstable-2024-01-03"; 24 25 src = fetchFromGitHub { 26 owner = "jcaw"; 27 repo = "voicemacs"; 28 - rev = "d93f15d855d61f78827d78c9ca3508766266366c"; 29 - hash = "sha256-D/5+3SgECEb7A8qQqsAV1TQr+lA8EyOjf6NesnV2gos="; 30 }; 31 32 patches = [
··· 20 21 melpaBuild { 22 pname = "voicemacs"; 23 + version = "0-unstable-2024-10-11"; 24 25 src = fetchFromGitHub { 26 owner = "jcaw"; 27 repo = "voicemacs"; 28 + rev = "d8dade06a48994ff04f48e1177eed4e9243cbcb1"; 29 + hash = "sha256-kCuwjMl3pPWQNoXEl+oK6YoOLpk8kazLb69RwiGltAA="; 30 }; 31 32 patches = [
+12
pkgs/applications/editors/vim/plugins/generated.nix
··· 12823 meta.homepage = "https://github.com/folke/ts-comments.nvim/"; 12824 }; 12825 12826 tslime-vim = buildVimPlugin { 12827 pname = "tslime.vim"; 12828 version = "2020-09-09";
··· 12823 meta.homepage = "https://github.com/folke/ts-comments.nvim/"; 12824 }; 12825 12826 + tsc-nvim = buildVimPlugin { 12827 + pname = "tsc.nvim"; 12828 + version = "2024-08-14"; 12829 + src = fetchFromGitHub { 12830 + owner = "dmmulroy"; 12831 + repo = "tsc.nvim"; 12832 + rev = "82c37ebfe45d30763db6f45b54e18f1e485bb52c"; 12833 + sha256 = "14fa5w73bxpvwy3jm25mmx08l2v6c1w35ca8gc61mayxja55d4ls"; 12834 + }; 12835 + meta.homepage = "https://github.com/dmmulroy/tsc.nvim/"; 12836 + }; 12837 + 12838 tslime-vim = buildVimPlugin { 12839 pname = "tslime.vim"; 12840 version = "2020-09-09";
+9
pkgs/applications/editors/vim/plugins/overrides.nix
··· 57 taskwarrior3, 58 tmux, 59 tup, 60 vim, 61 which, 62 xkb-switch, ··· 2608 todo-comments-nvim = super.todo-comments-nvim.overrideAttrs { 2609 dependencies = [ self.plenary-nvim ]; 2610 nvimRequireCheck = "todo-comments"; 2611 }; 2612 2613 tssorter-nvim = super.tssorter-nvim.overrideAttrs {
··· 57 taskwarrior3, 58 tmux, 59 tup, 60 + typescript, 61 vim, 62 which, 63 xkb-switch, ··· 2609 todo-comments-nvim = super.todo-comments-nvim.overrideAttrs { 2610 dependencies = [ self.plenary-nvim ]; 2611 nvimRequireCheck = "todo-comments"; 2612 + }; 2613 + 2614 + tsc-nvim = super.tsc-nvim.overrideAttrs { 2615 + patches = [ ./patches/tsc.nvim/fix-path.patch ]; 2616 + 2617 + postPatch = '' 2618 + substituteInPlace lua/tsc/utils.lua --replace '@tsc@' ${typescript}/bin/tsc 2619 + ''; 2620 }; 2621 2622 tssorter-nvim = super.tssorter-nvim.overrideAttrs {
+13
pkgs/applications/editors/vim/plugins/patches/tsc.nvim/fix-path.patch
···
··· 1 + diff --git a/lua/tsc/utils.lua b/lua/tsc/utils.lua 2 + index 6433bcb..75760f9 100644 3 + --- a/lua/tsc/utils.lua 4 + +++ b/lua/tsc/utils.lua 5 + @@ -16,7 +16,7 @@ M.find_tsc_bin = function() 6 + return node_modules_tsc_binary 7 + end 8 + 9 + - return "tsc" 10 + + return "@tsc@" 11 + end 12 + 13 + --- @param run_mono_repo boolean
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 1065 https://github.com/Pocco81/true-zen.nvim/,, 1066 https://github.com/tesaguri/trust.vim/,HEAD, 1067 https://github.com/folke/ts-comments.nvim/,HEAD, 1068 https://github.com/jgdavey/tslime.vim/,, 1069 https://github.com/mtrajano/tssorter.nvim/,HEAD, 1070 https://github.com/Quramy/tsuquyomi/,,
··· 1065 https://github.com/Pocco81/true-zen.nvim/,, 1066 https://github.com/tesaguri/trust.vim/,HEAD, 1067 https://github.com/folke/ts-comments.nvim/,HEAD, 1068 + https://github.com/dmmulroy/tsc.nvim/,HEAD, 1069 https://github.com/jgdavey/tslime.vim/,, 1070 https://github.com/mtrajano/tssorter.nvim/,HEAD, 1071 https://github.com/Quramy/tsuquyomi/,,
+9 -6
pkgs/applications/misc/bambu-studio/default.nix pkgs/by-name/ba/bambu-studio/package.nix
··· 8 wrapGAppsHook3, 9 boost180, 10 cereal, 11 - cgal_5, 12 curl, 13 dbus, 14 eigen, 15 expat, 16 gcc-unwrapped, 17 glew, 18 glfw, ··· 55 in 56 stdenv.mkDerivation rec { 57 pname = "bambu-studio"; 58 - version = "01.09.07.52"; 59 60 src = fetchFromGitHub { 61 owner = "bambulab"; 62 repo = "BambuStudio"; 63 rev = "v${version}"; 64 - hash = "sha256-fhH4N29P/ysdHHbZt+FnBl3+QtTNhbVE3j4ZnFJyJH0="; 65 }; 66 67 nativeBuildInputs = [ ··· 74 binutils 75 boost180 76 cereal 77 - cgal_5 78 curl 79 dbus 80 eigen 81 expat 82 gcc-unwrapped 83 glew 84 glfw ··· 109 patches = [ 110 # Fix for webkitgtk linking 111 ./patches/0001-not-for-upstream-CMakeLists-Link-against-webkit2gtk-.patch 112 - # Fix build with cgal-5.6.1+ 113 - ./patches/meshboolean-const.patch 114 # Fix an issue with 115 ./patches/dont-link-opencv-world-bambu.patch 116 ]; ··· 148 "-DSLIC3R_STATIC=0" 149 "-DSLIC3R_FHS=1" 150 "-DSLIC3R_GTK=3" 151 152 # BambuStudio-specific 153 "-DBBL_RELEASE_TO_PUBLIC=1"
··· 8 wrapGAppsHook3, 9 boost180, 10 cereal, 11 + cgal, 12 curl, 13 dbus, 14 eigen, 15 expat, 16 + ffmpeg, 17 gcc-unwrapped, 18 glew, 19 glfw, ··· 56 in 57 stdenv.mkDerivation rec { 58 pname = "bambu-studio"; 59 + version = "01.10.01.50"; 60 61 src = fetchFromGitHub { 62 owner = "bambulab"; 63 repo = "BambuStudio"; 64 rev = "v${version}"; 65 + hash = "sha256-7mkrPl2CQSfc1lRjl1ilwxdYcK5iRU//QGKmdCicK30="; 66 }; 67 68 nativeBuildInputs = [ ··· 75 binutils 76 boost180 77 cereal 78 + cgal 79 curl 80 dbus 81 eigen 82 expat 83 + ffmpeg 84 gcc-unwrapped 85 glew 86 glfw ··· 111 patches = [ 112 # Fix for webkitgtk linking 113 ./patches/0001-not-for-upstream-CMakeLists-Link-against-webkit2gtk-.patch 114 # Fix an issue with 115 ./patches/dont-link-opencv-world-bambu.patch 116 ]; ··· 148 "-DSLIC3R_STATIC=0" 149 "-DSLIC3R_FHS=1" 150 "-DSLIC3R_GTK=3" 151 + 152 + # Skips installing ffmpeg, since we BYO. 153 + "-DFLATPAK=1" 154 155 # BambuStudio-specific 156 "-DBBL_RELEASE_TO_PUBLIC=1"
-1
pkgs/applications/misc/bambu-studio/orca-slicer.nix pkgs/by-name/or/orca-slicer/package.nix
··· 18 patches = [ 19 # Fix for webkitgtk linking 20 ./patches/0001-not-for-upstream-CMakeLists-Link-against-webkit2gtk-.patch 21 - 22 ./patches/dont-link-opencv-world-orca.patch 23 ]; 24
··· 18 patches = [ 19 # Fix for webkitgtk linking 20 ./patches/0001-not-for-upstream-CMakeLists-Link-against-webkit2gtk-.patch 21 ./patches/dont-link-opencv-world-orca.patch 22 ]; 23
-21
pkgs/applications/misc/bambu-studio/patches/meshboolean-const.patch
··· 1 - Fix build with cgal 5.6.1+ 2 - 3 - diff --git a/src/libslic3r/MeshBoolean.cpp b/src/libslic3r/MeshBoolean.cpp 4 - index 50bbc099..b05245d3 100644 5 - --- a/src/libslic3r/MeshBoolean.cpp 6 - +++ b/src/libslic3r/MeshBoolean.cpp 7 - @@ -200,12 +200,12 @@ indexed_triangle_set cgal_to_indexed_triangle_set(const _Mesh &cgalmesh) 8 - const auto &vertices = cgalmesh.vertices(); 9 - int vsize = int(vertices.size()); 10 - 11 - - for (auto &vi : vertices) { 12 - + for (const auto &vi : vertices) { 13 - auto &v = cgalmesh.point(vi); // Don't ask... 14 - its.vertices.emplace_back(to_vec3f(v)); 15 - } 16 - 17 - - for (auto &face : faces) { 18 - + for (const auto &face : faces) { 19 - auto vtc = cgalmesh.vertices_around_face(cgalmesh.halfedge(face)); 20 - 21 - int i = 0;
···
+5 -5
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 { 2 - "packageVersion": "132.0.1-1", 3 "source": { 4 - "rev": "132.0.1-1", 5 - "sha256": "qqwuqEw5wfUvOukdhUivTLbER0R7Ohscix791vAt73E=" 6 }, 7 "firefox": { 8 - "version": "132.0.1", 9 - "sha512": "ENWwX2Fijeuaacs0ss88dbtrh2j1pxjO8hV9X+sWce3g1YNDlWLhwSIZFOtu03/fQV3WUbFGXAVr4XQTbNgLnQ==" 10 } 11 }
··· 1 { 2 + "packageVersion": "132.0.2-1", 3 "source": { 4 + "rev": "132.0.2-1", 5 + "sha256": "7DB0QSQHNRw991yRR5+/Oo4fpXCR/Zklxb7ILRIH0WM=" 6 }, 7 "firefox": { 8 + "version": "132.0.2", 9 + "sha512": "nqldn7GpQaxaW1DaZ+Ik88z4xAHybLYbt0rX9OHocG1GnEtjJXFPLLnN9QwycQN31ryhjdZbVdssOe8rJ6V/rg==" 10 } 11 }
+2 -1
pkgs/applications/networking/instant-messengers/element/element-desktop.nix
··· 8 , nodejs 9 , fetchYarnDeps 10 , jq 11 - , electron 12 , element-web 13 , sqlcipher 14 , callPackage ··· 27 executableName = "element-desktop"; 28 keytar = callPackage ./keytar { inherit Security AppKit; }; 29 seshat = callPackage ./seshat { inherit CoreServices; }; 30 in 31 stdenv.mkDerivation (finalAttrs: builtins.removeAttrs pinData [ "hashes" ] // { 32 pname = "element-desktop";
··· 8 , nodejs 9 , fetchYarnDeps 10 , jq 11 + , electron_33 12 , element-web 13 , sqlcipher 14 , callPackage ··· 27 executableName = "element-desktop"; 28 keytar = callPackage ./keytar { inherit Security AppKit; }; 29 seshat = callPackage ./seshat { inherit CoreServices; }; 30 + electron = electron_33; 31 in 32 stdenv.mkDerivation (finalAttrs: builtins.removeAttrs pinData [ "hashes" ] // { 33 pname = "element-desktop";
+5 -5
pkgs/applications/networking/instant-messengers/element/pin.nix
··· 1 { 2 - "version" = "1.11.85"; 3 "hashes" = { 4 - "desktopSrcHash" = "sha256-KNt7UgQBKoieV3IV/qFjk6PKYlgjHk4tLA8cZZlYtIw="; 5 - "desktopYarnHash" = "1wh867yw7ic3nx623c5dknn9wk4zgq9b000p9mdf79spfp57lqlw"; 6 - "webSrcHash" = "sha256-JR7kA2thttBle+BT/zH8QjIjp5mJPsRMYx8nd/I3IEw="; 7 - "webYarnHash" = "0f38gizj9cnb7dqj10wljxkbjfabznh3s407n9vsl7ig0hm91zf9"; 8 }; 9 }
··· 1 { 2 + "version" = "1.11.86"; 3 "hashes" = { 4 + "desktopSrcHash" = "sha256-GP5KnXL63J0076cVu0OpodlNT7Ypeso4iGrQNKq/17M="; 5 + "desktopYarnHash" = "0bcq89nmx03h106hp875mv482d4r1xahdsimw3cs5c592zl50kx2"; 6 + "webSrcHash" = "sha256-cqB77ffTbFLoNsGjXUOb2tdlXhSIS3X1/oDXOzOn99s="; 7 + "webYarnHash" = "1cwj77a997lb4229ngry0b6kip1ggs82b9v126rzfgzavvwh9k1v"; 8 }; 9 }
pkgs/applications/networking/instant-messengers/signal-desktop/copy-noto-emoji.py pkgs/by-name/si/signal-desktop/copy-noto-emoji.py
-10
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 1 - { stdenv, callPackage }: 2 - { 3 - signal-desktop = 4 - if stdenv.hostPlatform.system == "aarch64-linux" then 5 - callPackage ./signal-desktop-aarch64.nix { } 6 - else if stdenv.hostPlatform.isDarwin then 7 - callPackage ./signal-desktop-darwin.nix { } 8 - else 9 - callPackage ./signal-desktop.nix { }; 10 - }
···
+67 -57
pkgs/applications/networking/instant-messengers/signal-desktop/generic.nix pkgs/by-name/si/signal-desktop/generic.nix
··· 1 - { stdenv 2 - , lib 3 - , callPackage 4 - , fetchurl 5 - , autoPatchelfHook 6 - , noto-fonts-color-emoji 7 - , dpkg 8 - , asar 9 - , rsync 10 - , python3 11 - , buildPackages 12 - , nixosTests 13 - , gtk3 14 - , atk 15 - , at-spi2-atk 16 - , cairo 17 - , pango 18 - , pipewire 19 - , gdk-pixbuf 20 - , glib 21 - , freetype 22 - , fontconfig 23 - , dbus 24 - , libX11 25 - , xorg 26 - , libXi 27 - , libXcursor 28 - , libXdamage 29 - , libXrandr 30 - , libXcomposite 31 - , libXext 32 - , libXfixes 33 - , libXrender 34 - , libXtst 35 - , libXScrnSaver 36 - , nss 37 - , nspr 38 - , alsa-lib 39 - , cups 40 - , expat 41 - , libuuid 42 - , at-spi2-core 43 - , libappindicator-gtk3 44 - , mesa 45 # Runtime dependencies: 46 - , systemd 47 - , libnotify 48 - , libdbusmenu 49 - , libpulseaudio 50 - , xdg-utils 51 - , wayland 52 }: 53 54 - { pname 55 - , dir 56 - , version 57 - , hash 58 - , url 59 }: 60 61 let ··· 98 inherit url hash; 99 recursiveHash = true; 100 downloadToTemp = true; 101 - nativeBuildInputs = [ dpkg asar ]; 102 # Signal ships the Apple emoji set without a licence via an npm 103 # package and upstream does not seem terribly interested in fixing 104 # this; see: ··· 271 bkchr 272 teutat3s 273 emily 274 ]; 275 mainProgram = pname; 276 - platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 277 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 278 }; 279 }
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchurl, 5 + autoPatchelfHook, 6 + noto-fonts-color-emoji, 7 + dpkg, 8 + asar, 9 + rsync, 10 + python3, 11 + buildPackages, 12 + nixosTests, 13 + gtk3, 14 + atk, 15 + at-spi2-atk, 16 + cairo, 17 + pango, 18 + pipewire, 19 + gdk-pixbuf, 20 + glib, 21 + freetype, 22 + fontconfig, 23 + dbus, 24 + libX11, 25 + xorg, 26 + libXi, 27 + libXcursor, 28 + libXdamage, 29 + libXrandr, 30 + libXcomposite, 31 + libXext, 32 + libXfixes, 33 + libXrender, 34 + libXtst, 35 + libXScrnSaver, 36 + nss, 37 + nspr, 38 + alsa-lib, 39 + cups, 40 + expat, 41 + libuuid, 42 + at-spi2-core, 43 + libappindicator-gtk3, 44 + mesa, 45 # Runtime dependencies: 46 + systemd, 47 + libnotify, 48 + libdbusmenu, 49 + libpulseaudio, 50 + xdg-utils, 51 + wayland, 52 }: 53 54 + { 55 + pname, 56 + dir, 57 + version, 58 + hash, 59 + url, 60 }: 61 62 let ··· 99 inherit url hash; 100 recursiveHash = true; 101 downloadToTemp = true; 102 + nativeBuildInputs = [ 103 + dpkg 104 + asar 105 + ]; 106 # Signal ships the Apple emoji set without a licence via an npm 107 # package and upstream does not seem terribly interested in fixing 108 # this; see: ··· 275 bkchr 276 teutat3s 277 emily 278 + Gliczy 279 ]; 280 mainProgram = pname; 281 + platforms = [ 282 + "x86_64-linux" 283 + "aarch64-linux" 284 + "x86_64-darwin" 285 + "aarch64-darwin" 286 + ]; 287 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 288 }; 289 }
pkgs/applications/networking/instant-messengers/signal-desktop/pyproject.toml pkgs/by-name/si/signal-desktop/pyproject.toml
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-aarch64.nix pkgs/by-name/si/signal-desktop/signal-desktop-aarch64.nix
··· 2 callPackage ./generic.nix { } rec { 3 pname = "signal-desktop"; 4 dir = "Signal"; 5 - version = "7.33.0"; 6 url = "https://github.com/0mniteck/Signal-Desktop-Mobian/raw/${version}/builds/release/signal-desktop_${version}_arm64.deb"; 7 - hash = "sha256-2PwEPwQkoNrnSI00CVeTjF7QvxQb9NxQqrcOVisWwFU="; 8 }
··· 2 callPackage ./generic.nix { } rec { 3 pname = "signal-desktop"; 4 dir = "Signal"; 5 + version = "7.34.0"; 6 url = "https://github.com/0mniteck/Signal-Desktop-Mobian/raw/${version}/builds/release/signal-desktop_${version}_arm64.deb"; 7 + hash = "sha256-feNjNhKGIJsV6LH2mKAXd7TEnmvcKXheXmqJZEBqXvE="; 8 }
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-darwin.nix pkgs/by-name/si/signal-desktop/signal-desktop-darwin.nix
··· 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "signal-desktop"; 9 - version = "7.33.0"; 10 11 src = fetchurl { 12 url = "https://updates.signal.org/desktop/signal-desktop-mac-universal-${finalAttrs.version}.dmg"; 13 - hash = "sha256-kq4HkLlTWTE8CLPnZ0o4XYDUC0n5LmgJiGdiIDTtdTI="; 14 }; 15 sourceRoot = "."; 16
··· 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "signal-desktop"; 9 + version = "7.34.0"; 10 11 src = fetchurl { 12 url = "https://updates.signal.org/desktop/signal-desktop-mac-universal-${finalAttrs.version}.dmg"; 13 + hash = "sha256-UfyD2R78SkvAn7PppOfAK/zzPPpRVdI3y2T/F07ad1E="; 14 }; 15 sourceRoot = "."; 16
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix pkgs/by-name/si/signal-desktop/signal-desktop.nix
··· 2 callPackage ./generic.nix { } rec { 3 pname = "signal-desktop"; 4 dir = "Signal"; 5 - version = "7.33.0"; 6 url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 7 - hash = "sha256-/7G3KocmkKBochwjF0iavqeQjXXc9AlFocsERAh8mKs="; 8 }
··· 2 callPackage ./generic.nix { } rec { 3 pname = "signal-desktop"; 4 dir = "Signal"; 5 + version = "7.34.0"; 6 url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 7 + hash = "sha256-q0vv96esQ6LRVVwxSQDh4BdbOZrc+caB+TRDWKfDlZ8="; 8 }
pkgs/applications/networking/instant-messengers/signal-desktop/update.sh pkgs/by-name/si/signal-desktop/update.sh
+3 -3
pkgs/by-name/aa/aaaaxy/package.nix
··· 20 21 buildGoModule rec { 22 pname = "aaaaxy"; 23 - version = "1.5.208"; 24 25 src = fetchFromGitHub { 26 owner = "divVerent"; 27 repo = pname; 28 rev = "v${version}"; 29 - hash = "sha256-VfF8bQP7pFaTezOJpda4N9KbCHr5ST/wCvdNRiojio0="; 30 fetchSubmodules = true; 31 }; 32 33 - vendorHash = "sha256-PBwI3S8ZvmVD57/ICALe+HvgtbPQpJKNPfkWo+uUeSo="; 34 35 buildInputs = [ 36 alsa-lib
··· 20 21 buildGoModule rec { 22 pname = "aaaaxy"; 23 + version = "1.5.220"; 24 25 src = fetchFromGitHub { 26 owner = "divVerent"; 27 repo = pname; 28 rev = "v${version}"; 29 + hash = "sha256-XNLX5LDbL29Ko0zstgo+O5V0oe37dSChk8iJeVrYlLA="; 30 fetchSubmodules = true; 31 }; 32 33 + vendorHash = "sha256-tDQKU/1fKDPCrUHfFi79u4d2XwOqjvTuIlsUAB74e4c="; 34 35 buildInputs = [ 36 alsa-lib
+2 -2
pkgs/by-name/aq/aquamarine/package.nix
··· 23 }: 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "aquamarine"; 26 - version = "0.4.4"; 27 28 src = fetchFromGitHub { 29 owner = "hyprwm"; 30 repo = "aquamarine"; 31 rev = "v${finalAttrs.version}"; 32 - hash = "sha256-6DQM7jT2CzfxYceyrtcBQSL9BOEGfuin8GAyMjCpAzc="; 33 }; 34 35 nativeBuildInputs = [
··· 23 }: 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "aquamarine"; 26 + version = "0.5.0"; 27 28 src = fetchFromGitHub { 29 owner = "hyprwm"; 30 repo = "aquamarine"; 31 rev = "v${finalAttrs.version}"; 32 + hash = "sha256-1Dxryiw8u2ejntxrrv3sMtIE8WHKxmlN4KeH+uMGbmc="; 33 }; 34 35 nativeBuildInputs = [
+3 -3
pkgs/by-name/as/ast-grep/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "ast-grep"; 10 - version = "0.28.1"; 11 12 src = fetchFromGitHub { 13 owner = "ast-grep"; 14 repo = "ast-grep"; 15 rev = version; 16 - hash = "sha256-nMOj/oMJsBB0bI2RzxEytvEr0v+VmGIMY0uiK7ALEHM="; 17 }; 18 19 - cargoHash = "sha256-alOLdkgyrJQNg/JACredGmfs/dKxnOm9cSahvVBHzTM="; 20 21 nativeBuildInputs = [ installShellFiles ]; 22
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "ast-grep"; 10 + version = "0.30.0"; 11 12 src = fetchFromGitHub { 13 owner = "ast-grep"; 14 repo = "ast-grep"; 15 rev = version; 16 + hash = "sha256-Fk46F1EBWSVFAUUDAtXcwq9iCSATW1CV/ul3NEa1YqA="; 17 }; 18 19 + cargoHash = "sha256-5yJ248BSp9w/r1chQqIucxzfvFGy+jumSquF9gVmSUM="; 20 21 nativeBuildInputs = [ installShellFiles ]; 22
+59
pkgs/by-name/av/avdump3/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchzip, 5 + dotnet-runtime, 6 + zlib, 7 + runtimeShell, 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "avdump3"; 12 + version = "8293_stable"; 13 + 14 + src = fetchzip { 15 + url = "https://cdn.anidb.net/client/avdump3/avdump3_8293_stable.zip"; 16 + hash = "sha256-H9Sn3I4S9CmymKIMHVagDy+7svHs285S3EJgYQo+ks0="; 17 + stripRoot = false; 18 + }; 19 + 20 + installPhase = '' 21 + runHook preInstall 22 + mkdir -p $out/share/avdump3 $out/bin 23 + mv * $out/share/avdump3 24 + cat > $out/bin/avdump3 <<EOF 25 + #!${runtimeShell} 26 + export LD_LIBRARY_PATH="${lib.makeLibraryPath [ zlib ]}:\$LD_LIBRARY_PATH" 27 + exec ${dotnet-runtime}/bin/dotnet $out/share/avdump3/AVDump3CL.dll "\$@" 28 + EOF 29 + chmod +x $out/bin/avdump3 30 + runHook postInstall 31 + ''; 32 + 33 + dontPatchELF = true; 34 + 35 + meta = { 36 + mainProgram = "avdump3"; 37 + description = "Tool for extracting audio/video metadata from media files and uploading it to AniDB"; 38 + longDescription = '' 39 + AVDump is a tool to extract meta information from media files while at the 40 + same time calculating multiple hashes. Based on that information reports 41 + can be generated in multiple forms. Of particular interest is the ability 42 + to send those reports back to AniDB and thereby quickly filling in missing 43 + metadata for new files. 44 + ''; 45 + homepage = "https://wiki.anidb.net/Avdump3"; 46 + sourceProvenance = with lib.sourceTypes; [ 47 + binaryNativeCode 48 + binaryBytecode 49 + ]; 50 + # partial source code available under MIT license at https://github.com/DvdKhl/AVDump3 51 + license = with lib.licenses; [ 52 + mit 53 + unfree 54 + ]; 55 + maintainers = with lib.maintainers; [ kini ]; 56 + # NOTE: aarch64-linux may also work but hasn't been tested; co-maintainers welcome. 57 + platforms = [ "x86_64-linux" ]; 58 + }; 59 + }
+4 -3
pkgs/by-name/aw/await/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "await"; 11 - version = "1.0.5"; 12 13 src = fetchFromGitHub { 14 owner = "slavaGanzin"; 15 repo = "await"; 16 - rev = "v${version}"; 17 - hash = "sha256-0U9eLQDvHnRUJt46AI4bDWZfGynqjaWs9teidWP3RsA="; 18 }; 19 20 nativeBuildInputs = [ installShellFiles ]; ··· 40 versionCheckHook 41 ]; 42 doInstallCheck = true; 43 44 meta = with lib; { 45 description = "Small binary that runs a list of commands in parallel and awaits termination";
··· 8 9 stdenv.mkDerivation rec { 10 pname = "await"; 11 + version = "1.0.7"; 12 13 src = fetchFromGitHub { 14 owner = "slavaGanzin"; 15 repo = "await"; 16 + rev = version; 17 + hash = "sha256-Yrit1WdWIfjwqbjvyjrPT3EqSSkooYX+uoOstbxy//I="; 18 }; 19 20 nativeBuildInputs = [ installShellFiles ]; ··· 40 versionCheckHook 41 ]; 42 doInstallCheck = true; 43 + versionCheckProgramArg = [ "--version" ]; 44 45 meta = with lib; { 46 description = "Small binary that runs a list of commands in parallel and awaits termination";
+3 -3
pkgs/by-name/az/azurite/package.nix
··· 10 11 buildNpmPackage rec { 12 pname = "azurite"; 13 - version = "3.31.0"; 14 15 src = fetchFromGitHub { 16 owner = "Azure"; 17 repo = "Azurite"; 18 rev = "v${version}"; 19 - hash = "sha256-WT1eprN6SBnsfITCopybEHCuxrHvKEhdmVs7xL3cUi0="; 20 }; 21 22 - npmDepsHash = "sha256-+ptjsz2MDIB/aqu4UxkBLCcehtamFdmswNUsHs23LuE="; 23 24 nativeBuildInputs = [ pkg-config python3 ]; 25 buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
··· 10 11 buildNpmPackage rec { 12 pname = "azurite"; 13 + version = "3.33.0"; 14 15 src = fetchFromGitHub { 16 owner = "Azure"; 17 repo = "Azurite"; 18 rev = "v${version}"; 19 + hash = "sha256-aH9FAT49y4k87lzerQdgLqi+ZlucORQX4w1NBFtEfMw="; 20 }; 21 22 + npmDepsHash = "sha256-jfa04iWz0aOiFD1YkXn5YEXqQcrY+rIDbVmmUaA5sYc="; 23 24 nativeBuildInputs = [ pkg-config python3 ]; 25 buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
+20 -3
pkgs/by-name/bi/bite/Cargo.lock
··· 104 version = "0.0.0" 105 dependencies = [ 106 "bitvec", 107 "debugvault", 108 "decoder", 109 "tokenizing", ··· 381 382 [[package]] 383 name = "bite" 384 - version = "0.2.1" 385 dependencies = [ 386 "commands", 387 "debugvault", ··· 696 "egui", 697 "log 0.0.0", 698 "once_cell", 699 - "serde", 700 - "serde_yaml", 701 "triple_accel", 702 ] 703 ··· 711 ] 712 713 [[package]] 714 name = "copypasta" 715 version = "0.10.0" 716 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 867 dependencies = [ 868 "binformat", 869 "bitflags 2.4.2", 870 "crossbeam-queue", 871 "dashmap", 872 "gimli", ··· 1662 "bytemuck", 1663 "cc", 1664 "commands", 1665 "copypasta", 1666 "crossbeam-queue", 1667 "debugvault", ··· 2045 name = "mips" 2046 version = "0.0.0" 2047 dependencies = [ 2048 "debugvault", 2049 "decoder", 2050 "tokenizing", ··· 2532 "arm", 2533 "binformat", 2534 "commands", 2535 "debugvault", 2536 "decoder", 2537 "log 0.0.0", ··· 2724 name = "riscv" 2725 version = "0.0.0" 2726 dependencies = [ 2727 "crc", 2728 "debugvault", 2729 "decoder", ··· 4153 name = "x86_64" 4154 version = "0.0.0" 4155 dependencies = [ 4156 "debugvault", 4157 "decoder", 4158 "tokenizing",
··· 104 version = "0.0.0" 105 dependencies = [ 106 "bitvec", 107 + "config", 108 "debugvault", 109 "decoder", 110 "tokenizing", ··· 382 383 [[package]] 384 name = "bite" 385 + version = "0.3.0" 386 dependencies = [ 387 "commands", 388 "debugvault", ··· 697 "egui", 698 "log 0.0.0", 699 "once_cell", 700 "triple_accel", 701 ] 702 ··· 710 ] 711 712 [[package]] 713 + name = "config" 714 + version = "0.0.0" 715 + dependencies = [ 716 + "dirs", 717 + "egui", 718 + "log 0.0.0", 719 + "once_cell", 720 + "serde", 721 + "serde_yaml", 722 + ] 723 + 724 + [[package]] 725 name = "copypasta" 726 version = "0.10.0" 727 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 878 dependencies = [ 879 "binformat", 880 "bitflags 2.4.2", 881 + "config", 882 "crossbeam-queue", 883 "dashmap", 884 "gimli", ··· 1674 "bytemuck", 1675 "cc", 1676 "commands", 1677 + "config", 1678 "copypasta", 1679 "crossbeam-queue", 1680 "debugvault", ··· 2058 name = "mips" 2059 version = "0.0.0" 2060 dependencies = [ 2061 + "config", 2062 "debugvault", 2063 "decoder", 2064 "tokenizing", ··· 2546 "arm", 2547 "binformat", 2548 "commands", 2549 + "config", 2550 "debugvault", 2551 "decoder", 2552 "log 0.0.0", ··· 2739 name = "riscv" 2740 version = "0.0.0" 2741 dependencies = [ 2742 + "config", 2743 "crc", 2744 "debugvault", 2745 "decoder", ··· 4169 name = "x86_64" 4170 version = "0.0.0" 4171 dependencies = [ 4172 + "config", 4173 "debugvault", 4174 "decoder", 4175 "tokenizing",
+11 -13
pkgs/by-name/bi/bite/package.nix
··· 1 { 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 pkg-config, ··· 16 pango, 17 vulkan-loader, 18 stdenv, 19 - darwin, 20 wayland, 21 }: 22 rustPlatform.buildRustPackage rec { 23 pname = "bite"; 24 - version = "0.2.1"; 25 26 src = fetchFromGitHub { 27 owner = "WINSDK"; 28 repo = "bite"; 29 rev = "V${version}"; 30 - hash = "sha256-A5NII5pLnM4BBy2L+ylXU0anqw4DpKgXmc29fcTq2z8="; 31 }; 32 33 cargoLock = { ··· 60 pango 61 vulkan-loader 62 ] 63 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 64 - darwin.apple_sdk.frameworks.AppKit 65 - darwin.apple_sdk.frameworks.CoreGraphics 66 - darwin.apple_sdk.frameworks.Foundation 67 - darwin.apple_sdk.frameworks.Metal 68 - darwin.apple_sdk.frameworks.QuartzCore 69 - ] 70 ++ lib.optionals stdenv.hostPlatform.isLinux [ 71 wayland 72 ]; 73 74 runtimeDependencies = ··· 95 icon = "bite"; 96 desktopName = "BiTE"; 97 comment = meta.description; 98 - categories = ["Development" "Utility"]; 99 }) 100 ]; 101 ··· 103 description = "Disassembler focused on comprehensive rust support"; 104 homepage = "https://github.com/WINSDK/bite"; 105 license = licenses.mit; 106 - maintainers = with maintainers; [vinnymeller]; 107 mainProgram = "bite"; 108 - broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; 109 }; 110 }
··· 1 { 2 lib, 3 + apple-sdk_15, 4 rustPlatform, 5 fetchFromGitHub, 6 pkg-config, ··· 17 pango, 18 vulkan-loader, 19 stdenv, 20 wayland, 21 }: 22 rustPlatform.buildRustPackage rec { 23 pname = "bite"; 24 + version = "0.3"; 25 26 src = fetchFromGitHub { 27 owner = "WINSDK"; 28 repo = "bite"; 29 rev = "V${version}"; 30 + hash = "sha256-gio4J+V8achSuR2vQa2dnvOR/u4Zbb5z0UE0xP0gGCU="; 31 }; 32 33 cargoLock = { ··· 60 pango 61 vulkan-loader 62 ] 63 ++ lib.optionals stdenv.hostPlatform.isLinux [ 64 wayland 65 + ] 66 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 67 + apple-sdk_15 68 ]; 69 70 runtimeDependencies = ··· 91 icon = "bite"; 92 desktopName = "BiTE"; 93 comment = meta.description; 94 + categories = [ 95 + "Development" 96 + "Utility" 97 + ]; 98 }) 99 ]; 100 ··· 102 description = "Disassembler focused on comprehensive rust support"; 103 homepage = "https://github.com/WINSDK/bite"; 104 license = licenses.mit; 105 + maintainers = with maintainers; [ vinnymeller ]; 106 mainProgram = "bite"; 107 }; 108 }
+3 -3
pkgs/by-name/co/codeberg-pages/package.nix
··· 2 3 buildGoModule rec { 4 pname = "codeberg-pages"; 5 - version = "5.1"; 6 7 src = fetchFromGitea { 8 domain = "codeberg.org"; 9 owner = "Codeberg"; 10 repo = "pages-server"; 11 rev = "v${version}"; 12 - hash = "sha256-txWRYQnJCGVZ0/6pZdKkRFsdUe2B+A0Fy0/WJCiBVa0="; 13 }; 14 15 - vendorHash = "sha256-0JPnBf4NA4t+63cNMZYnB56y93nOc8Wn7TstRiHgvhk="; 16 17 postPatch = '' 18 # disable httptest
··· 2 3 buildGoModule rec { 4 pname = "codeberg-pages"; 5 + version = "6.1"; 6 7 src = fetchFromGitea { 8 domain = "codeberg.org"; 9 owner = "Codeberg"; 10 repo = "pages-server"; 11 rev = "v${version}"; 12 + hash = "sha256-zG+OicdwtiHm/Ji+xfB61leCq9Ni0ysXkh4pQRju7IA="; 13 }; 14 15 + vendorHash = "sha256-OmrkO++2vnIY7ay4q3oplDYDPWH1d5VSpDCBM6nD4rk="; 16 17 postPatch = '' 18 # disable httptest
+4 -3
pkgs/by-name/da/databricks-cli/package.nix
··· 8 9 buildGoModule rec { 10 pname = "databricks-cli"; 11 - version = "0.229.0"; 12 13 src = fetchFromGitHub { 14 owner = "databricks"; 15 repo = "cli"; 16 rev = "v${version}"; 17 - hash = "sha256-ap2IypBPFV4yJVXRS8zSXC0kW/QKpOvFS9Cod0pSlG0="; 18 }; 19 20 - vendorHash = "sha256-yCwevuivIHZ0dns9QljiKvwws4cFknIydvfjs4Jib3s="; 21 22 excludedPackages = [ "bundle/internal" ]; 23 ··· 29 "-skip=" 30 + (lib.concatStringsSep "|" [ 31 # Need network 32 "TestTerraformArchiveChecksums" 33 "TestExpandPipelineGlobPaths" 34 "TestRelativePathTranslationDefault"
··· 8 9 buildGoModule rec { 10 pname = "databricks-cli"; 11 + version = "0.234.0"; 12 13 src = fetchFromGitHub { 14 owner = "databricks"; 15 repo = "cli"; 16 rev = "v${version}"; 17 + hash = "sha256-I1S31a1JvXFXWw4EkS40efKEE9wsQlMdjVxEJDRTzA8="; 18 }; 19 20 + vendorHash = "sha256-Zih5NftJMbtLYG0Sej1BaErJ8NnU25mwhl3pfqSOSxc="; 21 22 excludedPackages = [ "bundle/internal" ]; 23 ··· 29 "-skip=" 30 + (lib.concatStringsSep "|" [ 31 # Need network 32 + "TestConsistentDatabricksSdkVersion" 33 "TestTerraformArchiveChecksums" 34 "TestExpandPipelineGlobPaths" 35 "TestRelativePathTranslationDefault"
+3 -3
pkgs/by-name/de/delfin/package.nix
··· 21 22 stdenv.mkDerivation rec { 23 pname = "delfin"; 24 - version = "0.4.7"; 25 26 src = fetchFromGitea { 27 domain = "codeberg.org"; 28 owner = "avery42"; 29 repo = "delfin"; 30 rev = "v${version}"; 31 - hash = "sha256-F4ipIOqMS42nXHRSRpzIlTh61g2xjpog7Zmxn6D29nE="; 32 }; 33 34 cargoDeps = rustPlatform.fetchCargoTarball { 35 inherit src; 36 name = "${pname}-${version}"; 37 - hash = "sha256-ciw178jBwz4I6I1x6iI45RJ2ITw0JfukLWNyBmE3FZg="; 38 }; 39 40 nativeBuildInputs = [
··· 21 22 stdenv.mkDerivation rec { 23 pname = "delfin"; 24 + version = "0.4.8"; 25 26 src = fetchFromGitea { 27 domain = "codeberg.org"; 28 owner = "avery42"; 29 repo = "delfin"; 30 rev = "v${version}"; 31 + hash = "sha256-2ussvPXMX4wGE9N+Zh8KYIjbbqEKkPaNymN1Oqj8w8U="; 32 }; 33 34 cargoDeps = rustPlatform.fetchCargoTarball { 35 inherit src; 36 name = "${pname}-${version}"; 37 + hash = "sha256-JEHiLdEU9QkCxWPoTFVn2c6UDqnRbTG1WPetdsW/N8g="; 38 }; 39 40 nativeBuildInputs = [
+18 -5
pkgs/by-name/de/deltachat-desktop/package.nix
··· 9 , pkg-config 10 , pnpm_9 11 , python3 12 , stdenv 13 , darwin 14 , testers ··· 17 }: 18 19 let 20 electron = electron_32; 21 pnpm = pnpm_9; 22 in ··· 47 copyDesktopItems 48 ]; 49 50 - buildInputs = [ 51 - deltachat-rpc-server 52 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 53 darwin.apple_sdk.frameworks.CoreServices 54 ]; 55 ··· 63 64 test \ 65 $(yq -r '.catalogs.default."@deltachat/jsonrpc-client".version' pnpm-lock.yaml) \ 66 - = ${deltachat-rpc-server.version} \ 67 || (echo "error: deltachat-rpc-server version does not match jsonrpc-client" && exit 1) 68 69 test \ ··· 83 84 pushd packages/target-electron/dist/*-unpacked/resources/app.asar.unpacked 85 rm node_modules/@deltachat/stdio-rpc-server-*/deltachat-rpc-server 86 - ln -s ${lib.getExe deltachat-rpc-server} node_modules/@deltachat/stdio-rpc-server-* 87 popd 88 89 runHook postBuild
··· 9 , pkg-config 10 , pnpm_9 11 , python3 12 + , rustPlatform 13 , stdenv 14 , darwin 15 , testers ··· 18 }: 19 20 let 21 + deltachat-rpc-server' = deltachat-rpc-server.overrideAttrs rec { 22 + version = "1.148.7"; 23 + src = fetchFromGitHub { 24 + owner = "deltachat"; 25 + repo = "deltachat-core-rust"; 26 + rev = "v${version}"; 27 + hash = "sha256-mTNWSR4ea972tIOvg6RClEc44mKXoHDEWoLZXio8O4k="; 28 + }; 29 + cargoDeps = rustPlatform.fetchCargoVendor { 30 + pname = "deltachat-core-rust"; 31 + inherit version src; 32 + hash = "sha256-eDj8DIvvWWj+tfHuzR35WXlKY5klGxW+MixdN++vugk="; 33 + }; 34 + }; 35 electron = electron_32; 36 pnpm = pnpm_9; 37 in ··· 62 copyDesktopItems 63 ]; 64 65 + buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 66 darwin.apple_sdk.frameworks.CoreServices 67 ]; 68 ··· 76 77 test \ 78 $(yq -r '.catalogs.default."@deltachat/jsonrpc-client".version' pnpm-lock.yaml) \ 79 + = ${deltachat-rpc-server'.version} \ 80 || (echo "error: deltachat-rpc-server version does not match jsonrpc-client" && exit 1) 81 82 test \ ··· 96 97 pushd packages/target-electron/dist/*-unpacked/resources/app.asar.unpacked 98 rm node_modules/@deltachat/stdio-rpc-server-*/deltachat-rpc-server 99 + ln -s ${lib.getExe deltachat-rpc-server'} node_modules/@deltachat/stdio-rpc-server-* 100 popd 101 102 runHook postBuild
+20 -10
pkgs/by-name/de/deskflow/package.nix
··· 32 }: 33 stdenv.mkDerivation rec { 34 pname = "deskflow"; 35 - version = "1.17.1"; 36 37 src = fetchFromGitHub { 38 owner = "deskflow"; 39 repo = "deskflow"; 40 - rev = "v${version}"; 41 - hash = "sha256-cEKG9MwENbZqrfRdwiZtRWmIfRndrWUoaZQ5O7YRpBs="; 42 }; 43 44 postPatch = '' ··· 87 lerc 88 ]; 89 90 - postInstall = '' 91 - substituteInPlace $out/share/applications/deskflow.desktop \ 92 - --replace-fail "Path=/usr/bin" "Path=$out/bin" \ 93 - --replace-fail "Exec=/usr/bin/deskflow" "Exec=deskflow" 94 - ''; 95 - 96 qtWrapperArgs = [ 97 "--set QT_QPA_PLATFORM_PLUGIN_PATH ${qt6.qtwayland}/${qt6.qtbase.qtPluginPrefix}/platforms" 98 ]; 99 100 meta = { 101 homepage = "https://github.com/deskflow/deskflow"; 102 description = "Share one mouse and keyboard between multiple computers on Windows, macOS and Linux"; 103 mainProgram = "deskflow"; 104 maintainers = with lib.maintainers; [ aucub ]; 105 - license = lib.licenses.gpl2Plus; 106 platforms = lib.platforms.linux; 107 }; 108 }
··· 32 }: 33 stdenv.mkDerivation rec { 34 pname = "deskflow"; 35 + version = "1.17.2"; 36 37 src = fetchFromGitHub { 38 owner = "deskflow"; 39 repo = "deskflow"; 40 + rev = "refs/tags/v${version}"; 41 + hash = "sha256-CHlvL/MC9clFrMxlfIXaCFoTkcLS7QsYK7MXMFW0188="; 42 }; 43 44 postPatch = '' ··· 87 lerc 88 ]; 89 90 qtWrapperArgs = [ 91 "--set QT_QPA_PLATFORM_PLUGIN_PATH ${qt6.qtwayland}/${qt6.qtbase.qtPluginPrefix}/platforms" 92 ]; 93 94 + doCheck = true; 95 + 96 + checkPhase = '' 97 + runHook preCheck 98 + 99 + export QT_QPA_PLATFORM=offscreen 100 + export HOME=$(mktemp -d) 101 + ./bin/unittests 102 + ./bin/integtests 103 + 104 + runHook postCheck 105 + ''; 106 + 107 meta = { 108 homepage = "https://github.com/deskflow/deskflow"; 109 description = "Share one mouse and keyboard between multiple computers on Windows, macOS and Linux"; 110 mainProgram = "deskflow"; 111 maintainers = with lib.maintainers; [ aucub ]; 112 + license = with lib; [ 113 + licenses.gpl2Plus 114 + licenses.openssl 115 + ]; 116 platforms = lib.platforms.linux; 117 }; 118 }
-8
pkgs/by-name/de/dezoomify-rs/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 rustPlatform, 5 fetchFromGitHub, 6 darwin, ··· 18 }; 19 20 cargoHash = "sha256-0T5zvd78l3ghop/KoIgXYoGssVV9F+ppJV2pWyLnwxo="; 21 - 22 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 23 - with darwin.apple_sdk.frameworks; 24 - [ 25 - SystemConfiguration 26 - ] 27 - ); 28 29 checkFlags = [ 30 # Tests failing due to networking errors in Nix build environment
··· 1 { 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 darwin, ··· 17 }; 18 19 cargoHash = "sha256-0T5zvd78l3ghop/KoIgXYoGssVV9F+ppJV2pWyLnwxo="; 20 21 checkFlags = [ 22 # Tests failing due to networking errors in Nix build environment
+630 -312
pkgs/by-name/em/emmet-language-server/package-lock.json
··· 1 { 2 "name": "@olrtg/emmet-language-server", 3 - "version": "2.2.0", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "@olrtg/emmet-language-server", 9 - "version": "2.2.0", 10 "license": "MIT", 11 "dependencies": { 12 "@vscode/emmet-helper": "^2.9.2", ··· 19 }, 20 "devDependencies": { 21 "@tsconfig/recommended": "^1.0.2", 22 "typescript": "^5.1.6" 23 } 24 }, ··· 26 "version": "2.3.3", 27 "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz", 28 "integrity": "sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==", 29 "dependencies": { 30 "@emmetio/scanner": "^1.0.4" 31 } ··· 34 "version": "2.1.8", 35 "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz", 36 "integrity": "sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==", 37 "dependencies": { 38 "@emmetio/scanner": "^1.0.4" 39 } ··· 41 "node_modules/@emmetio/scanner": { 42 "version": "1.0.4", 43 "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.4.tgz", 44 - "integrity": "sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==" 45 }, 46 "node_modules/@jsdevtools/ez-spawn": { 47 "version": "3.0.4", 48 "resolved": "https://registry.npmjs.org/@jsdevtools/ez-spawn/-/ez-spawn-3.0.4.tgz", 49 "integrity": "sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==", 50 "dependencies": { 51 "call-me-maybe": "^1.0.1", 52 "cross-spawn": "^7.0.3", ··· 57 "node": ">=10" 58 } 59 }, 60 - "node_modules/@nodelib/fs.scandir": { 61 - "version": "2.1.5", 62 - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 63 - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 64 - "dependencies": { 65 - "@nodelib/fs.stat": "2.0.5", 66 - "run-parallel": "^1.1.9" 67 - }, 68 - "engines": { 69 - "node": ">= 8" 70 - } 71 }, 72 - "node_modules/@nodelib/fs.stat": { 73 - "version": "2.0.5", 74 - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 75 - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 76 - "engines": { 77 - "node": ">= 8" 78 - } 79 - }, 80 - "node_modules/@nodelib/fs.walk": { 81 - "version": "1.2.8", 82 - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 83 - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 84 "dependencies": { 85 - "@nodelib/fs.scandir": "2.1.5", 86 - "fastq": "^1.6.0" 87 - }, 88 - "engines": { 89 - "node": ">= 8" 90 } 91 - }, 92 - "node_modules/@tsconfig/recommended": { 93 - "version": "1.0.3", 94 - "resolved": "https://registry.npmjs.org/@tsconfig/recommended/-/recommended-1.0.3.tgz", 95 - "integrity": "sha512-+jby/Guq9H8O7NWgCv6X8VAiQE8Dr/nccsCtL74xyHKhu2Knu5EAKmOZj3nLCnLm1KooUzKY+5DsnGVqhM8/wQ==", 96 - "dev": true 97 }, 98 "node_modules/@vscode/emmet-helper": { 99 - "version": "2.9.2", 100 - "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.9.2.tgz", 101 - "integrity": "sha512-MaGuyW+fa13q3aYsluKqclmh62Hgp0BpKIqS66fCxfOaBcVQ1OnMQxRRgQUYnCkxFISAQlkJ0qWWPyXjro1Qrg==", 102 "dependencies": { 103 "emmet": "^2.4.3", 104 "jsonc-parser": "^2.3.0", 105 "vscode-languageserver-textdocument": "^1.0.1", 106 "vscode-languageserver-types": "^3.15.1", 107 - "vscode-uri": "^2.1.2" 108 } 109 }, 110 "node_modules/acorn": { 111 - "version": "8.10.0", 112 - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", 113 - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", 114 "bin": { 115 "acorn": "bin/acorn" 116 }, ··· 118 "node": ">=0.4.0" 119 } 120 }, 121 - "node_modules/agent-base": { 122 - "version": "6.0.2", 123 - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 124 - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 125 - "dependencies": { 126 - "debug": "4" 127 - }, 128 - "engines": { 129 - "node": ">= 6.0.0" 130 - } 131 - }, 132 "node_modules/anymatch": { 133 "version": "3.1.3", 134 "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 135 "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 136 "dependencies": { 137 "normalize-path": "^3.0.0", 138 "picomatch": "^2.0.4" ··· 141 "node": ">= 8" 142 } 143 }, 144 "node_modules/binary-extensions": { 145 - "version": "2.2.0", 146 - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 147 - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 148 "engines": { 149 "node": ">=8" 150 } 151 }, 152 "node_modules/braces": { 153 - "version": "3.0.2", 154 - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 155 - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 156 "dependencies": { 157 - "fill-range": "^7.0.1" 158 }, 159 "engines": { 160 "node": ">=8" 161 } 162 }, 163 "node_modules/bumpp": { 164 - "version": "9.2.0", 165 - "resolved": "https://registry.npmjs.org/bumpp/-/bumpp-9.2.0.tgz", 166 - "integrity": "sha512-pgp7y3jp33QTaXFVDrE0IKuZF5Y8EsIz+ywZXFALW2nD+ZD+4crxJe/GypBQBoJuZrr5dc6TGrR3wl7fk3+C6w==", 167 "dependencies": { 168 "@jsdevtools/ez-spawn": "^3.0.4", 169 - "c12": "^1.4.2", 170 "cac": "^6.7.14", 171 - "fast-glob": "^3.3.1", 172 "prompts": "^2.4.2", 173 - "semver": "^7.5.4" 174 }, 175 "bin": { 176 "bumpp": "bin/bumpp.js" ··· 179 "node": ">=10" 180 } 181 }, 182 "node_modules/c12": { 183 - "version": "1.4.2", 184 - "resolved": "https://registry.npmjs.org/c12/-/c12-1.4.2.tgz", 185 - "integrity": "sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==", 186 "dependencies": { 187 - "chokidar": "^3.5.3", 188 - "defu": "^6.1.2", 189 - "dotenv": "^16.3.1", 190 - "giget": "^1.1.2", 191 - "jiti": "^1.18.2", 192 - "mlly": "^1.4.0", 193 - "ohash": "^1.1.2", 194 - "pathe": "^1.1.1", 195 "perfect-debounce": "^1.0.0", 196 - "pkg-types": "^1.0.3", 197 - "rc9": "^2.1.1" 198 } 199 }, 200 "node_modules/cac": { 201 "version": "6.7.14", 202 "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", 203 "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", 204 "engines": { 205 "node": ">=8" 206 } ··· 208 "node_modules/call-me-maybe": { 209 "version": "1.0.2", 210 "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", 211 - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" 212 }, 213 "node_modules/chokidar": { 214 - "version": "3.5.3", 215 - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 216 - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 217 - "funding": [ 218 - { 219 - "type": "individual", 220 - "url": "https://paulmillr.com/funding/" 221 - } 222 - ], 223 "dependencies": { 224 "anymatch": "~3.1.2", 225 "braces": "~3.0.2", ··· 232 "engines": { 233 "node": ">= 8.10.0" 234 }, 235 "optionalDependencies": { 236 "fsevents": "~2.3.2" 237 } ··· 240 "version": "2.0.0", 241 "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 242 "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 243 "engines": { 244 "node": ">=10" 245 } 246 }, 247 - "node_modules/colorette": { 248 - "version": "2.0.20", 249 - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", 250 - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" 251 }, 252 "node_modules/cross-spawn": { 253 - "version": "7.0.3", 254 - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 255 - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 256 "dependencies": { 257 "path-key": "^3.1.0", 258 "shebang-command": "^2.0.0", ··· 263 } 264 }, 265 "node_modules/debug": { 266 - "version": "4.3.4", 267 - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 268 - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 269 "dependencies": { 270 - "ms": "2.1.2" 271 }, 272 "engines": { 273 "node": ">=6.0" ··· 279 } 280 }, 281 "node_modules/defu": { 282 - "version": "6.1.2", 283 - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", 284 - "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==" 285 }, 286 "node_modules/destr": { 287 - "version": "2.0.1", 288 - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.1.tgz", 289 - "integrity": "sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==" 290 }, 291 "node_modules/dotenv": { 292 - "version": "16.3.1", 293 - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", 294 - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", 295 "engines": { 296 "node": ">=12" 297 }, 298 "funding": { 299 - "url": "https://github.com/motdotla/dotenv?sponsor=1" 300 } 301 }, 302 "node_modules/emmet": { 303 - "version": "2.4.6", 304 - "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.4.6.tgz", 305 - "integrity": "sha512-dJfbdY/hfeTyf/Ef7Y7ubLYzkBvPQ912wPaeVYpAxvFxkEBf/+hJu4H6vhAvFN6HlxqedlfVn2x1S44FfQ97pg==", 306 "dependencies": { 307 "@emmetio/abbreviation": "^2.3.3", 308 "@emmetio/css-abbreviation": "^2.1.8" 309 } 310 }, 311 - "node_modules/fast-glob": { 312 - "version": "3.3.1", 313 - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", 314 - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", 315 - "dependencies": { 316 - "@nodelib/fs.stat": "^2.0.2", 317 - "@nodelib/fs.walk": "^1.2.3", 318 - "glob-parent": "^5.1.2", 319 - "merge2": "^1.3.0", 320 - "micromatch": "^4.0.4" 321 - }, 322 "engines": { 323 - "node": ">=8.6.0" 324 } 325 }, 326 - "node_modules/fastq": { 327 - "version": "1.15.0", 328 - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 329 - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 330 "dependencies": { 331 - "reusify": "^1.0.4" 332 } 333 }, 334 "node_modules/fill-range": { 335 - "version": "7.0.1", 336 - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 337 - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 338 "dependencies": { 339 "to-regex-range": "^5.0.1" 340 }, 341 "engines": { 342 "node": ">=8" 343 - } 344 - }, 345 - "node_modules/flat": { 346 - "version": "5.0.2", 347 - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 348 - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 349 - "bin": { 350 - "flat": "cli.js" 351 } 352 }, 353 "node_modules/fs-minipass": { 354 "version": "2.1.0", 355 "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 356 "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 357 "dependencies": { 358 "minipass": "^3.0.0" 359 }, ··· 365 "version": "3.3.6", 366 "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 367 "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 368 "dependencies": { 369 "yallist": "^4.0.0" 370 }, ··· 377 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 378 "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 379 "hasInstallScript": true, 380 "optional": true, 381 "os": [ 382 "darwin" 383 ], 384 "engines": { 385 "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 386 } 387 }, 388 "node_modules/giget": { 389 - "version": "1.1.2", 390 - "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", 391 - "integrity": "sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==", 392 "dependencies": { 393 - "colorette": "^2.0.19", 394 - "defu": "^6.1.2", 395 - "https-proxy-agent": "^5.0.1", 396 - "mri": "^1.2.0", 397 - "node-fetch-native": "^1.0.2", 398 - "pathe": "^1.1.0", 399 - "tar": "^6.1.13" 400 }, 401 "bin": { 402 "giget": "dist/cli.mjs" ··· 406 "version": "5.1.2", 407 "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 408 "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 409 "dependencies": { 410 "is-glob": "^4.0.1" 411 }, ··· 413 "node": ">= 6" 414 } 415 }, 416 - "node_modules/https-proxy-agent": { 417 - "version": "5.0.1", 418 - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", 419 - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", 420 - "dependencies": { 421 - "agent-base": "6", 422 - "debug": "4" 423 - }, 424 "engines": { 425 - "node": ">= 6" 426 } 427 }, 428 "node_modules/is-binary-path": { 429 "version": "2.1.0", 430 "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 431 "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 432 "dependencies": { 433 "binary-extensions": "^2.0.0" 434 }, ··· 440 "version": "2.1.1", 441 "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 442 "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 443 "engines": { 444 "node": ">=0.10.0" 445 } ··· 448 "version": "4.0.3", 449 "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 450 "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 451 "dependencies": { 452 "is-extglob": "^2.1.1" 453 }, ··· 459 "version": "7.0.0", 460 "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 461 "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 462 "engines": { 463 "node": ">=0.12.0" 464 } 465 }, 466 "node_modules/isexe": { 467 "version": "2.0.0", 468 "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 469 - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 470 }, 471 "node_modules/jiti": { 472 - "version": "1.20.0", 473 - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.20.0.tgz", 474 - "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", 475 "bin": { 476 "jiti": "bin/jiti.js" 477 } 478 }, 479 "node_modules/jsonc-parser": { 480 "version": "2.3.1", 481 "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", 482 - "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==" 483 }, 484 "node_modules/kleur": { 485 "version": "3.0.3", 486 "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 487 "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 488 "engines": { 489 "node": ">=6" 490 } 491 }, 492 - "node_modules/lru-cache": { 493 - "version": "6.0.0", 494 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 495 - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 496 - "dependencies": { 497 - "yallist": "^4.0.0" 498 - }, 499 - "engines": { 500 - "node": ">=10" 501 - } 502 }, 503 - "node_modules/merge2": { 504 - "version": "1.4.1", 505 - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 506 - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 507 "engines": { 508 - "node": ">= 8" 509 } 510 }, 511 - "node_modules/micromatch": { 512 - "version": "4.0.5", 513 - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 514 - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 515 "dependencies": { 516 - "braces": "^3.0.2", 517 - "picomatch": "^2.3.1" 518 }, 519 "engines": { 520 - "node": ">=8.6" 521 } 522 }, 523 "node_modules/minipass": { 524 "version": "5.0.0", 525 "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 526 "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 527 "engines": { 528 "node": ">=8" 529 } ··· 532 "version": "2.1.2", 533 "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 534 "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 535 "dependencies": { 536 "minipass": "^3.0.0", 537 "yallist": "^4.0.0" ··· 544 "version": "3.3.6", 545 "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 546 "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 547 "dependencies": { 548 "yallist": "^4.0.0" 549 }, ··· 555 "version": "1.0.4", 556 "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 557 "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 558 "bin": { 559 "mkdirp": "bin/cmd.js" 560 }, ··· 563 } 564 }, 565 "node_modules/mlly": { 566 - "version": "1.4.2", 567 - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.2.tgz", 568 - "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", 569 "dependencies": { 570 - "acorn": "^8.10.0", 571 - "pathe": "^1.1.1", 572 - "pkg-types": "^1.0.3", 573 - "ufo": "^1.3.0" 574 - } 575 - }, 576 - "node_modules/mri": { 577 - "version": "1.2.0", 578 - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 579 - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 580 - "engines": { 581 - "node": ">=4" 582 } 583 }, 584 "node_modules/ms": { 585 - "version": "2.1.2", 586 - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 587 - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 588 }, 589 "node_modules/node-fetch-native": { 590 - "version": "1.4.0", 591 - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.4.0.tgz", 592 - "integrity": "sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==" 593 }, 594 "node_modules/normalize-path": { 595 "version": "3.0.0", 596 "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 597 "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 598 "engines": { 599 "node": ">=0.10.0" 600 } 601 }, 602 "node_modules/ohash": { 603 - "version": "1.1.3", 604 - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", 605 - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" 606 }, 607 "node_modules/path-key": { 608 "version": "3.1.1", 609 "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 610 "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 611 "engines": { 612 "node": ">=8" 613 } 614 }, 615 "node_modules/pathe": { 616 - "version": "1.1.1", 617 - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", 618 - "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==" 619 }, 620 "node_modules/perfect-debounce": { 621 "version": "1.0.0", 622 "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 623 - "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" 624 }, 625 "node_modules/picomatch": { 626 "version": "2.3.1", 627 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 628 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 629 "engines": { 630 "node": ">=8.6" 631 }, ··· 634 } 635 }, 636 "node_modules/pkg-types": { 637 - "version": "1.0.3", 638 - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", 639 - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", 640 "dependencies": { 641 - "jsonc-parser": "^3.2.0", 642 - "mlly": "^1.2.0", 643 - "pathe": "^1.1.0" 644 } 645 }, 646 - "node_modules/pkg-types/node_modules/jsonc-parser": { 647 - "version": "3.2.0", 648 - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", 649 - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" 650 - }, 651 "node_modules/prompts": { 652 "version": "2.4.2", 653 "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 654 "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 655 "dependencies": { 656 "kleur": "^3.0.3", 657 "sisteransi": "^1.0.5" ··· 660 "node": ">= 6" 661 } 662 }, 663 - "node_modules/queue-microtask": { 664 - "version": "1.2.3", 665 - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 666 - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 667 - "funding": [ 668 - { 669 - "type": "github", 670 - "url": "https://github.com/sponsors/feross" 671 - }, 672 - { 673 - "type": "patreon", 674 - "url": "https://www.patreon.com/feross" 675 - }, 676 - { 677 - "type": "consulting", 678 - "url": "https://feross.org/support" 679 - } 680 - ] 681 }, 682 "node_modules/rc9": { 683 - "version": "2.1.1", 684 - "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.1.tgz", 685 - "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", 686 "dependencies": { 687 - "defu": "^6.1.2", 688 - "destr": "^2.0.0", 689 - "flat": "^5.0.2" 690 } 691 }, 692 "node_modules/readdirp": { 693 "version": "3.6.0", 694 "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 695 "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 696 "dependencies": { 697 "picomatch": "^2.2.1" 698 }, ··· 700 "node": ">=8.10.0" 701 } 702 }, 703 - "node_modules/reusify": { 704 - "version": "1.0.4", 705 - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 706 - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 707 - "engines": { 708 - "iojs": ">=1.0.0", 709 - "node": ">=0.10.0" 710 - } 711 - }, 712 - "node_modules/run-parallel": { 713 - "version": "1.2.0", 714 - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 715 - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 716 - "funding": [ 717 - { 718 - "type": "github", 719 - "url": "https://github.com/sponsors/feross" 720 - }, 721 - { 722 - "type": "patreon", 723 - "url": "https://www.patreon.com/feross" 724 - }, 725 - { 726 - "type": "consulting", 727 - "url": "https://feross.org/support" 728 - } 729 - ], 730 - "dependencies": { 731 - "queue-microtask": "^1.2.2" 732 - } 733 - }, 734 "node_modules/semver": { 735 - "version": "7.5.4", 736 - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 737 - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 738 - "dependencies": { 739 - "lru-cache": "^6.0.0" 740 - }, 741 "bin": { 742 "semver": "bin/semver.js" 743 }, ··· 749 "version": "2.0.0", 750 "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 751 "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 752 "dependencies": { 753 "shebang-regex": "^3.0.0" 754 }, ··· 760 "version": "3.0.0", 761 "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 762 "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 763 "engines": { 764 "node": ">=8" 765 } 766 }, 767 "node_modules/sisteransi": { 768 "version": "1.0.5", 769 "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 770 - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" 771 }, 772 "node_modules/string-argv": { 773 "version": "0.3.2", 774 "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", 775 "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", 776 "engines": { 777 "node": ">=0.6.19" 778 } 779 }, 780 "node_modules/tar": { 781 - "version": "6.2.0", 782 - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", 783 - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", 784 "dependencies": { 785 "chownr": "^2.0.0", 786 "fs-minipass": "^2.0.0", ··· 793 "node": ">=10" 794 } 795 }, 796 "node_modules/to-regex-range": { 797 "version": "5.0.1", 798 "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 799 "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 800 "dependencies": { 801 "is-number": "^7.0.0" 802 }, ··· 804 "node": ">=8.0" 805 } 806 }, 807 "node_modules/type-detect": { 808 - "version": "4.0.8", 809 - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 810 - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 811 "engines": { 812 "node": ">=4" 813 } 814 }, 815 "node_modules/typescript": { 816 - "version": "5.2.2", 817 - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", 818 - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", 819 "dev": true, 820 "bin": { 821 "tsc": "bin/tsc", 822 "tsserver": "bin/tsserver" ··· 826 } 827 }, 828 "node_modules/ufo": { 829 - "version": "1.3.0", 830 - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.3.0.tgz", 831 - "integrity": "sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==" 832 }, 833 "node_modules/vscode-jsonrpc": { 834 "version": "8.1.0", 835 "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz", 836 "integrity": "sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==", 837 "engines": { 838 "node": ">=14.0.0" 839 } ··· 842 "version": "8.1.0", 843 "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0.tgz", 844 "integrity": "sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==", 845 "dependencies": { 846 "vscode-languageserver-protocol": "3.17.3" 847 }, ··· 853 "version": "3.17.3", 854 "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3.tgz", 855 "integrity": "sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==", 856 "dependencies": { 857 "vscode-jsonrpc": "8.1.0", 858 "vscode-languageserver-types": "3.17.3" 859 } 860 }, 861 "node_modules/vscode-languageserver-textdocument": { 862 - "version": "1.0.8", 863 - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz", 864 - "integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" 865 }, 866 "node_modules/vscode-languageserver-types": { 867 - "version": "3.17.3", 868 - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz", 869 - "integrity": "sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==" 870 }, 871 "node_modules/vscode-uri": { 872 - "version": "2.1.2", 873 - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz", 874 - "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==" 875 }, 876 "node_modules/which": { 877 "version": "2.0.2", 878 "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 879 "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 880 "dependencies": { 881 "isexe": "^2.0.0" 882 }, ··· 890 "node_modules/yallist": { 891 "version": "4.0.0", 892 "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 893 - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 894 } 895 } 896 }
··· 1 { 2 "name": "@olrtg/emmet-language-server", 3 + "version": "2.6.0", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "@olrtg/emmet-language-server", 9 + "version": "2.6.0", 10 "license": "MIT", 11 "dependencies": { 12 "@vscode/emmet-helper": "^2.9.2", ··· 19 }, 20 "devDependencies": { 21 "@tsconfig/recommended": "^1.0.2", 22 + "@types/node": "^20.8.6", 23 + "nodemon": "^3.0.1", 24 "typescript": "^5.1.6" 25 } 26 }, ··· 28 "version": "2.3.3", 29 "resolved": "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz", 30 "integrity": "sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==", 31 + "license": "MIT", 32 "dependencies": { 33 "@emmetio/scanner": "^1.0.4" 34 } ··· 37 "version": "2.1.8", 38 "resolved": "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz", 39 "integrity": "sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==", 40 + "license": "MIT", 41 "dependencies": { 42 "@emmetio/scanner": "^1.0.4" 43 } ··· 45 "node_modules/@emmetio/scanner": { 46 "version": "1.0.4", 47 "resolved": "https://registry.npmjs.org/@emmetio/scanner/-/scanner-1.0.4.tgz", 48 + "integrity": "sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==", 49 + "license": "MIT" 50 }, 51 "node_modules/@jsdevtools/ez-spawn": { 52 "version": "3.0.4", 53 "resolved": "https://registry.npmjs.org/@jsdevtools/ez-spawn/-/ez-spawn-3.0.4.tgz", 54 "integrity": "sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==", 55 + "license": "MIT", 56 "dependencies": { 57 "call-me-maybe": "^1.0.1", 58 "cross-spawn": "^7.0.3", ··· 63 "node": ">=10" 64 } 65 }, 66 + "node_modules/@tsconfig/recommended": { 67 + "version": "1.0.8", 68 + "resolved": "https://registry.npmjs.org/@tsconfig/recommended/-/recommended-1.0.8.tgz", 69 + "integrity": "sha512-TotjFaaXveVUdsrXCdalyF6E5RyG6+7hHHQVZonQtdlk1rJZ1myDIvPUUKPhoYv+JAzThb2lQJh9+9ZfF46hsA==", 70 + "dev": true, 71 + "license": "MIT" 72 }, 73 + "node_modules/@types/node": { 74 + "version": "20.17.6", 75 + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz", 76 + "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==", 77 + "dev": true, 78 + "license": "MIT", 79 "dependencies": { 80 + "undici-types": "~6.19.2" 81 } 82 }, 83 "node_modules/@vscode/emmet-helper": { 84 + "version": "2.10.0", 85 + "resolved": "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.10.0.tgz", 86 + "integrity": "sha512-UHw1EQRgLbSYkyB73/7wR/IzV6zTBnbzEHuuU4Z6b95HKf2lmeTdGwBIwspWBSRrnIA1TI2x2tetBym6ErA7Gw==", 87 + "license": "MIT", 88 "dependencies": { 89 "emmet": "^2.4.3", 90 "jsonc-parser": "^2.3.0", 91 "vscode-languageserver-textdocument": "^1.0.1", 92 "vscode-languageserver-types": "^3.15.1", 93 + "vscode-uri": "^3.0.8" 94 } 95 }, 96 "node_modules/acorn": { 97 + "version": "8.14.0", 98 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 99 + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 100 + "license": "MIT", 101 "bin": { 102 "acorn": "bin/acorn" 103 }, ··· 105 "node": ">=0.4.0" 106 } 107 }, 108 "node_modules/anymatch": { 109 "version": "3.1.3", 110 "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 111 "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 112 + "license": "ISC", 113 "dependencies": { 114 "normalize-path": "^3.0.0", 115 "picomatch": "^2.0.4" ··· 118 "node": ">= 8" 119 } 120 }, 121 + "node_modules/argparse": { 122 + "version": "2.0.1", 123 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 124 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 125 + "license": "Python-2.0" 126 + }, 127 + "node_modules/balanced-match": { 128 + "version": "1.0.2", 129 + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 130 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 131 + "dev": true, 132 + "license": "MIT" 133 + }, 134 "node_modules/binary-extensions": { 135 + "version": "2.3.0", 136 + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 137 + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 138 + "license": "MIT", 139 "engines": { 140 "node": ">=8" 141 + }, 142 + "funding": { 143 + "url": "https://github.com/sponsors/sindresorhus" 144 + } 145 + }, 146 + "node_modules/brace-expansion": { 147 + "version": "1.1.11", 148 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 149 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 150 + "dev": true, 151 + "license": "MIT", 152 + "dependencies": { 153 + "balanced-match": "^1.0.0", 154 + "concat-map": "0.0.1" 155 } 156 }, 157 "node_modules/braces": { 158 + "version": "3.0.3", 159 + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 160 + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 161 + "license": "MIT", 162 "dependencies": { 163 + "fill-range": "^7.1.1" 164 }, 165 "engines": { 166 "node": ">=8" 167 } 168 }, 169 "node_modules/bumpp": { 170 + "version": "9.8.1", 171 + "resolved": "https://registry.npmjs.org/bumpp/-/bumpp-9.8.1.tgz", 172 + "integrity": "sha512-25W55DZI/rq6FboM0Q5y8eHbUk9eNn9oZ4bg/I5kiWn8/rdZCw6iqML076akQiUOQGhrm6QDvSSn4PgQ48bS4A==", 173 + "license": "MIT", 174 "dependencies": { 175 "@jsdevtools/ez-spawn": "^3.0.4", 176 + "c12": "^1.11.2", 177 "cac": "^6.7.14", 178 + "escalade": "^3.2.0", 179 + "js-yaml": "^4.1.0", 180 + "jsonc-parser": "^3.3.1", 181 "prompts": "^2.4.2", 182 + "semver": "^7.6.3", 183 + "tinyglobby": "^0.2.10" 184 }, 185 "bin": { 186 "bumpp": "bin/bumpp.js" ··· 189 "node": ">=10" 190 } 191 }, 192 + "node_modules/bumpp/node_modules/jsonc-parser": { 193 + "version": "3.3.1", 194 + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", 195 + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", 196 + "license": "MIT" 197 + }, 198 "node_modules/c12": { 199 + "version": "1.11.2", 200 + "resolved": "https://registry.npmjs.org/c12/-/c12-1.11.2.tgz", 201 + "integrity": "sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==", 202 + "license": "MIT", 203 "dependencies": { 204 + "chokidar": "^3.6.0", 205 + "confbox": "^0.1.7", 206 + "defu": "^6.1.4", 207 + "dotenv": "^16.4.5", 208 + "giget": "^1.2.3", 209 + "jiti": "^1.21.6", 210 + "mlly": "^1.7.1", 211 + "ohash": "^1.1.3", 212 + "pathe": "^1.1.2", 213 "perfect-debounce": "^1.0.0", 214 + "pkg-types": "^1.2.0", 215 + "rc9": "^2.1.2" 216 + }, 217 + "peerDependencies": { 218 + "magicast": "^0.3.4" 219 + }, 220 + "peerDependenciesMeta": { 221 + "magicast": { 222 + "optional": true 223 + } 224 } 225 }, 226 "node_modules/cac": { 227 "version": "6.7.14", 228 "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", 229 "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", 230 + "license": "MIT", 231 "engines": { 232 "node": ">=8" 233 } ··· 235 "node_modules/call-me-maybe": { 236 "version": "1.0.2", 237 "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", 238 + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", 239 + "license": "MIT" 240 }, 241 "node_modules/chokidar": { 242 + "version": "3.6.0", 243 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 244 + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 245 + "license": "MIT", 246 "dependencies": { 247 "anymatch": "~3.1.2", 248 "braces": "~3.0.2", ··· 255 "engines": { 256 "node": ">= 8.10.0" 257 }, 258 + "funding": { 259 + "url": "https://paulmillr.com/funding/" 260 + }, 261 "optionalDependencies": { 262 "fsevents": "~2.3.2" 263 } ··· 266 "version": "2.0.0", 267 "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 268 "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 269 + "license": "ISC", 270 "engines": { 271 "node": ">=10" 272 } 273 }, 274 + "node_modules/citty": { 275 + "version": "0.1.6", 276 + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", 277 + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", 278 + "license": "MIT", 279 + "dependencies": { 280 + "consola": "^3.2.3" 281 + } 282 + }, 283 + "node_modules/concat-map": { 284 + "version": "0.0.1", 285 + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 286 + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 287 + "dev": true, 288 + "license": "MIT" 289 + }, 290 + "node_modules/confbox": { 291 + "version": "0.1.8", 292 + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz", 293 + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", 294 + "license": "MIT" 295 + }, 296 + "node_modules/consola": { 297 + "version": "3.2.3", 298 + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", 299 + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", 300 + "license": "MIT", 301 + "engines": { 302 + "node": "^14.18.0 || >=16.10.0" 303 + } 304 }, 305 "node_modules/cross-spawn": { 306 + "version": "7.0.5", 307 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", 308 + "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", 309 + "license": "MIT", 310 "dependencies": { 311 "path-key": "^3.1.0", 312 "shebang-command": "^2.0.0", ··· 317 } 318 }, 319 "node_modules/debug": { 320 + "version": "4.3.7", 321 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 322 + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 323 + "dev": true, 324 + "license": "MIT", 325 "dependencies": { 326 + "ms": "^2.1.3" 327 }, 328 "engines": { 329 "node": ">=6.0" ··· 335 } 336 }, 337 "node_modules/defu": { 338 + "version": "6.1.4", 339 + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", 340 + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", 341 + "license": "MIT" 342 }, 343 "node_modules/destr": { 344 + "version": "2.0.3", 345 + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", 346 + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", 347 + "license": "MIT" 348 }, 349 "node_modules/dotenv": { 350 + "version": "16.4.5", 351 + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 352 + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 353 + "license": "BSD-2-Clause", 354 "engines": { 355 "node": ">=12" 356 }, 357 "funding": { 358 + "url": "https://dotenvx.com" 359 } 360 }, 361 "node_modules/emmet": { 362 + "version": "2.4.11", 363 + "resolved": "https://registry.npmjs.org/emmet/-/emmet-2.4.11.tgz", 364 + "integrity": "sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==", 365 + "license": "MIT", 366 + "workspaces": [ 367 + "./packages/scanner", 368 + "./packages/abbreviation", 369 + "./packages/css-abbreviation", 370 + "./" 371 + ], 372 "dependencies": { 373 "@emmetio/abbreviation": "^2.3.3", 374 "@emmetio/css-abbreviation": "^2.1.8" 375 } 376 }, 377 + "node_modules/escalade": { 378 + "version": "3.2.0", 379 + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 380 + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 381 + "license": "MIT", 382 "engines": { 383 + "node": ">=6" 384 } 385 }, 386 + "node_modules/execa": { 387 + "version": "8.0.1", 388 + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", 389 + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", 390 + "license": "MIT", 391 "dependencies": { 392 + "cross-spawn": "^7.0.3", 393 + "get-stream": "^8.0.1", 394 + "human-signals": "^5.0.0", 395 + "is-stream": "^3.0.0", 396 + "merge-stream": "^2.0.0", 397 + "npm-run-path": "^5.1.0", 398 + "onetime": "^6.0.0", 399 + "signal-exit": "^4.1.0", 400 + "strip-final-newline": "^3.0.0" 401 + }, 402 + "engines": { 403 + "node": ">=16.17" 404 + }, 405 + "funding": { 406 + "url": "https://github.com/sindresorhus/execa?sponsor=1" 407 } 408 }, 409 "node_modules/fill-range": { 410 + "version": "7.1.1", 411 + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 412 + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 413 + "license": "MIT", 414 "dependencies": { 415 "to-regex-range": "^5.0.1" 416 }, 417 "engines": { 418 "node": ">=8" 419 } 420 }, 421 "node_modules/fs-minipass": { 422 "version": "2.1.0", 423 "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 424 "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 425 + "license": "ISC", 426 "dependencies": { 427 "minipass": "^3.0.0" 428 }, ··· 434 "version": "3.3.6", 435 "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 436 "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 437 + "license": "ISC", 438 "dependencies": { 439 "yallist": "^4.0.0" 440 }, ··· 447 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 448 "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 449 "hasInstallScript": true, 450 + "license": "MIT", 451 "optional": true, 452 "os": [ 453 "darwin" 454 ], 455 "engines": { 456 "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 457 + } 458 + }, 459 + "node_modules/get-stream": { 460 + "version": "8.0.1", 461 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", 462 + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", 463 + "license": "MIT", 464 + "engines": { 465 + "node": ">=16" 466 + }, 467 + "funding": { 468 + "url": "https://github.com/sponsors/sindresorhus" 469 } 470 }, 471 "node_modules/giget": { 472 + "version": "1.2.3", 473 + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", 474 + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", 475 + "license": "MIT", 476 "dependencies": { 477 + "citty": "^0.1.6", 478 + "consola": "^3.2.3", 479 + "defu": "^6.1.4", 480 + "node-fetch-native": "^1.6.3", 481 + "nypm": "^0.3.8", 482 + "ohash": "^1.1.3", 483 + "pathe": "^1.1.2", 484 + "tar": "^6.2.0" 485 }, 486 "bin": { 487 "giget": "dist/cli.mjs" ··· 491 "version": "5.1.2", 492 "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 493 "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 494 + "license": "ISC", 495 "dependencies": { 496 "is-glob": "^4.0.1" 497 }, ··· 499 "node": ">= 6" 500 } 501 }, 502 + "node_modules/has-flag": { 503 + "version": "3.0.0", 504 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 505 + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 506 + "dev": true, 507 + "license": "MIT", 508 + "engines": { 509 + "node": ">=4" 510 + } 511 + }, 512 + "node_modules/human-signals": { 513 + "version": "5.0.0", 514 + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", 515 + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", 516 + "license": "Apache-2.0", 517 "engines": { 518 + "node": ">=16.17.0" 519 } 520 }, 521 + "node_modules/ignore-by-default": { 522 + "version": "1.0.1", 523 + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 524 + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 525 + "dev": true, 526 + "license": "ISC" 527 + }, 528 "node_modules/is-binary-path": { 529 "version": "2.1.0", 530 "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 531 "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 532 + "license": "MIT", 533 "dependencies": { 534 "binary-extensions": "^2.0.0" 535 }, ··· 541 "version": "2.1.1", 542 "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 543 "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 544 + "license": "MIT", 545 "engines": { 546 "node": ">=0.10.0" 547 } ··· 550 "version": "4.0.3", 551 "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 552 "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 553 + "license": "MIT", 554 "dependencies": { 555 "is-extglob": "^2.1.1" 556 }, ··· 562 "version": "7.0.0", 563 "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 564 "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 565 + "license": "MIT", 566 "engines": { 567 "node": ">=0.12.0" 568 } 569 }, 570 + "node_modules/is-stream": { 571 + "version": "3.0.0", 572 + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 573 + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 574 + "license": "MIT", 575 + "engines": { 576 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 577 + }, 578 + "funding": { 579 + "url": "https://github.com/sponsors/sindresorhus" 580 + } 581 + }, 582 "node_modules/isexe": { 583 "version": "2.0.0", 584 "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 585 + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 586 + "license": "ISC" 587 }, 588 "node_modules/jiti": { 589 + "version": "1.21.6", 590 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", 591 + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", 592 + "license": "MIT", 593 "bin": { 594 "jiti": "bin/jiti.js" 595 } 596 }, 597 + "node_modules/js-yaml": { 598 + "version": "4.1.0", 599 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 600 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 601 + "license": "MIT", 602 + "dependencies": { 603 + "argparse": "^2.0.1" 604 + }, 605 + "bin": { 606 + "js-yaml": "bin/js-yaml.js" 607 + } 608 + }, 609 "node_modules/jsonc-parser": { 610 "version": "2.3.1", 611 "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz", 612 + "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==", 613 + "license": "MIT" 614 }, 615 "node_modules/kleur": { 616 "version": "3.0.3", 617 "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 618 "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 619 + "license": "MIT", 620 "engines": { 621 "node": ">=6" 622 } 623 }, 624 + "node_modules/merge-stream": { 625 + "version": "2.0.0", 626 + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 627 + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 628 + "license": "MIT" 629 }, 630 + "node_modules/mimic-fn": { 631 + "version": "4.0.0", 632 + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 633 + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 634 + "license": "MIT", 635 "engines": { 636 + "node": ">=12" 637 + }, 638 + "funding": { 639 + "url": "https://github.com/sponsors/sindresorhus" 640 } 641 }, 642 + "node_modules/minimatch": { 643 + "version": "3.1.2", 644 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 645 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 646 + "dev": true, 647 + "license": "ISC", 648 "dependencies": { 649 + "brace-expansion": "^1.1.7" 650 }, 651 "engines": { 652 + "node": "*" 653 } 654 }, 655 "node_modules/minipass": { 656 "version": "5.0.0", 657 "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 658 "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 659 + "license": "ISC", 660 "engines": { 661 "node": ">=8" 662 } ··· 665 "version": "2.1.2", 666 "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 667 "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 668 + "license": "MIT", 669 "dependencies": { 670 "minipass": "^3.0.0", 671 "yallist": "^4.0.0" ··· 678 "version": "3.3.6", 679 "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 680 "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 681 + "license": "ISC", 682 "dependencies": { 683 "yallist": "^4.0.0" 684 }, ··· 690 "version": "1.0.4", 691 "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 692 "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 693 + "license": "MIT", 694 "bin": { 695 "mkdirp": "bin/cmd.js" 696 }, ··· 699 } 700 }, 701 "node_modules/mlly": { 702 + "version": "1.7.3", 703 + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.3.tgz", 704 + "integrity": "sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==", 705 + "license": "MIT", 706 "dependencies": { 707 + "acorn": "^8.14.0", 708 + "pathe": "^1.1.2", 709 + "pkg-types": "^1.2.1", 710 + "ufo": "^1.5.4" 711 } 712 }, 713 "node_modules/ms": { 714 + "version": "2.1.3", 715 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 716 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 717 + "dev": true, 718 + "license": "MIT" 719 }, 720 "node_modules/node-fetch-native": { 721 + "version": "1.6.4", 722 + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", 723 + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", 724 + "license": "MIT" 725 + }, 726 + "node_modules/nodemon": { 727 + "version": "3.1.7", 728 + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", 729 + "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", 730 + "dev": true, 731 + "license": "MIT", 732 + "dependencies": { 733 + "chokidar": "^3.5.2", 734 + "debug": "^4", 735 + "ignore-by-default": "^1.0.1", 736 + "minimatch": "^3.1.2", 737 + "pstree.remy": "^1.1.8", 738 + "semver": "^7.5.3", 739 + "simple-update-notifier": "^2.0.0", 740 + "supports-color": "^5.5.0", 741 + "touch": "^3.1.0", 742 + "undefsafe": "^2.0.5" 743 + }, 744 + "bin": { 745 + "nodemon": "bin/nodemon.js" 746 + }, 747 + "engines": { 748 + "node": ">=10" 749 + }, 750 + "funding": { 751 + "type": "opencollective", 752 + "url": "https://opencollective.com/nodemon" 753 + } 754 }, 755 "node_modules/normalize-path": { 756 "version": "3.0.0", 757 "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 758 "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 759 + "license": "MIT", 760 "engines": { 761 "node": ">=0.10.0" 762 } 763 }, 764 + "node_modules/npm-run-path": { 765 + "version": "5.3.0", 766 + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", 767 + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", 768 + "license": "MIT", 769 + "dependencies": { 770 + "path-key": "^4.0.0" 771 + }, 772 + "engines": { 773 + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 774 + }, 775 + "funding": { 776 + "url": "https://github.com/sponsors/sindresorhus" 777 + } 778 + }, 779 + "node_modules/npm-run-path/node_modules/path-key": { 780 + "version": "4.0.0", 781 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 782 + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 783 + "license": "MIT", 784 + "engines": { 785 + "node": ">=12" 786 + }, 787 + "funding": { 788 + "url": "https://github.com/sponsors/sindresorhus" 789 + } 790 + }, 791 + "node_modules/nypm": { 792 + "version": "0.3.12", 793 + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.12.tgz", 794 + "integrity": "sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==", 795 + "license": "MIT", 796 + "dependencies": { 797 + "citty": "^0.1.6", 798 + "consola": "^3.2.3", 799 + "execa": "^8.0.1", 800 + "pathe": "^1.1.2", 801 + "pkg-types": "^1.2.0", 802 + "ufo": "^1.5.4" 803 + }, 804 + "bin": { 805 + "nypm": "dist/cli.mjs" 806 + }, 807 + "engines": { 808 + "node": "^14.16.0 || >=16.10.0" 809 + } 810 + }, 811 "node_modules/ohash": { 812 + "version": "1.1.4", 813 + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.4.tgz", 814 + "integrity": "sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==", 815 + "license": "MIT" 816 + }, 817 + "node_modules/onetime": { 818 + "version": "6.0.0", 819 + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 820 + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 821 + "license": "MIT", 822 + "dependencies": { 823 + "mimic-fn": "^4.0.0" 824 + }, 825 + "engines": { 826 + "node": ">=12" 827 + }, 828 + "funding": { 829 + "url": "https://github.com/sponsors/sindresorhus" 830 + } 831 }, 832 "node_modules/path-key": { 833 "version": "3.1.1", 834 "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 835 "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 836 + "license": "MIT", 837 "engines": { 838 "node": ">=8" 839 } 840 }, 841 "node_modules/pathe": { 842 + "version": "1.1.2", 843 + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", 844 + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", 845 + "license": "MIT" 846 }, 847 "node_modules/perfect-debounce": { 848 "version": "1.0.0", 849 "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", 850 + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", 851 + "license": "MIT" 852 }, 853 "node_modules/picomatch": { 854 "version": "2.3.1", 855 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 856 "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 857 + "license": "MIT", 858 "engines": { 859 "node": ">=8.6" 860 }, ··· 863 } 864 }, 865 "node_modules/pkg-types": { 866 + "version": "1.2.1", 867 + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.1.tgz", 868 + "integrity": "sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==", 869 + "license": "MIT", 870 "dependencies": { 871 + "confbox": "^0.1.8", 872 + "mlly": "^1.7.2", 873 + "pathe": "^1.1.2" 874 } 875 }, 876 "node_modules/prompts": { 877 "version": "2.4.2", 878 "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 879 "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 880 + "license": "MIT", 881 "dependencies": { 882 "kleur": "^3.0.3", 883 "sisteransi": "^1.0.5" ··· 886 "node": ">= 6" 887 } 888 }, 889 + "node_modules/pstree.remy": { 890 + "version": "1.1.8", 891 + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 892 + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 893 + "dev": true, 894 + "license": "MIT" 895 }, 896 "node_modules/rc9": { 897 + "version": "2.1.2", 898 + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz", 899 + "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==", 900 + "license": "MIT", 901 "dependencies": { 902 + "defu": "^6.1.4", 903 + "destr": "^2.0.3" 904 } 905 }, 906 "node_modules/readdirp": { 907 "version": "3.6.0", 908 "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 909 "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 910 + "license": "MIT", 911 "dependencies": { 912 "picomatch": "^2.2.1" 913 }, ··· 915 "node": ">=8.10.0" 916 } 917 }, 918 "node_modules/semver": { 919 + "version": "7.6.3", 920 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 921 + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 922 + "license": "ISC", 923 "bin": { 924 "semver": "bin/semver.js" 925 }, ··· 931 "version": "2.0.0", 932 "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 933 "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 934 + "license": "MIT", 935 "dependencies": { 936 "shebang-regex": "^3.0.0" 937 }, ··· 943 "version": "3.0.0", 944 "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 945 "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 946 + "license": "MIT", 947 "engines": { 948 "node": ">=8" 949 } 950 }, 951 + "node_modules/signal-exit": { 952 + "version": "4.1.0", 953 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 954 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 955 + "license": "ISC", 956 + "engines": { 957 + "node": ">=14" 958 + }, 959 + "funding": { 960 + "url": "https://github.com/sponsors/isaacs" 961 + } 962 + }, 963 + "node_modules/simple-update-notifier": { 964 + "version": "2.0.0", 965 + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 966 + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 967 + "dev": true, 968 + "license": "MIT", 969 + "dependencies": { 970 + "semver": "^7.5.3" 971 + }, 972 + "engines": { 973 + "node": ">=10" 974 + } 975 + }, 976 "node_modules/sisteransi": { 977 "version": "1.0.5", 978 "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 979 + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 980 + "license": "MIT" 981 }, 982 "node_modules/string-argv": { 983 "version": "0.3.2", 984 "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", 985 "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", 986 + "license": "MIT", 987 "engines": { 988 "node": ">=0.6.19" 989 } 990 }, 991 + "node_modules/strip-final-newline": { 992 + "version": "3.0.0", 993 + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 994 + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 995 + "license": "MIT", 996 + "engines": { 997 + "node": ">=12" 998 + }, 999 + "funding": { 1000 + "url": "https://github.com/sponsors/sindresorhus" 1001 + } 1002 + }, 1003 + "node_modules/supports-color": { 1004 + "version": "5.5.0", 1005 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1006 + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1007 + "dev": true, 1008 + "license": "MIT", 1009 + "dependencies": { 1010 + "has-flag": "^3.0.0" 1011 + }, 1012 + "engines": { 1013 + "node": ">=4" 1014 + } 1015 + }, 1016 "node_modules/tar": { 1017 + "version": "6.2.1", 1018 + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 1019 + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 1020 + "license": "ISC", 1021 "dependencies": { 1022 "chownr": "^2.0.0", 1023 "fs-minipass": "^2.0.0", ··· 1030 "node": ">=10" 1031 } 1032 }, 1033 + "node_modules/tinyglobby": { 1034 + "version": "0.2.10", 1035 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz", 1036 + "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==", 1037 + "license": "MIT", 1038 + "dependencies": { 1039 + "fdir": "^6.4.2", 1040 + "picomatch": "^4.0.2" 1041 + }, 1042 + "engines": { 1043 + "node": ">=12.0.0" 1044 + } 1045 + }, 1046 + "node_modules/tinyglobby/node_modules/fdir": { 1047 + "version": "6.4.2", 1048 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz", 1049 + "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==", 1050 + "license": "MIT", 1051 + "peerDependencies": { 1052 + "picomatch": "^3 || ^4" 1053 + }, 1054 + "peerDependenciesMeta": { 1055 + "picomatch": { 1056 + "optional": true 1057 + } 1058 + } 1059 + }, 1060 + "node_modules/tinyglobby/node_modules/picomatch": { 1061 + "version": "4.0.2", 1062 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 1063 + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 1064 + "license": "MIT", 1065 + "engines": { 1066 + "node": ">=12" 1067 + }, 1068 + "funding": { 1069 + "url": "https://github.com/sponsors/jonschlinkert" 1070 + } 1071 + }, 1072 "node_modules/to-regex-range": { 1073 "version": "5.0.1", 1074 "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1075 "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1076 + "license": "MIT", 1077 "dependencies": { 1078 "is-number": "^7.0.0" 1079 }, ··· 1081 "node": ">=8.0" 1082 } 1083 }, 1084 + "node_modules/touch": { 1085 + "version": "3.1.1", 1086 + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 1087 + "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 1088 + "dev": true, 1089 + "license": "ISC", 1090 + "bin": { 1091 + "nodetouch": "bin/nodetouch.js" 1092 + } 1093 + }, 1094 "node_modules/type-detect": { 1095 + "version": "4.1.0", 1096 + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", 1097 + "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", 1098 + "license": "MIT", 1099 "engines": { 1100 "node": ">=4" 1101 } 1102 }, 1103 "node_modules/typescript": { 1104 + "version": "5.6.3", 1105 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", 1106 + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", 1107 "dev": true, 1108 + "license": "Apache-2.0", 1109 "bin": { 1110 "tsc": "bin/tsc", 1111 "tsserver": "bin/tsserver" ··· 1115 } 1116 }, 1117 "node_modules/ufo": { 1118 + "version": "1.5.4", 1119 + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", 1120 + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==", 1121 + "license": "MIT" 1122 + }, 1123 + "node_modules/undefsafe": { 1124 + "version": "2.0.5", 1125 + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 1126 + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 1127 + "dev": true, 1128 + "license": "MIT" 1129 + }, 1130 + "node_modules/undici-types": { 1131 + "version": "6.19.8", 1132 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 1133 + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 1134 + "dev": true, 1135 + "license": "MIT" 1136 }, 1137 "node_modules/vscode-jsonrpc": { 1138 "version": "8.1.0", 1139 "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz", 1140 "integrity": "sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==", 1141 + "license": "MIT", 1142 "engines": { 1143 "node": ">=14.0.0" 1144 } ··· 1147 "version": "8.1.0", 1148 "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0.tgz", 1149 "integrity": "sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==", 1150 + "license": "MIT", 1151 "dependencies": { 1152 "vscode-languageserver-protocol": "3.17.3" 1153 }, ··· 1159 "version": "3.17.3", 1160 "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3.tgz", 1161 "integrity": "sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==", 1162 + "license": "MIT", 1163 "dependencies": { 1164 "vscode-jsonrpc": "8.1.0", 1165 "vscode-languageserver-types": "3.17.3" 1166 } 1167 }, 1168 + "node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { 1169 + "version": "3.17.3", 1170 + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz", 1171 + "integrity": "sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==", 1172 + "license": "MIT" 1173 + }, 1174 "node_modules/vscode-languageserver-textdocument": { 1175 + "version": "1.0.12", 1176 + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", 1177 + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", 1178 + "license": "MIT" 1179 }, 1180 "node_modules/vscode-languageserver-types": { 1181 + "version": "3.17.5", 1182 + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", 1183 + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", 1184 + "license": "MIT" 1185 }, 1186 "node_modules/vscode-uri": { 1187 + "version": "3.0.8", 1188 + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", 1189 + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", 1190 + "license": "MIT" 1191 }, 1192 "node_modules/which": { 1193 "version": "2.0.2", 1194 "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1195 "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1196 + "license": "ISC", 1197 "dependencies": { 1198 "isexe": "^2.0.0" 1199 }, ··· 1207 "node_modules/yallist": { 1208 "version": "4.0.0", 1209 "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1210 + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 1211 + "license": "ISC" 1212 } 1213 } 1214 }
+10 -9
pkgs/by-name/em/emmet-language-server/package.nix
··· 1 - { lib 2 - , buildNpmPackage 3 - , fetchFromGitHub 4 }: 5 6 buildNpmPackage rec { 7 pname = "emmet-language-server"; 8 - version = "2.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "olrtg"; 12 repo = "emmet-language-server"; 13 rev = "v${version}"; 14 - hash = "sha256-53FbZ0hC2s9o6yXPYAy0vqe4tLcYMHLqeBMNuNI8Nd0="; 15 }; 16 17 - npmDepsHash = "sha256-luE8iYfTsSrBVcv0sE1yYnAksE2+icx9K4yNzjUV7U4="; 18 19 # Upstream doesn't have a lockfile 20 postPatch = '' 21 cp ${./package-lock.json} ./package-lock.json 22 ''; 23 24 - meta = with lib; { 25 description = "Language server for emmet.io"; 26 homepage = "https://github.com/olrtg/emmet-language-server"; 27 changelog = "https://github.com/olrtg/emmet-language-server/releases/tag/v${version}"; 28 - license = licenses.mit; 29 - maintainers = with maintainers; [ stnley ]; 30 mainProgram = "emmet-language-server"; 31 }; 32 }
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + fetchFromGitHub, 5 }: 6 7 buildNpmPackage rec { 8 pname = "emmet-language-server"; 9 + version = "2.6.0"; 10 11 src = fetchFromGitHub { 12 owner = "olrtg"; 13 repo = "emmet-language-server"; 14 rev = "v${version}"; 15 + hash = "sha256-R20twrmfLz9FP87qkjgz1R/n+Nhzwn22l9t/2fyuVeM="; 16 }; 17 18 + npmDepsHash = "sha256-yv+5/wBif75AaAsbJrwLNtlui9SHws2mu3jYOR1Z55M="; 19 20 # Upstream doesn't have a lockfile 21 postPatch = '' 22 cp ${./package-lock.json} ./package-lock.json 23 ''; 24 25 + meta = { 26 description = "Language server for emmet.io"; 27 homepage = "https://github.com/olrtg/emmet-language-server"; 28 changelog = "https://github.com/olrtg/emmet-language-server/releases/tag/v${version}"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ stnley ]; 31 mainProgram = "emmet-language-server"; 32 }; 33 }
+2 -2
pkgs/by-name/en/endless-sky/package.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "endless-sky"; 16 - version = "0.10.8"; 17 18 src = fetchFromGitHub { 19 owner = "endless-sky"; 20 repo = "endless-sky"; 21 rev = "v${version}"; 22 - sha256 = "sha256-bqhltxkoqDdmddOBZ1f3I29AxGm5buUXpjjFwefemEM="; 23 }; 24 25 patches = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "endless-sky"; 16 + version = "0.10.10"; 17 18 src = fetchFromGitHub { 19 owner = "endless-sky"; 20 repo = "endless-sky"; 21 rev = "v${version}"; 22 + sha256 = "sha256-FjQluOFU+fPr4/3WveScRRabDjD/bq8YmXvCU9w9yo8="; 23 }; 24 25 patches = [
+16 -8
pkgs/by-name/f2/f2/package.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 2 3 buildGoModule rec { 4 pname = "f2"; 5 - version = "1.9.1"; 6 7 src = fetchFromGitHub { 8 owner = "ayoisaiah"; 9 repo = "f2"; 10 rev = "v${version}"; 11 - sha256 = "sha256-vpyI6WtK/0UpPiB8y+HpPd0IsKKkMHa/eIreYo32iAA="; 12 }; 13 14 - vendorHash = "sha256-Bz3Igjcyq4rkMkgv1J3+JiAqroAjxyAvHw4d4eZJgAM="; 15 16 - ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17 18 # has no tests 19 doCheck = false; 20 21 - meta = with lib; { 22 description = "Command-line batch renaming tool"; 23 homepage = "https://github.com/ayoisaiah/f2"; 24 - license = licenses.mit; 25 - maintainers = with maintainers; [ zendo ]; 26 mainProgram = "f2"; 27 }; 28 }
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildGoModule, 5 + }: 6 7 buildGoModule rec { 8 pname = "f2"; 9 + version = "2.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "ayoisaiah"; 13 repo = "f2"; 14 rev = "v${version}"; 15 + sha256 = "sha256-z2w+1dAwd3108J+ApHn2rj9duW9qObd3AZJXyt0811c="; 16 }; 17 18 + vendorHash = "sha256-xKw9shfAtRjD0f4BGALM5VPjGOaYz1IqXWcctHcV/p8="; 19 20 + ldflags = [ 21 + "-s" 22 + "-w" 23 + "-X=main.Version=${version}" 24 + ]; 25 26 # has no tests 27 doCheck = false; 28 29 + meta = { 30 description = "Command-line batch renaming tool"; 31 homepage = "https://github.com/ayoisaiah/f2"; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ zendo ]; 34 mainProgram = "f2"; 35 }; 36 }
-2
pkgs/by-name/fv/fvwm3/package.nix
··· 19 , libintl 20 , libpng 21 , librsvg 22 - , libstroke 23 , libxslt 24 , perl 25 , pkg-config ··· 65 libintl 66 libpng 67 librsvg 68 - libstroke 69 libxslt 70 perl 71 python3Packages.python
··· 19 , libintl 20 , libpng 21 , librsvg 22 , libxslt 23 , perl 24 , pkg-config ··· 64 libintl 65 libpng 66 librsvg 67 libxslt 68 perl 69 python3Packages.python
+2 -2
pkgs/by-name/gh/gh-gei/package.nix
··· 6 7 buildDotnetModule rec { 8 pname = "gh-gei"; 9 - version = "1.8.0"; 10 11 src = fetchFromGitHub { 12 owner = "github"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-F1sxT9wh/K6VP7n1SlmmvmHlcgxDJw6Rht2hPIiRFjE="; 16 }; 17 18 dotnet-sdk = dotnetCorePackages.sdk_6_0;
··· 6 7 buildDotnetModule rec { 8 pname = "gh-gei"; 9 + version = "1.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "github"; 13 repo = pname; 14 rev = "v${version}"; 15 + hash = "sha256-6lEEeAYrMB9wwATsORuaS21wLOB+gq/od88FobSse50="; 16 }; 17 18 dotnet-sdk = dotnetCorePackages.sdk_6_0;
+3 -3
pkgs/by-name/gh/ghq/package.nix
··· 2 3 buildGoModule rec { 4 pname = "ghq"; 5 - version = "1.6.3"; 6 7 src = fetchFromGitHub { 8 owner = "x-motemen"; 9 repo = "ghq"; 10 rev = "v${version}"; 11 - sha256 = "sha256-fL63e0URUiGkVLyLvNeXjIFYEjWF6Xd4FXFXrpqcduQ="; 12 }; 13 14 - vendorHash = "sha256-8n0kAowtBSCavHI6y3I7ozJg74tA8bF80WVwe+znHhc="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "ghq"; 5 + version = "1.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "x-motemen"; 9 repo = "ghq"; 10 rev = "v${version}"; 11 + sha256 = "sha256-5elUUZxhKZArtToEDfjYam7GS6m30GpbBLlUNy6dIyo="; 12 }; 13 14 + vendorHash = "sha256-jP2Ne/EhmE3tACY1+lHucgBt3VnT4gaQisE3/gVM5Ec="; 15 16 doCheck = false; 17
+3 -3
pkgs/by-name/gi/git-spice/package.nix
··· 10 11 buildGo123Module rec { 12 pname = "git-spice"; 13 - version = "0.7.0"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-ap0ZGRDdHQMVYSk9J8vsZNpvaAwpHFmPT5REiCxYepQ="; 20 }; 21 22 - vendorHash = "sha256-YJ8OxmonnxNu4W17tD1Z7K625LCINlh6ZgoxOpmtNC0="; 23 24 subPackages = [ "." ]; 25
··· 10 11 buildGo123Module rec { 12 pname = "git-spice"; 13 + version = "0.8.1"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-n/ETHsM0BjviDVbcQ67l9cBEzzZXm86jlnmc8EdjxF4="; 20 }; 21 22 + vendorHash = "sha256-/qLknJ8cs7t5eZ0t+3kLwByxuTKWvnm9h9tuf5ueNds="; 23 24 subPackages = [ "." ]; 25
+3 -3
pkgs/by-name/gi/gitlab-ci-local/package.nix
··· 8 9 buildNpmPackage rec { 10 pname = "gitlab-ci-local"; 11 - version = "4.53.0"; 12 13 src = fetchFromGitHub { 14 owner = "firecow"; 15 repo = "gitlab-ci-local"; 16 rev = version; 17 - hash = "sha256-VLBVfA4x4gaj7e37W7EqehJpYhmEgTatIL2IrO4i+Z8="; 18 }; 19 20 - npmDepsHash = "sha256-HAat2D45XeIjDW207Fn5M7O1sqjHOV2gxm2Urzxw+PU="; 21 22 postPatch = '' 23 # remove cleanup which runs git commands
··· 8 9 buildNpmPackage rec { 10 pname = "gitlab-ci-local"; 11 + version = "4.55.0"; 12 13 src = fetchFromGitHub { 14 owner = "firecow"; 15 repo = "gitlab-ci-local"; 16 rev = version; 17 + hash = "sha256-rfe2vvg6F4MzV/FN52cf31Ef0XlMGM+UpbSRq2vinsM="; 18 }; 19 20 + npmDepsHash = "sha256-uv0/pasytEKEhkQXhjh51YWPMaskTEb3w4vMaMpspmI="; 21 22 postPatch = '' 23 # remove cleanup which runs git commands
+3 -3
pkgs/by-name/gi/gitnuro/package.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "gitnuro"; 13 - version = "1.3.1"; 14 15 src = fetchurl ( 16 if stdenv.hostPlatform.system == "x86_64-linux" then 17 { 18 url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-x86_64-${version}.jar"; 19 - hash = "sha256-7yne9dD/7VT+H4tIBJvpOf8ksECCpoNAa8TSmFmjYMw="; 20 } 21 else if stdenv.hostPlatform.system == "aarch64-linux" then 22 { 23 url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-arm_aarch64-${version}.jar"; 24 - hash = "sha256-6TRQfIhaKBjNPn3tEVWoUF92JAmwlHUtQZE8gKEZ/ZI="; 25 } 26 else throw "Unsupported architecture: ${stdenv.hostPlatform.system}" 27 );
··· 10 11 stdenv.mkDerivation rec { 12 pname = "gitnuro"; 13 + version = "1.4.2"; 14 15 src = fetchurl ( 16 if stdenv.hostPlatform.system == "x86_64-linux" then 17 { 18 url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-x86_64-${version}.jar"; 19 + hash = "sha256-1lwuLPR6b1+I2SWaYaVrZkMcYVRAf1R7j/AwjQf03UM="; 20 } 21 else if stdenv.hostPlatform.system == "aarch64-linux" then 22 { 23 url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-arm_aarch64-${version}.jar"; 24 + hash = "sha256-wnHW1YK4FKi5EDF/E0S+yr0tugtv3qVlCbT3+x9bM8s="; 25 } 26 else throw "Unsupported architecture: ${stdenv.hostPlatform.system}" 27 );
+2 -2
pkgs/by-name/gl/glamoroustoolkit/package.nix
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "glamoroustoolkit"; 31 - version = "1.1.4"; 32 33 src = fetchzip { 34 url = "https://github.com/feenkcom/gtoolkit-vm/releases/download/v${finalAttrs.version}/GlamorousToolkit-x86_64-unknown-linux-gnu.zip"; 35 stripRoot = false; 36 - hash = "sha256-/p/oCE1fmlPjy1Xg36rsczZ74L0M7qWsdcFm6cHPVVY="; 37 }; 38 39 nativeBuildInputs = [
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "glamoroustoolkit"; 31 + version = "1.1.7"; 32 33 src = fetchzip { 34 url = "https://github.com/feenkcom/gtoolkit-vm/releases/download/v${finalAttrs.version}/GlamorousToolkit-x86_64-unknown-linux-gnu.zip"; 35 stripRoot = false; 36 + hash = "sha256-ji77uc7UnfiDVCERWwDpMnBiSJjDrr84yYrobLhKWlE="; 37 }; 38 39 nativeBuildInputs = [
+3 -3
pkgs/by-name/go/go-task/package.nix
··· 9 10 buildGoModule rec { 11 pname = "go-task"; 12 - version = "3.39.2"; 13 14 src = fetchFromGitHub { 15 owner = "go-task"; 16 repo = "task"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-B5o3oAey7zJg5JBf4GO69cLmVbnkKedkjWP108XRGR8="; 19 }; 20 21 - vendorHash = "sha256-P9J69WJ2C2xgdU9xydiaY8iSKB7ZfexLNYi7dyHDTIk="; 22 23 doCheck = false; 24
··· 9 10 buildGoModule rec { 11 pname = "go-task"; 12 + version = "3.40.0"; 13 14 src = fetchFromGitHub { 15 owner = "go-task"; 16 repo = "task"; 17 rev = "refs/tags/v${version}"; 18 + hash = "sha256-SOXtzesS+luil8Q0iKlhWv4hqPyRU2V+Um6S/uzChas="; 19 }; 20 21 + vendorHash = "sha256-5AABVG+MHvw8f8tcphUqQFid/mzXeWjbsD9mHJfyxDw="; 22 23 doCheck = false; 24
+5 -5
pkgs/by-name/go/goldwarden/package.nix
··· 13 14 buildGoModule rec { 15 pname = "goldwarden"; 16 - version = "0.3.4"; 17 18 src = fetchFromGitHub { 19 owner = "quexten"; 20 repo = "goldwarden"; 21 rev = "v${version}"; 22 - hash = "sha256-LAnhCQmyubWeZtTVaW8IoNmfipvMIlAnY4pKwrURPDs="; 23 }; 24 25 postPatch = '' ··· 38 --replace-fail "@PATH@" "$out/bin/goldwarden" 39 ''; 40 41 - vendorHash = "sha256-rMs7FP515aClzt9sjgIQHiYo5SYa2tDHrVRhtT+I8aM="; 42 43 ldflags = [ "-s" "-w" ]; 44 ··· 69 mkdir -p $out/share/goldwarden 70 cp -r gui/* $out/share/goldwarden/ 71 ln -s $out/share/goldwarden/goldwarden_ui_main.py $out/bin/goldwarden-gui 72 - rm $out/share/goldwarden/{com.quexten.Goldwarden.desktop,com.quexten.Goldwarden.metainfo.xml,goldwarden.svg,python3-requirements.json,requirements.txt} 73 74 install -D gui/com.quexten.Goldwarden.desktop -t $out/share/applications 75 - install -D gui/goldwarden.svg -t $out/share/icons/hicolor/scalable/apps 76 install -Dm644 gui/com.quexten.Goldwarden.metainfo.xml -t $out/share/metainfo 77 install -Dm644 cli/resources/com.quexten.goldwarden.policy -t $out/share/polkit-1/actions 78
··· 13 14 buildGoModule rec { 15 pname = "goldwarden"; 16 + version = "0.3.6"; 17 18 src = fetchFromGitHub { 19 owner = "quexten"; 20 repo = "goldwarden"; 21 rev = "v${version}"; 22 + hash = "sha256-wAQFx0DKLLKztETAz1eM+eBFiAkSCgd8qqRtLV1Kz9g="; 23 }; 24 25 postPatch = '' ··· 38 --replace-fail "@PATH@" "$out/bin/goldwarden" 39 ''; 40 41 + vendorHash = "sha256-zWACjW/WZC0ZLmRV1VwcRROG218PCZ6aCPOreCG/5sE="; 42 43 ldflags = [ "-s" "-w" ]; 44 ··· 69 mkdir -p $out/share/goldwarden 70 cp -r gui/* $out/share/goldwarden/ 71 ln -s $out/share/goldwarden/goldwarden_ui_main.py $out/bin/goldwarden-gui 72 + rm $out/share/goldwarden/{com.quexten.Goldwarden.desktop,com.quexten.Goldwarden.metainfo.xml,com.quexten.Goldwarden.svg,python3-requirements.json,requirements.txt} 73 74 install -D gui/com.quexten.Goldwarden.desktop -t $out/share/applications 75 + install -D gui/com.quexten.Goldwarden.svg -t $out/share/icons/hicolor/scalable/apps 76 install -Dm644 gui/com.quexten.Goldwarden.metainfo.xml -t $out/share/metainfo 77 install -Dm644 cli/resources/com.quexten.goldwarden.policy -t $out/share/polkit-1/actions 78
+3 -3
pkgs/by-name/hu/hugo/package.nix
··· 12 13 buildGoModule rec { 14 pname = "hugo"; 15 - version = "0.138.0"; 16 17 src = fetchFromGitHub { 18 owner = "gohugoio"; 19 repo = "hugo"; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-IDWQRPJrTCkvcTcsaGuyQraVoWWUe0d6FTQvvYHZcD0="; 22 }; 23 24 - vendorHash = "sha256-5YS76L7kisyPz8yv2RCgZHpY/AkjdHE+SUwMOuo3uLg="; 25 26 doCheck = false; 27
··· 12 13 buildGoModule rec { 14 pname = "hugo"; 15 + version = "0.139.0"; 16 17 src = fetchFromGitHub { 18 owner = "gohugoio"; 19 repo = "hugo"; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-UXOZCiwYpMnJsNSO7y3CsB8nmPxtBErYYl8YwWO3Hts="; 22 }; 23 24 + vendorHash = "sha256-qhiCZMSLRnLbyHplcaPn/BGJ3Lv8O8eEvCuIHwA4sMs="; 25 26 doCheck = false; 27
+5 -5
pkgs/by-name/hy/hyprland/info.json
··· 1 { 2 - "branch": "main", 3 - "commit_hash": "a425fbebe4cf4238e48a42f724ef2208959d66cf", 4 - "commit_message": "version: bump to 0.45.0", 5 - "date": "2024-11-09", 6 - "tag": "v0.45.0" 7 }
··· 1 { 2 + "branch": "v0.45.2-b", 3 + "commit_hash": "12f9a0d0b93f691d4d9923716557154d74777b0a", 4 + "commit_message": "[gha] Nix: update inputs", 5 + "date": "2024-11-19", 6 + "tag": "v0.45.2" 7 }
+2 -2
pkgs/by-name/hy/hyprland/package.nix
··· 82 83 customStdenv.mkDerivation (finalAttrs: { 84 pname = "hyprland" + optionalString debug "-debug"; 85 - version = "0.45.0"; 86 87 src = fetchFromGitHub { 88 owner = "hyprwm"; 89 repo = "hyprland"; 90 fetchSubmodules = true; 91 rev = "refs/tags/v${finalAttrs.version}"; 92 - hash = "sha256-//Ib7gXCA8jq8c+QGTTIO0oH0rUYYBXGp8sqpI1jlhA="; 93 }; 94 95 postPatch = ''
··· 82 83 customStdenv.mkDerivation (finalAttrs: { 84 pname = "hyprland" + optionalString debug "-debug"; 85 + version = "0.45.2"; 86 87 src = fetchFromGitHub { 88 owner = "hyprwm"; 89 repo = "hyprland"; 90 fetchSubmodules = true; 91 rev = "refs/tags/v${finalAttrs.version}"; 92 + hash = "sha256-1pNsLGNStCFjXiBc2zMUxKzKk45CePTf+GwKlzTmrCY="; 93 }; 94 95 postPatch = ''
+5 -3
pkgs/by-name/hy/hyprlauncher/package.nix
··· 6 glib, 7 pango, 8 gtk4, 9 wrapGAppsHook4, 10 }: 11 12 rustPlatform.buildRustPackage rec { 13 pname = "hyprlauncher"; 14 - version = "0.1.2"; 15 16 src = fetchFromGitHub { 17 owner = "hyprutils"; 18 repo = "hyprlauncher"; 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-SxsCfEHrJpFSi2BEFFqmJLGJIVzkluDU6ogKkTRT9e8="; 21 }; 22 23 - cargoHash = "sha256-MENreS+DXdJIurWUqHbeb0cCJlRnjjW1bmGdg0QoxlQ="; 24 25 strictDeps = true; 26 ··· 32 glib 33 pango 34 gtk4 35 ]; 36 37 meta = {
··· 6 glib, 7 pango, 8 gtk4, 9 + gtk4-layer-shell, 10 wrapGAppsHook4, 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "hyprlauncher"; 15 + version = "0.2.2"; 16 17 src = fetchFromGitHub { 18 owner = "hyprutils"; 19 repo = "hyprlauncher"; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-E6/V9p5YIjg3/Svw70GwY1jibkg2xnzdAvmphc0xbQQ="; 22 }; 23 24 + cargoHash = "sha256-gkBpBlBR9Y2dkuqK7X/sxKdS9staFsbHv3Slg9UvP3A="; 25 26 strictDeps = true; 27 ··· 33 glib 34 pango 35 gtk4 36 + gtk4-layer-shell 37 ]; 38 39 meta = {
+77
pkgs/by-name/in/incus/1377-reverse.patch
···
··· 1 + --- b/internal/server/device/tpm.go 2 + +++ a/internal/server/device/tpm.go 3 + @@ -202,13 +202,11 @@ 4 + }, 5 + } 6 + 7 + + proc, err := subprocess.NewProcess("swtpm", []string{"socket", "--tpm2", "--tpmstate", fmt.Sprintf("dir=%s", tpmDevPath), "--ctrl", fmt.Sprintf("type=unixio,path=%s", socketPath)}, "", "") 8 + - proc, err := subprocess.NewProcess("swtpm", []string{"socket", "--tpm2", "--tpmstate", fmt.Sprintf("dir=%s", tpmDevPath), "--ctrl", fmt.Sprintf("type=unixio,path=swtpm-%s.sock", d.name)}, "", "") 9 + if err != nil { 10 + return nil, err 11 + } 12 + 13 + - proc.Cwd = tpmDevPath 14 + - 15 + // Start the TPM emulator. 16 + err = proc.Start(context.Background()) 17 + if err != nil { 18 + --- b/internal/server/instance/drivers/driver_qemu.go 19 + +++ a/internal/server/instance/drivers/driver_qemu.go 20 + @@ -3668,7 +3668,7 @@ 21 + 22 + // Add TPM device. 23 + if len(runConf.TPMDevice) > 0 { 24 + + err = d.addTPMDeviceConfig(&cfg, runConf.TPMDevice) 25 + - err = d.addTPMDeviceConfig(&cfg, runConf.TPMDevice, fdFiles) 26 + if err != nil { 27 + return "", nil, err 28 + } 29 + @@ -4852,7 +4852,7 @@ 30 + return monHook, nil 31 + } 32 + 33 + +func (d *qemu) addTPMDeviceConfig(cfg *[]cfgSection, tpmConfig []deviceConfig.RunConfigItem) error { 34 + -func (d *qemu) addTPMDeviceConfig(cfg *[]cfgSection, tpmConfig []deviceConfig.RunConfigItem, fdFiles *[]*os.File) error { 35 + var devName, socketPath string 36 + 37 + for _, tpmItem := range tpmConfig { 38 + @@ -4863,16 +4863,9 @@ 39 + } 40 + } 41 + 42 + - fd, err := unix.Open(socketPath, unix.O_PATH, 0) 43 + - if err != nil { 44 + - return err 45 + - } 46 + - 47 + - tpmFD := d.addFileDescriptor(fdFiles, os.NewFile(uintptr(fd), socketPath)) 48 + - 49 + tpmOpts := qemuTPMOpts{ 50 + devName: devName, 51 + + path: socketPath, 52 + - path: fmt.Sprintf("/proc/self/fd/%d", tpmFD), 53 + } 54 + *cfg = append(*cfg, qemuTPM(&tpmOpts)...) 55 + 56 + --- b/shared/subprocess/proc.go 57 + +++ a/shared/subprocess/proc.go 58 + @@ -27,7 +27,6 @@ 59 + Name string `yaml:"name"` 60 + Args []string `yaml:"args,flow"` 61 + Apparmor string `yaml:"apparmor"` 62 + - Cwd string `yaml:"cwd"` 63 + PID int64 `yaml:"pid"` 64 + Stdin io.ReadCloser `yaml:"-"` 65 + Stdout io.WriteCloser `yaml:"-"` 66 + @@ -154,11 +153,6 @@ 67 + cmd.Stderr = p.Stderr 68 + cmd.Stdin = p.Stdin 69 + cmd.SysProcAttr = p.SysProcAttr 70 + - 71 + - if p.Cwd != "" { 72 + - cmd.Dir = p.Cwd 73 + - } 74 + - 75 + if cmd.SysProcAttr == nil { 76 + cmd.SysProcAttr = &syscall.SysProcAttr{} 77 + }
+1 -1
pkgs/by-name/in/incus/generic.nix
··· 1 { 2 hash, 3 lts ? false, 4 - patches, 5 updateScriptArgs ? "", 6 vendorHash, 7 version,
··· 1 { 2 hash, 3 lts ? false, 4 + patches ? [ ], 5 updateScriptArgs ? "", 6 vendorHash, 7 version,
+4 -4
pkgs/by-name/in/incus/package.nix
··· 1 import ./generic.nix { 2 - hash = "sha256-hjBJGtIBYwgPpnWb1337RP1jU9rQNLQ3yp1AnwBH13o="; 3 - version = "6.6.0"; 4 - vendorHash = "sha256-Cpbgn2WHMVKtPrAzuNnXkS1rYvzLwde6oTcKTKW3XHs="; 5 - patches = [ ]; 6 }
··· 1 import ./generic.nix { 2 + hash = "sha256-k7DHJRbhUJwamEOW8B7wdCWQyYEUtsIHwuHh20lpLmA="; 3 + version = "6.7.0"; 4 + vendorHash = "sha256-u12zYcKiHNUH1kWpkMIyixtK9t+G4N2QerzOGsujjFQ="; 5 + patches = [ ./1377-reverse.patch ]; 6 }
+3 -3
pkgs/by-name/in/intentrace/package.nix
··· 5 }: 6 7 let 8 - version = "0.2.5"; 9 in 10 rustPlatform.buildRustPackage { 11 inherit version; ··· 15 owner = "sectordistrict"; 16 repo = "intentrace"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-3Pbx/ZA9DYwNzsszSzodJub+G8uKuYuNZhlTDsvL0t4="; 19 }; 20 21 - cargoHash = "sha256-RZMhmqETPdcG0ofLPQdynaOFQuIx3H8j0mKR+SbOQ6s="; 22 23 meta = { 24 description = "Prettified Linux syscall tracing tool (like strace)";
··· 5 }: 6 7 let 8 + version = "0.2.6"; 9 in 10 rustPlatform.buildRustPackage { 11 inherit version; ··· 15 owner = "sectordistrict"; 16 repo = "intentrace"; 17 rev = "refs/tags/v${version}"; 18 + hash = "sha256-e47hauVg5Ncp0C5y6RkfKfxMHbBvpKrVoUq3aJxTf2E="; 19 }; 20 21 + cargoHash = "sha256-MAbOEJdMkt6efTGdmimMpYAx39JnQlnOlbIHIGICgp8="; 22 23 meta = { 24 description = "Prettified Linux syscall tracing tool (like strace)";
+26 -23
pkgs/by-name/io/iotas/package.nix
··· 1 - { lib 2 - , python3 3 - , fetchFromGitLab 4 - , meson 5 - , ninja 6 - , pkg-config 7 - , gobject-introspection 8 - , wrapGAppsHook4 9 - , appstream-glib 10 - , desktop-file-utils 11 - , glib 12 - , gtk4 13 - , librsvg 14 - , libsecret 15 - , libadwaita 16 - , gtksourceview5 17 - , webkitgtk_6_0 18 }: 19 20 python3.pkgs.buildPythonApplication rec { 21 pname = "iotas"; 22 - version = "0.2.10"; 23 pyproject = false; 24 25 src = fetchFromGitLab { ··· 27 owner = "World"; 28 repo = "iotas"; 29 rev = version; 30 - hash = "sha256-aITt+TJb/LrVOyb/mAC7U6/NJ4stHD76jjBFC7Pt7fU="; 31 }; 32 33 nativeBuildInputs = [ ··· 58 linkify-it-py 59 mdit-py-plugins 60 pypandoc 61 ]; 62 63 # prevent double wrapping ··· 66 makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 67 ''; 68 69 - meta = with lib; { 70 description = "Simple note taking with mobile-first design and Nextcloud sync"; 71 homepage = "https://gitlab.gnome.org/World/iotas"; 72 - license = licenses.gpl3Plus; 73 - platforms = platforms.linux; 74 mainProgram = "iotas"; 75 - maintainers = with maintainers; [ zendo ]; 76 }; 77 }
··· 1 + { 2 + lib, 3 + python3, 4 + fetchFromGitLab, 5 + meson, 6 + ninja, 7 + pkg-config, 8 + gobject-introspection, 9 + wrapGAppsHook4, 10 + appstream-glib, 11 + desktop-file-utils, 12 + glib, 13 + gtk4, 14 + librsvg, 15 + libsecret, 16 + libadwaita, 17 + gtksourceview5, 18 + webkitgtk_6_0, 19 }: 20 21 python3.pkgs.buildPythonApplication rec { 22 pname = "iotas"; 23 + version = "0.9.5"; 24 pyproject = false; 25 26 src = fetchFromGitLab { ··· 28 owner = "World"; 29 repo = "iotas"; 30 rev = version; 31 + hash = "sha256-SDapnAGPTi7tnzl3zeNJw2CABhVVAXMyn1bllg8fChw="; 32 }; 33 34 nativeBuildInputs = [ ··· 59 linkify-it-py 60 mdit-py-plugins 61 pypandoc 62 + strenum 63 + packaging 64 ]; 65 66 # prevent double wrapping ··· 69 makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 70 ''; 71 72 + meta = { 73 description = "Simple note taking with mobile-first design and Nextcloud sync"; 74 homepage = "https://gitlab.gnome.org/World/iotas"; 75 + license = lib.licenses.gpl3Plus; 76 + platforms = lib.platforms.linux; 77 mainProgram = "iotas"; 78 + maintainers = with lib.maintainers; [ zendo ]; 79 }; 80 }
+3 -3
pkgs/by-name/k9/k9s/package.nix
··· 2 3 buildGoModule rec { 4 pname = "k9s"; 5 - version = "0.32.5"; 6 7 src = fetchFromGitHub { 8 owner = "derailed"; 9 repo = "k9s"; 10 rev = "v${version}"; 11 - hash = "sha256-H0PimkPXs2/iirOpN82az3Bge71k1RZOhMtr0UmGOy8="; 12 }; 13 14 ldflags = [ ··· 23 24 proxyVendor = true; 25 26 - vendorHash = "sha256-U/tIsYpoog3S8V2yQGGqaQ+Av7TfvCYt3zn74qWuQKs="; 27 28 # TODO investigate why some config tests are failing 29 doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64);
··· 2 3 buildGoModule rec { 4 pname = "k9s"; 5 + version = "0.32.6"; 6 7 src = fetchFromGitHub { 8 owner = "derailed"; 9 repo = "k9s"; 10 rev = "v${version}"; 11 + hash = "sha256-jJHlFrnyvGZ0/ykmZRbSAFwzvN0j2dqddLEQoiv3oys="; 12 }; 13 14 ldflags = [ ··· 23 24 proxyVendor = true; 25 26 + vendorHash = "sha256-/DVQghwfiPKLO0LFPFmHFO5jfActoEnlMuQP2i60R9o="; 27 28 # TODO investigate why some config tests are failing 29 doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64);
+4 -3
pkgs/by-name/kl/klog-rs/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "klog-rs"; 10 - version = "0.1.0"; 11 12 src = fetchFromGitHub { 13 owner = "tobifroe"; 14 repo = "klog"; 15 rev = version; 16 - hash = "sha256-MAHLTNKN0t0rUXd4f238/jcaUlcTdC3IvaviMRu6gKg="; 17 }; 18 - cargoHash = "sha256-u+kctG+38Z2xYTA9h0OY4L1zzKyAT2Wlwf08zSqxV0I="; 19 checkFlags = [ 20 # this integration test depends on a running kubernetes cluster 21 "--skip=k8s::tests::test_get_pod_list" 22 ]; 23 24 meta = {
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "klog-rs"; 10 + version = "0.2.0"; 11 12 src = fetchFromGitHub { 13 owner = "tobifroe"; 14 repo = "klog"; 15 rev = version; 16 + hash = "sha256-GbYkTCo+MUKBz0AtfDSjOOe8j+v6gxRkbq1Dj1E2jl0="; 17 }; 18 + cargoHash = "sha256-h68NEAPLlgzDTSerL+0DrvSSfB85RHtBvuoUhrxLDWU="; 19 checkFlags = [ 20 # this integration test depends on a running kubernetes cluster 21 "--skip=k8s::tests::test_get_pod_list" 22 + "--skip=k8s::tests::test_get_pod_list_for_resource" 23 ]; 24 25 meta = {
-7166
pkgs/by-name/li/libdeltachat/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 = "addr2line" 7 - version = "0.22.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "aead" 22 - version = "0.5.2" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 25 - dependencies = [ 26 - "bytes", 27 - "crypto-common", 28 - "generic-array", 29 - ] 30 - 31 - [[package]] 32 - name = "aes" 33 - version = "0.8.4" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 36 - dependencies = [ 37 - "cfg-if", 38 - "cipher", 39 - "cpufeatures", 40 - ] 41 - 42 - [[package]] 43 - name = "aes-gcm" 44 - version = "0.10.3" 45 - source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 47 - dependencies = [ 48 - "aead", 49 - "aes", 50 - "cipher", 51 - "ctr", 52 - "ghash", 53 - "subtle", 54 - ] 55 - 56 - [[package]] 57 - name = "ahash" 58 - version = "0.8.11" 59 - source = "registry+https://github.com/rust-lang/crates.io-index" 60 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 61 - dependencies = [ 62 - "cfg-if", 63 - "once_cell", 64 - "version_check", 65 - "zerocopy", 66 - ] 67 - 68 - [[package]] 69 - name = "aho-corasick" 70 - version = "1.1.3" 71 - source = "registry+https://github.com/rust-lang/crates.io-index" 72 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 73 - dependencies = [ 74 - "memchr", 75 - ] 76 - 77 - [[package]] 78 - name = "alloc-no-stdlib" 79 - version = "2.0.4" 80 - source = "registry+https://github.com/rust-lang/crates.io-index" 81 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 82 - 83 - [[package]] 84 - name = "alloc-stdlib" 85 - version = "0.2.2" 86 - source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 88 - dependencies = [ 89 - "alloc-no-stdlib", 90 - ] 91 - 92 - [[package]] 93 - name = "android-tzdata" 94 - version = "0.1.1" 95 - source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 97 - 98 - [[package]] 99 - name = "android_system_properties" 100 - version = "0.1.5" 101 - source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 103 - dependencies = [ 104 - "libc", 105 - ] 106 - 107 - [[package]] 108 - name = "anes" 109 - version = "0.1.6" 110 - source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 112 - 113 - [[package]] 114 - name = "anstream" 115 - version = "0.6.13" 116 - source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 118 - dependencies = [ 119 - "anstyle", 120 - "anstyle-parse", 121 - "anstyle-query", 122 - "anstyle-wincon", 123 - "colorchoice", 124 - "utf8parse", 125 - ] 126 - 127 - [[package]] 128 - name = "anstyle" 129 - version = "1.0.6" 130 - source = "registry+https://github.com/rust-lang/crates.io-index" 131 - checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 132 - 133 - [[package]] 134 - name = "anstyle-parse" 135 - version = "0.2.3" 136 - source = "registry+https://github.com/rust-lang/crates.io-index" 137 - checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 138 - dependencies = [ 139 - "utf8parse", 140 - ] 141 - 142 - [[package]] 143 - name = "anstyle-query" 144 - version = "1.0.2" 145 - source = "registry+https://github.com/rust-lang/crates.io-index" 146 - checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 147 - dependencies = [ 148 - "windows-sys 0.52.0", 149 - ] 150 - 151 - [[package]] 152 - name = "anstyle-wincon" 153 - version = "3.0.2" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 156 - dependencies = [ 157 - "anstyle", 158 - "windows-sys 0.52.0", 159 - ] 160 - 161 - [[package]] 162 - name = "anyhow" 163 - version = "1.0.92" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13" 166 - dependencies = [ 167 - "backtrace", 168 - ] 169 - 170 - [[package]] 171 - name = "argon2" 172 - version = "0.5.3" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" 175 - dependencies = [ 176 - "base64ct", 177 - "blake2", 178 - "cpufeatures", 179 - "password-hash", 180 - ] 181 - 182 - [[package]] 183 - name = "arrayref" 184 - version = "0.3.7" 185 - source = "registry+https://github.com/rust-lang/crates.io-index" 186 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 187 - 188 - [[package]] 189 - name = "arrayvec" 190 - version = "0.7.4" 191 - source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 193 - 194 - [[package]] 195 - name = "ascii_utils" 196 - version = "0.9.3" 197 - source = "registry+https://github.com/rust-lang/crates.io-index" 198 - checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a" 199 - 200 - [[package]] 201 - name = "asn1-rs" 202 - version = "0.6.2" 203 - source = "registry+https://github.com/rust-lang/crates.io-index" 204 - checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 205 - dependencies = [ 206 - "asn1-rs-derive", 207 - "asn1-rs-impl", 208 - "displaydoc", 209 - "nom", 210 - "num-traits", 211 - "rusticata-macros", 212 - "thiserror", 213 - "time 0.3.36", 214 - ] 215 - 216 - [[package]] 217 - name = "asn1-rs-derive" 218 - version = "0.5.1" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 221 - dependencies = [ 222 - "proc-macro2", 223 - "quote", 224 - "syn 2.0.86", 225 - "synstructure", 226 - ] 227 - 228 - [[package]] 229 - name = "asn1-rs-impl" 230 - version = "0.2.0" 231 - source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 233 - dependencies = [ 234 - "proc-macro2", 235 - "quote", 236 - "syn 2.0.86", 237 - ] 238 - 239 - [[package]] 240 - name = "async-broadcast" 241 - version = "0.7.1" 242 - source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" 244 - dependencies = [ 245 - "event-listener 5.2.0", 246 - "event-listener-strategy", 247 - "futures-core", 248 - "pin-project-lite", 249 - ] 250 - 251 - [[package]] 252 - name = "async-channel" 253 - version = "1.9.0" 254 - source = "registry+https://github.com/rust-lang/crates.io-index" 255 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 256 - dependencies = [ 257 - "concurrent-queue", 258 - "event-listener 2.5.3", 259 - "futures-core", 260 - ] 261 - 262 - [[package]] 263 - name = "async-channel" 264 - version = "2.3.1" 265 - source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 267 - dependencies = [ 268 - "concurrent-queue", 269 - "event-listener-strategy", 270 - "futures-core", 271 - "pin-project-lite", 272 - ] 273 - 274 - [[package]] 275 - name = "async-compression" 276 - version = "0.4.15" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "e26a9844c659a2a293d239c7910b752f8487fe122c6c8bd1659bf85a6507c302" 279 - dependencies = [ 280 - "flate2", 281 - "futures-core", 282 - "futures-io", 283 - "memchr", 284 - "pin-project-lite", 285 - "tokio", 286 - ] 287 - 288 - [[package]] 289 - name = "async-imap" 290 - version = "0.10.2" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "5488cd022c3c7bc41a9b34a540d9ac0d9c5cd42fdb106a67616521b7592d5b4e" 293 - dependencies = [ 294 - "async-channel 2.3.1", 295 - "async-compression", 296 - "base64 0.21.7", 297 - "bytes", 298 - "chrono", 299 - "futures", 300 - "imap-proto", 301 - "log", 302 - "nom", 303 - "once_cell", 304 - "pin-project", 305 - "pin-utils", 306 - "self_cell", 307 - "stop-token", 308 - "thiserror", 309 - "tokio", 310 - ] 311 - 312 - [[package]] 313 - name = "async-mutex" 314 - version = "1.4.0" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e" 317 - dependencies = [ 318 - "event-listener 2.5.3", 319 - ] 320 - 321 - [[package]] 322 - name = "async-native-tls" 323 - version = "0.5.0" 324 - source = "registry+https://github.com/rust-lang/crates.io-index" 325 - checksum = "9343dc5acf07e79ff82d0c37899f079db3534d99f189a1837c8e549c99405bec" 326 - dependencies = [ 327 - "native-tls", 328 - "thiserror", 329 - "tokio", 330 - "url", 331 - ] 332 - 333 - [[package]] 334 - name = "async-recursion" 335 - version = "1.1.1" 336 - source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 338 - dependencies = [ 339 - "proc-macro2", 340 - "quote", 341 - "syn 2.0.86", 342 - ] 343 - 344 - [[package]] 345 - name = "async-smtp" 346 - version = "0.9.2" 347 - source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "00d1f1a16e5abad3ada9f1f23dbc2f354b138121b90533381be62dada6cbf40a" 349 - dependencies = [ 350 - "anyhow", 351 - "base64 0.13.1", 352 - "futures", 353 - "hostname", 354 - "log", 355 - "nom", 356 - "pin-project", 357 - "thiserror", 358 - "tokio", 359 - ] 360 - 361 - [[package]] 362 - name = "async-trait" 363 - version = "0.1.77" 364 - source = "registry+https://github.com/rust-lang/crates.io-index" 365 - checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 366 - dependencies = [ 367 - "proc-macro2", 368 - "quote", 369 - "syn 2.0.86", 370 - ] 371 - 372 - [[package]] 373 - name = "async_zip" 374 - version = "0.0.17" 375 - source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "00b9f7252833d5ed4b00aa9604b563529dd5e11de9c23615de2dcdf91eb87b52" 377 - dependencies = [ 378 - "async-compression", 379 - "crc32fast", 380 - "futures-lite 2.4.0", 381 - "pin-project", 382 - "thiserror", 383 - "tokio", 384 - "tokio-util", 385 - ] 386 - 387 - [[package]] 388 - name = "attohttpc" 389 - version = "0.24.1" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" 392 - dependencies = [ 393 - "http 0.2.12", 394 - "log", 395 - "url", 396 - ] 397 - 398 - [[package]] 399 - name = "autocfg" 400 - version = "1.1.0" 401 - source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 403 - 404 - [[package]] 405 - name = "axum" 406 - version = "0.7.5" 407 - source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 409 - dependencies = [ 410 - "async-trait", 411 - "axum-core", 412 - "base64 0.21.7", 413 - "bytes", 414 - "futures-util", 415 - "http 1.1.0", 416 - "http-body 1.0.0", 417 - "http-body-util", 418 - "hyper 1.5.0", 419 - "hyper-util", 420 - "itoa", 421 - "matchit", 422 - "memchr", 423 - "mime", 424 - "percent-encoding", 425 - "pin-project-lite", 426 - "rustversion", 427 - "serde", 428 - "serde_json", 429 - "serde_path_to_error", 430 - "serde_urlencoded", 431 - "sha1", 432 - "sync_wrapper 1.0.0", 433 - "tokio", 434 - "tokio-tungstenite", 435 - "tower", 436 - "tower-layer", 437 - "tower-service", 438 - "tracing", 439 - ] 440 - 441 - [[package]] 442 - name = "axum-core" 443 - version = "0.4.3" 444 - source = "registry+https://github.com/rust-lang/crates.io-index" 445 - checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 446 - dependencies = [ 447 - "async-trait", 448 - "bytes", 449 - "futures-util", 450 - "http 1.1.0", 451 - "http-body 1.0.0", 452 - "http-body-util", 453 - "mime", 454 - "pin-project-lite", 455 - "rustversion", 456 - "sync_wrapper 0.1.2", 457 - "tower-layer", 458 - "tower-service", 459 - "tracing", 460 - ] 461 - 462 - [[package]] 463 - name = "backoff" 464 - version = "0.4.0" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 467 - dependencies = [ 468 - "getrandom 0.2.12", 469 - "instant", 470 - "rand 0.8.5", 471 - ] 472 - 473 - [[package]] 474 - name = "backtrace" 475 - version = "0.3.73" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 478 - dependencies = [ 479 - "addr2line", 480 - "cc", 481 - "cfg-if", 482 - "libc", 483 - "miniz_oxide", 484 - "object", 485 - "rustc-demangle", 486 - ] 487 - 488 - [[package]] 489 - name = "base16ct" 490 - version = "0.2.0" 491 - source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 493 - 494 - [[package]] 495 - name = "base64" 496 - version = "0.11.0" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" 499 - 500 - [[package]] 501 - name = "base64" 502 - version = "0.12.3" 503 - source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 505 - 506 - [[package]] 507 - name = "base64" 508 - version = "0.13.1" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 511 - 512 - [[package]] 513 - name = "base64" 514 - version = "0.21.7" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 517 - 518 - [[package]] 519 - name = "base64" 520 - version = "0.22.1" 521 - source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 523 - 524 - [[package]] 525 - name = "base64ct" 526 - version = "1.6.0" 527 - source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 529 - 530 - [[package]] 531 - name = "bitfield" 532 - version = "0.14.0" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac" 535 - 536 - [[package]] 537 - name = "bitflags" 538 - version = "1.3.2" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 541 - 542 - [[package]] 543 - name = "bitflags" 544 - version = "2.6.0" 545 - source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 547 - 548 - [[package]] 549 - name = "bitvec" 550 - version = "1.0.1" 551 - source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 553 - dependencies = [ 554 - "funty", 555 - "radium", 556 - "tap", 557 - "wyz", 558 - ] 559 - 560 - [[package]] 561 - name = "blake2" 562 - version = "0.10.6" 563 - source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 565 - dependencies = [ 566 - "digest", 567 - ] 568 - 569 - [[package]] 570 - name = "blake3" 571 - version = "1.5.4" 572 - source = "registry+https://github.com/rust-lang/crates.io-index" 573 - checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7" 574 - dependencies = [ 575 - "arrayref", 576 - "arrayvec", 577 - "cc", 578 - "cfg-if", 579 - "constant_time_eq", 580 - ] 581 - 582 - [[package]] 583 - name = "block-buffer" 584 - version = "0.10.4" 585 - source = "registry+https://github.com/rust-lang/crates.io-index" 586 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 587 - dependencies = [ 588 - "generic-array", 589 - ] 590 - 591 - [[package]] 592 - name = "block-padding" 593 - version = "0.3.3" 594 - source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 596 - dependencies = [ 597 - "generic-array", 598 - ] 599 - 600 - [[package]] 601 - name = "blowfish" 602 - version = "0.9.1" 603 - source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" 605 - dependencies = [ 606 - "byteorder", 607 - "cipher", 608 - ] 609 - 610 - [[package]] 611 - name = "bounded-integer" 612 - version = "0.5.7" 613 - source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "78a6932c88f1d2c29533a3b8a5f5a2f84cc19c3339b431677c3160c5c2e6ca85" 615 - 616 - [[package]] 617 - name = "brotli" 618 - version = "7.0.0" 619 - source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" 621 - dependencies = [ 622 - "alloc-no-stdlib", 623 - "alloc-stdlib", 624 - "brotli-decompressor", 625 - ] 626 - 627 - [[package]] 628 - name = "brotli-decompressor" 629 - version = "4.0.0" 630 - source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "e6221fe77a248b9117d431ad93761222e1cf8ff282d9d1d5d9f53d6299a1cf76" 632 - dependencies = [ 633 - "alloc-no-stdlib", 634 - "alloc-stdlib", 635 - ] 636 - 637 - [[package]] 638 - name = "bstr" 639 - version = "1.9.1" 640 - source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 642 - dependencies = [ 643 - "memchr", 644 - "serde", 645 - ] 646 - 647 - [[package]] 648 - name = "buffer-redux" 649 - version = "1.0.1" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "4c9f8ddd22e0a12391d1e7ada69ec3b0da1914f1cec39c5cf977143c5b2854f5" 652 - dependencies = [ 653 - "memchr", 654 - ] 655 - 656 - [[package]] 657 - name = "bumpalo" 658 - version = "3.15.3" 659 - source = "registry+https://github.com/rust-lang/crates.io-index" 660 - checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b" 661 - 662 - [[package]] 663 - name = "byte_string" 664 - version = "1.0.0" 665 - source = "registry+https://github.com/rust-lang/crates.io-index" 666 - checksum = "11aade7a05aa8c3a351cedc44c3fc45806430543382fcc4743a9b757a2a0b4ed" 667 - 668 - [[package]] 669 - name = "bytemuck" 670 - version = "1.16.3" 671 - source = "registry+https://github.com/rust-lang/crates.io-index" 672 - checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" 673 - 674 - [[package]] 675 - name = "byteorder" 676 - version = "1.5.0" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 679 - 680 - [[package]] 681 - name = "byteorder-lite" 682 - version = "0.1.0" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 685 - 686 - [[package]] 687 - name = "bytes" 688 - version = "1.8.0" 689 - source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 691 - dependencies = [ 692 - "serde", 693 - ] 694 - 695 - [[package]] 696 - name = "camellia" 697 - version = "0.1.0" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30" 700 - dependencies = [ 701 - "byteorder", 702 - "cipher", 703 - ] 704 - 705 - [[package]] 706 - name = "camino" 707 - version = "1.1.6" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 710 - dependencies = [ 711 - "serde", 712 - ] 713 - 714 - [[package]] 715 - name = "cargo-platform" 716 - version = "0.1.7" 717 - source = "registry+https://github.com/rust-lang/crates.io-index" 718 - checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" 719 - dependencies = [ 720 - "serde", 721 - ] 722 - 723 - [[package]] 724 - name = "cargo_metadata" 725 - version = "0.14.2" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 728 - dependencies = [ 729 - "camino", 730 - "cargo-platform", 731 - "semver", 732 - "serde", 733 - "serde_json", 734 - ] 735 - 736 - [[package]] 737 - name = "cast" 738 - version = "0.3.0" 739 - source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 741 - 742 - [[package]] 743 - name = "cast5" 744 - version = "0.11.1" 745 - source = "registry+https://github.com/rust-lang/crates.io-index" 746 - checksum = "26b07d673db1ccf000e90f54b819db9e75a8348d6eb056e9b8ab53231b7a9911" 747 - dependencies = [ 748 - "cipher", 749 - ] 750 - 751 - [[package]] 752 - name = "cc" 753 - version = "1.1.16" 754 - source = "registry+https://github.com/rust-lang/crates.io-index" 755 - checksum = "e9d013ecb737093c0e86b151a7b837993cf9ec6c502946cfb44bedc392421e0b" 756 - dependencies = [ 757 - "shlex", 758 - ] 759 - 760 - [[package]] 761 - name = "cesu8" 762 - version = "1.1.0" 763 - source = "registry+https://github.com/rust-lang/crates.io-index" 764 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 765 - 766 - [[package]] 767 - name = "cfb-mode" 768 - version = "0.8.2" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 771 - dependencies = [ 772 - "cipher", 773 - ] 774 - 775 - [[package]] 776 - name = "cfg-if" 777 - version = "1.0.0" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 780 - 781 - [[package]] 782 - name = "cfg_aliases" 783 - version = "0.1.1" 784 - source = "registry+https://github.com/rust-lang/crates.io-index" 785 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 786 - 787 - [[package]] 788 - name = "chacha20" 789 - version = "0.9.1" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 792 - dependencies = [ 793 - "cfg-if", 794 - "cipher", 795 - "cpufeatures", 796 - ] 797 - 798 - [[package]] 799 - name = "chacha20poly1305" 800 - version = "0.10.1" 801 - source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 803 - dependencies = [ 804 - "aead", 805 - "chacha20", 806 - "cipher", 807 - "poly1305", 808 - "zeroize", 809 - ] 810 - 811 - [[package]] 812 - name = "charset" 813 - version = "0.1.3" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46" 816 - dependencies = [ 817 - "base64 0.13.1", 818 - "encoding_rs", 819 - ] 820 - 821 - [[package]] 822 - name = "chrono" 823 - version = "0.4.38" 824 - source = "registry+https://github.com/rust-lang/crates.io-index" 825 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 826 - dependencies = [ 827 - "android-tzdata", 828 - "iana-time-zone", 829 - "js-sys", 830 - "num-traits", 831 - "serde", 832 - "wasm-bindgen", 833 - "windows-targets 0.52.6", 834 - ] 835 - 836 - [[package]] 837 - name = "ciborium" 838 - version = "0.2.2" 839 - source = "registry+https://github.com/rust-lang/crates.io-index" 840 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 841 - dependencies = [ 842 - "ciborium-io", 843 - "ciborium-ll", 844 - "serde", 845 - ] 846 - 847 - [[package]] 848 - name = "ciborium-io" 849 - version = "0.2.2" 850 - source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 852 - 853 - [[package]] 854 - name = "ciborium-ll" 855 - version = "0.2.2" 856 - source = "registry+https://github.com/rust-lang/crates.io-index" 857 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 858 - dependencies = [ 859 - "ciborium-io", 860 - "half", 861 - ] 862 - 863 - [[package]] 864 - name = "cipher" 865 - version = "0.4.4" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 868 - dependencies = [ 869 - "crypto-common", 870 - "inout", 871 - "zeroize", 872 - ] 873 - 874 - [[package]] 875 - name = "clap" 876 - version = "4.4.18" 877 - source = "registry+https://github.com/rust-lang/crates.io-index" 878 - checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" 879 - dependencies = [ 880 - "clap_builder", 881 - ] 882 - 883 - [[package]] 884 - name = "clap_builder" 885 - version = "4.4.18" 886 - source = "registry+https://github.com/rust-lang/crates.io-index" 887 - checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" 888 - dependencies = [ 889 - "anstyle", 890 - "clap_lex", 891 - ] 892 - 893 - [[package]] 894 - name = "clap_lex" 895 - version = "0.6.0" 896 - source = "registry+https://github.com/rust-lang/crates.io-index" 897 - checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 898 - 899 - [[package]] 900 - name = "clipboard-win" 901 - version = "5.2.0" 902 - source = "registry+https://github.com/rust-lang/crates.io-index" 903 - checksum = "12f9a0700e0127ba15d1d52dd742097f821cd9c65939303a44d970465040a297" 904 - dependencies = [ 905 - "error-code", 906 - ] 907 - 908 - [[package]] 909 - name = "cmac" 910 - version = "0.7.2" 911 - source = "registry+https://github.com/rust-lang/crates.io-index" 912 - checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa" 913 - dependencies = [ 914 - "cipher", 915 - "dbl", 916 - "digest", 917 - ] 918 - 919 - [[package]] 920 - name = "cobs" 921 - version = "0.2.3" 922 - source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15" 924 - 925 - [[package]] 926 - name = "color_quant" 927 - version = "1.1.0" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 930 - 931 - [[package]] 932 - name = "colorchoice" 933 - version = "1.0.0" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 936 - 937 - [[package]] 938 - name = "combine" 939 - version = "4.6.7" 940 - source = "registry+https://github.com/rust-lang/crates.io-index" 941 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 942 - dependencies = [ 943 - "bytes", 944 - "memchr", 945 - ] 946 - 947 - [[package]] 948 - name = "concurrent-queue" 949 - version = "2.5.0" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 952 - dependencies = [ 953 - "crossbeam-utils", 954 - ] 955 - 956 - [[package]] 957 - name = "const-oid" 958 - version = "0.9.6" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 961 - 962 - [[package]] 963 - name = "const_format" 964 - version = "0.2.32" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673" 967 - dependencies = [ 968 - "const_format_proc_macros", 969 - ] 970 - 971 - [[package]] 972 - name = "const_format_proc_macros" 973 - version = "0.2.32" 974 - source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500" 976 - dependencies = [ 977 - "proc-macro2", 978 - "quote", 979 - "unicode-xid", 980 - ] 981 - 982 - [[package]] 983 - name = "constant_time_eq" 984 - version = "0.3.0" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 987 - 988 - [[package]] 989 - name = "convert_case" 990 - version = "0.5.0" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "fb4a24b1aaf0fd0ce8b45161144d6f42cd91677fd5940fd431183eb023b3a2b8" 993 - 994 - [[package]] 995 - name = "cordyceps" 996 - version = "0.3.2" 997 - source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "ec10f0a762d93c4498d2e97a333805cb6250d60bead623f71d8034f9a4152ba3" 999 - dependencies = [ 1000 - "loom", 1001 - "tracing", 1002 - ] 1003 - 1004 - [[package]] 1005 - name = "core-foundation" 1006 - version = "0.9.4" 1007 - source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1009 - dependencies = [ 1010 - "core-foundation-sys", 1011 - "libc", 1012 - ] 1013 - 1014 - [[package]] 1015 - name = "core-foundation-sys" 1016 - version = "0.8.6" 1017 - source = "registry+https://github.com/rust-lang/crates.io-index" 1018 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1019 - 1020 - [[package]] 1021 - name = "cpufeatures" 1022 - version = "0.2.12" 1023 - source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1025 - dependencies = [ 1026 - "libc", 1027 - ] 1028 - 1029 - [[package]] 1030 - name = "crc" 1031 - version = "3.2.1" 1032 - source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 1034 - dependencies = [ 1035 - "crc-catalog", 1036 - ] 1037 - 1038 - [[package]] 1039 - name = "crc-catalog" 1040 - version = "2.4.0" 1041 - source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1043 - 1044 - [[package]] 1045 - name = "crc24" 1046 - version = "0.1.6" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "fd121741cf3eb82c08dd3023eb55bf2665e5f60ec20f89760cf836ae4562e6a0" 1049 - 1050 - [[package]] 1051 - name = "crc32fast" 1052 - version = "1.4.0" 1053 - source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 1055 - dependencies = [ 1056 - "cfg-if", 1057 - ] 1058 - 1059 - [[package]] 1060 - name = "criterion" 1061 - version = "0.5.1" 1062 - source = "registry+https://github.com/rust-lang/crates.io-index" 1063 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1064 - dependencies = [ 1065 - "anes", 1066 - "cast", 1067 - "ciborium", 1068 - "clap", 1069 - "criterion-plot", 1070 - "futures", 1071 - "is-terminal", 1072 - "itertools", 1073 - "num-traits", 1074 - "once_cell", 1075 - "oorandom", 1076 - "plotters", 1077 - "rayon", 1078 - "regex", 1079 - "serde", 1080 - "serde_derive", 1081 - "serde_json", 1082 - "tinytemplate", 1083 - "tokio", 1084 - "walkdir", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "criterion-plot" 1089 - version = "0.5.0" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1092 - dependencies = [ 1093 - "cast", 1094 - "itertools", 1095 - ] 1096 - 1097 - [[package]] 1098 - name = "crossbeam-deque" 1099 - version = "0.8.5" 1100 - source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1102 - dependencies = [ 1103 - "crossbeam-epoch", 1104 - "crossbeam-utils", 1105 - ] 1106 - 1107 - [[package]] 1108 - name = "crossbeam-epoch" 1109 - version = "0.9.18" 1110 - source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1112 - dependencies = [ 1113 - "crossbeam-utils", 1114 - ] 1115 - 1116 - [[package]] 1117 - name = "crossbeam-utils" 1118 - version = "0.8.19" 1119 - source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 1121 - 1122 - [[package]] 1123 - name = "crossterm" 1124 - version = "0.28.1" 1125 - source = "registry+https://github.com/rust-lang/crates.io-index" 1126 - checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 1127 - dependencies = [ 1128 - "bitflags 2.6.0", 1129 - "crossterm_winapi", 1130 - "parking_lot", 1131 - "rustix", 1132 - "winapi", 1133 - ] 1134 - 1135 - [[package]] 1136 - name = "crossterm_winapi" 1137 - version = "0.9.1" 1138 - source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 1140 - dependencies = [ 1141 - "winapi", 1142 - ] 1143 - 1144 - [[package]] 1145 - name = "crunchy" 1146 - version = "0.2.2" 1147 - source = "registry+https://github.com/rust-lang/crates.io-index" 1148 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1149 - 1150 - [[package]] 1151 - name = "crypto-bigint" 1152 - version = "0.5.5" 1153 - source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1155 - dependencies = [ 1156 - "generic-array", 1157 - "rand_core 0.6.4", 1158 - "subtle", 1159 - "zeroize", 1160 - ] 1161 - 1162 - [[package]] 1163 - name = "crypto-common" 1164 - version = "0.1.6" 1165 - source = "registry+https://github.com/rust-lang/crates.io-index" 1166 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1167 - dependencies = [ 1168 - "generic-array", 1169 - "rand_core 0.6.4", 1170 - "typenum", 1171 - ] 1172 - 1173 - [[package]] 1174 - name = "crypto_box" 1175 - version = "0.9.1" 1176 - source = "registry+https://github.com/rust-lang/crates.io-index" 1177 - checksum = "16182b4f39a82ec8a6851155cc4c0cda3065bb1db33651726a29e1951de0f009" 1178 - dependencies = [ 1179 - "aead", 1180 - "chacha20", 1181 - "crypto_secretbox", 1182 - "curve25519-dalek", 1183 - "salsa20", 1184 - "serdect", 1185 - "subtle", 1186 - "zeroize", 1187 - ] 1188 - 1189 - [[package]] 1190 - name = "crypto_secretbox" 1191 - version = "0.1.1" 1192 - source = "registry+https://github.com/rust-lang/crates.io-index" 1193 - checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1" 1194 - dependencies = [ 1195 - "aead", 1196 - "chacha20", 1197 - "cipher", 1198 - "generic-array", 1199 - "poly1305", 1200 - "salsa20", 1201 - "subtle", 1202 - "zeroize", 1203 - ] 1204 - 1205 - [[package]] 1206 - name = "ctr" 1207 - version = "0.9.2" 1208 - source = "registry+https://github.com/rust-lang/crates.io-index" 1209 - checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1210 - dependencies = [ 1211 - "cipher", 1212 - ] 1213 - 1214 - [[package]] 1215 - name = "curve25519-dalek" 1216 - version = "4.1.3" 1217 - source = "registry+https://github.com/rust-lang/crates.io-index" 1218 - checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1219 - dependencies = [ 1220 - "cfg-if", 1221 - "cpufeatures", 1222 - "curve25519-dalek-derive", 1223 - "digest", 1224 - "fiat-crypto", 1225 - "rustc_version", 1226 - "subtle", 1227 - "zeroize", 1228 - ] 1229 - 1230 - [[package]] 1231 - name = "curve25519-dalek-derive" 1232 - version = "0.1.1" 1233 - source = "registry+https://github.com/rust-lang/crates.io-index" 1234 - checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1235 - dependencies = [ 1236 - "proc-macro2", 1237 - "quote", 1238 - "syn 2.0.86", 1239 - ] 1240 - 1241 - [[package]] 1242 - name = "darling" 1243 - version = "0.20.10" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 1246 - dependencies = [ 1247 - "darling_core", 1248 - "darling_macro", 1249 - ] 1250 - 1251 - [[package]] 1252 - name = "darling_core" 1253 - version = "0.20.10" 1254 - source = "registry+https://github.com/rust-lang/crates.io-index" 1255 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 1256 - dependencies = [ 1257 - "fnv", 1258 - "ident_case", 1259 - "proc-macro2", 1260 - "quote", 1261 - "strsim", 1262 - "syn 2.0.86", 1263 - ] 1264 - 1265 - [[package]] 1266 - name = "darling_macro" 1267 - version = "0.20.10" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 1270 - dependencies = [ 1271 - "darling_core", 1272 - "quote", 1273 - "syn 2.0.86", 1274 - ] 1275 - 1276 - [[package]] 1277 - name = "dashmap" 1278 - version = "5.5.3" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1281 - dependencies = [ 1282 - "cfg-if", 1283 - "hashbrown", 1284 - "lock_api", 1285 - "once_cell", 1286 - "parking_lot_core", 1287 - ] 1288 - 1289 - [[package]] 1290 - name = "data-encoding" 1291 - version = "2.6.0" 1292 - source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 1294 - 1295 - [[package]] 1296 - name = "dbl" 1297 - version = "0.3.2" 1298 - source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9" 1300 - dependencies = [ 1301 - "generic-array", 1302 - ] 1303 - 1304 - [[package]] 1305 - name = "deltachat" 1306 - version = "1.148.7" 1307 - dependencies = [ 1308 - "anyhow", 1309 - "async-broadcast", 1310 - "async-channel 2.3.1", 1311 - "async-imap", 1312 - "async-native-tls", 1313 - "async-smtp", 1314 - "async_zip", 1315 - "base64 0.22.1", 1316 - "brotli", 1317 - "bytes", 1318 - "chrono", 1319 - "criterion", 1320 - "deltachat-contact-tools", 1321 - "deltachat-time", 1322 - "deltachat_derive", 1323 - "email", 1324 - "encoded-words", 1325 - "escaper", 1326 - "fast-socks5", 1327 - "fd-lock", 1328 - "format-flowed", 1329 - "futures", 1330 - "futures-lite 2.4.0", 1331 - "hex", 1332 - "hickory-resolver", 1333 - "http-body-util", 1334 - "humansize", 1335 - "hyper 1.5.0", 1336 - "hyper-util", 1337 - "image", 1338 - "iroh-gossip", 1339 - "iroh-net", 1340 - "kamadak-exif", 1341 - "lettre_email", 1342 - "libc", 1343 - "log", 1344 - "mailparse", 1345 - "mime", 1346 - "nu-ansi-term", 1347 - "num-derive", 1348 - "num-traits", 1349 - "num_cpus", 1350 - "once_cell", 1351 - "parking_lot", 1352 - "percent-encoding", 1353 - "pgp", 1354 - "pin-project", 1355 - "pretty_assertions", 1356 - "proptest", 1357 - "qrcodegen", 1358 - "quick-xml", 1359 - "quoted_printable", 1360 - "rand 0.8.5", 1361 - "ratelimit", 1362 - "regex", 1363 - "rusqlite", 1364 - "rust-hsluv", 1365 - "rustls", 1366 - "rustls-pki-types", 1367 - "sanitize-filename", 1368 - "serde", 1369 - "serde_json", 1370 - "serde_urlencoded", 1371 - "sha-1", 1372 - "shadowsocks", 1373 - "smallvec", 1374 - "strum", 1375 - "strum_macros", 1376 - "tagger", 1377 - "tempfile", 1378 - "testdir", 1379 - "textwrap", 1380 - "thiserror", 1381 - "tokio", 1382 - "tokio-io-timeout", 1383 - "tokio-rustls", 1384 - "tokio-stream", 1385 - "tokio-tar", 1386 - "tokio-util", 1387 - "toml", 1388 - "url", 1389 - "uuid", 1390 - "webpki-roots", 1391 - ] 1392 - 1393 - [[package]] 1394 - name = "deltachat-contact-tools" 1395 - version = "0.0.0" 1396 - dependencies = [ 1397 - "anyhow", 1398 - "chrono", 1399 - "once_cell", 1400 - "regex", 1401 - "rusqlite", 1402 - ] 1403 - 1404 - [[package]] 1405 - name = "deltachat-jsonrpc" 1406 - version = "1.148.7" 1407 - dependencies = [ 1408 - "anyhow", 1409 - "async-channel 2.3.1", 1410 - "axum", 1411 - "base64 0.22.1", 1412 - "deltachat", 1413 - "deltachat-contact-tools", 1414 - "env_logger", 1415 - "futures", 1416 - "log", 1417 - "num-traits", 1418 - "sanitize-filename", 1419 - "schemars", 1420 - "serde", 1421 - "serde_json", 1422 - "tempfile", 1423 - "tokio", 1424 - "typescript-type-def", 1425 - "walkdir", 1426 - "yerpc", 1427 - ] 1428 - 1429 - [[package]] 1430 - name = "deltachat-repl" 1431 - version = "1.148.7" 1432 - dependencies = [ 1433 - "anyhow", 1434 - "deltachat", 1435 - "dirs", 1436 - "log", 1437 - "nu-ansi-term", 1438 - "qr2term", 1439 - "rusqlite", 1440 - "rustyline", 1441 - "tokio", 1442 - "tracing-subscriber", 1443 - ] 1444 - 1445 - [[package]] 1446 - name = "deltachat-rpc-server" 1447 - version = "1.148.7" 1448 - dependencies = [ 1449 - "anyhow", 1450 - "deltachat", 1451 - "deltachat-jsonrpc", 1452 - "futures-lite 2.4.0", 1453 - "log", 1454 - "serde", 1455 - "serde_json", 1456 - "tokio", 1457 - "tokio-util", 1458 - "tracing-subscriber", 1459 - "yerpc", 1460 - ] 1461 - 1462 - [[package]] 1463 - name = "deltachat-time" 1464 - version = "1.0.0" 1465 - 1466 - [[package]] 1467 - name = "deltachat_derive" 1468 - version = "2.0.0" 1469 - dependencies = [ 1470 - "quote", 1471 - "syn 2.0.86", 1472 - ] 1473 - 1474 - [[package]] 1475 - name = "deltachat_ffi" 1476 - version = "1.148.7" 1477 - dependencies = [ 1478 - "anyhow", 1479 - "deltachat", 1480 - "deltachat-jsonrpc", 1481 - "human-panic", 1482 - "libc", 1483 - "num-traits", 1484 - "once_cell", 1485 - "rand 0.8.5", 1486 - "serde_json", 1487 - "thiserror", 1488 - "tokio", 1489 - "yerpc", 1490 - ] 1491 - 1492 - [[package]] 1493 - name = "der" 1494 - version = "0.7.8" 1495 - source = "registry+https://github.com/rust-lang/crates.io-index" 1496 - checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" 1497 - dependencies = [ 1498 - "const-oid", 1499 - "der_derive", 1500 - "pem-rfc7468", 1501 - "zeroize", 1502 - ] 1503 - 1504 - [[package]] 1505 - name = "der-parser" 1506 - version = "9.0.0" 1507 - source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1509 - dependencies = [ 1510 - "asn1-rs", 1511 - "displaydoc", 1512 - "nom", 1513 - "num-bigint", 1514 - "num-traits", 1515 - "rusticata-macros", 1516 - ] 1517 - 1518 - [[package]] 1519 - name = "der_derive" 1520 - version = "0.7.2" 1521 - source = "registry+https://github.com/rust-lang/crates.io-index" 1522 - checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049" 1523 - dependencies = [ 1524 - "proc-macro2", 1525 - "quote", 1526 - "syn 2.0.86", 1527 - ] 1528 - 1529 - [[package]] 1530 - name = "deranged" 1531 - version = "0.3.11" 1532 - source = "registry+https://github.com/rust-lang/crates.io-index" 1533 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1534 - dependencies = [ 1535 - "powerfmt", 1536 - "serde", 1537 - ] 1538 - 1539 - [[package]] 1540 - name = "derive_builder" 1541 - version = "0.20.0" 1542 - source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 1544 - dependencies = [ 1545 - "derive_builder_macro", 1546 - ] 1547 - 1548 - [[package]] 1549 - name = "derive_builder_core" 1550 - version = "0.20.0" 1551 - source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 1553 - dependencies = [ 1554 - "darling", 1555 - "proc-macro2", 1556 - "quote", 1557 - "syn 2.0.86", 1558 - ] 1559 - 1560 - [[package]] 1561 - name = "derive_builder_macro" 1562 - version = "0.20.0" 1563 - source = "registry+https://github.com/rust-lang/crates.io-index" 1564 - checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 1565 - dependencies = [ 1566 - "derive_builder_core", 1567 - "syn 2.0.86", 1568 - ] 1569 - 1570 - [[package]] 1571 - name = "derive_more" 1572 - version = "1.0.0" 1573 - source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1575 - dependencies = [ 1576 - "derive_more-impl", 1577 - ] 1578 - 1579 - [[package]] 1580 - name = "derive_more-impl" 1581 - version = "1.0.0" 1582 - source = "registry+https://github.com/rust-lang/crates.io-index" 1583 - checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1584 - dependencies = [ 1585 - "proc-macro2", 1586 - "quote", 1587 - "syn 2.0.86", 1588 - "unicode-xid", 1589 - ] 1590 - 1591 - [[package]] 1592 - name = "des" 1593 - version = "0.8.1" 1594 - source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" 1596 - dependencies = [ 1597 - "cipher", 1598 - ] 1599 - 1600 - [[package]] 1601 - name = "diatomic-waker" 1602 - version = "0.2.3" 1603 - source = "registry+https://github.com/rust-lang/crates.io-index" 1604 - checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1605 - 1606 - [[package]] 1607 - name = "diff" 1608 - version = "0.1.13" 1609 - source = "registry+https://github.com/rust-lang/crates.io-index" 1610 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 1611 - 1612 - [[package]] 1613 - name = "digest" 1614 - version = "0.10.7" 1615 - source = "registry+https://github.com/rust-lang/crates.io-index" 1616 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1617 - dependencies = [ 1618 - "block-buffer", 1619 - "const-oid", 1620 - "crypto-common", 1621 - "subtle", 1622 - ] 1623 - 1624 - [[package]] 1625 - name = "dirs" 1626 - version = "5.0.1" 1627 - source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1629 - dependencies = [ 1630 - "dirs-sys", 1631 - ] 1632 - 1633 - [[package]] 1634 - name = "dirs-sys" 1635 - version = "0.4.1" 1636 - source = "registry+https://github.com/rust-lang/crates.io-index" 1637 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1638 - dependencies = [ 1639 - "libc", 1640 - "option-ext", 1641 - "redox_users", 1642 - "windows-sys 0.48.0", 1643 - ] 1644 - 1645 - [[package]] 1646 - name = "displaydoc" 1647 - version = "0.2.4" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 1650 - dependencies = [ 1651 - "proc-macro2", 1652 - "quote", 1653 - "syn 2.0.86", 1654 - ] 1655 - 1656 - [[package]] 1657 - name = "dlopen2" 1658 - version = "0.5.0" 1659 - source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "09b4f5f101177ff01b8ec4ecc81eead416a8aa42819a2869311b3420fa114ffa" 1661 - dependencies = [ 1662 - "libc", 1663 - "once_cell", 1664 - "winapi", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "document-features" 1669 - version = "0.2.8" 1670 - source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "ef5282ad69563b5fc40319526ba27e0e7363d552a896f0297d54f767717f9b95" 1672 - dependencies = [ 1673 - "litrs", 1674 - ] 1675 - 1676 - [[package]] 1677 - name = "dsa" 1678 - version = "0.6.3" 1679 - source = "registry+https://github.com/rust-lang/crates.io-index" 1680 - checksum = "48bc224a9084ad760195584ce5abb3c2c34a225fa312a128ad245a6b412b7689" 1681 - dependencies = [ 1682 - "digest", 1683 - "num-bigint-dig", 1684 - "num-traits", 1685 - "pkcs8", 1686 - "rfc6979", 1687 - "sha2", 1688 - "signature", 1689 - "zeroize", 1690 - ] 1691 - 1692 - [[package]] 1693 - name = "dtoa" 1694 - version = "1.0.9" 1695 - source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 1697 - 1698 - [[package]] 1699 - name = "duct" 1700 - version = "0.13.7" 1701 - source = "registry+https://github.com/rust-lang/crates.io-index" 1702 - checksum = "e4ab5718d1224b63252cd0c6f74f6480f9ffeb117438a2e0f5cf6d9a4798929c" 1703 - dependencies = [ 1704 - "libc", 1705 - "once_cell", 1706 - "os_pipe", 1707 - "shared_child", 1708 - ] 1709 - 1710 - [[package]] 1711 - name = "dyn-clone" 1712 - version = "1.0.17" 1713 - source = "registry+https://github.com/rust-lang/crates.io-index" 1714 - checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" 1715 - 1716 - [[package]] 1717 - name = "eax" 1718 - version = "0.5.0" 1719 - source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "9954fabd903b82b9d7a68f65f97dc96dd9ad368e40ccc907a7c19d53e6bfac28" 1721 - dependencies = [ 1722 - "aead", 1723 - "cipher", 1724 - "cmac", 1725 - "ctr", 1726 - "subtle", 1727 - ] 1728 - 1729 - [[package]] 1730 - name = "ecdsa" 1731 - version = "0.16.9" 1732 - source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1734 - dependencies = [ 1735 - "der", 1736 - "digest", 1737 - "elliptic-curve", 1738 - "rfc6979", 1739 - "signature", 1740 - "spki", 1741 - ] 1742 - 1743 - [[package]] 1744 - name = "ed25519" 1745 - version = "2.2.3" 1746 - source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 1748 - dependencies = [ 1749 - "pkcs8", 1750 - "serde", 1751 - "signature", 1752 - ] 1753 - 1754 - [[package]] 1755 - name = "ed25519-dalek" 1756 - version = "2.1.1" 1757 - source = "registry+https://github.com/rust-lang/crates.io-index" 1758 - checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 1759 - dependencies = [ 1760 - "curve25519-dalek", 1761 - "ed25519", 1762 - "rand_core 0.6.4", 1763 - "serde", 1764 - "sha2", 1765 - "subtle", 1766 - "zeroize", 1767 - ] 1768 - 1769 - [[package]] 1770 - name = "either" 1771 - version = "1.10.0" 1772 - source = "registry+https://github.com/rust-lang/crates.io-index" 1773 - checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 1774 - 1775 - [[package]] 1776 - name = "elliptic-curve" 1777 - version = "0.13.8" 1778 - source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1780 - dependencies = [ 1781 - "base16ct", 1782 - "crypto-bigint", 1783 - "digest", 1784 - "ff", 1785 - "generic-array", 1786 - "group", 1787 - "hkdf", 1788 - "pem-rfc7468", 1789 - "pkcs8", 1790 - "rand_core 0.6.4", 1791 - "sec1", 1792 - "subtle", 1793 - "zeroize", 1794 - ] 1795 - 1796 - [[package]] 1797 - name = "email" 1798 - version = "0.0.20" 1799 - source = "git+https://github.com/deltachat/rust-email?branch=master#5179cd68db44101ee3d3df7bfef96f014507352b" 1800 - dependencies = [ 1801 - "base64 0.11.0", 1802 - "chrono", 1803 - "encoded-words", 1804 - "encoding", 1805 - "lazy_static", 1806 - "rand 0.7.3", 1807 - "version_check", 1808 - ] 1809 - 1810 - [[package]] 1811 - name = "embedded-io" 1812 - version = "0.4.0" 1813 - source = "registry+https://github.com/rust-lang/crates.io-index" 1814 - checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1815 - 1816 - [[package]] 1817 - name = "encoded-words" 1818 - version = "0.2.0" 1819 - source = "git+https://github.com/async-email/encoded-words?branch=master#d55366b36f96e383f39c432aedce42ee8b43f796" 1820 - dependencies = [ 1821 - "base64 0.12.3", 1822 - "charset", 1823 - "encoding_rs", 1824 - "hex", 1825 - "lazy_static", 1826 - "regex", 1827 - "thiserror", 1828 - ] 1829 - 1830 - [[package]] 1831 - name = "encoding" 1832 - version = "0.2.33" 1833 - source = "registry+https://github.com/rust-lang/crates.io-index" 1834 - checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 1835 - dependencies = [ 1836 - "encoding-index-japanese", 1837 - "encoding-index-korean", 1838 - "encoding-index-simpchinese", 1839 - "encoding-index-singlebyte", 1840 - "encoding-index-tradchinese", 1841 - ] 1842 - 1843 - [[package]] 1844 - name = "encoding-index-japanese" 1845 - version = "1.20141219.5" 1846 - source = "registry+https://github.com/rust-lang/crates.io-index" 1847 - checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 1848 - dependencies = [ 1849 - "encoding_index_tests", 1850 - ] 1851 - 1852 - [[package]] 1853 - name = "encoding-index-korean" 1854 - version = "1.20141219.5" 1855 - source = "registry+https://github.com/rust-lang/crates.io-index" 1856 - checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 1857 - dependencies = [ 1858 - "encoding_index_tests", 1859 - ] 1860 - 1861 - [[package]] 1862 - name = "encoding-index-simpchinese" 1863 - version = "1.20141219.5" 1864 - source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 1866 - dependencies = [ 1867 - "encoding_index_tests", 1868 - ] 1869 - 1870 - [[package]] 1871 - name = "encoding-index-singlebyte" 1872 - version = "1.20141219.5" 1873 - source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 1875 - dependencies = [ 1876 - "encoding_index_tests", 1877 - ] 1878 - 1879 - [[package]] 1880 - name = "encoding-index-tradchinese" 1881 - version = "1.20141219.5" 1882 - source = "registry+https://github.com/rust-lang/crates.io-index" 1883 - checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 1884 - dependencies = [ 1885 - "encoding_index_tests", 1886 - ] 1887 - 1888 - [[package]] 1889 - name = "encoding_index_tests" 1890 - version = "0.1.4" 1891 - source = "registry+https://github.com/rust-lang/crates.io-index" 1892 - checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 1893 - 1894 - [[package]] 1895 - name = "encoding_rs" 1896 - version = "0.8.33" 1897 - source = "registry+https://github.com/rust-lang/crates.io-index" 1898 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1899 - dependencies = [ 1900 - "cfg-if", 1901 - ] 1902 - 1903 - [[package]] 1904 - name = "endian-type" 1905 - version = "0.1.2" 1906 - source = "registry+https://github.com/rust-lang/crates.io-index" 1907 - checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 1908 - 1909 - [[package]] 1910 - name = "entities" 1911 - version = "1.0.1" 1912 - source = "registry+https://github.com/rust-lang/crates.io-index" 1913 - checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 1914 - 1915 - [[package]] 1916 - name = "enum-as-inner" 1917 - version = "0.6.0" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1920 - dependencies = [ 1921 - "heck", 1922 - "proc-macro2", 1923 - "quote", 1924 - "syn 2.0.86", 1925 - ] 1926 - 1927 - [[package]] 1928 - name = "enumflags2" 1929 - version = "0.7.9" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "3278c9d5fb675e0a51dabcf4c0d355f692b064171535ba72361be1528a9d8e8d" 1932 - dependencies = [ 1933 - "enumflags2_derive", 1934 - ] 1935 - 1936 - [[package]] 1937 - name = "enumflags2_derive" 1938 - version = "0.7.9" 1939 - source = "registry+https://github.com/rust-lang/crates.io-index" 1940 - checksum = "5c785274071b1b420972453b306eeca06acf4633829db4223b58a2a8c5953bc4" 1941 - dependencies = [ 1942 - "proc-macro2", 1943 - "quote", 1944 - "syn 2.0.86", 1945 - ] 1946 - 1947 - [[package]] 1948 - name = "env_filter" 1949 - version = "0.1.0" 1950 - source = "registry+https://github.com/rust-lang/crates.io-index" 1951 - checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 1952 - dependencies = [ 1953 - "log", 1954 - "regex", 1955 - ] 1956 - 1957 - [[package]] 1958 - name = "env_logger" 1959 - version = "0.11.5" 1960 - source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 1962 - dependencies = [ 1963 - "anstream", 1964 - "anstyle", 1965 - "env_filter", 1966 - "humantime", 1967 - "log", 1968 - ] 1969 - 1970 - [[package]] 1971 - name = "equivalent" 1972 - version = "1.0.1" 1973 - source = "registry+https://github.com/rust-lang/crates.io-index" 1974 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1975 - 1976 - [[package]] 1977 - name = "erased-serde" 1978 - version = "0.3.31" 1979 - source = "registry+https://github.com/rust-lang/crates.io-index" 1980 - checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" 1981 - dependencies = [ 1982 - "serde", 1983 - ] 1984 - 1985 - [[package]] 1986 - name = "erased_set" 1987 - version = "0.7.0" 1988 - source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "76a5aa24577083f8190ad401e376b55887c7cd9083ae95d83ceec5d28ea78125" 1990 - 1991 - [[package]] 1992 - name = "errno" 1993 - version = "0.3.8" 1994 - source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1996 - dependencies = [ 1997 - "libc", 1998 - "windows-sys 0.52.0", 1999 - ] 2000 - 2001 - [[package]] 2002 - name = "error-code" 2003 - version = "3.2.0" 2004 - source = "registry+https://github.com/rust-lang/crates.io-index" 2005 - checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" 2006 - 2007 - [[package]] 2008 - name = "escaper" 2009 - version = "0.1.1" 2010 - source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "a53eb97b7349ba1bdb31839eceafe9aaae8f1d8d944dc589b67fb0b26e1c1666" 2012 - dependencies = [ 2013 - "entities", 2014 - ] 2015 - 2016 - [[package]] 2017 - name = "event-listener" 2018 - version = "2.5.3" 2019 - source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 2021 - 2022 - [[package]] 2023 - name = "event-listener" 2024 - version = "4.0.3" 2025 - source = "registry+https://github.com/rust-lang/crates.io-index" 2026 - checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 2027 - dependencies = [ 2028 - "concurrent-queue", 2029 - "parking", 2030 - "pin-project-lite", 2031 - ] 2032 - 2033 - [[package]] 2034 - name = "event-listener" 2035 - version = "5.2.0" 2036 - source = "registry+https://github.com/rust-lang/crates.io-index" 2037 - checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" 2038 - dependencies = [ 2039 - "concurrent-queue", 2040 - "parking", 2041 - "pin-project-lite", 2042 - ] 2043 - 2044 - [[package]] 2045 - name = "event-listener-strategy" 2046 - version = "0.5.2" 2047 - source = "registry+https://github.com/rust-lang/crates.io-index" 2048 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 2049 - dependencies = [ 2050 - "event-listener 5.2.0", 2051 - "pin-project-lite", 2052 - ] 2053 - 2054 - [[package]] 2055 - name = "fallible-iterator" 2056 - version = "0.3.0" 2057 - source = "registry+https://github.com/rust-lang/crates.io-index" 2058 - checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 2059 - 2060 - [[package]] 2061 - name = "fallible-streaming-iterator" 2062 - version = "0.1.9" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 2065 - 2066 - [[package]] 2067 - name = "fast-socks5" 2068 - version = "0.9.6" 2069 - source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "f89f36d4ee12370d30d57b16c7e190950a1a916e7dbbb5fd5a412f5ef913fe84" 2071 - dependencies = [ 2072 - "anyhow", 2073 - "async-trait", 2074 - "log", 2075 - "thiserror", 2076 - "tokio", 2077 - "tokio-stream", 2078 - ] 2079 - 2080 - [[package]] 2081 - name = "fast_chemail" 2082 - version = "0.9.6" 2083 - source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4" 2085 - dependencies = [ 2086 - "ascii_utils", 2087 - ] 2088 - 2089 - [[package]] 2090 - name = "fastrand" 2091 - version = "1.9.0" 2092 - source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 2094 - dependencies = [ 2095 - "instant", 2096 - ] 2097 - 2098 - [[package]] 2099 - name = "fastrand" 2100 - version = "2.1.1" 2101 - source = "registry+https://github.com/rust-lang/crates.io-index" 2102 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 2103 - 2104 - [[package]] 2105 - name = "fd-lock" 2106 - version = "4.0.2" 2107 - source = "registry+https://github.com/rust-lang/crates.io-index" 2108 - checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947" 2109 - dependencies = [ 2110 - "cfg-if", 2111 - "rustix", 2112 - "windows-sys 0.52.0", 2113 - ] 2114 - 2115 - [[package]] 2116 - name = "fdeflate" 2117 - version = "0.3.4" 2118 - source = "registry+https://github.com/rust-lang/crates.io-index" 2119 - checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 2120 - dependencies = [ 2121 - "simd-adler32", 2122 - ] 2123 - 2124 - [[package]] 2125 - name = "ff" 2126 - version = "0.13.0" 2127 - source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 2129 - dependencies = [ 2130 - "rand_core 0.6.4", 2131 - "subtle", 2132 - ] 2133 - 2134 - [[package]] 2135 - name = "fiat-crypto" 2136 - version = "0.2.6" 2137 - source = "registry+https://github.com/rust-lang/crates.io-index" 2138 - checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" 2139 - 2140 - [[package]] 2141 - name = "filetime" 2142 - version = "0.2.23" 2143 - source = "registry+https://github.com/rust-lang/crates.io-index" 2144 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 2145 - dependencies = [ 2146 - "cfg-if", 2147 - "libc", 2148 - "redox_syscall 0.4.1", 2149 - "windows-sys 0.52.0", 2150 - ] 2151 - 2152 - [[package]] 2153 - name = "flate2" 2154 - version = "1.0.28" 2155 - source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 2157 - dependencies = [ 2158 - "crc32fast", 2159 - "miniz_oxide", 2160 - ] 2161 - 2162 - [[package]] 2163 - name = "flume" 2164 - version = "0.11.0" 2165 - source = "registry+https://github.com/rust-lang/crates.io-index" 2166 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 2167 - dependencies = [ 2168 - "futures-core", 2169 - "futures-sink", 2170 - "nanorand", 2171 - "spin", 2172 - ] 2173 - 2174 - [[package]] 2175 - name = "fnv" 2176 - version = "1.0.7" 2177 - source = "registry+https://github.com/rust-lang/crates.io-index" 2178 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2179 - 2180 - [[package]] 2181 - name = "foreign-types" 2182 - version = "0.3.2" 2183 - source = "registry+https://github.com/rust-lang/crates.io-index" 2184 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2185 - dependencies = [ 2186 - "foreign-types-shared", 2187 - ] 2188 - 2189 - [[package]] 2190 - name = "foreign-types-shared" 2191 - version = "0.1.1" 2192 - source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2194 - 2195 - [[package]] 2196 - name = "form_urlencoded" 2197 - version = "1.2.1" 2198 - source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 2200 - dependencies = [ 2201 - "percent-encoding", 2202 - ] 2203 - 2204 - [[package]] 2205 - name = "format-flowed" 2206 - version = "1.0.0" 2207 - 2208 - [[package]] 2209 - name = "funty" 2210 - version = "2.0.0" 2211 - source = "registry+https://github.com/rust-lang/crates.io-index" 2212 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2213 - 2214 - [[package]] 2215 - name = "futures" 2216 - version = "0.3.31" 2217 - source = "registry+https://github.com/rust-lang/crates.io-index" 2218 - checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 2219 - dependencies = [ 2220 - "futures-channel", 2221 - "futures-core", 2222 - "futures-executor", 2223 - "futures-io", 2224 - "futures-sink", 2225 - "futures-task", 2226 - "futures-util", 2227 - ] 2228 - 2229 - [[package]] 2230 - name = "futures-buffered" 2231 - version = "0.2.9" 2232 - source = "registry+https://github.com/rust-lang/crates.io-index" 2233 - checksum = "34acda8ae8b63fbe0b2195c998b180cff89a8212fb2622a78b572a9f1c6f7684" 2234 - dependencies = [ 2235 - "cordyceps", 2236 - "diatomic-waker", 2237 - "futures-core", 2238 - "pin-project-lite", 2239 - ] 2240 - 2241 - [[package]] 2242 - name = "futures-channel" 2243 - version = "0.3.31" 2244 - source = "registry+https://github.com/rust-lang/crates.io-index" 2245 - checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 2246 - dependencies = [ 2247 - "futures-core", 2248 - "futures-sink", 2249 - ] 2250 - 2251 - [[package]] 2252 - name = "futures-concurrency" 2253 - version = "7.6.1" 2254 - source = "registry+https://github.com/rust-lang/crates.io-index" 2255 - checksum = "4b14ac911e85d57c5ea6eef76d7b4d4a3177ecd15f4bea2e61927e9e3823e19f" 2256 - dependencies = [ 2257 - "bitvec", 2258 - "futures-buffered", 2259 - "futures-core", 2260 - "futures-lite 1.13.0", 2261 - "pin-project", 2262 - "slab", 2263 - "smallvec", 2264 - ] 2265 - 2266 - [[package]] 2267 - name = "futures-core" 2268 - version = "0.3.31" 2269 - source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 2271 - 2272 - [[package]] 2273 - name = "futures-executor" 2274 - version = "0.3.31" 2275 - source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 2277 - dependencies = [ 2278 - "futures-core", 2279 - "futures-task", 2280 - "futures-util", 2281 - ] 2282 - 2283 - [[package]] 2284 - name = "futures-io" 2285 - version = "0.3.31" 2286 - source = "registry+https://github.com/rust-lang/crates.io-index" 2287 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 2288 - 2289 - [[package]] 2290 - name = "futures-lite" 2291 - version = "1.13.0" 2292 - source = "registry+https://github.com/rust-lang/crates.io-index" 2293 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 2294 - dependencies = [ 2295 - "fastrand 1.9.0", 2296 - "futures-core", 2297 - "futures-io", 2298 - "memchr", 2299 - "parking", 2300 - "pin-project-lite", 2301 - "waker-fn", 2302 - ] 2303 - 2304 - [[package]] 2305 - name = "futures-lite" 2306 - version = "2.4.0" 2307 - source = "registry+https://github.com/rust-lang/crates.io-index" 2308 - checksum = "3f1fa2f9765705486b33fd2acf1577f8ec449c2ba1f318ae5447697b7c08d210" 2309 - dependencies = [ 2310 - "fastrand 2.1.1", 2311 - "futures-core", 2312 - "futures-io", 2313 - "parking", 2314 - "pin-project-lite", 2315 - ] 2316 - 2317 - [[package]] 2318 - name = "futures-macro" 2319 - version = "0.3.31" 2320 - source = "registry+https://github.com/rust-lang/crates.io-index" 2321 - checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 2322 - dependencies = [ 2323 - "proc-macro2", 2324 - "quote", 2325 - "syn 2.0.86", 2326 - ] 2327 - 2328 - [[package]] 2329 - name = "futures-sink" 2330 - version = "0.3.31" 2331 - source = "registry+https://github.com/rust-lang/crates.io-index" 2332 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 2333 - 2334 - [[package]] 2335 - name = "futures-task" 2336 - version = "0.3.31" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 2339 - 2340 - [[package]] 2341 - name = "futures-timer" 2342 - version = "3.0.3" 2343 - source = "registry+https://github.com/rust-lang/crates.io-index" 2344 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 2345 - 2346 - [[package]] 2347 - name = "futures-util" 2348 - version = "0.3.31" 2349 - source = "registry+https://github.com/rust-lang/crates.io-index" 2350 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 2351 - dependencies = [ 2352 - "futures-channel", 2353 - "futures-core", 2354 - "futures-io", 2355 - "futures-macro", 2356 - "futures-sink", 2357 - "futures-task", 2358 - "memchr", 2359 - "pin-project-lite", 2360 - "pin-utils", 2361 - "slab", 2362 - ] 2363 - 2364 - [[package]] 2365 - name = "generator" 2366 - version = "0.7.5" 2367 - source = "registry+https://github.com/rust-lang/crates.io-index" 2368 - checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e" 2369 - dependencies = [ 2370 - "cc", 2371 - "libc", 2372 - "log", 2373 - "rustversion", 2374 - "windows 0.48.0", 2375 - ] 2376 - 2377 - [[package]] 2378 - name = "generic-array" 2379 - version = "0.14.7" 2380 - source = "registry+https://github.com/rust-lang/crates.io-index" 2381 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2382 - dependencies = [ 2383 - "typenum", 2384 - "version_check", 2385 - "zeroize", 2386 - ] 2387 - 2388 - [[package]] 2389 - name = "getrandom" 2390 - version = "0.1.16" 2391 - source = "registry+https://github.com/rust-lang/crates.io-index" 2392 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 2393 - dependencies = [ 2394 - "cfg-if", 2395 - "libc", 2396 - "wasi 0.9.0+wasi-snapshot-preview1", 2397 - ] 2398 - 2399 - [[package]] 2400 - name = "getrandom" 2401 - version = "0.2.12" 2402 - source = "registry+https://github.com/rust-lang/crates.io-index" 2403 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 2404 - dependencies = [ 2405 - "cfg-if", 2406 - "js-sys", 2407 - "libc", 2408 - "wasi 0.11.0+wasi-snapshot-preview1", 2409 - "wasm-bindgen", 2410 - ] 2411 - 2412 - [[package]] 2413 - name = "ghash" 2414 - version = "0.5.1" 2415 - source = "registry+https://github.com/rust-lang/crates.io-index" 2416 - checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 2417 - dependencies = [ 2418 - "opaque-debug", 2419 - "polyval", 2420 - ] 2421 - 2422 - [[package]] 2423 - name = "gif" 2424 - version = "0.13.1" 2425 - source = "registry+https://github.com/rust-lang/crates.io-index" 2426 - checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 2427 - dependencies = [ 2428 - "color_quant", 2429 - "weezl", 2430 - ] 2431 - 2432 - [[package]] 2433 - name = "gimli" 2434 - version = "0.29.0" 2435 - source = "registry+https://github.com/rust-lang/crates.io-index" 2436 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 2437 - 2438 - [[package]] 2439 - name = "glob" 2440 - version = "0.3.1" 2441 - source = "registry+https://github.com/rust-lang/crates.io-index" 2442 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2443 - 2444 - [[package]] 2445 - name = "governor" 2446 - version = "0.6.3" 2447 - source = "registry+https://github.com/rust-lang/crates.io-index" 2448 - checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" 2449 - dependencies = [ 2450 - "cfg-if", 2451 - "dashmap", 2452 - "futures", 2453 - "futures-timer", 2454 - "no-std-compat", 2455 - "nonzero_ext", 2456 - "parking_lot", 2457 - "portable-atomic", 2458 - "quanta", 2459 - "rand 0.8.5", 2460 - "smallvec", 2461 - "spinning_top", 2462 - ] 2463 - 2464 - [[package]] 2465 - name = "group" 2466 - version = "0.13.0" 2467 - source = "registry+https://github.com/rust-lang/crates.io-index" 2468 - checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2469 - dependencies = [ 2470 - "ff", 2471 - "rand_core 0.6.4", 2472 - "subtle", 2473 - ] 2474 - 2475 - [[package]] 2476 - name = "h2" 2477 - version = "0.3.26" 2478 - source = "registry+https://github.com/rust-lang/crates.io-index" 2479 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2480 - dependencies = [ 2481 - "bytes", 2482 - "fnv", 2483 - "futures-core", 2484 - "futures-sink", 2485 - "futures-util", 2486 - "http 0.2.12", 2487 - "indexmap", 2488 - "slab", 2489 - "tokio", 2490 - "tokio-util", 2491 - "tracing", 2492 - ] 2493 - 2494 - [[package]] 2495 - name = "half" 2496 - version = "2.4.0" 2497 - source = "registry+https://github.com/rust-lang/crates.io-index" 2498 - checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" 2499 - dependencies = [ 2500 - "cfg-if", 2501 - "crunchy", 2502 - ] 2503 - 2504 - [[package]] 2505 - name = "hashbrown" 2506 - version = "0.14.3" 2507 - source = "registry+https://github.com/rust-lang/crates.io-index" 2508 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 2509 - dependencies = [ 2510 - "ahash", 2511 - ] 2512 - 2513 - [[package]] 2514 - name = "hashlink" 2515 - version = "0.9.1" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 2518 - dependencies = [ 2519 - "hashbrown", 2520 - ] 2521 - 2522 - [[package]] 2523 - name = "heck" 2524 - version = "0.4.1" 2525 - source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2527 - 2528 - [[package]] 2529 - name = "hermit-abi" 2530 - version = "0.3.9" 2531 - source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2533 - 2534 - [[package]] 2535 - name = "hex" 2536 - version = "0.4.3" 2537 - source = "registry+https://github.com/rust-lang/crates.io-index" 2538 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2539 - 2540 - [[package]] 2541 - name = "hickory-proto" 2542 - version = "0.25.0-alpha.2" 2543 - source = "registry+https://github.com/rust-lang/crates.io-index" 2544 - checksum = "8270a1857fb962b9914aafd46a89a187a4e63d0eb4190c327e7c7b8256a2d055" 2545 - dependencies = [ 2546 - "async-recursion", 2547 - "async-trait", 2548 - "cfg-if", 2549 - "data-encoding", 2550 - "enum-as-inner", 2551 - "futures-channel", 2552 - "futures-io", 2553 - "futures-util", 2554 - "idna", 2555 - "ipnet", 2556 - "once_cell", 2557 - "rand 0.8.5", 2558 - "thiserror", 2559 - "time 0.3.36", 2560 - "tinyvec", 2561 - "tokio", 2562 - "tracing", 2563 - "url", 2564 - ] 2565 - 2566 - [[package]] 2567 - name = "hickory-resolver" 2568 - version = "0.25.0-alpha.2" 2569 - source = "registry+https://github.com/rust-lang/crates.io-index" 2570 - checksum = "46c110355b5703070d9e29c344d79818a7cde3de9c27fc35750defea6074b0ad" 2571 - dependencies = [ 2572 - "cfg-if", 2573 - "futures-util", 2574 - "hickory-proto", 2575 - "ipconfig", 2576 - "lru-cache", 2577 - "once_cell", 2578 - "parking_lot", 2579 - "rand 0.8.5", 2580 - "resolv-conf", 2581 - "smallvec", 2582 - "thiserror", 2583 - "tokio", 2584 - "tracing", 2585 - ] 2586 - 2587 - [[package]] 2588 - name = "hkdf" 2589 - version = "0.12.4" 2590 - source = "registry+https://github.com/rust-lang/crates.io-index" 2591 - checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2592 - dependencies = [ 2593 - "hmac", 2594 - ] 2595 - 2596 - [[package]] 2597 - name = "hmac" 2598 - version = "0.12.1" 2599 - source = "registry+https://github.com/rust-lang/crates.io-index" 2600 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2601 - dependencies = [ 2602 - "digest", 2603 - ] 2604 - 2605 - [[package]] 2606 - name = "hmac-sha1" 2607 - version = "0.2.2" 2608 - source = "registry+https://github.com/rust-lang/crates.io-index" 2609 - checksum = "6b05da5b9e5d4720bfb691eebb2b9d42da3570745da71eac8a1f5bb7e59aab88" 2610 - dependencies = [ 2611 - "hmac", 2612 - "sha1", 2613 - ] 2614 - 2615 - [[package]] 2616 - name = "hmac-sha256" 2617 - version = "1.1.7" 2618 - source = "registry+https://github.com/rust-lang/crates.io-index" 2619 - checksum = "3688e69b38018fec1557254f64c8dc2cc8ec502890182f395dbb0aa997aa5735" 2620 - 2621 - [[package]] 2622 - name = "home" 2623 - version = "0.5.9" 2624 - source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2626 - dependencies = [ 2627 - "windows-sys 0.52.0", 2628 - ] 2629 - 2630 - [[package]] 2631 - name = "hostname" 2632 - version = "0.3.1" 2633 - source = "registry+https://github.com/rust-lang/crates.io-index" 2634 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2635 - dependencies = [ 2636 - "libc", 2637 - "match_cfg", 2638 - "winapi", 2639 - ] 2640 - 2641 - [[package]] 2642 - name = "hostname-validator" 2643 - version = "1.1.1" 2644 - source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2" 2646 - 2647 - [[package]] 2648 - name = "http" 2649 - version = "0.2.12" 2650 - source = "registry+https://github.com/rust-lang/crates.io-index" 2651 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2652 - dependencies = [ 2653 - "bytes", 2654 - "fnv", 2655 - "itoa", 2656 - ] 2657 - 2658 - [[package]] 2659 - name = "http" 2660 - version = "1.1.0" 2661 - source = "registry+https://github.com/rust-lang/crates.io-index" 2662 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2663 - dependencies = [ 2664 - "bytes", 2665 - "fnv", 2666 - "itoa", 2667 - ] 2668 - 2669 - [[package]] 2670 - name = "http-body" 2671 - version = "0.4.6" 2672 - source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2674 - dependencies = [ 2675 - "bytes", 2676 - "http 0.2.12", 2677 - "pin-project-lite", 2678 - ] 2679 - 2680 - [[package]] 2681 - name = "http-body" 2682 - version = "1.0.0" 2683 - source = "registry+https://github.com/rust-lang/crates.io-index" 2684 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2685 - dependencies = [ 2686 - "bytes", 2687 - "http 1.1.0", 2688 - ] 2689 - 2690 - [[package]] 2691 - name = "http-body-util" 2692 - version = "0.1.2" 2693 - source = "registry+https://github.com/rust-lang/crates.io-index" 2694 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 2695 - dependencies = [ 2696 - "bytes", 2697 - "futures-util", 2698 - "http 1.1.0", 2699 - "http-body 1.0.0", 2700 - "pin-project-lite", 2701 - ] 2702 - 2703 - [[package]] 2704 - name = "httparse" 2705 - version = "1.8.0" 2706 - source = "registry+https://github.com/rust-lang/crates.io-index" 2707 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2708 - 2709 - [[package]] 2710 - name = "httpdate" 2711 - version = "1.0.3" 2712 - source = "registry+https://github.com/rust-lang/crates.io-index" 2713 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2714 - 2715 - [[package]] 2716 - name = "human-panic" 2717 - version = "2.0.2" 2718 - source = "registry+https://github.com/rust-lang/crates.io-index" 2719 - checksum = "80b84a66a325082740043a6c28bbea400c129eac0d3a27673a1de971e44bf1f7" 2720 - dependencies = [ 2721 - "backtrace", 2722 - "os_info", 2723 - "serde", 2724 - "serde_derive", 2725 - "toml", 2726 - "uuid", 2727 - ] 2728 - 2729 - [[package]] 2730 - name = "humansize" 2731 - version = "2.1.3" 2732 - source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 2734 - dependencies = [ 2735 - "libm", 2736 - ] 2737 - 2738 - [[package]] 2739 - name = "humantime" 2740 - version = "2.1.0" 2741 - source = "registry+https://github.com/rust-lang/crates.io-index" 2742 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2743 - 2744 - [[package]] 2745 - name = "hyper" 2746 - version = "0.14.28" 2747 - source = "registry+https://github.com/rust-lang/crates.io-index" 2748 - checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 2749 - dependencies = [ 2750 - "bytes", 2751 - "futures-channel", 2752 - "futures-core", 2753 - "futures-util", 2754 - "h2", 2755 - "http 0.2.12", 2756 - "http-body 0.4.6", 2757 - "httparse", 2758 - "httpdate", 2759 - "itoa", 2760 - "pin-project-lite", 2761 - "socket2", 2762 - "tokio", 2763 - "tower-service", 2764 - "tracing", 2765 - "want", 2766 - ] 2767 - 2768 - [[package]] 2769 - name = "hyper" 2770 - version = "1.5.0" 2771 - source = "registry+https://github.com/rust-lang/crates.io-index" 2772 - checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" 2773 - dependencies = [ 2774 - "bytes", 2775 - "futures-channel", 2776 - "futures-util", 2777 - "http 1.1.0", 2778 - "http-body 1.0.0", 2779 - "httparse", 2780 - "httpdate", 2781 - "itoa", 2782 - "pin-project-lite", 2783 - "smallvec", 2784 - "tokio", 2785 - "want", 2786 - ] 2787 - 2788 - [[package]] 2789 - name = "hyper-rustls" 2790 - version = "0.27.2" 2791 - source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" 2793 - dependencies = [ 2794 - "futures-util", 2795 - "http 1.1.0", 2796 - "hyper 1.5.0", 2797 - "hyper-util", 2798 - "rustls", 2799 - "rustls-pki-types", 2800 - "tokio", 2801 - "tokio-rustls", 2802 - "tower-service", 2803 - "webpki-roots", 2804 - ] 2805 - 2806 - [[package]] 2807 - name = "hyper-util" 2808 - version = "0.1.10" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 2811 - dependencies = [ 2812 - "bytes", 2813 - "futures-channel", 2814 - "futures-util", 2815 - "http 1.1.0", 2816 - "http-body 1.0.0", 2817 - "hyper 1.5.0", 2818 - "pin-project-lite", 2819 - "socket2", 2820 - "tokio", 2821 - "tower-service", 2822 - "tracing", 2823 - ] 2824 - 2825 - [[package]] 2826 - name = "iana-time-zone" 2827 - version = "0.1.60" 2828 - source = "registry+https://github.com/rust-lang/crates.io-index" 2829 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2830 - dependencies = [ 2831 - "android_system_properties", 2832 - "core-foundation-sys", 2833 - "iana-time-zone-haiku", 2834 - "js-sys", 2835 - "wasm-bindgen", 2836 - "windows-core 0.52.0", 2837 - ] 2838 - 2839 - [[package]] 2840 - name = "iana-time-zone-haiku" 2841 - version = "0.1.2" 2842 - source = "registry+https://github.com/rust-lang/crates.io-index" 2843 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2844 - dependencies = [ 2845 - "cc", 2846 - ] 2847 - 2848 - [[package]] 2849 - name = "idea" 2850 - version = "0.5.1" 2851 - source = "registry+https://github.com/rust-lang/crates.io-index" 2852 - checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477" 2853 - dependencies = [ 2854 - "cipher", 2855 - ] 2856 - 2857 - [[package]] 2858 - name = "ident_case" 2859 - version = "1.0.1" 2860 - source = "registry+https://github.com/rust-lang/crates.io-index" 2861 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2862 - 2863 - [[package]] 2864 - name = "idna" 2865 - version = "0.5.0" 2866 - source = "registry+https://github.com/rust-lang/crates.io-index" 2867 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2868 - dependencies = [ 2869 - "unicode-bidi", 2870 - "unicode-normalization", 2871 - ] 2872 - 2873 - [[package]] 2874 - name = "igd-next" 2875 - version = "0.14.3" 2876 - source = "registry+https://github.com/rust-lang/crates.io-index" 2877 - checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4" 2878 - dependencies = [ 2879 - "async-trait", 2880 - "attohttpc", 2881 - "bytes", 2882 - "futures", 2883 - "http 0.2.12", 2884 - "hyper 0.14.28", 2885 - "log", 2886 - "rand 0.8.5", 2887 - "tokio", 2888 - "url", 2889 - "xmltree", 2890 - ] 2891 - 2892 - [[package]] 2893 - name = "image" 2894 - version = "0.25.4" 2895 - source = "registry+https://github.com/rust-lang/crates.io-index" 2896 - checksum = "bc144d44a31d753b02ce64093d532f55ff8dc4ebf2ffb8a63c0dda691385acae" 2897 - dependencies = [ 2898 - "bytemuck", 2899 - "byteorder-lite", 2900 - "color_quant", 2901 - "gif", 2902 - "image-webp", 2903 - "num-traits", 2904 - "png", 2905 - "zune-core", 2906 - "zune-jpeg", 2907 - ] 2908 - 2909 - [[package]] 2910 - name = "image-webp" 2911 - version = "0.2.0" 2912 - source = "registry+https://github.com/rust-lang/crates.io-index" 2913 - checksum = "e031e8e3d94711a9ccb5d6ea357439ef3dcbed361798bd4071dc4d9793fbe22f" 2914 - dependencies = [ 2915 - "byteorder-lite", 2916 - "quick-error 2.0.1", 2917 - ] 2918 - 2919 - [[package]] 2920 - name = "imap-proto" 2921 - version = "0.16.5" 2922 - source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "de555d9526462b6f9ece826a26fb7c67eca9a0245bd9ff84fa91972a5d5d8856" 2924 - dependencies = [ 2925 - "nom", 2926 - ] 2927 - 2928 - [[package]] 2929 - name = "indexmap" 2930 - version = "2.2.5" 2931 - source = "registry+https://github.com/rust-lang/crates.io-index" 2932 - checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" 2933 - dependencies = [ 2934 - "equivalent", 2935 - "hashbrown", 2936 - ] 2937 - 2938 - [[package]] 2939 - name = "inout" 2940 - version = "0.1.3" 2941 - source = "registry+https://github.com/rust-lang/crates.io-index" 2942 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2943 - dependencies = [ 2944 - "generic-array", 2945 - ] 2946 - 2947 - [[package]] 2948 - name = "instant" 2949 - version = "0.1.12" 2950 - source = "registry+https://github.com/rust-lang/crates.io-index" 2951 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2952 - dependencies = [ 2953 - "cfg-if", 2954 - ] 2955 - 2956 - [[package]] 2957 - name = "ipconfig" 2958 - version = "0.3.2" 2959 - source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 2961 - dependencies = [ 2962 - "socket2", 2963 - "widestring", 2964 - "windows-sys 0.48.0", 2965 - "winreg 0.50.0", 2966 - ] 2967 - 2968 - [[package]] 2969 - name = "ipnet" 2970 - version = "2.9.0" 2971 - source = "registry+https://github.com/rust-lang/crates.io-index" 2972 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2973 - 2974 - [[package]] 2975 - name = "iroh-base" 2976 - version = "0.26.0" 2977 - source = "registry+https://github.com/rust-lang/crates.io-index" 2978 - checksum = "973c0b3c7851fa2e8e6cf4cb81c9f4cab1373848828fafa43dfe25b123a89ff2" 2979 - dependencies = [ 2980 - "aead", 2981 - "anyhow", 2982 - "crypto_box", 2983 - "data-encoding", 2984 - "derive_more", 2985 - "ed25519-dalek", 2986 - "getrandom 0.2.12", 2987 - "hex", 2988 - "iroh-blake3", 2989 - "once_cell", 2990 - "postcard", 2991 - "rand 0.8.5", 2992 - "rand_core 0.6.4", 2993 - "serde", 2994 - "serde-error", 2995 - "ssh-key", 2996 - "thiserror", 2997 - "ttl_cache", 2998 - "url", 2999 - "zeroize", 3000 - ] 3001 - 3002 - [[package]] 3003 - name = "iroh-blake3" 3004 - version = "1.4.5" 3005 - source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "efbba31f40a650f58fa28dd585a8ca76d8ae3ba63aacab4c8269004a0c803930" 3007 - dependencies = [ 3008 - "arrayref", 3009 - "arrayvec", 3010 - "cc", 3011 - "cfg-if", 3012 - "constant_time_eq", 3013 - ] 3014 - 3015 - [[package]] 3016 - name = "iroh-gossip" 3017 - version = "0.26.0" 3018 - source = "registry+https://github.com/rust-lang/crates.io-index" 3019 - checksum = "b44749f361aca7cddcb357b62ef84cad1023771aee03d427c8922991fc4a9561" 3020 - dependencies = [ 3021 - "anyhow", 3022 - "async-channel 2.3.1", 3023 - "bytes", 3024 - "derive_more", 3025 - "ed25519-dalek", 3026 - "futures-concurrency", 3027 - "futures-lite 2.4.0", 3028 - "futures-util", 3029 - "indexmap", 3030 - "iroh-base", 3031 - "iroh-blake3", 3032 - "iroh-metrics", 3033 - "iroh-net", 3034 - "postcard", 3035 - "rand 0.8.5", 3036 - "rand_core 0.6.4", 3037 - "serde", 3038 - "tokio", 3039 - "tokio-util", 3040 - "tracing", 3041 - ] 3042 - 3043 - [[package]] 3044 - name = "iroh-metrics" 3045 - version = "0.26.0" 3046 - source = "registry+https://github.com/rust-lang/crates.io-index" 3047 - checksum = "02edfa7ca1aa89b0b9793d94671e32b79c97d61e9022f082c5eb2b95b64e90c0" 3048 - dependencies = [ 3049 - "anyhow", 3050 - "erased_set", 3051 - "http-body-util", 3052 - "hyper 1.5.0", 3053 - "hyper-util", 3054 - "once_cell", 3055 - "prometheus-client", 3056 - "reqwest", 3057 - "serde", 3058 - "struct_iterable", 3059 - "time 0.3.36", 3060 - "tokio", 3061 - "tracing", 3062 - ] 3063 - 3064 - [[package]] 3065 - name = "iroh-net" 3066 - version = "0.26.0" 3067 - source = "registry+https://github.com/rust-lang/crates.io-index" 3068 - checksum = "329553be056a92eec7802e1c087eed951eec6e60f0f0740491ef16a295be4ca2" 3069 - dependencies = [ 3070 - "anyhow", 3071 - "backoff", 3072 - "base64 0.22.1", 3073 - "bytes", 3074 - "der", 3075 - "derive_more", 3076 - "duct", 3077 - "futures-buffered", 3078 - "futures-concurrency", 3079 - "futures-lite 2.4.0", 3080 - "futures-sink", 3081 - "futures-util", 3082 - "governor", 3083 - "hex", 3084 - "hickory-proto", 3085 - "hickory-resolver", 3086 - "hostname", 3087 - "http 1.1.0", 3088 - "http-body-util", 3089 - "hyper 1.5.0", 3090 - "hyper-util", 3091 - "igd-next", 3092 - "iroh-base", 3093 - "iroh-metrics", 3094 - "iroh-quinn", 3095 - "iroh-quinn-proto", 3096 - "iroh-quinn-udp", 3097 - "libc", 3098 - "netdev", 3099 - "netlink-packet-core", 3100 - "netlink-packet-route", 3101 - "netlink-sys", 3102 - "num_enum", 3103 - "once_cell", 3104 - "parking_lot", 3105 - "pin-project", 3106 - "pkarr", 3107 - "postcard", 3108 - "rand 0.8.5", 3109 - "rcgen", 3110 - "reqwest", 3111 - "ring", 3112 - "rtnetlink", 3113 - "rustls", 3114 - "rustls-webpki", 3115 - "serde", 3116 - "smallvec", 3117 - "socket2", 3118 - "strum", 3119 - "stun-rs", 3120 - "surge-ping", 3121 - "thiserror", 3122 - "time 0.3.36", 3123 - "tokio", 3124 - "tokio-rustls", 3125 - "tokio-stream", 3126 - "tokio-tungstenite", 3127 - "tokio-tungstenite-wasm", 3128 - "tokio-util", 3129 - "tracing", 3130 - "tungstenite", 3131 - "url", 3132 - "watchable", 3133 - "webpki-roots", 3134 - "windows 0.51.1", 3135 - "wmi", 3136 - "x509-parser", 3137 - "z32", 3138 - ] 3139 - 3140 - [[package]] 3141 - name = "iroh-quinn" 3142 - version = "0.11.3" 3143 - source = "registry+https://github.com/rust-lang/crates.io-index" 3144 - checksum = "4fd590a39a14cfc168efa4d894de5039d65641e62d8da4a80733018ababe3c33" 3145 - dependencies = [ 3146 - "bytes", 3147 - "iroh-quinn-proto", 3148 - "iroh-quinn-udp", 3149 - "pin-project-lite", 3150 - "rustc-hash 2.0.0", 3151 - "rustls", 3152 - "socket2", 3153 - "thiserror", 3154 - "tokio", 3155 - "tracing", 3156 - ] 3157 - 3158 - [[package]] 3159 - name = "iroh-quinn-proto" 3160 - version = "0.11.6" 3161 - source = "registry+https://github.com/rust-lang/crates.io-index" 3162 - checksum = "5fd0538ff12efe3d61ea1deda2d7913f4270873a519d43e6995c6e87a1558538" 3163 - dependencies = [ 3164 - "bytes", 3165 - "rand 0.8.5", 3166 - "ring", 3167 - "rustc-hash 2.0.0", 3168 - "rustls", 3169 - "rustls-platform-verifier", 3170 - "slab", 3171 - "thiserror", 3172 - "tinyvec", 3173 - "tracing", 3174 - ] 3175 - 3176 - [[package]] 3177 - name = "iroh-quinn-udp" 3178 - version = "0.5.4" 3179 - source = "registry+https://github.com/rust-lang/crates.io-index" 3180 - checksum = "d0619b59471fdd393ac8a6c047f640171119c1c8b41f7d2927db91776dcdbc5f" 3181 - dependencies = [ 3182 - "libc", 3183 - "once_cell", 3184 - "socket2", 3185 - "tracing", 3186 - "windows-sys 0.59.0", 3187 - ] 3188 - 3189 - [[package]] 3190 - name = "is-terminal" 3191 - version = "0.4.12" 3192 - source = "registry+https://github.com/rust-lang/crates.io-index" 3193 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 3194 - dependencies = [ 3195 - "hermit-abi", 3196 - "libc", 3197 - "windows-sys 0.52.0", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "iter-read" 3202 - version = "1.0.1" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "a598c1abae8e3456ebda517868b254b6bc2a9bb6501ffd5b9d0875bf332e048b" 3205 - 3206 - [[package]] 3207 - name = "itertools" 3208 - version = "0.10.5" 3209 - source = "registry+https://github.com/rust-lang/crates.io-index" 3210 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 3211 - dependencies = [ 3212 - "either", 3213 - ] 3214 - 3215 - [[package]] 3216 - name = "itoa" 3217 - version = "1.0.10" 3218 - source = "registry+https://github.com/rust-lang/crates.io-index" 3219 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 3220 - 3221 - [[package]] 3222 - name = "jni" 3223 - version = "0.19.0" 3224 - source = "registry+https://github.com/rust-lang/crates.io-index" 3225 - checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" 3226 - dependencies = [ 3227 - "cesu8", 3228 - "combine", 3229 - "jni-sys", 3230 - "log", 3231 - "thiserror", 3232 - "walkdir", 3233 - ] 3234 - 3235 - [[package]] 3236 - name = "jni-sys" 3237 - version = "0.3.0" 3238 - source = "registry+https://github.com/rust-lang/crates.io-index" 3239 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 3240 - 3241 - [[package]] 3242 - name = "js-sys" 3243 - version = "0.3.69" 3244 - source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 3246 - dependencies = [ 3247 - "wasm-bindgen", 3248 - ] 3249 - 3250 - [[package]] 3251 - name = "k256" 3252 - version = "0.13.3" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" 3255 - dependencies = [ 3256 - "cfg-if", 3257 - "ecdsa", 3258 - "elliptic-curve", 3259 - "once_cell", 3260 - "sha2", 3261 - "signature", 3262 - ] 3263 - 3264 - [[package]] 3265 - name = "kamadak-exif" 3266 - version = "0.6.0" 3267 - source = "registry+https://github.com/rust-lang/crates.io-index" 3268 - checksum = "99e7b00ff45df279c3e40f7fee99fad4f7eddbf9ed2d24e99133e8683330f0c7" 3269 - dependencies = [ 3270 - "mutate_once", 3271 - ] 3272 - 3273 - [[package]] 3274 - name = "keccak" 3275 - version = "0.1.5" 3276 - source = "registry+https://github.com/rust-lang/crates.io-index" 3277 - checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 3278 - dependencies = [ 3279 - "cpufeatures", 3280 - ] 3281 - 3282 - [[package]] 3283 - name = "lazy_static" 3284 - version = "1.5.0" 3285 - source = "registry+https://github.com/rust-lang/crates.io-index" 3286 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3287 - dependencies = [ 3288 - "spin", 3289 - ] 3290 - 3291 - [[package]] 3292 - name = "lettre" 3293 - version = "0.9.2" 3294 - source = "git+https://github.com/deltachat/lettre?branch=master#2ffdb5347f1255b4aed51cf87cda1f8207160f36" 3295 - dependencies = [ 3296 - "fast_chemail", 3297 - "log", 3298 - ] 3299 - 3300 - [[package]] 3301 - name = "lettre_email" 3302 - version = "0.9.2" 3303 - source = "git+https://github.com/deltachat/lettre?branch=master#2ffdb5347f1255b4aed51cf87cda1f8207160f36" 3304 - dependencies = [ 3305 - "base64 0.11.0", 3306 - "email", 3307 - "lazy_static", 3308 - "lettre", 3309 - "mime", 3310 - "regex", 3311 - "time 0.1.45", 3312 - "uuid", 3313 - ] 3314 - 3315 - [[package]] 3316 - name = "libc" 3317 - version = "0.2.161" 3318 - source = "registry+https://github.com/rust-lang/crates.io-index" 3319 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 3320 - 3321 - [[package]] 3322 - name = "libm" 3323 - version = "0.2.8" 3324 - source = "registry+https://github.com/rust-lang/crates.io-index" 3325 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 3326 - 3327 - [[package]] 3328 - name = "libredox" 3329 - version = "0.0.1" 3330 - source = "registry+https://github.com/rust-lang/crates.io-index" 3331 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 3332 - dependencies = [ 3333 - "bitflags 2.6.0", 3334 - "libc", 3335 - "redox_syscall 0.4.1", 3336 - ] 3337 - 3338 - [[package]] 3339 - name = "libsqlite3-sys" 3340 - version = "0.30.1" 3341 - source = "registry+https://github.com/rust-lang/crates.io-index" 3342 - checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 3343 - dependencies = [ 3344 - "cc", 3345 - "openssl-sys", 3346 - "pkg-config", 3347 - "vcpkg", 3348 - ] 3349 - 3350 - [[package]] 3351 - name = "linked-hash-map" 3352 - version = "0.5.6" 3353 - source = "registry+https://github.com/rust-lang/crates.io-index" 3354 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3355 - 3356 - [[package]] 3357 - name = "linux-raw-sys" 3358 - version = "0.4.14" 3359 - source = "registry+https://github.com/rust-lang/crates.io-index" 3360 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 3361 - 3362 - [[package]] 3363 - name = "litrs" 3364 - version = "0.4.1" 3365 - source = "registry+https://github.com/rust-lang/crates.io-index" 3366 - checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" 3367 - 3368 - [[package]] 3369 - name = "lock_api" 3370 - version = "0.4.11" 3371 - source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 3373 - dependencies = [ 3374 - "autocfg", 3375 - "scopeguard", 3376 - ] 3377 - 3378 - [[package]] 3379 - name = "log" 3380 - version = "0.4.22" 3381 - source = "registry+https://github.com/rust-lang/crates.io-index" 3382 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 3383 - 3384 - [[package]] 3385 - name = "loom" 3386 - version = "0.5.6" 3387 - source = "registry+https://github.com/rust-lang/crates.io-index" 3388 - checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 3389 - dependencies = [ 3390 - "cfg-if", 3391 - "generator", 3392 - "scoped-tls", 3393 - "tracing", 3394 - "tracing-subscriber", 3395 - ] 3396 - 3397 - [[package]] 3398 - name = "lru" 3399 - version = "0.12.3" 3400 - source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 3402 - 3403 - [[package]] 3404 - name = "lru-cache" 3405 - version = "0.1.2" 3406 - source = "registry+https://github.com/rust-lang/crates.io-index" 3407 - checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 3408 - dependencies = [ 3409 - "linked-hash-map", 3410 - ] 3411 - 3412 - [[package]] 3413 - name = "lru_time_cache" 3414 - version = "0.11.11" 3415 - source = "registry+https://github.com/rust-lang/crates.io-index" 3416 - checksum = "9106e1d747ffd48e6be5bb2d97fa706ed25b144fbee4d5c02eae110cd8d6badd" 3417 - 3418 - [[package]] 3419 - name = "mailparse" 3420 - version = "0.15.0" 3421 - source = "registry+https://github.com/rust-lang/crates.io-index" 3422 - checksum = "3da03d5980411a724e8aaf7b61a7b5e386ec55a7fb49ee3d0ff79efc7e5e7c7e" 3423 - dependencies = [ 3424 - "charset", 3425 - "data-encoding", 3426 - "quoted_printable", 3427 - ] 3428 - 3429 - [[package]] 3430 - name = "match_cfg" 3431 - version = "0.1.0" 3432 - source = "registry+https://github.com/rust-lang/crates.io-index" 3433 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 3434 - 3435 - [[package]] 3436 - name = "matchers" 3437 - version = "0.1.0" 3438 - source = "registry+https://github.com/rust-lang/crates.io-index" 3439 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 3440 - dependencies = [ 3441 - "regex-automata 0.1.10", 3442 - ] 3443 - 3444 - [[package]] 3445 - name = "matchit" 3446 - version = "0.7.3" 3447 - source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 3449 - 3450 - [[package]] 3451 - name = "md-5" 3452 - version = "0.10.6" 3453 - source = "registry+https://github.com/rust-lang/crates.io-index" 3454 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 3455 - dependencies = [ 3456 - "cfg-if", 3457 - "digest", 3458 - ] 3459 - 3460 - [[package]] 3461 - name = "md5" 3462 - version = "0.7.0" 3463 - source = "registry+https://github.com/rust-lang/crates.io-index" 3464 - checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 3465 - 3466 - [[package]] 3467 - name = "memalloc" 3468 - version = "0.1.0" 3469 - source = "registry+https://github.com/rust-lang/crates.io-index" 3470 - checksum = "df39d232f5c40b0891c10216992c2f250c054105cb1e56f0fc9032db6203ecc1" 3471 - 3472 - [[package]] 3473 - name = "memchr" 3474 - version = "2.7.1" 3475 - source = "registry+https://github.com/rust-lang/crates.io-index" 3476 - checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 3477 - 3478 - [[package]] 3479 - name = "mime" 3480 - version = "0.3.17" 3481 - source = "registry+https://github.com/rust-lang/crates.io-index" 3482 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3483 - 3484 - [[package]] 3485 - name = "minimal-lexical" 3486 - version = "0.2.1" 3487 - source = "registry+https://github.com/rust-lang/crates.io-index" 3488 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3489 - 3490 - [[package]] 3491 - name = "miniz_oxide" 3492 - version = "0.7.2" 3493 - source = "registry+https://github.com/rust-lang/crates.io-index" 3494 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 3495 - dependencies = [ 3496 - "adler", 3497 - "simd-adler32", 3498 - ] 3499 - 3500 - [[package]] 3501 - name = "mio" 3502 - version = "0.8.11" 3503 - source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 3505 - dependencies = [ 3506 - "libc", 3507 - "wasi 0.11.0+wasi-snapshot-preview1", 3508 - "windows-sys 0.48.0", 3509 - ] 3510 - 3511 - [[package]] 3512 - name = "mutate_once" 3513 - version = "0.1.1" 3514 - source = "registry+https://github.com/rust-lang/crates.io-index" 3515 - checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b" 3516 - 3517 - [[package]] 3518 - name = "nanorand" 3519 - version = "0.7.0" 3520 - source = "registry+https://github.com/rust-lang/crates.io-index" 3521 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 3522 - dependencies = [ 3523 - "getrandom 0.2.12", 3524 - ] 3525 - 3526 - [[package]] 3527 - name = "native-tls" 3528 - version = "0.2.11" 3529 - source = "registry+https://github.com/rust-lang/crates.io-index" 3530 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 3531 - dependencies = [ 3532 - "lazy_static", 3533 - "libc", 3534 - "log", 3535 - "openssl", 3536 - "openssl-probe", 3537 - "openssl-sys", 3538 - "schannel", 3539 - "security-framework", 3540 - "security-framework-sys", 3541 - "tempfile", 3542 - ] 3543 - 3544 - [[package]] 3545 - name = "netdev" 3546 - version = "0.30.0" 3547 - source = "registry+https://github.com/rust-lang/crates.io-index" 3548 - checksum = "7516ad2c46cc25da098ed7d6b9a0cbe9e1fbffbd04b1596148b95f2841179c83" 3549 - dependencies = [ 3550 - "dlopen2", 3551 - "libc", 3552 - "memalloc", 3553 - "netlink-packet-core", 3554 - "netlink-packet-route", 3555 - "netlink-sys", 3556 - "once_cell", 3557 - "system-configuration", 3558 - "windows-sys 0.52.0", 3559 - ] 3560 - 3561 - [[package]] 3562 - name = "netlink-packet-core" 3563 - version = "0.7.0" 3564 - source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4" 3566 - dependencies = [ 3567 - "anyhow", 3568 - "byteorder", 3569 - "netlink-packet-utils", 3570 - ] 3571 - 3572 - [[package]] 3573 - name = "netlink-packet-route" 3574 - version = "0.17.1" 3575 - source = "registry+https://github.com/rust-lang/crates.io-index" 3576 - checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66" 3577 - dependencies = [ 3578 - "anyhow", 3579 - "bitflags 1.3.2", 3580 - "byteorder", 3581 - "libc", 3582 - "netlink-packet-core", 3583 - "netlink-packet-utils", 3584 - ] 3585 - 3586 - [[package]] 3587 - name = "netlink-packet-utils" 3588 - version = "0.5.2" 3589 - source = "registry+https://github.com/rust-lang/crates.io-index" 3590 - checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" 3591 - dependencies = [ 3592 - "anyhow", 3593 - "byteorder", 3594 - "paste", 3595 - "thiserror", 3596 - ] 3597 - 3598 - [[package]] 3599 - name = "netlink-proto" 3600 - version = "0.11.3" 3601 - source = "registry+https://github.com/rust-lang/crates.io-index" 3602 - checksum = "86b33524dc0968bfad349684447bfce6db937a9ac3332a1fe60c0c5a5ce63f21" 3603 - dependencies = [ 3604 - "bytes", 3605 - "futures", 3606 - "log", 3607 - "netlink-packet-core", 3608 - "netlink-sys", 3609 - "thiserror", 3610 - "tokio", 3611 - ] 3612 - 3613 - [[package]] 3614 - name = "netlink-sys" 3615 - version = "0.8.5" 3616 - source = "registry+https://github.com/rust-lang/crates.io-index" 3617 - checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" 3618 - dependencies = [ 3619 - "bytes", 3620 - "futures", 3621 - "libc", 3622 - "log", 3623 - "tokio", 3624 - ] 3625 - 3626 - [[package]] 3627 - name = "nibble_vec" 3628 - version = "0.1.0" 3629 - source = "registry+https://github.com/rust-lang/crates.io-index" 3630 - checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 3631 - dependencies = [ 3632 - "smallvec", 3633 - ] 3634 - 3635 - [[package]] 3636 - name = "nix" 3637 - version = "0.26.4" 3638 - source = "registry+https://github.com/rust-lang/crates.io-index" 3639 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3640 - dependencies = [ 3641 - "bitflags 1.3.2", 3642 - "cfg-if", 3643 - "libc", 3644 - ] 3645 - 3646 - [[package]] 3647 - name = "nix" 3648 - version = "0.28.0" 3649 - source = "registry+https://github.com/rust-lang/crates.io-index" 3650 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 3651 - dependencies = [ 3652 - "bitflags 2.6.0", 3653 - "cfg-if", 3654 - "cfg_aliases", 3655 - "libc", 3656 - ] 3657 - 3658 - [[package]] 3659 - name = "no-std-compat" 3660 - version = "0.4.1" 3661 - source = "registry+https://github.com/rust-lang/crates.io-index" 3662 - checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" 3663 - 3664 - [[package]] 3665 - name = "no-std-net" 3666 - version = "0.6.0" 3667 - source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" 3669 - 3670 - [[package]] 3671 - name = "nom" 3672 - version = "7.1.3" 3673 - source = "registry+https://github.com/rust-lang/crates.io-index" 3674 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3675 - dependencies = [ 3676 - "memchr", 3677 - "minimal-lexical", 3678 - ] 3679 - 3680 - [[package]] 3681 - name = "nonzero_ext" 3682 - version = "0.3.0" 3683 - source = "registry+https://github.com/rust-lang/crates.io-index" 3684 - checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 3685 - 3686 - [[package]] 3687 - name = "ntapi" 3688 - version = "0.4.1" 3689 - source = "registry+https://github.com/rust-lang/crates.io-index" 3690 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3691 - dependencies = [ 3692 - "winapi", 3693 - ] 3694 - 3695 - [[package]] 3696 - name = "nu-ansi-term" 3697 - version = "0.46.0" 3698 - source = "registry+https://github.com/rust-lang/crates.io-index" 3699 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 3700 - dependencies = [ 3701 - "overload", 3702 - "winapi", 3703 - ] 3704 - 3705 - [[package]] 3706 - name = "num-bigint" 3707 - version = "0.4.6" 3708 - source = "registry+https://github.com/rust-lang/crates.io-index" 3709 - checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3710 - dependencies = [ 3711 - "num-integer", 3712 - "num-traits", 3713 - ] 3714 - 3715 - [[package]] 3716 - name = "num-bigint-dig" 3717 - version = "0.8.4" 3718 - source = "registry+https://github.com/rust-lang/crates.io-index" 3719 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 3720 - dependencies = [ 3721 - "byteorder", 3722 - "lazy_static", 3723 - "libm", 3724 - "num-integer", 3725 - "num-iter", 3726 - "num-traits", 3727 - "rand 0.8.5", 3728 - "serde", 3729 - "smallvec", 3730 - "zeroize", 3731 - ] 3732 - 3733 - [[package]] 3734 - name = "num-conv" 3735 - version = "0.1.0" 3736 - source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3738 - 3739 - [[package]] 3740 - name = "num-derive" 3741 - version = "0.4.2" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 3744 - dependencies = [ 3745 - "proc-macro2", 3746 - "quote", 3747 - "syn 2.0.86", 3748 - ] 3749 - 3750 - [[package]] 3751 - name = "num-integer" 3752 - version = "0.1.46" 3753 - source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3755 - dependencies = [ 3756 - "num-traits", 3757 - ] 3758 - 3759 - [[package]] 3760 - name = "num-iter" 3761 - version = "0.1.44" 3762 - source = "registry+https://github.com/rust-lang/crates.io-index" 3763 - checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" 3764 - dependencies = [ 3765 - "autocfg", 3766 - "num-integer", 3767 - "num-traits", 3768 - ] 3769 - 3770 - [[package]] 3771 - name = "num-traits" 3772 - version = "0.2.19" 3773 - source = "registry+https://github.com/rust-lang/crates.io-index" 3774 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3775 - dependencies = [ 3776 - "autocfg", 3777 - "libm", 3778 - ] 3779 - 3780 - [[package]] 3781 - name = "num_cpus" 3782 - version = "1.16.0" 3783 - source = "registry+https://github.com/rust-lang/crates.io-index" 3784 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 3785 - dependencies = [ 3786 - "hermit-abi", 3787 - "libc", 3788 - ] 3789 - 3790 - [[package]] 3791 - name = "num_enum" 3792 - version = "0.7.3" 3793 - source = "registry+https://github.com/rust-lang/crates.io-index" 3794 - checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 3795 - dependencies = [ 3796 - "num_enum_derive", 3797 - ] 3798 - 3799 - [[package]] 3800 - name = "num_enum_derive" 3801 - version = "0.7.3" 3802 - source = "registry+https://github.com/rust-lang/crates.io-index" 3803 - checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 3804 - dependencies = [ 3805 - "proc-macro-crate", 3806 - "proc-macro2", 3807 - "quote", 3808 - "syn 2.0.86", 3809 - ] 3810 - 3811 - [[package]] 3812 - name = "object" 3813 - version = "0.36.1" 3814 - source = "registry+https://github.com/rust-lang/crates.io-index" 3815 - checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce" 3816 - dependencies = [ 3817 - "memchr", 3818 - ] 3819 - 3820 - [[package]] 3821 - name = "ocb3" 3822 - version = "0.1.0" 3823 - source = "registry+https://github.com/rust-lang/crates.io-index" 3824 - checksum = "c196e0276c471c843dd5777e7543a36a298a4be942a2a688d8111cd43390dedb" 3825 - dependencies = [ 3826 - "aead", 3827 - "cipher", 3828 - "ctr", 3829 - "subtle", 3830 - ] 3831 - 3832 - [[package]] 3833 - name = "oid-registry" 3834 - version = "0.7.1" 3835 - source = "registry+https://github.com/rust-lang/crates.io-index" 3836 - checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 3837 - dependencies = [ 3838 - "asn1-rs", 3839 - ] 3840 - 3841 - [[package]] 3842 - name = "once_cell" 3843 - version = "1.20.2" 3844 - source = "registry+https://github.com/rust-lang/crates.io-index" 3845 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 3846 - 3847 - [[package]] 3848 - name = "oorandom" 3849 - version = "11.1.3" 3850 - source = "registry+https://github.com/rust-lang/crates.io-index" 3851 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3852 - 3853 - [[package]] 3854 - name = "opaque-debug" 3855 - version = "0.3.1" 3856 - source = "registry+https://github.com/rust-lang/crates.io-index" 3857 - checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3858 - 3859 - [[package]] 3860 - name = "openssl" 3861 - version = "0.10.66" 3862 - source = "registry+https://github.com/rust-lang/crates.io-index" 3863 - checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" 3864 - dependencies = [ 3865 - "bitflags 2.6.0", 3866 - "cfg-if", 3867 - "foreign-types", 3868 - "libc", 3869 - "once_cell", 3870 - "openssl-macros", 3871 - "openssl-sys", 3872 - ] 3873 - 3874 - [[package]] 3875 - name = "openssl-macros" 3876 - version = "0.1.1" 3877 - source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3879 - dependencies = [ 3880 - "proc-macro2", 3881 - "quote", 3882 - "syn 2.0.86", 3883 - ] 3884 - 3885 - [[package]] 3886 - name = "openssl-probe" 3887 - version = "0.1.5" 3888 - source = "registry+https://github.com/rust-lang/crates.io-index" 3889 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3890 - 3891 - [[package]] 3892 - name = "openssl-src" 3893 - version = "300.3.0+3.3.0" 3894 - source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "eba8804a1c5765b18c4b3f907e6897ebabeedebc9830e1a0046c4a4cf44663e1" 3896 - dependencies = [ 3897 - "cc", 3898 - ] 3899 - 3900 - [[package]] 3901 - name = "openssl-sys" 3902 - version = "0.9.103" 3903 - source = "registry+https://github.com/rust-lang/crates.io-index" 3904 - checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" 3905 - dependencies = [ 3906 - "cc", 3907 - "libc", 3908 - "openssl-src", 3909 - "pkg-config", 3910 - "vcpkg", 3911 - ] 3912 - 3913 - [[package]] 3914 - name = "option-ext" 3915 - version = "0.2.0" 3916 - source = "registry+https://github.com/rust-lang/crates.io-index" 3917 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3918 - 3919 - [[package]] 3920 - name = "os_info" 3921 - version = "3.7.0" 3922 - source = "registry+https://github.com/rust-lang/crates.io-index" 3923 - checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 3924 - dependencies = [ 3925 - "log", 3926 - "serde", 3927 - "winapi", 3928 - ] 3929 - 3930 - [[package]] 3931 - name = "os_pipe" 3932 - version = "1.1.5" 3933 - source = "registry+https://github.com/rust-lang/crates.io-index" 3934 - checksum = "57119c3b893986491ec9aa85056780d3a0f3cf4da7cc09dd3650dbd6c6738fb9" 3935 - dependencies = [ 3936 - "libc", 3937 - "windows-sys 0.52.0", 3938 - ] 3939 - 3940 - [[package]] 3941 - name = "overload" 3942 - version = "0.1.1" 3943 - source = "registry+https://github.com/rust-lang/crates.io-index" 3944 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3945 - 3946 - [[package]] 3947 - name = "p256" 3948 - version = "0.13.2" 3949 - source = "registry+https://github.com/rust-lang/crates.io-index" 3950 - checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 3951 - dependencies = [ 3952 - "ecdsa", 3953 - "elliptic-curve", 3954 - "primeorder", 3955 - "sha2", 3956 - ] 3957 - 3958 - [[package]] 3959 - name = "p384" 3960 - version = "0.13.0" 3961 - source = "registry+https://github.com/rust-lang/crates.io-index" 3962 - checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 3963 - dependencies = [ 3964 - "ecdsa", 3965 - "elliptic-curve", 3966 - "primeorder", 3967 - "sha2", 3968 - ] 3969 - 3970 - [[package]] 3971 - name = "p521" 3972 - version = "0.13.3" 3973 - source = "registry+https://github.com/rust-lang/crates.io-index" 3974 - checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" 3975 - dependencies = [ 3976 - "base16ct", 3977 - "ecdsa", 3978 - "elliptic-curve", 3979 - "primeorder", 3980 - "rand_core 0.6.4", 3981 - "sha2", 3982 - ] 3983 - 3984 - [[package]] 3985 - name = "parking" 3986 - version = "2.2.0" 3987 - source = "registry+https://github.com/rust-lang/crates.io-index" 3988 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3989 - 3990 - [[package]] 3991 - name = "parking_lot" 3992 - version = "0.12.3" 3993 - source = "registry+https://github.com/rust-lang/crates.io-index" 3994 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3995 - dependencies = [ 3996 - "lock_api", 3997 - "parking_lot_core", 3998 - ] 3999 - 4000 - [[package]] 4001 - name = "parking_lot_core" 4002 - version = "0.9.9" 4003 - source = "registry+https://github.com/rust-lang/crates.io-index" 4004 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 4005 - dependencies = [ 4006 - "cfg-if", 4007 - "libc", 4008 - "redox_syscall 0.4.1", 4009 - "smallvec", 4010 - "windows-targets 0.48.5", 4011 - ] 4012 - 4013 - [[package]] 4014 - name = "password-hash" 4015 - version = "0.5.0" 4016 - source = "registry+https://github.com/rust-lang/crates.io-index" 4017 - checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 4018 - dependencies = [ 4019 - "base64ct", 4020 - "rand_core 0.6.4", 4021 - "subtle", 4022 - ] 4023 - 4024 - [[package]] 4025 - name = "paste" 4026 - version = "1.0.14" 4027 - source = "registry+https://github.com/rust-lang/crates.io-index" 4028 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 4029 - 4030 - [[package]] 4031 - name = "pem" 4032 - version = "3.0.4" 4033 - source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 4035 - dependencies = [ 4036 - "base64 0.22.1", 4037 - "serde", 4038 - ] 4039 - 4040 - [[package]] 4041 - name = "pem-rfc7468" 4042 - version = "0.7.0" 4043 - source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 4045 - dependencies = [ 4046 - "base64ct", 4047 - ] 4048 - 4049 - [[package]] 4050 - name = "percent-encoding" 4051 - version = "2.3.1" 4052 - source = "registry+https://github.com/rust-lang/crates.io-index" 4053 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 4054 - 4055 - [[package]] 4056 - name = "pest" 4057 - version = "2.7.10" 4058 - source = "registry+https://github.com/rust-lang/crates.io-index" 4059 - checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" 4060 - dependencies = [ 4061 - "memchr", 4062 - "thiserror", 4063 - "ucd-trie", 4064 - ] 4065 - 4066 - [[package]] 4067 - name = "pest_derive" 4068 - version = "2.7.10" 4069 - source = "registry+https://github.com/rust-lang/crates.io-index" 4070 - checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" 4071 - dependencies = [ 4072 - "pest", 4073 - "pest_generator", 4074 - ] 4075 - 4076 - [[package]] 4077 - name = "pest_generator" 4078 - version = "2.7.10" 4079 - source = "registry+https://github.com/rust-lang/crates.io-index" 4080 - checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" 4081 - dependencies = [ 4082 - "pest", 4083 - "pest_meta", 4084 - "proc-macro2", 4085 - "quote", 4086 - "syn 2.0.86", 4087 - ] 4088 - 4089 - [[package]] 4090 - name = "pest_meta" 4091 - version = "2.7.10" 4092 - source = "registry+https://github.com/rust-lang/crates.io-index" 4093 - checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" 4094 - dependencies = [ 4095 - "once_cell", 4096 - "pest", 4097 - "sha2", 4098 - ] 4099 - 4100 - [[package]] 4101 - name = "pgp" 4102 - version = "0.13.2" 4103 - source = "registry+https://github.com/rust-lang/crates.io-index" 4104 - checksum = "4a6c842436d5fa2b59eac1e9b3d142b50bfff99c1744c816b1f4c2ac55a20754" 4105 - dependencies = [ 4106 - "aes", 4107 - "aes-gcm", 4108 - "argon2", 4109 - "base64 0.22.1", 4110 - "bitfield", 4111 - "block-padding", 4112 - "blowfish", 4113 - "bstr", 4114 - "buffer-redux", 4115 - "byteorder", 4116 - "camellia", 4117 - "cast5", 4118 - "cfb-mode", 4119 - "chrono", 4120 - "cipher", 4121 - "const-oid", 4122 - "crc24", 4123 - "curve25519-dalek", 4124 - "derive_builder", 4125 - "des", 4126 - "digest", 4127 - "dsa", 4128 - "eax", 4129 - "ecdsa", 4130 - "ed25519-dalek", 4131 - "elliptic-curve", 4132 - "flate2", 4133 - "generic-array", 4134 - "hex", 4135 - "hkdf", 4136 - "idea", 4137 - "iter-read", 4138 - "k256", 4139 - "log", 4140 - "md-5", 4141 - "nom", 4142 - "num-bigint-dig", 4143 - "num-traits", 4144 - "num_enum", 4145 - "ocb3", 4146 - "p256", 4147 - "p384", 4148 - "p521", 4149 - "rand 0.8.5", 4150 - "ripemd", 4151 - "rsa", 4152 - "sha1", 4153 - "sha1-checked", 4154 - "sha2", 4155 - "sha3", 4156 - "signature", 4157 - "smallvec", 4158 - "thiserror", 4159 - "twofish", 4160 - "x25519-dalek", 4161 - "zeroize", 4162 - ] 4163 - 4164 - [[package]] 4165 - name = "pin-project" 4166 - version = "1.1.7" 4167 - source = "registry+https://github.com/rust-lang/crates.io-index" 4168 - checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" 4169 - dependencies = [ 4170 - "pin-project-internal", 4171 - ] 4172 - 4173 - [[package]] 4174 - name = "pin-project-internal" 4175 - version = "1.1.7" 4176 - source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" 4178 - dependencies = [ 4179 - "proc-macro2", 4180 - "quote", 4181 - "syn 2.0.86", 4182 - ] 4183 - 4184 - [[package]] 4185 - name = "pin-project-lite" 4186 - version = "0.2.13" 4187 - source = "registry+https://github.com/rust-lang/crates.io-index" 4188 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 4189 - 4190 - [[package]] 4191 - name = "pin-utils" 4192 - version = "0.1.0" 4193 - source = "registry+https://github.com/rust-lang/crates.io-index" 4194 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4195 - 4196 - [[package]] 4197 - name = "pkarr" 4198 - version = "2.0.3" 4199 - source = "registry+https://github.com/rust-lang/crates.io-index" 4200 - checksum = "89f9e12544b00f5561253bbd3cb72a85ff3bc398483dc1bf82bdf095c774136b" 4201 - dependencies = [ 4202 - "bytes", 4203 - "document-features", 4204 - "ed25519-dalek", 4205 - "flume", 4206 - "futures", 4207 - "js-sys", 4208 - "lru", 4209 - "self_cell", 4210 - "simple-dns", 4211 - "thiserror", 4212 - "tracing", 4213 - "ureq", 4214 - "wasm-bindgen", 4215 - "wasm-bindgen-futures", 4216 - "web-sys", 4217 - "z32", 4218 - ] 4219 - 4220 - [[package]] 4221 - name = "pkcs1" 4222 - version = "0.7.5" 4223 - source = "registry+https://github.com/rust-lang/crates.io-index" 4224 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 4225 - dependencies = [ 4226 - "der", 4227 - "pkcs8", 4228 - "spki", 4229 - ] 4230 - 4231 - [[package]] 4232 - name = "pkcs8" 4233 - version = "0.10.2" 4234 - source = "registry+https://github.com/rust-lang/crates.io-index" 4235 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 4236 - dependencies = [ 4237 - "der", 4238 - "spki", 4239 - ] 4240 - 4241 - [[package]] 4242 - name = "pkg-config" 4243 - version = "0.3.30" 4244 - source = "registry+https://github.com/rust-lang/crates.io-index" 4245 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 4246 - 4247 - [[package]] 4248 - name = "plotters" 4249 - version = "0.3.5" 4250 - source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 4252 - dependencies = [ 4253 - "num-traits", 4254 - "plotters-backend", 4255 - "plotters-svg", 4256 - "wasm-bindgen", 4257 - "web-sys", 4258 - ] 4259 - 4260 - [[package]] 4261 - name = "plotters-backend" 4262 - version = "0.3.5" 4263 - source = "registry+https://github.com/rust-lang/crates.io-index" 4264 - checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 4265 - 4266 - [[package]] 4267 - name = "plotters-svg" 4268 - version = "0.3.5" 4269 - source = "registry+https://github.com/rust-lang/crates.io-index" 4270 - checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 4271 - dependencies = [ 4272 - "plotters-backend", 4273 - ] 4274 - 4275 - [[package]] 4276 - name = "pnet_base" 4277 - version = "0.34.0" 4278 - source = "registry+https://github.com/rust-lang/crates.io-index" 4279 - checksum = "fe4cf6fb3ab38b68d01ab2aea03ed3d1132b4868fa4e06285f29f16da01c5f4c" 4280 - dependencies = [ 4281 - "no-std-net", 4282 - ] 4283 - 4284 - [[package]] 4285 - name = "pnet_macros" 4286 - version = "0.34.0" 4287 - source = "registry+https://github.com/rust-lang/crates.io-index" 4288 - checksum = "688b17499eee04a0408aca0aa5cba5fc86401d7216de8a63fdf7a4c227871804" 4289 - dependencies = [ 4290 - "proc-macro2", 4291 - "quote", 4292 - "regex", 4293 - "syn 2.0.86", 4294 - ] 4295 - 4296 - [[package]] 4297 - name = "pnet_macros_support" 4298 - version = "0.34.0" 4299 - source = "registry+https://github.com/rust-lang/crates.io-index" 4300 - checksum = "eea925b72f4bd37f8eab0f221bbe4c78b63498350c983ffa9dd4bcde7e030f56" 4301 - dependencies = [ 4302 - "pnet_base", 4303 - ] 4304 - 4305 - [[package]] 4306 - name = "pnet_packet" 4307 - version = "0.34.0" 4308 - source = "registry+https://github.com/rust-lang/crates.io-index" 4309 - checksum = "a9a005825396b7fe7a38a8e288dbc342d5034dac80c15212436424fef8ea90ba" 4310 - dependencies = [ 4311 - "glob", 4312 - "pnet_base", 4313 - "pnet_macros", 4314 - "pnet_macros_support", 4315 - ] 4316 - 4317 - [[package]] 4318 - name = "png" 4319 - version = "0.17.13" 4320 - source = "registry+https://github.com/rust-lang/crates.io-index" 4321 - checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 4322 - dependencies = [ 4323 - "bitflags 1.3.2", 4324 - "crc32fast", 4325 - "fdeflate", 4326 - "flate2", 4327 - "miniz_oxide", 4328 - ] 4329 - 4330 - [[package]] 4331 - name = "poly1305" 4332 - version = "0.8.0" 4333 - source = "registry+https://github.com/rust-lang/crates.io-index" 4334 - checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 4335 - dependencies = [ 4336 - "cpufeatures", 4337 - "opaque-debug", 4338 - "universal-hash", 4339 - ] 4340 - 4341 - [[package]] 4342 - name = "polyval" 4343 - version = "0.6.2" 4344 - source = "registry+https://github.com/rust-lang/crates.io-index" 4345 - checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 4346 - dependencies = [ 4347 - "cfg-if", 4348 - "cpufeatures", 4349 - "opaque-debug", 4350 - "universal-hash", 4351 - ] 4352 - 4353 - [[package]] 4354 - name = "portable-atomic" 4355 - version = "1.6.0" 4356 - source = "registry+https://github.com/rust-lang/crates.io-index" 4357 - checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 4358 - 4359 - [[package]] 4360 - name = "postcard" 4361 - version = "1.0.8" 4362 - source = "registry+https://github.com/rust-lang/crates.io-index" 4363 - checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" 4364 - dependencies = [ 4365 - "cobs", 4366 - "const_format", 4367 - "embedded-io", 4368 - "postcard-derive", 4369 - "serde", 4370 - ] 4371 - 4372 - [[package]] 4373 - name = "postcard-derive" 4374 - version = "0.1.1" 4375 - source = "registry+https://github.com/rust-lang/crates.io-index" 4376 - checksum = "fc4b01218787dd4420daf63875163a787a78294ad48a24e9f6fa8c6507759a79" 4377 - dependencies = [ 4378 - "proc-macro2", 4379 - "quote", 4380 - "syn 1.0.109", 4381 - ] 4382 - 4383 - [[package]] 4384 - name = "powerfmt" 4385 - version = "0.2.0" 4386 - source = "registry+https://github.com/rust-lang/crates.io-index" 4387 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4388 - 4389 - [[package]] 4390 - name = "ppv-lite86" 4391 - version = "0.2.17" 4392 - source = "registry+https://github.com/rust-lang/crates.io-index" 4393 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 4394 - 4395 - [[package]] 4396 - name = "precis-core" 4397 - version = "0.1.9" 4398 - source = "registry+https://github.com/rust-lang/crates.io-index" 4399 - checksum = "d73e9dd26361c32e7cd13d1032bb01c4e26a23287274e8a4e2f228cf2c9ff77b" 4400 - dependencies = [ 4401 - "precis-tools", 4402 - "ucd-parse", 4403 - "unicode-normalization", 4404 - ] 4405 - 4406 - [[package]] 4407 - name = "precis-profiles" 4408 - version = "0.1.10" 4409 - source = "registry+https://github.com/rust-lang/crates.io-index" 4410 - checksum = "bde4bd6624c60cb0abe2bea1dbdbb9085f629a853861e64df4abb099f8076ad4" 4411 - dependencies = [ 4412 - "lazy_static", 4413 - "precis-core", 4414 - "precis-tools", 4415 - "unicode-normalization", 4416 - ] 4417 - 4418 - [[package]] 4419 - name = "precis-tools" 4420 - version = "0.1.7" 4421 - source = "registry+https://github.com/rust-lang/crates.io-index" 4422 - checksum = "d07ecadec70b0f560f09abf815ae0ee1a940d38d2354c938ba7229ac7c9f5f52" 4423 - dependencies = [ 4424 - "lazy_static", 4425 - "regex", 4426 - "ucd-parse", 4427 - ] 4428 - 4429 - [[package]] 4430 - name = "pretty_assertions" 4431 - version = "1.4.1" 4432 - source = "registry+https://github.com/rust-lang/crates.io-index" 4433 - checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 4434 - dependencies = [ 4435 - "diff", 4436 - "yansi", 4437 - ] 4438 - 4439 - [[package]] 4440 - name = "primeorder" 4441 - version = "0.13.6" 4442 - source = "registry+https://github.com/rust-lang/crates.io-index" 4443 - checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 4444 - dependencies = [ 4445 - "elliptic-curve", 4446 - ] 4447 - 4448 - [[package]] 4449 - name = "proc-macro-crate" 4450 - version = "3.2.0" 4451 - source = "registry+https://github.com/rust-lang/crates.io-index" 4452 - checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 4453 - dependencies = [ 4454 - "toml_edit", 4455 - ] 4456 - 4457 - [[package]] 4458 - name = "proc-macro-error-attr2" 4459 - version = "2.0.0" 4460 - source = "registry+https://github.com/rust-lang/crates.io-index" 4461 - checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 4462 - dependencies = [ 4463 - "proc-macro2", 4464 - "quote", 4465 - ] 4466 - 4467 - [[package]] 4468 - name = "proc-macro-error2" 4469 - version = "2.0.1" 4470 - source = "registry+https://github.com/rust-lang/crates.io-index" 4471 - checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 4472 - dependencies = [ 4473 - "proc-macro-error-attr2", 4474 - "proc-macro2", 4475 - "quote", 4476 - "syn 2.0.86", 4477 - ] 4478 - 4479 - [[package]] 4480 - name = "proc-macro2" 4481 - version = "1.0.86" 4482 - source = "registry+https://github.com/rust-lang/crates.io-index" 4483 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 4484 - dependencies = [ 4485 - "unicode-ident", 4486 - ] 4487 - 4488 - [[package]] 4489 - name = "prometheus-client" 4490 - version = "0.22.2" 4491 - source = "registry+https://github.com/rust-lang/crates.io-index" 4492 - checksum = "c1ca959da22a332509f2a73ae9e5f23f9dcfc31fd3a54d71f159495bd5909baa" 4493 - dependencies = [ 4494 - "dtoa", 4495 - "itoa", 4496 - "parking_lot", 4497 - "prometheus-client-derive-encode", 4498 - ] 4499 - 4500 - [[package]] 4501 - name = "prometheus-client-derive-encode" 4502 - version = "0.4.2" 4503 - source = "registry+https://github.com/rust-lang/crates.io-index" 4504 - checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" 4505 - dependencies = [ 4506 - "proc-macro2", 4507 - "quote", 4508 - "syn 2.0.86", 4509 - ] 4510 - 4511 - [[package]] 4512 - name = "proptest" 4513 - version = "1.5.0" 4514 - source = "registry+https://github.com/rust-lang/crates.io-index" 4515 - checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" 4516 - dependencies = [ 4517 - "bitflags 2.6.0", 4518 - "lazy_static", 4519 - "num-traits", 4520 - "rand 0.8.5", 4521 - "rand_chacha 0.3.1", 4522 - "rand_xorshift", 4523 - "regex-syntax 0.8.2", 4524 - "unarray", 4525 - ] 4526 - 4527 - [[package]] 4528 - name = "qr2term" 4529 - version = "0.3.3" 4530 - source = "registry+https://github.com/rust-lang/crates.io-index" 4531 - checksum = "6867c60b38e9747a079a19614dbb5981a53f21b9a56c265f3bfdf6011a50a957" 4532 - dependencies = [ 4533 - "crossterm", 4534 - "qrcode", 4535 - ] 4536 - 4537 - [[package]] 4538 - name = "qrcode" 4539 - version = "0.14.1" 4540 - source = "registry+https://github.com/rust-lang/crates.io-index" 4541 - checksum = "d68782463e408eb1e668cf6152704bd856c78c5b6417adaee3203d8f4c1fc9ec" 4542 - 4543 - [[package]] 4544 - name = "qrcodegen" 4545 - version = "1.8.0" 4546 - source = "registry+https://github.com/rust-lang/crates.io-index" 4547 - checksum = "4339fc7a1021c9c1621d87f5e3505f2805c8c105420ba2f2a4df86814590c142" 4548 - 4549 - [[package]] 4550 - name = "quanta" 4551 - version = "0.12.3" 4552 - source = "registry+https://github.com/rust-lang/crates.io-index" 4553 - checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" 4554 - dependencies = [ 4555 - "crossbeam-utils", 4556 - "libc", 4557 - "once_cell", 4558 - "raw-cpuid", 4559 - "wasi 0.11.0+wasi-snapshot-preview1", 4560 - "web-sys", 4561 - "winapi", 4562 - ] 4563 - 4564 - [[package]] 4565 - name = "quick-error" 4566 - version = "1.2.3" 4567 - source = "registry+https://github.com/rust-lang/crates.io-index" 4568 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 4569 - 4570 - [[package]] 4571 - name = "quick-error" 4572 - version = "2.0.1" 4573 - source = "registry+https://github.com/rust-lang/crates.io-index" 4574 - checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 4575 - 4576 - [[package]] 4577 - name = "quick-xml" 4578 - version = "0.37.0" 4579 - source = "registry+https://github.com/rust-lang/crates.io-index" 4580 - checksum = "ffbfb3ddf5364c9cfcd65549a1e7b801d0e8d1b14c1a1590a6408aa93cfbfa84" 4581 - dependencies = [ 4582 - "memchr", 4583 - ] 4584 - 4585 - [[package]] 4586 - name = "quinn" 4587 - version = "0.11.2" 4588 - source = "registry+https://github.com/rust-lang/crates.io-index" 4589 - checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" 4590 - dependencies = [ 4591 - "bytes", 4592 - "pin-project-lite", 4593 - "quinn-proto", 4594 - "quinn-udp", 4595 - "rustc-hash 1.1.0", 4596 - "rustls", 4597 - "thiserror", 4598 - "tokio", 4599 - "tracing", 4600 - ] 4601 - 4602 - [[package]] 4603 - name = "quinn-proto" 4604 - version = "0.11.8" 4605 - source = "registry+https://github.com/rust-lang/crates.io-index" 4606 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 4607 - dependencies = [ 4608 - "bytes", 4609 - "rand 0.8.5", 4610 - "ring", 4611 - "rustc-hash 2.0.0", 4612 - "rustls", 4613 - "slab", 4614 - "thiserror", 4615 - "tinyvec", 4616 - "tracing", 4617 - ] 4618 - 4619 - [[package]] 4620 - name = "quinn-udp" 4621 - version = "0.5.2" 4622 - source = "registry+https://github.com/rust-lang/crates.io-index" 4623 - checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46" 4624 - dependencies = [ 4625 - "libc", 4626 - "once_cell", 4627 - "socket2", 4628 - "tracing", 4629 - "windows-sys 0.52.0", 4630 - ] 4631 - 4632 - [[package]] 4633 - name = "quote" 4634 - version = "1.0.37" 4635 - source = "registry+https://github.com/rust-lang/crates.io-index" 4636 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 4637 - dependencies = [ 4638 - "proc-macro2", 4639 - ] 4640 - 4641 - [[package]] 4642 - name = "quoted-string-parser" 4643 - version = "0.1.0" 4644 - source = "registry+https://github.com/rust-lang/crates.io-index" 4645 - checksum = "0dc75379cdb451d001f1cb667a9f74e8b355e9df84cc5193513cbe62b96fc5e9" 4646 - dependencies = [ 4647 - "pest", 4648 - "pest_derive", 4649 - ] 4650 - 4651 - [[package]] 4652 - name = "quoted_printable" 4653 - version = "0.5.1" 4654 - source = "registry+https://github.com/rust-lang/crates.io-index" 4655 - checksum = "640c9bd8497b02465aeef5375144c26062e0dcd5939dfcbb0f5db76cb8c17c73" 4656 - 4657 - [[package]] 4658 - name = "radium" 4659 - version = "0.7.0" 4660 - source = "registry+https://github.com/rust-lang/crates.io-index" 4661 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4662 - 4663 - [[package]] 4664 - name = "radix_trie" 4665 - version = "0.2.1" 4666 - source = "registry+https://github.com/rust-lang/crates.io-index" 4667 - checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 4668 - dependencies = [ 4669 - "endian-type", 4670 - "nibble_vec", 4671 - ] 4672 - 4673 - [[package]] 4674 - name = "rand" 4675 - version = "0.7.3" 4676 - source = "registry+https://github.com/rust-lang/crates.io-index" 4677 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 4678 - dependencies = [ 4679 - "getrandom 0.1.16", 4680 - "libc", 4681 - "rand_chacha 0.2.2", 4682 - "rand_core 0.5.1", 4683 - "rand_hc", 4684 - ] 4685 - 4686 - [[package]] 4687 - name = "rand" 4688 - version = "0.8.5" 4689 - source = "registry+https://github.com/rust-lang/crates.io-index" 4690 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4691 - dependencies = [ 4692 - "libc", 4693 - "rand_chacha 0.3.1", 4694 - "rand_core 0.6.4", 4695 - ] 4696 - 4697 - [[package]] 4698 - name = "rand_chacha" 4699 - version = "0.2.2" 4700 - source = "registry+https://github.com/rust-lang/crates.io-index" 4701 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 4702 - dependencies = [ 4703 - "ppv-lite86", 4704 - "rand_core 0.5.1", 4705 - ] 4706 - 4707 - [[package]] 4708 - name = "rand_chacha" 4709 - version = "0.3.1" 4710 - source = "registry+https://github.com/rust-lang/crates.io-index" 4711 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4712 - dependencies = [ 4713 - "ppv-lite86", 4714 - "rand_core 0.6.4", 4715 - ] 4716 - 4717 - [[package]] 4718 - name = "rand_core" 4719 - version = "0.5.1" 4720 - source = "registry+https://github.com/rust-lang/crates.io-index" 4721 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 4722 - dependencies = [ 4723 - "getrandom 0.1.16", 4724 - ] 4725 - 4726 - [[package]] 4727 - name = "rand_core" 4728 - version = "0.6.4" 4729 - source = "registry+https://github.com/rust-lang/crates.io-index" 4730 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4731 - dependencies = [ 4732 - "getrandom 0.2.12", 4733 - ] 4734 - 4735 - [[package]] 4736 - name = "rand_hc" 4737 - version = "0.2.0" 4738 - source = "registry+https://github.com/rust-lang/crates.io-index" 4739 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 4740 - dependencies = [ 4741 - "rand_core 0.5.1", 4742 - ] 4743 - 4744 - [[package]] 4745 - name = "rand_xorshift" 4746 - version = "0.3.0" 4747 - source = "registry+https://github.com/rust-lang/crates.io-index" 4748 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 4749 - dependencies = [ 4750 - "rand_core 0.6.4", 4751 - ] 4752 - 4753 - [[package]] 4754 - name = "ratelimit" 4755 - version = "1.0.0" 4756 - 4757 - [[package]] 4758 - name = "raw-cpuid" 4759 - version = "11.0.2" 4760 - source = "registry+https://github.com/rust-lang/crates.io-index" 4761 - checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd" 4762 - dependencies = [ 4763 - "bitflags 2.6.0", 4764 - ] 4765 - 4766 - [[package]] 4767 - name = "rayon" 4768 - version = "1.9.0" 4769 - source = "registry+https://github.com/rust-lang/crates.io-index" 4770 - checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" 4771 - dependencies = [ 4772 - "either", 4773 - "rayon-core", 4774 - ] 4775 - 4776 - [[package]] 4777 - name = "rayon-core" 4778 - version = "1.12.1" 4779 - source = "registry+https://github.com/rust-lang/crates.io-index" 4780 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4781 - dependencies = [ 4782 - "crossbeam-deque", 4783 - "crossbeam-utils", 4784 - ] 4785 - 4786 - [[package]] 4787 - name = "rcgen" 4788 - version = "0.12.1" 4789 - source = "registry+https://github.com/rust-lang/crates.io-index" 4790 - checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1" 4791 - dependencies = [ 4792 - "pem", 4793 - "ring", 4794 - "time 0.3.36", 4795 - "yasna", 4796 - ] 4797 - 4798 - [[package]] 4799 - name = "redox_syscall" 4800 - version = "0.3.5" 4801 - source = "registry+https://github.com/rust-lang/crates.io-index" 4802 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 4803 - dependencies = [ 4804 - "bitflags 1.3.2", 4805 - ] 4806 - 4807 - [[package]] 4808 - name = "redox_syscall" 4809 - version = "0.4.1" 4810 - source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4812 - dependencies = [ 4813 - "bitflags 1.3.2", 4814 - ] 4815 - 4816 - [[package]] 4817 - name = "redox_users" 4818 - version = "0.4.4" 4819 - source = "registry+https://github.com/rust-lang/crates.io-index" 4820 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 4821 - dependencies = [ 4822 - "getrandom 0.2.12", 4823 - "libredox", 4824 - "thiserror", 4825 - ] 4826 - 4827 - [[package]] 4828 - name = "regex" 4829 - version = "1.10.6" 4830 - source = "registry+https://github.com/rust-lang/crates.io-index" 4831 - checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 4832 - dependencies = [ 4833 - "aho-corasick", 4834 - "memchr", 4835 - "regex-automata 0.4.6", 4836 - "regex-syntax 0.8.2", 4837 - ] 4838 - 4839 - [[package]] 4840 - name = "regex-automata" 4841 - version = "0.1.10" 4842 - source = "registry+https://github.com/rust-lang/crates.io-index" 4843 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 4844 - dependencies = [ 4845 - "regex-syntax 0.6.29", 4846 - ] 4847 - 4848 - [[package]] 4849 - name = "regex-automata" 4850 - version = "0.4.6" 4851 - source = "registry+https://github.com/rust-lang/crates.io-index" 4852 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 4853 - dependencies = [ 4854 - "aho-corasick", 4855 - "memchr", 4856 - "regex-syntax 0.8.2", 4857 - ] 4858 - 4859 - [[package]] 4860 - name = "regex-lite" 4861 - version = "0.1.5" 4862 - source = "registry+https://github.com/rust-lang/crates.io-index" 4863 - checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" 4864 - 4865 - [[package]] 4866 - name = "regex-syntax" 4867 - version = "0.6.29" 4868 - source = "registry+https://github.com/rust-lang/crates.io-index" 4869 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 4870 - 4871 - [[package]] 4872 - name = "regex-syntax" 4873 - version = "0.8.2" 4874 - source = "registry+https://github.com/rust-lang/crates.io-index" 4875 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 4876 - 4877 - [[package]] 4878 - name = "reqwest" 4879 - version = "0.12.5" 4880 - source = "registry+https://github.com/rust-lang/crates.io-index" 4881 - checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" 4882 - dependencies = [ 4883 - "base64 0.22.1", 4884 - "bytes", 4885 - "futures-core", 4886 - "futures-util", 4887 - "http 1.1.0", 4888 - "http-body 1.0.0", 4889 - "http-body-util", 4890 - "hyper 1.5.0", 4891 - "hyper-rustls", 4892 - "hyper-util", 4893 - "ipnet", 4894 - "js-sys", 4895 - "log", 4896 - "mime", 4897 - "once_cell", 4898 - "percent-encoding", 4899 - "pin-project-lite", 4900 - "quinn", 4901 - "rustls", 4902 - "rustls-pemfile", 4903 - "rustls-pki-types", 4904 - "serde", 4905 - "serde_json", 4906 - "serde_urlencoded", 4907 - "sync_wrapper 1.0.0", 4908 - "tokio", 4909 - "tokio-rustls", 4910 - "tower-service", 4911 - "url", 4912 - "wasm-bindgen", 4913 - "wasm-bindgen-futures", 4914 - "web-sys", 4915 - "webpki-roots", 4916 - "winreg 0.52.0", 4917 - ] 4918 - 4919 - [[package]] 4920 - name = "resolv-conf" 4921 - version = "0.7.0" 4922 - source = "registry+https://github.com/rust-lang/crates.io-index" 4923 - checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 4924 - dependencies = [ 4925 - "hostname", 4926 - "quick-error 1.2.3", 4927 - ] 4928 - 4929 - [[package]] 4930 - name = "rfc6979" 4931 - version = "0.4.0" 4932 - source = "registry+https://github.com/rust-lang/crates.io-index" 4933 - checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 4934 - dependencies = [ 4935 - "hmac", 4936 - "subtle", 4937 - ] 4938 - 4939 - [[package]] 4940 - name = "ring" 4941 - version = "0.17.8" 4942 - source = "registry+https://github.com/rust-lang/crates.io-index" 4943 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 4944 - dependencies = [ 4945 - "cc", 4946 - "cfg-if", 4947 - "getrandom 0.2.12", 4948 - "libc", 4949 - "spin", 4950 - "untrusted", 4951 - "windows-sys 0.52.0", 4952 - ] 4953 - 4954 - [[package]] 4955 - name = "ring-compat" 4956 - version = "0.8.0" 4957 - source = "registry+https://github.com/rust-lang/crates.io-index" 4958 - checksum = "ccce7bae150b815f0811db41b8312fcb74bffa4cab9cee5429ee00f356dd5bd4" 4959 - dependencies = [ 4960 - "aead", 4961 - "digest", 4962 - "ecdsa", 4963 - "ed25519", 4964 - "generic-array", 4965 - "p256", 4966 - "p384", 4967 - "pkcs8", 4968 - "rand_core 0.6.4", 4969 - "ring", 4970 - "signature", 4971 - ] 4972 - 4973 - [[package]] 4974 - name = "ripemd" 4975 - version = "0.1.3" 4976 - source = "registry+https://github.com/rust-lang/crates.io-index" 4977 - checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" 4978 - dependencies = [ 4979 - "digest", 4980 - ] 4981 - 4982 - [[package]] 4983 - name = "rsa" 4984 - version = "0.9.6" 4985 - source = "registry+https://github.com/rust-lang/crates.io-index" 4986 - checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 4987 - dependencies = [ 4988 - "const-oid", 4989 - "digest", 4990 - "num-bigint-dig", 4991 - "num-integer", 4992 - "num-traits", 4993 - "pkcs1", 4994 - "pkcs8", 4995 - "rand_core 0.6.4", 4996 - "sha2", 4997 - "signature", 4998 - "spki", 4999 - "subtle", 5000 - "zeroize", 5001 - ] 5002 - 5003 - [[package]] 5004 - name = "rtnetlink" 5005 - version = "0.13.1" 5006 - source = "registry+https://github.com/rust-lang/crates.io-index" 5007 - checksum = "7a552eb82d19f38c3beed3f786bd23aa434ceb9ac43ab44419ca6d67a7e186c0" 5008 - dependencies = [ 5009 - "futures", 5010 - "log", 5011 - "netlink-packet-core", 5012 - "netlink-packet-route", 5013 - "netlink-packet-utils", 5014 - "netlink-proto", 5015 - "netlink-sys", 5016 - "nix 0.26.4", 5017 - "thiserror", 5018 - "tokio", 5019 - ] 5020 - 5021 - [[package]] 5022 - name = "rusqlite" 5023 - version = "0.32.1" 5024 - source = "registry+https://github.com/rust-lang/crates.io-index" 5025 - checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e" 5026 - dependencies = [ 5027 - "bitflags 2.6.0", 5028 - "fallible-iterator", 5029 - "fallible-streaming-iterator", 5030 - "hashlink", 5031 - "libsqlite3-sys", 5032 - "smallvec", 5033 - ] 5034 - 5035 - [[package]] 5036 - name = "rust-hsluv" 5037 - version = "0.1.4" 5038 - source = "registry+https://github.com/rust-lang/crates.io-index" 5039 - checksum = "efe2374f2385cdd8755a446f80b2a646de603c9d8539ca38734879b5c71e378b" 5040 - 5041 - [[package]] 5042 - name = "rustc-demangle" 5043 - version = "0.1.24" 5044 - source = "registry+https://github.com/rust-lang/crates.io-index" 5045 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 5046 - 5047 - [[package]] 5048 - name = "rustc-hash" 5049 - version = "1.1.0" 5050 - source = "registry+https://github.com/rust-lang/crates.io-index" 5051 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 5052 - 5053 - [[package]] 5054 - name = "rustc-hash" 5055 - version = "2.0.0" 5056 - source = "registry+https://github.com/rust-lang/crates.io-index" 5057 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 5058 - 5059 - [[package]] 5060 - name = "rustc_version" 5061 - version = "0.4.0" 5062 - source = "registry+https://github.com/rust-lang/crates.io-index" 5063 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 5064 - dependencies = [ 5065 - "semver", 5066 - ] 5067 - 5068 - [[package]] 5069 - name = "rusticata-macros" 5070 - version = "4.1.0" 5071 - source = "registry+https://github.com/rust-lang/crates.io-index" 5072 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 5073 - dependencies = [ 5074 - "nom", 5075 - ] 5076 - 5077 - [[package]] 5078 - name = "rustix" 5079 - version = "0.38.37" 5080 - source = "registry+https://github.com/rust-lang/crates.io-index" 5081 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 5082 - dependencies = [ 5083 - "bitflags 2.6.0", 5084 - "errno", 5085 - "libc", 5086 - "linux-raw-sys", 5087 - "windows-sys 0.52.0", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "rustls" 5092 - version = "0.23.14" 5093 - source = "registry+https://github.com/rust-lang/crates.io-index" 5094 - checksum = "415d9944693cb90382053259f89fbb077ea730ad7273047ec63b19bc9b160ba8" 5095 - dependencies = [ 5096 - "log", 5097 - "once_cell", 5098 - "ring", 5099 - "rustls-pki-types", 5100 - "rustls-webpki", 5101 - "subtle", 5102 - "zeroize", 5103 - ] 5104 - 5105 - [[package]] 5106 - name = "rustls-native-certs" 5107 - version = "0.7.3" 5108 - source = "registry+https://github.com/rust-lang/crates.io-index" 5109 - checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" 5110 - dependencies = [ 5111 - "openssl-probe", 5112 - "rustls-pemfile", 5113 - "rustls-pki-types", 5114 - "schannel", 5115 - "security-framework", 5116 - ] 5117 - 5118 - [[package]] 5119 - name = "rustls-pemfile" 5120 - version = "2.1.2" 5121 - source = "registry+https://github.com/rust-lang/crates.io-index" 5122 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 5123 - dependencies = [ 5124 - "base64 0.22.1", 5125 - "rustls-pki-types", 5126 - ] 5127 - 5128 - [[package]] 5129 - name = "rustls-pki-types" 5130 - version = "1.10.0" 5131 - source = "registry+https://github.com/rust-lang/crates.io-index" 5132 - checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 5133 - 5134 - [[package]] 5135 - name = "rustls-platform-verifier" 5136 - version = "0.3.4" 5137 - source = "registry+https://github.com/rust-lang/crates.io-index" 5138 - checksum = "afbb878bdfdf63a336a5e63561b1835e7a8c91524f51621db870169eac84b490" 5139 - dependencies = [ 5140 - "core-foundation", 5141 - "core-foundation-sys", 5142 - "jni", 5143 - "log", 5144 - "once_cell", 5145 - "rustls", 5146 - "rustls-native-certs", 5147 - "rustls-platform-verifier-android", 5148 - "rustls-webpki", 5149 - "security-framework", 5150 - "security-framework-sys", 5151 - "webpki-roots", 5152 - "winapi", 5153 - ] 5154 - 5155 - [[package]] 5156 - name = "rustls-platform-verifier-android" 5157 - version = "0.1.1" 5158 - source = "registry+https://github.com/rust-lang/crates.io-index" 5159 - checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" 5160 - 5161 - [[package]] 5162 - name = "rustls-webpki" 5163 - version = "0.102.8" 5164 - source = "registry+https://github.com/rust-lang/crates.io-index" 5165 - checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 5166 - dependencies = [ 5167 - "ring", 5168 - "rustls-pki-types", 5169 - "untrusted", 5170 - ] 5171 - 5172 - [[package]] 5173 - name = "rustversion" 5174 - version = "1.0.14" 5175 - source = "registry+https://github.com/rust-lang/crates.io-index" 5176 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 5177 - 5178 - [[package]] 5179 - name = "rustyline" 5180 - version = "14.0.0" 5181 - source = "registry+https://github.com/rust-lang/crates.io-index" 5182 - checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63" 5183 - dependencies = [ 5184 - "bitflags 2.6.0", 5185 - "cfg-if", 5186 - "clipboard-win", 5187 - "fd-lock", 5188 - "home", 5189 - "libc", 5190 - "log", 5191 - "memchr", 5192 - "nix 0.28.0", 5193 - "radix_trie", 5194 - "unicode-segmentation", 5195 - "unicode-width", 5196 - "utf8parse", 5197 - "windows-sys 0.52.0", 5198 - ] 5199 - 5200 - [[package]] 5201 - name = "ryu" 5202 - version = "1.0.17" 5203 - source = "registry+https://github.com/rust-lang/crates.io-index" 5204 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 5205 - 5206 - [[package]] 5207 - name = "salsa20" 5208 - version = "0.10.2" 5209 - source = "registry+https://github.com/rust-lang/crates.io-index" 5210 - checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" 5211 - dependencies = [ 5212 - "cipher", 5213 - ] 5214 - 5215 - [[package]] 5216 - name = "same-file" 5217 - version = "1.0.6" 5218 - source = "registry+https://github.com/rust-lang/crates.io-index" 5219 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5220 - dependencies = [ 5221 - "winapi-util", 5222 - ] 5223 - 5224 - [[package]] 5225 - name = "sanitize-filename" 5226 - version = "0.5.0" 5227 - source = "registry+https://github.com/rust-lang/crates.io-index" 5228 - checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603" 5229 - dependencies = [ 5230 - "lazy_static", 5231 - "regex", 5232 - ] 5233 - 5234 - [[package]] 5235 - name = "schannel" 5236 - version = "0.1.23" 5237 - source = "registry+https://github.com/rust-lang/crates.io-index" 5238 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 5239 - dependencies = [ 5240 - "windows-sys 0.52.0", 5241 - ] 5242 - 5243 - [[package]] 5244 - name = "schemars" 5245 - version = "0.8.21" 5246 - source = "registry+https://github.com/rust-lang/crates.io-index" 5247 - checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" 5248 - dependencies = [ 5249 - "dyn-clone", 5250 - "schemars_derive", 5251 - "serde", 5252 - "serde_json", 5253 - ] 5254 - 5255 - [[package]] 5256 - name = "schemars_derive" 5257 - version = "0.8.21" 5258 - source = "registry+https://github.com/rust-lang/crates.io-index" 5259 - checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" 5260 - dependencies = [ 5261 - "proc-macro2", 5262 - "quote", 5263 - "serde_derive_internals", 5264 - "syn 2.0.86", 5265 - ] 5266 - 5267 - [[package]] 5268 - name = "scoped-tls" 5269 - version = "1.0.1" 5270 - source = "registry+https://github.com/rust-lang/crates.io-index" 5271 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 5272 - 5273 - [[package]] 5274 - name = "scopeguard" 5275 - version = "1.2.0" 5276 - source = "registry+https://github.com/rust-lang/crates.io-index" 5277 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 5278 - 5279 - [[package]] 5280 - name = "sec1" 5281 - version = "0.7.3" 5282 - source = "registry+https://github.com/rust-lang/crates.io-index" 5283 - checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 5284 - dependencies = [ 5285 - "base16ct", 5286 - "der", 5287 - "generic-array", 5288 - "pkcs8", 5289 - "subtle", 5290 - "zeroize", 5291 - ] 5292 - 5293 - [[package]] 5294 - name = "security-framework" 5295 - version = "2.11.1" 5296 - source = "registry+https://github.com/rust-lang/crates.io-index" 5297 - checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 5298 - dependencies = [ 5299 - "bitflags 2.6.0", 5300 - "core-foundation", 5301 - "core-foundation-sys", 5302 - "libc", 5303 - "num-bigint", 5304 - "security-framework-sys", 5305 - ] 5306 - 5307 - [[package]] 5308 - name = "security-framework-sys" 5309 - version = "2.11.1" 5310 - source = "registry+https://github.com/rust-lang/crates.io-index" 5311 - checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" 5312 - dependencies = [ 5313 - "core-foundation-sys", 5314 - "libc", 5315 - ] 5316 - 5317 - [[package]] 5318 - name = "self_cell" 5319 - version = "1.0.3" 5320 - source = "registry+https://github.com/rust-lang/crates.io-index" 5321 - checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba" 5322 - 5323 - [[package]] 5324 - name = "semver" 5325 - version = "1.0.22" 5326 - source = "registry+https://github.com/rust-lang/crates.io-index" 5327 - checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 5328 - dependencies = [ 5329 - "serde", 5330 - ] 5331 - 5332 - [[package]] 5333 - name = "sendfd" 5334 - version = "0.4.3" 5335 - source = "registry+https://github.com/rust-lang/crates.io-index" 5336 - checksum = "604b71b8fc267e13bb3023a2c901126c8f349393666a6d98ac1ae5729b701798" 5337 - dependencies = [ 5338 - "libc", 5339 - "tokio", 5340 - ] 5341 - 5342 - [[package]] 5343 - name = "serde" 5344 - version = "1.0.210" 5345 - source = "registry+https://github.com/rust-lang/crates.io-index" 5346 - checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 5347 - dependencies = [ 5348 - "serde_derive", 5349 - ] 5350 - 5351 - [[package]] 5352 - name = "serde-error" 5353 - version = "0.1.2" 5354 - source = "registry+https://github.com/rust-lang/crates.io-index" 5355 - checksum = "e988182713aeed6a619a88bca186f6d6407483485ffe44c869ee264f8eabd13f" 5356 - dependencies = [ 5357 - "serde", 5358 - ] 5359 - 5360 - [[package]] 5361 - name = "serde_derive" 5362 - version = "1.0.210" 5363 - source = "registry+https://github.com/rust-lang/crates.io-index" 5364 - checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 5365 - dependencies = [ 5366 - "proc-macro2", 5367 - "quote", 5368 - "syn 2.0.86", 5369 - ] 5370 - 5371 - [[package]] 5372 - name = "serde_derive_internals" 5373 - version = "0.29.0" 5374 - source = "registry+https://github.com/rust-lang/crates.io-index" 5375 - checksum = "330f01ce65a3a5fe59a60c82f3c9a024b573b8a6e875bd233fe5f934e71d54e3" 5376 - dependencies = [ 5377 - "proc-macro2", 5378 - "quote", 5379 - "syn 2.0.86", 5380 - ] 5381 - 5382 - [[package]] 5383 - name = "serde_json" 5384 - version = "1.0.132" 5385 - source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 5387 - dependencies = [ 5388 - "itoa", 5389 - "memchr", 5390 - "ryu", 5391 - "serde", 5392 - ] 5393 - 5394 - [[package]] 5395 - name = "serde_path_to_error" 5396 - version = "0.1.15" 5397 - source = "registry+https://github.com/rust-lang/crates.io-index" 5398 - checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" 5399 - dependencies = [ 5400 - "itoa", 5401 - "serde", 5402 - ] 5403 - 5404 - [[package]] 5405 - name = "serde_spanned" 5406 - version = "0.6.7" 5407 - source = "registry+https://github.com/rust-lang/crates.io-index" 5408 - checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" 5409 - dependencies = [ 5410 - "serde", 5411 - ] 5412 - 5413 - [[package]] 5414 - name = "serde_urlencoded" 5415 - version = "0.7.1" 5416 - source = "registry+https://github.com/rust-lang/crates.io-index" 5417 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5418 - dependencies = [ 5419 - "form_urlencoded", 5420 - "itoa", 5421 - "ryu", 5422 - "serde", 5423 - ] 5424 - 5425 - [[package]] 5426 - name = "serdect" 5427 - version = "0.2.0" 5428 - source = "registry+https://github.com/rust-lang/crates.io-index" 5429 - checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" 5430 - dependencies = [ 5431 - "base16ct", 5432 - "serde", 5433 - ] 5434 - 5435 - [[package]] 5436 - name = "sha-1" 5437 - version = "0.10.1" 5438 - source = "registry+https://github.com/rust-lang/crates.io-index" 5439 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 5440 - dependencies = [ 5441 - "cfg-if", 5442 - "cpufeatures", 5443 - "digest", 5444 - ] 5445 - 5446 - [[package]] 5447 - name = "sha1" 5448 - version = "0.10.6" 5449 - source = "registry+https://github.com/rust-lang/crates.io-index" 5450 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 5451 - dependencies = [ 5452 - "cfg-if", 5453 - "cpufeatures", 5454 - "digest", 5455 - ] 5456 - 5457 - [[package]] 5458 - name = "sha1-checked" 5459 - version = "0.10.0" 5460 - source = "registry+https://github.com/rust-lang/crates.io-index" 5461 - checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423" 5462 - dependencies = [ 5463 - "digest", 5464 - "sha1", 5465 - ] 5466 - 5467 - [[package]] 5468 - name = "sha2" 5469 - version = "0.10.8" 5470 - source = "registry+https://github.com/rust-lang/crates.io-index" 5471 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 5472 - dependencies = [ 5473 - "cfg-if", 5474 - "cpufeatures", 5475 - "digest", 5476 - ] 5477 - 5478 - [[package]] 5479 - name = "sha3" 5480 - version = "0.10.8" 5481 - source = "registry+https://github.com/rust-lang/crates.io-index" 5482 - checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 5483 - dependencies = [ 5484 - "digest", 5485 - "keccak", 5486 - ] 5487 - 5488 - [[package]] 5489 - name = "shadowsocks" 5490 - version = "1.21.0" 5491 - source = "registry+https://github.com/rust-lang/crates.io-index" 5492 - checksum = "5ecb3780dfbc654de9383758015b9bb95c6e32fecace36ebded09d67e854d130" 5493 - dependencies = [ 5494 - "aes", 5495 - "async-trait", 5496 - "base64 0.22.1", 5497 - "blake3", 5498 - "byte_string", 5499 - "bytes", 5500 - "cfg-if", 5501 - "futures", 5502 - "libc", 5503 - "log", 5504 - "lru_time_cache", 5505 - "once_cell", 5506 - "percent-encoding", 5507 - "pin-project", 5508 - "rand 0.8.5", 5509 - "sendfd", 5510 - "serde", 5511 - "serde_json", 5512 - "serde_urlencoded", 5513 - "shadowsocks-crypto", 5514 - "socket2", 5515 - "spin", 5516 - "thiserror", 5517 - "tokio", 5518 - "tokio-tfo", 5519 - "url", 5520 - "windows-sys 0.59.0", 5521 - ] 5522 - 5523 - [[package]] 5524 - name = "shadowsocks-crypto" 5525 - version = "0.5.5" 5526 - source = "registry+https://github.com/rust-lang/crates.io-index" 5527 - checksum = "a9e49ecfad8b27f3df28848af11f08aa10df0c6b74b45748131753913be23373" 5528 - dependencies = [ 5529 - "aes", 5530 - "aes-gcm", 5531 - "blake3", 5532 - "bytes", 5533 - "cfg-if", 5534 - "chacha20poly1305", 5535 - "hkdf", 5536 - "md-5", 5537 - "rand 0.8.5", 5538 - "ring-compat", 5539 - "sha1", 5540 - ] 5541 - 5542 - [[package]] 5543 - name = "sharded-slab" 5544 - version = "0.1.7" 5545 - source = "registry+https://github.com/rust-lang/crates.io-index" 5546 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 5547 - dependencies = [ 5548 - "lazy_static", 5549 - ] 5550 - 5551 - [[package]] 5552 - name = "shared_child" 5553 - version = "1.0.0" 5554 - source = "registry+https://github.com/rust-lang/crates.io-index" 5555 - checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 5556 - dependencies = [ 5557 - "libc", 5558 - "winapi", 5559 - ] 5560 - 5561 - [[package]] 5562 - name = "shlex" 5563 - version = "1.3.0" 5564 - source = "registry+https://github.com/rust-lang/crates.io-index" 5565 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 5566 - 5567 - [[package]] 5568 - name = "signal-hook-registry" 5569 - version = "1.4.1" 5570 - source = "registry+https://github.com/rust-lang/crates.io-index" 5571 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 5572 - dependencies = [ 5573 - "libc", 5574 - ] 5575 - 5576 - [[package]] 5577 - name = "signature" 5578 - version = "2.2.0" 5579 - source = "registry+https://github.com/rust-lang/crates.io-index" 5580 - checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 5581 - dependencies = [ 5582 - "digest", 5583 - "rand_core 0.6.4", 5584 - ] 5585 - 5586 - [[package]] 5587 - name = "simd-adler32" 5588 - version = "0.3.7" 5589 - source = "registry+https://github.com/rust-lang/crates.io-index" 5590 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 5591 - 5592 - [[package]] 5593 - name = "simple-dns" 5594 - version = "0.6.2" 5595 - source = "registry+https://github.com/rust-lang/crates.io-index" 5596 - checksum = "01607fe2e61894468c6dc0b26103abb073fb08b79a3d9e4b6d76a1a341549958" 5597 - dependencies = [ 5598 - "bitflags 2.6.0", 5599 - ] 5600 - 5601 - [[package]] 5602 - name = "slab" 5603 - version = "0.4.9" 5604 - source = "registry+https://github.com/rust-lang/crates.io-index" 5605 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 5606 - dependencies = [ 5607 - "autocfg", 5608 - ] 5609 - 5610 - [[package]] 5611 - name = "smallvec" 5612 - version = "1.13.2" 5613 - source = "registry+https://github.com/rust-lang/crates.io-index" 5614 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 5615 - 5616 - [[package]] 5617 - name = "smawk" 5618 - version = "0.3.2" 5619 - source = "registry+https://github.com/rust-lang/crates.io-index" 5620 - checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 5621 - 5622 - [[package]] 5623 - name = "socket2" 5624 - version = "0.5.6" 5625 - source = "registry+https://github.com/rust-lang/crates.io-index" 5626 - checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 5627 - dependencies = [ 5628 - "libc", 5629 - "windows-sys 0.52.0", 5630 - ] 5631 - 5632 - [[package]] 5633 - name = "spin" 5634 - version = "0.9.8" 5635 - source = "registry+https://github.com/rust-lang/crates.io-index" 5636 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5637 - dependencies = [ 5638 - "lock_api", 5639 - ] 5640 - 5641 - [[package]] 5642 - name = "spinning_top" 5643 - version = "0.3.0" 5644 - source = "registry+https://github.com/rust-lang/crates.io-index" 5645 - checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" 5646 - dependencies = [ 5647 - "lock_api", 5648 - ] 5649 - 5650 - [[package]] 5651 - name = "spki" 5652 - version = "0.7.3" 5653 - source = "registry+https://github.com/rust-lang/crates.io-index" 5654 - checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 5655 - dependencies = [ 5656 - "base64ct", 5657 - "der", 5658 - ] 5659 - 5660 - [[package]] 5661 - name = "ssh-cipher" 5662 - version = "0.2.0" 5663 - source = "registry+https://github.com/rust-lang/crates.io-index" 5664 - checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" 5665 - dependencies = [ 5666 - "cipher", 5667 - "ssh-encoding", 5668 - ] 5669 - 5670 - [[package]] 5671 - name = "ssh-encoding" 5672 - version = "0.2.0" 5673 - source = "registry+https://github.com/rust-lang/crates.io-index" 5674 - checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" 5675 - dependencies = [ 5676 - "base64ct", 5677 - "pem-rfc7468", 5678 - "sha2", 5679 - ] 5680 - 5681 - [[package]] 5682 - name = "ssh-key" 5683 - version = "0.6.6" 5684 - source = "registry+https://github.com/rust-lang/crates.io-index" 5685 - checksum = "ca9b366a80cf18bb6406f4cf4d10aebfb46140a8c0c33f666a144c5c76ecbafc" 5686 - dependencies = [ 5687 - "ed25519-dalek", 5688 - "p256", 5689 - "p384", 5690 - "p521", 5691 - "rand_core 0.6.4", 5692 - "rsa", 5693 - "sec1", 5694 - "sha2", 5695 - "signature", 5696 - "ssh-cipher", 5697 - "ssh-encoding", 5698 - "subtle", 5699 - "zeroize", 5700 - ] 5701 - 5702 - [[package]] 5703 - name = "stop-token" 5704 - version = "0.7.0" 5705 - source = "registry+https://github.com/rust-lang/crates.io-index" 5706 - checksum = "af91f480ee899ab2d9f8435bfdfc14d08a5754bd9d3fef1f1a1c23336aad6c8b" 5707 - dependencies = [ 5708 - "async-channel 1.9.0", 5709 - "cfg-if", 5710 - "futures-core", 5711 - "pin-project-lite", 5712 - ] 5713 - 5714 - [[package]] 5715 - name = "strsim" 5716 - version = "0.11.1" 5717 - source = "registry+https://github.com/rust-lang/crates.io-index" 5718 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5719 - 5720 - [[package]] 5721 - name = "struct_iterable" 5722 - version = "0.1.1" 5723 - source = "registry+https://github.com/rust-lang/crates.io-index" 5724 - checksum = "849a064c6470a650b72e41fa6c057879b68f804d113af92900f27574828e7712" 5725 - dependencies = [ 5726 - "struct_iterable_derive", 5727 - "struct_iterable_internal", 5728 - ] 5729 - 5730 - [[package]] 5731 - name = "struct_iterable_derive" 5732 - version = "0.1.0" 5733 - source = "registry+https://github.com/rust-lang/crates.io-index" 5734 - checksum = "8bb939ce88a43ea4e9d012f2f6b4cc789deb2db9d47bad697952a85d6978662c" 5735 - dependencies = [ 5736 - "erased-serde", 5737 - "proc-macro2", 5738 - "quote", 5739 - "struct_iterable_internal", 5740 - "syn 2.0.86", 5741 - ] 5742 - 5743 - [[package]] 5744 - name = "struct_iterable_internal" 5745 - version = "0.1.1" 5746 - source = "registry+https://github.com/rust-lang/crates.io-index" 5747 - checksum = "e9426b2a0c03e6cc2ea8dbc0168dbbf943f88755e409fb91bcb8f6a268305f4a" 5748 - 5749 - [[package]] 5750 - name = "strum" 5751 - version = "0.26.2" 5752 - source = "registry+https://github.com/rust-lang/crates.io-index" 5753 - checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" 5754 - dependencies = [ 5755 - "strum_macros", 5756 - ] 5757 - 5758 - [[package]] 5759 - name = "strum_macros" 5760 - version = "0.26.2" 5761 - source = "registry+https://github.com/rust-lang/crates.io-index" 5762 - checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" 5763 - dependencies = [ 5764 - "heck", 5765 - "proc-macro2", 5766 - "quote", 5767 - "rustversion", 5768 - "syn 2.0.86", 5769 - ] 5770 - 5771 - [[package]] 5772 - name = "stun-rs" 5773 - version = "0.1.8" 5774 - source = "registry+https://github.com/rust-lang/crates.io-index" 5775 - checksum = "0adebf9fb8fba5c39ee34092b0383f247e4d1255b98fcffec94b4b797b85b677" 5776 - dependencies = [ 5777 - "base64 0.22.1", 5778 - "bounded-integer", 5779 - "byteorder", 5780 - "crc", 5781 - "enumflags2", 5782 - "fallible-iterator", 5783 - "hmac-sha1", 5784 - "hmac-sha256", 5785 - "hostname-validator", 5786 - "lazy_static", 5787 - "md5", 5788 - "paste", 5789 - "precis-core", 5790 - "precis-profiles", 5791 - "quoted-string-parser", 5792 - "rand 0.8.5", 5793 - ] 5794 - 5795 - [[package]] 5796 - name = "subtle" 5797 - version = "2.5.0" 5798 - source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 5800 - 5801 - [[package]] 5802 - name = "surge-ping" 5803 - version = "0.8.1" 5804 - source = "registry+https://github.com/rust-lang/crates.io-index" 5805 - checksum = "efbf95ce4c7c5b311d2ce3f088af2b93edef0f09727fa50fbe03c7a979afce77" 5806 - dependencies = [ 5807 - "hex", 5808 - "parking_lot", 5809 - "pnet_packet", 5810 - "rand 0.8.5", 5811 - "socket2", 5812 - "thiserror", 5813 - "tokio", 5814 - "tracing", 5815 - ] 5816 - 5817 - [[package]] 5818 - name = "syn" 5819 - version = "1.0.109" 5820 - source = "registry+https://github.com/rust-lang/crates.io-index" 5821 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5822 - dependencies = [ 5823 - "proc-macro2", 5824 - "quote", 5825 - "unicode-ident", 5826 - ] 5827 - 5828 - [[package]] 5829 - name = "syn" 5830 - version = "2.0.86" 5831 - source = "registry+https://github.com/rust-lang/crates.io-index" 5832 - checksum = "e89275301d38033efb81a6e60e3497e734dfcc62571f2854bf4b16690398824c" 5833 - dependencies = [ 5834 - "proc-macro2", 5835 - "quote", 5836 - "unicode-ident", 5837 - ] 5838 - 5839 - [[package]] 5840 - name = "sync_wrapper" 5841 - version = "0.1.2" 5842 - source = "registry+https://github.com/rust-lang/crates.io-index" 5843 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 5844 - 5845 - [[package]] 5846 - name = "sync_wrapper" 5847 - version = "1.0.0" 5848 - source = "registry+https://github.com/rust-lang/crates.io-index" 5849 - checksum = "384595c11a4e2969895cad5a8c4029115f5ab956a9e5ef4de79d11a426e5f20c" 5850 - 5851 - [[package]] 5852 - name = "synstructure" 5853 - version = "0.13.1" 5854 - source = "registry+https://github.com/rust-lang/crates.io-index" 5855 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 5856 - dependencies = [ 5857 - "proc-macro2", 5858 - "quote", 5859 - "syn 2.0.86", 5860 - ] 5861 - 5862 - [[package]] 5863 - name = "sysinfo" 5864 - version = "0.26.9" 5865 - source = "registry+https://github.com/rust-lang/crates.io-index" 5866 - checksum = "5c18a6156d1f27a9592ee18c1a846ca8dd5c258b7179fc193ae87c74ebb666f5" 5867 - dependencies = [ 5868 - "cfg-if", 5869 - "core-foundation-sys", 5870 - "libc", 5871 - "ntapi", 5872 - "once_cell", 5873 - "winapi", 5874 - ] 5875 - 5876 - [[package]] 5877 - name = "system-configuration" 5878 - version = "0.6.0" 5879 - source = "registry+https://github.com/rust-lang/crates.io-index" 5880 - checksum = "658bc6ee10a9b4fcf576e9b0819d95ec16f4d2c02d39fd83ac1c8789785c4a42" 5881 - dependencies = [ 5882 - "bitflags 2.6.0", 5883 - "core-foundation", 5884 - "system-configuration-sys", 5885 - ] 5886 - 5887 - [[package]] 5888 - name = "system-configuration-sys" 5889 - version = "0.6.0" 5890 - source = "registry+https://github.com/rust-lang/crates.io-index" 5891 - checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 5892 - dependencies = [ 5893 - "core-foundation-sys", 5894 - "libc", 5895 - ] 5896 - 5897 - [[package]] 5898 - name = "tagger" 5899 - version = "4.3.5" 5900 - source = "registry+https://github.com/rust-lang/crates.io-index" 5901 - checksum = "094c9f64d6de9a8506b1e49b63a29333b37ed9e821ee04be694d431b3264c3c5" 5902 - 5903 - [[package]] 5904 - name = "tap" 5905 - version = "1.0.1" 5906 - source = "registry+https://github.com/rust-lang/crates.io-index" 5907 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 5908 - 5909 - [[package]] 5910 - name = "tempfile" 5911 - version = "3.13.0" 5912 - source = "registry+https://github.com/rust-lang/crates.io-index" 5913 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 5914 - dependencies = [ 5915 - "cfg-if", 5916 - "fastrand 2.1.1", 5917 - "once_cell", 5918 - "rustix", 5919 - "windows-sys 0.59.0", 5920 - ] 5921 - 5922 - [[package]] 5923 - name = "testdir" 5924 - version = "0.9.1" 5925 - source = "registry+https://github.com/rust-lang/crates.io-index" 5926 - checksum = "ee79e927b64d193f5abb60d20a0eb56be0ee5a242fdeb8ce3bf054177006de52" 5927 - dependencies = [ 5928 - "anyhow", 5929 - "backtrace", 5930 - "cargo_metadata", 5931 - "once_cell", 5932 - "sysinfo", 5933 - "whoami", 5934 - ] 5935 - 5936 - [[package]] 5937 - name = "textwrap" 5938 - version = "0.16.1" 5939 - source = "registry+https://github.com/rust-lang/crates.io-index" 5940 - checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 5941 - dependencies = [ 5942 - "smawk", 5943 - "unicode-linebreak", 5944 - "unicode-width", 5945 - ] 5946 - 5947 - [[package]] 5948 - name = "thiserror" 5949 - version = "1.0.66" 5950 - source = "registry+https://github.com/rust-lang/crates.io-index" 5951 - checksum = "5d171f59dbaa811dbbb1aee1e73db92ec2b122911a48e1390dfe327a821ddede" 5952 - dependencies = [ 5953 - "thiserror-impl", 5954 - ] 5955 - 5956 - [[package]] 5957 - name = "thiserror-impl" 5958 - version = "1.0.66" 5959 - source = "registry+https://github.com/rust-lang/crates.io-index" 5960 - checksum = "b08be0f17bd307950653ce45db00cd31200d82b624b36e181337d9c7d92765b5" 5961 - dependencies = [ 5962 - "proc-macro2", 5963 - "quote", 5964 - "syn 2.0.86", 5965 - ] 5966 - 5967 - [[package]] 5968 - name = "thread_local" 5969 - version = "1.1.8" 5970 - source = "registry+https://github.com/rust-lang/crates.io-index" 5971 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 5972 - dependencies = [ 5973 - "cfg-if", 5974 - "once_cell", 5975 - ] 5976 - 5977 - [[package]] 5978 - name = "time" 5979 - version = "0.1.45" 5980 - source = "registry+https://github.com/rust-lang/crates.io-index" 5981 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 5982 - dependencies = [ 5983 - "libc", 5984 - "wasi 0.10.0+wasi-snapshot-preview1", 5985 - "winapi", 5986 - ] 5987 - 5988 - [[package]] 5989 - name = "time" 5990 - version = "0.3.36" 5991 - source = "registry+https://github.com/rust-lang/crates.io-index" 5992 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 5993 - dependencies = [ 5994 - "deranged", 5995 - "itoa", 5996 - "num-conv", 5997 - "powerfmt", 5998 - "serde", 5999 - "time-core", 6000 - "time-macros", 6001 - ] 6002 - 6003 - [[package]] 6004 - name = "time-core" 6005 - version = "0.1.2" 6006 - source = "registry+https://github.com/rust-lang/crates.io-index" 6007 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 6008 - 6009 - [[package]] 6010 - name = "time-macros" 6011 - version = "0.2.18" 6012 - source = "registry+https://github.com/rust-lang/crates.io-index" 6013 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 6014 - dependencies = [ 6015 - "num-conv", 6016 - "time-core", 6017 - ] 6018 - 6019 - [[package]] 6020 - name = "tinytemplate" 6021 - version = "1.2.1" 6022 - source = "registry+https://github.com/rust-lang/crates.io-index" 6023 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 6024 - dependencies = [ 6025 - "serde", 6026 - "serde_json", 6027 - ] 6028 - 6029 - [[package]] 6030 - name = "tinyvec" 6031 - version = "1.6.0" 6032 - source = "registry+https://github.com/rust-lang/crates.io-index" 6033 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 6034 - dependencies = [ 6035 - "tinyvec_macros", 6036 - ] 6037 - 6038 - [[package]] 6039 - name = "tinyvec_macros" 6040 - version = "0.1.1" 6041 - source = "registry+https://github.com/rust-lang/crates.io-index" 6042 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 6043 - 6044 - [[package]] 6045 - name = "tokio" 6046 - version = "1.38.1" 6047 - source = "registry+https://github.com/rust-lang/crates.io-index" 6048 - checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df" 6049 - dependencies = [ 6050 - "backtrace", 6051 - "bytes", 6052 - "libc", 6053 - "mio", 6054 - "num_cpus", 6055 - "parking_lot", 6056 - "pin-project-lite", 6057 - "signal-hook-registry", 6058 - "socket2", 6059 - "tokio-macros", 6060 - "windows-sys 0.48.0", 6061 - ] 6062 - 6063 - [[package]] 6064 - name = "tokio-io-timeout" 6065 - version = "1.2.0" 6066 - source = "registry+https://github.com/rust-lang/crates.io-index" 6067 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 6068 - dependencies = [ 6069 - "pin-project-lite", 6070 - "tokio", 6071 - ] 6072 - 6073 - [[package]] 6074 - name = "tokio-macros" 6075 - version = "2.3.0" 6076 - source = "registry+https://github.com/rust-lang/crates.io-index" 6077 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 6078 - dependencies = [ 6079 - "proc-macro2", 6080 - "quote", 6081 - "syn 2.0.86", 6082 - ] 6083 - 6084 - [[package]] 6085 - name = "tokio-rustls" 6086 - version = "0.26.0" 6087 - source = "registry+https://github.com/rust-lang/crates.io-index" 6088 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 6089 - dependencies = [ 6090 - "rustls", 6091 - "rustls-pki-types", 6092 - "tokio", 6093 - ] 6094 - 6095 - [[package]] 6096 - name = "tokio-stream" 6097 - version = "0.1.16" 6098 - source = "registry+https://github.com/rust-lang/crates.io-index" 6099 - checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" 6100 - dependencies = [ 6101 - "futures-core", 6102 - "pin-project-lite", 6103 - "tokio", 6104 - ] 6105 - 6106 - [[package]] 6107 - name = "tokio-tar" 6108 - version = "0.3.1" 6109 - source = "registry+https://github.com/rust-lang/crates.io-index" 6110 - checksum = "9d5714c010ca3e5c27114c1cdeb9d14641ace49874aa5626d7149e47aedace75" 6111 - dependencies = [ 6112 - "filetime", 6113 - "futures-core", 6114 - "libc", 6115 - "redox_syscall 0.3.5", 6116 - "tokio", 6117 - "tokio-stream", 6118 - "xattr", 6119 - ] 6120 - 6121 - [[package]] 6122 - name = "tokio-tfo" 6123 - version = "0.3.1" 6124 - source = "registry+https://github.com/rust-lang/crates.io-index" 6125 - checksum = "3fb4382c6371e29365853d2b71e915d5398df46312a2158097d8bb3f54d0f1b4" 6126 - dependencies = [ 6127 - "cfg-if", 6128 - "futures", 6129 - "libc", 6130 - "log", 6131 - "once_cell", 6132 - "pin-project", 6133 - "socket2", 6134 - "tokio", 6135 - "windows-sys 0.52.0", 6136 - ] 6137 - 6138 - [[package]] 6139 - name = "tokio-tungstenite" 6140 - version = "0.21.0" 6141 - source = "registry+https://github.com/rust-lang/crates.io-index" 6142 - checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" 6143 - dependencies = [ 6144 - "futures-util", 6145 - "log", 6146 - "tokio", 6147 - "tungstenite", 6148 - ] 6149 - 6150 - [[package]] 6151 - name = "tokio-tungstenite-wasm" 6152 - version = "0.3.1" 6153 - source = "registry+https://github.com/rust-lang/crates.io-index" 6154 - checksum = "8e57a65894797a018b28345fa298a00c450a574aa9671e50b18218a6292a55ac" 6155 - dependencies = [ 6156 - "futures-channel", 6157 - "futures-util", 6158 - "http 1.1.0", 6159 - "httparse", 6160 - "js-sys", 6161 - "thiserror", 6162 - "tokio", 6163 - "tokio-tungstenite", 6164 - "wasm-bindgen", 6165 - "web-sys", 6166 - ] 6167 - 6168 - [[package]] 6169 - name = "tokio-util" 6170 - version = "0.7.12" 6171 - source = "registry+https://github.com/rust-lang/crates.io-index" 6172 - checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 6173 - dependencies = [ 6174 - "bytes", 6175 - "futures-core", 6176 - "futures-io", 6177 - "futures-sink", 6178 - "futures-util", 6179 - "hashbrown", 6180 - "pin-project-lite", 6181 - "tokio", 6182 - ] 6183 - 6184 - [[package]] 6185 - name = "toml" 6186 - version = "0.8.19" 6187 - source = "registry+https://github.com/rust-lang/crates.io-index" 6188 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 6189 - dependencies = [ 6190 - "serde", 6191 - "serde_spanned", 6192 - "toml_datetime", 6193 - "toml_edit", 6194 - ] 6195 - 6196 - [[package]] 6197 - name = "toml_datetime" 6198 - version = "0.6.8" 6199 - source = "registry+https://github.com/rust-lang/crates.io-index" 6200 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 6201 - dependencies = [ 6202 - "serde", 6203 - ] 6204 - 6205 - [[package]] 6206 - name = "toml_edit" 6207 - version = "0.22.20" 6208 - source = "registry+https://github.com/rust-lang/crates.io-index" 6209 - checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" 6210 - dependencies = [ 6211 - "indexmap", 6212 - "serde", 6213 - "serde_spanned", 6214 - "toml_datetime", 6215 - "winnow", 6216 - ] 6217 - 6218 - [[package]] 6219 - name = "tower" 6220 - version = "0.4.13" 6221 - source = "registry+https://github.com/rust-lang/crates.io-index" 6222 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 6223 - dependencies = [ 6224 - "futures-core", 6225 - "futures-util", 6226 - "pin-project", 6227 - "pin-project-lite", 6228 - "tokio", 6229 - "tower-layer", 6230 - "tower-service", 6231 - "tracing", 6232 - ] 6233 - 6234 - [[package]] 6235 - name = "tower-layer" 6236 - version = "0.3.2" 6237 - source = "registry+https://github.com/rust-lang/crates.io-index" 6238 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 6239 - 6240 - [[package]] 6241 - name = "tower-service" 6242 - version = "0.3.2" 6243 - source = "registry+https://github.com/rust-lang/crates.io-index" 6244 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 6245 - 6246 - [[package]] 6247 - name = "tracing" 6248 - version = "0.1.40" 6249 - source = "registry+https://github.com/rust-lang/crates.io-index" 6250 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 6251 - dependencies = [ 6252 - "log", 6253 - "pin-project-lite", 6254 - "tracing-attributes", 6255 - "tracing-core", 6256 - ] 6257 - 6258 - [[package]] 6259 - name = "tracing-attributes" 6260 - version = "0.1.27" 6261 - source = "registry+https://github.com/rust-lang/crates.io-index" 6262 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 6263 - dependencies = [ 6264 - "proc-macro2", 6265 - "quote", 6266 - "syn 2.0.86", 6267 - ] 6268 - 6269 - [[package]] 6270 - name = "tracing-core" 6271 - version = "0.1.32" 6272 - source = "registry+https://github.com/rust-lang/crates.io-index" 6273 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 6274 - dependencies = [ 6275 - "once_cell", 6276 - "valuable", 6277 - ] 6278 - 6279 - [[package]] 6280 - name = "tracing-log" 6281 - version = "0.2.0" 6282 - source = "registry+https://github.com/rust-lang/crates.io-index" 6283 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 6284 - dependencies = [ 6285 - "log", 6286 - "once_cell", 6287 - "tracing-core", 6288 - ] 6289 - 6290 - [[package]] 6291 - name = "tracing-subscriber" 6292 - version = "0.3.18" 6293 - source = "registry+https://github.com/rust-lang/crates.io-index" 6294 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 6295 - dependencies = [ 6296 - "matchers", 6297 - "nu-ansi-term", 6298 - "once_cell", 6299 - "regex", 6300 - "sharded-slab", 6301 - "smallvec", 6302 - "thread_local", 6303 - "tracing", 6304 - "tracing-core", 6305 - "tracing-log", 6306 - ] 6307 - 6308 - [[package]] 6309 - name = "try-lock" 6310 - version = "0.2.5" 6311 - source = "registry+https://github.com/rust-lang/crates.io-index" 6312 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 6313 - 6314 - [[package]] 6315 - name = "ttl_cache" 6316 - version = "0.5.1" 6317 - source = "registry+https://github.com/rust-lang/crates.io-index" 6318 - checksum = "4189890526f0168710b6ee65ceaedf1460c48a14318ceec933cb26baa492096a" 6319 - dependencies = [ 6320 - "linked-hash-map", 6321 - ] 6322 - 6323 - [[package]] 6324 - name = "tungstenite" 6325 - version = "0.21.0" 6326 - source = "registry+https://github.com/rust-lang/crates.io-index" 6327 - checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" 6328 - dependencies = [ 6329 - "byteorder", 6330 - "bytes", 6331 - "data-encoding", 6332 - "http 1.1.0", 6333 - "httparse", 6334 - "log", 6335 - "rand 0.8.5", 6336 - "sha1", 6337 - "thiserror", 6338 - "url", 6339 - "utf-8", 6340 - ] 6341 - 6342 - [[package]] 6343 - name = "twofish" 6344 - version = "0.7.1" 6345 - source = "registry+https://github.com/rust-lang/crates.io-index" 6346 - checksum = "a78e83a30223c757c3947cd144a31014ff04298d8719ae10d03c31c0448c8013" 6347 - dependencies = [ 6348 - "cipher", 6349 - ] 6350 - 6351 - [[package]] 6352 - name = "typenum" 6353 - version = "1.17.0" 6354 - source = "registry+https://github.com/rust-lang/crates.io-index" 6355 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 6356 - 6357 - [[package]] 6358 - name = "typescript-type-def" 6359 - version = "0.5.13" 6360 - source = "registry+https://github.com/rust-lang/crates.io-index" 6361 - checksum = "233ee5e596f41dbaf8c3e48a60b128eadf89395ee9e45fcedc3281c077c5a014" 6362 - dependencies = [ 6363 - "serde_json", 6364 - "typescript-type-def-derive", 6365 - ] 6366 - 6367 - [[package]] 6368 - name = "typescript-type-def-derive" 6369 - version = "0.5.13" 6370 - source = "registry+https://github.com/rust-lang/crates.io-index" 6371 - checksum = "912e6d6fed61bac90cd957093b11b5330d756ad4e7b8f309f71ae04b546a8513" 6372 - dependencies = [ 6373 - "darling", 6374 - "ident_case", 6375 - "proc-macro-error2", 6376 - "proc-macro2", 6377 - "quote", 6378 - "syn 2.0.86", 6379 - ] 6380 - 6381 - [[package]] 6382 - name = "ucd-parse" 6383 - version = "0.1.13" 6384 - source = "registry+https://github.com/rust-lang/crates.io-index" 6385 - checksum = "c06ff81122fcbf4df4c1660b15f7e3336058e7aec14437c9f85c6b31a0f279b9" 6386 - dependencies = [ 6387 - "regex-lite", 6388 - ] 6389 - 6390 - [[package]] 6391 - name = "ucd-trie" 6392 - version = "0.1.6" 6393 - source = "registry+https://github.com/rust-lang/crates.io-index" 6394 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 6395 - 6396 - [[package]] 6397 - name = "unarray" 6398 - version = "0.1.4" 6399 - source = "registry+https://github.com/rust-lang/crates.io-index" 6400 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 6401 - 6402 - [[package]] 6403 - name = "unicode-bidi" 6404 - version = "0.3.15" 6405 - source = "registry+https://github.com/rust-lang/crates.io-index" 6406 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 6407 - 6408 - [[package]] 6409 - name = "unicode-ident" 6410 - version = "1.0.12" 6411 - source = "registry+https://github.com/rust-lang/crates.io-index" 6412 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 6413 - 6414 - [[package]] 6415 - name = "unicode-linebreak" 6416 - version = "0.1.5" 6417 - source = "registry+https://github.com/rust-lang/crates.io-index" 6418 - checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 6419 - 6420 - [[package]] 6421 - name = "unicode-normalization" 6422 - version = "0.1.23" 6423 - source = "registry+https://github.com/rust-lang/crates.io-index" 6424 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 6425 - dependencies = [ 6426 - "tinyvec", 6427 - ] 6428 - 6429 - [[package]] 6430 - name = "unicode-segmentation" 6431 - version = "1.11.0" 6432 - source = "registry+https://github.com/rust-lang/crates.io-index" 6433 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 6434 - 6435 - [[package]] 6436 - name = "unicode-width" 6437 - version = "0.1.11" 6438 - source = "registry+https://github.com/rust-lang/crates.io-index" 6439 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 6440 - 6441 - [[package]] 6442 - name = "unicode-xid" 6443 - version = "0.2.4" 6444 - source = "registry+https://github.com/rust-lang/crates.io-index" 6445 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 6446 - 6447 - [[package]] 6448 - name = "universal-hash" 6449 - version = "0.5.1" 6450 - source = "registry+https://github.com/rust-lang/crates.io-index" 6451 - checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 6452 - dependencies = [ 6453 - "crypto-common", 6454 - "subtle", 6455 - ] 6456 - 6457 - [[package]] 6458 - name = "untrusted" 6459 - version = "0.9.0" 6460 - source = "registry+https://github.com/rust-lang/crates.io-index" 6461 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6462 - 6463 - [[package]] 6464 - name = "ureq" 6465 - version = "2.10.0" 6466 - source = "registry+https://github.com/rust-lang/crates.io-index" 6467 - checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea" 6468 - dependencies = [ 6469 - "base64 0.22.1", 6470 - "log", 6471 - "once_cell", 6472 - "rustls", 6473 - "rustls-pki-types", 6474 - "url", 6475 - "webpki-roots", 6476 - ] 6477 - 6478 - [[package]] 6479 - name = "url" 6480 - version = "2.5.2" 6481 - source = "registry+https://github.com/rust-lang/crates.io-index" 6482 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 6483 - dependencies = [ 6484 - "form_urlencoded", 6485 - "idna", 6486 - "percent-encoding", 6487 - "serde", 6488 - ] 6489 - 6490 - [[package]] 6491 - name = "utf-8" 6492 - version = "0.7.6" 6493 - source = "registry+https://github.com/rust-lang/crates.io-index" 6494 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 6495 - 6496 - [[package]] 6497 - name = "utf8parse" 6498 - version = "0.2.1" 6499 - source = "registry+https://github.com/rust-lang/crates.io-index" 6500 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 6501 - 6502 - [[package]] 6503 - name = "uuid" 6504 - version = "1.11.0" 6505 - source = "registry+https://github.com/rust-lang/crates.io-index" 6506 - checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 6507 - dependencies = [ 6508 - "getrandom 0.2.12", 6509 - "serde", 6510 - ] 6511 - 6512 - [[package]] 6513 - name = "valuable" 6514 - version = "0.1.0" 6515 - source = "registry+https://github.com/rust-lang/crates.io-index" 6516 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 6517 - 6518 - [[package]] 6519 - name = "vcpkg" 6520 - version = "0.2.15" 6521 - source = "registry+https://github.com/rust-lang/crates.io-index" 6522 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 6523 - 6524 - [[package]] 6525 - name = "version_check" 6526 - version = "0.9.4" 6527 - source = "registry+https://github.com/rust-lang/crates.io-index" 6528 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 6529 - 6530 - [[package]] 6531 - name = "waker-fn" 6532 - version = "1.2.0" 6533 - source = "registry+https://github.com/rust-lang/crates.io-index" 6534 - checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 6535 - 6536 - [[package]] 6537 - name = "walkdir" 6538 - version = "2.5.0" 6539 - source = "registry+https://github.com/rust-lang/crates.io-index" 6540 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 6541 - dependencies = [ 6542 - "same-file", 6543 - "winapi-util", 6544 - ] 6545 - 6546 - [[package]] 6547 - name = "want" 6548 - version = "0.3.1" 6549 - source = "registry+https://github.com/rust-lang/crates.io-index" 6550 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 6551 - dependencies = [ 6552 - "try-lock", 6553 - ] 6554 - 6555 - [[package]] 6556 - name = "wasi" 6557 - version = "0.9.0+wasi-snapshot-preview1" 6558 - source = "registry+https://github.com/rust-lang/crates.io-index" 6559 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 6560 - 6561 - [[package]] 6562 - name = "wasi" 6563 - version = "0.10.0+wasi-snapshot-preview1" 6564 - source = "registry+https://github.com/rust-lang/crates.io-index" 6565 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 6566 - 6567 - [[package]] 6568 - name = "wasi" 6569 - version = "0.11.0+wasi-snapshot-preview1" 6570 - source = "registry+https://github.com/rust-lang/crates.io-index" 6571 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 6572 - 6573 - [[package]] 6574 - name = "wasite" 6575 - version = "0.1.0" 6576 - source = "registry+https://github.com/rust-lang/crates.io-index" 6577 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 6578 - 6579 - [[package]] 6580 - name = "wasm-bindgen" 6581 - version = "0.2.92" 6582 - source = "registry+https://github.com/rust-lang/crates.io-index" 6583 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 6584 - dependencies = [ 6585 - "cfg-if", 6586 - "wasm-bindgen-macro", 6587 - ] 6588 - 6589 - [[package]] 6590 - name = "wasm-bindgen-backend" 6591 - version = "0.2.92" 6592 - source = "registry+https://github.com/rust-lang/crates.io-index" 6593 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 6594 - dependencies = [ 6595 - "bumpalo", 6596 - "log", 6597 - "once_cell", 6598 - "proc-macro2", 6599 - "quote", 6600 - "syn 2.0.86", 6601 - "wasm-bindgen-shared", 6602 - ] 6603 - 6604 - [[package]] 6605 - name = "wasm-bindgen-futures" 6606 - version = "0.4.42" 6607 - source = "registry+https://github.com/rust-lang/crates.io-index" 6608 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 6609 - dependencies = [ 6610 - "cfg-if", 6611 - "js-sys", 6612 - "wasm-bindgen", 6613 - "web-sys", 6614 - ] 6615 - 6616 - [[package]] 6617 - name = "wasm-bindgen-macro" 6618 - version = "0.2.92" 6619 - source = "registry+https://github.com/rust-lang/crates.io-index" 6620 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 6621 - dependencies = [ 6622 - "quote", 6623 - "wasm-bindgen-macro-support", 6624 - ] 6625 - 6626 - [[package]] 6627 - name = "wasm-bindgen-macro-support" 6628 - version = "0.2.92" 6629 - source = "registry+https://github.com/rust-lang/crates.io-index" 6630 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 6631 - dependencies = [ 6632 - "proc-macro2", 6633 - "quote", 6634 - "syn 2.0.86", 6635 - "wasm-bindgen-backend", 6636 - "wasm-bindgen-shared", 6637 - ] 6638 - 6639 - [[package]] 6640 - name = "wasm-bindgen-shared" 6641 - version = "0.2.92" 6642 - source = "registry+https://github.com/rust-lang/crates.io-index" 6643 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 6644 - 6645 - [[package]] 6646 - name = "watchable" 6647 - version = "1.1.2" 6648 - source = "registry+https://github.com/rust-lang/crates.io-index" 6649 - checksum = "45b42a2f611916b5965120a9cde2b60f2db4454826dd9ad5e6f47c24a5b3b259" 6650 - dependencies = [ 6651 - "event-listener 4.0.3", 6652 - "futures-util", 6653 - "parking_lot", 6654 - "thiserror", 6655 - ] 6656 - 6657 - [[package]] 6658 - name = "web-sys" 6659 - version = "0.3.69" 6660 - source = "registry+https://github.com/rust-lang/crates.io-index" 6661 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 6662 - dependencies = [ 6663 - "js-sys", 6664 - "wasm-bindgen", 6665 - ] 6666 - 6667 - [[package]] 6668 - name = "webpki-roots" 6669 - version = "0.26.6" 6670 - source = "registry+https://github.com/rust-lang/crates.io-index" 6671 - checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 6672 - dependencies = [ 6673 - "rustls-pki-types", 6674 - ] 6675 - 6676 - [[package]] 6677 - name = "weezl" 6678 - version = "0.1.8" 6679 - source = "registry+https://github.com/rust-lang/crates.io-index" 6680 - checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 6681 - 6682 - [[package]] 6683 - name = "whoami" 6684 - version = "1.5.0" 6685 - source = "registry+https://github.com/rust-lang/crates.io-index" 6686 - checksum = "0fec781d48b41f8163426ed18e8fc2864c12937df9ce54c88ede7bd47270893e" 6687 - dependencies = [ 6688 - "redox_syscall 0.4.1", 6689 - "wasite", 6690 - "web-sys", 6691 - ] 6692 - 6693 - [[package]] 6694 - name = "widestring" 6695 - version = "1.0.2" 6696 - source = "registry+https://github.com/rust-lang/crates.io-index" 6697 - checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 6698 - 6699 - [[package]] 6700 - name = "winapi" 6701 - version = "0.3.9" 6702 - source = "registry+https://github.com/rust-lang/crates.io-index" 6703 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6704 - dependencies = [ 6705 - "winapi-i686-pc-windows-gnu", 6706 - "winapi-x86_64-pc-windows-gnu", 6707 - ] 6708 - 6709 - [[package]] 6710 - name = "winapi-i686-pc-windows-gnu" 6711 - version = "0.4.0" 6712 - source = "registry+https://github.com/rust-lang/crates.io-index" 6713 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6714 - 6715 - [[package]] 6716 - name = "winapi-util" 6717 - version = "0.1.6" 6718 - source = "registry+https://github.com/rust-lang/crates.io-index" 6719 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 6720 - dependencies = [ 6721 - "winapi", 6722 - ] 6723 - 6724 - [[package]] 6725 - name = "winapi-x86_64-pc-windows-gnu" 6726 - version = "0.4.0" 6727 - source = "registry+https://github.com/rust-lang/crates.io-index" 6728 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6729 - 6730 - [[package]] 6731 - name = "windows" 6732 - version = "0.48.0" 6733 - source = "registry+https://github.com/rust-lang/crates.io-index" 6734 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 6735 - dependencies = [ 6736 - "windows-targets 0.48.5", 6737 - ] 6738 - 6739 - [[package]] 6740 - name = "windows" 6741 - version = "0.51.1" 6742 - source = "registry+https://github.com/rust-lang/crates.io-index" 6743 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 6744 - dependencies = [ 6745 - "windows-core 0.51.1", 6746 - "windows-targets 0.48.5", 6747 - ] 6748 - 6749 - [[package]] 6750 - name = "windows" 6751 - version = "0.52.0" 6752 - source = "registry+https://github.com/rust-lang/crates.io-index" 6753 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6754 - dependencies = [ 6755 - "windows-core 0.52.0", 6756 - "windows-implement", 6757 - "windows-interface", 6758 - "windows-targets 0.52.6", 6759 - ] 6760 - 6761 - [[package]] 6762 - name = "windows-core" 6763 - version = "0.51.1" 6764 - source = "registry+https://github.com/rust-lang/crates.io-index" 6765 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 6766 - dependencies = [ 6767 - "windows-targets 0.48.5", 6768 - ] 6769 - 6770 - [[package]] 6771 - name = "windows-core" 6772 - version = "0.52.0" 6773 - source = "registry+https://github.com/rust-lang/crates.io-index" 6774 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6775 - dependencies = [ 6776 - "windows-targets 0.52.6", 6777 - ] 6778 - 6779 - [[package]] 6780 - name = "windows-implement" 6781 - version = "0.52.0" 6782 - source = "registry+https://github.com/rust-lang/crates.io-index" 6783 - checksum = "12168c33176773b86799be25e2a2ba07c7aab9968b37541f1094dbd7a60c8946" 6784 - dependencies = [ 6785 - "proc-macro2", 6786 - "quote", 6787 - "syn 2.0.86", 6788 - ] 6789 - 6790 - [[package]] 6791 - name = "windows-interface" 6792 - version = "0.52.0" 6793 - source = "registry+https://github.com/rust-lang/crates.io-index" 6794 - checksum = "9d8dc32e0095a7eeccebd0e3f09e9509365ecb3fc6ac4d6f5f14a3f6392942d1" 6795 - dependencies = [ 6796 - "proc-macro2", 6797 - "quote", 6798 - "syn 2.0.86", 6799 - ] 6800 - 6801 - [[package]] 6802 - name = "windows-sys" 6803 - version = "0.48.0" 6804 - source = "registry+https://github.com/rust-lang/crates.io-index" 6805 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6806 - dependencies = [ 6807 - "windows-targets 0.48.5", 6808 - ] 6809 - 6810 - [[package]] 6811 - name = "windows-sys" 6812 - version = "0.52.0" 6813 - source = "registry+https://github.com/rust-lang/crates.io-index" 6814 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6815 - dependencies = [ 6816 - "windows-targets 0.52.6", 6817 - ] 6818 - 6819 - [[package]] 6820 - name = "windows-sys" 6821 - version = "0.59.0" 6822 - source = "registry+https://github.com/rust-lang/crates.io-index" 6823 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 6824 - dependencies = [ 6825 - "windows-targets 0.52.6", 6826 - ] 6827 - 6828 - [[package]] 6829 - name = "windows-targets" 6830 - version = "0.48.5" 6831 - source = "registry+https://github.com/rust-lang/crates.io-index" 6832 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 6833 - dependencies = [ 6834 - "windows_aarch64_gnullvm 0.48.5", 6835 - "windows_aarch64_msvc 0.48.5", 6836 - "windows_i686_gnu 0.48.5", 6837 - "windows_i686_msvc 0.48.5", 6838 - "windows_x86_64_gnu 0.48.5", 6839 - "windows_x86_64_gnullvm 0.48.5", 6840 - "windows_x86_64_msvc 0.48.5", 6841 - ] 6842 - 6843 - [[package]] 6844 - name = "windows-targets" 6845 - version = "0.52.6" 6846 - source = "registry+https://github.com/rust-lang/crates.io-index" 6847 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6848 - dependencies = [ 6849 - "windows_aarch64_gnullvm 0.52.6", 6850 - "windows_aarch64_msvc 0.52.6", 6851 - "windows_i686_gnu 0.52.6", 6852 - "windows_i686_gnullvm", 6853 - "windows_i686_msvc 0.52.6", 6854 - "windows_x86_64_gnu 0.52.6", 6855 - "windows_x86_64_gnullvm 0.52.6", 6856 - "windows_x86_64_msvc 0.52.6", 6857 - ] 6858 - 6859 - [[package]] 6860 - name = "windows_aarch64_gnullvm" 6861 - version = "0.48.5" 6862 - source = "registry+https://github.com/rust-lang/crates.io-index" 6863 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 6864 - 6865 - [[package]] 6866 - name = "windows_aarch64_gnullvm" 6867 - version = "0.52.6" 6868 - source = "registry+https://github.com/rust-lang/crates.io-index" 6869 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6870 - 6871 - [[package]] 6872 - name = "windows_aarch64_msvc" 6873 - version = "0.48.5" 6874 - source = "registry+https://github.com/rust-lang/crates.io-index" 6875 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 6876 - 6877 - [[package]] 6878 - name = "windows_aarch64_msvc" 6879 - version = "0.52.6" 6880 - source = "registry+https://github.com/rust-lang/crates.io-index" 6881 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6882 - 6883 - [[package]] 6884 - name = "windows_i686_gnu" 6885 - version = "0.48.5" 6886 - source = "registry+https://github.com/rust-lang/crates.io-index" 6887 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 6888 - 6889 - [[package]] 6890 - name = "windows_i686_gnu" 6891 - version = "0.52.6" 6892 - source = "registry+https://github.com/rust-lang/crates.io-index" 6893 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6894 - 6895 - [[package]] 6896 - name = "windows_i686_gnullvm" 6897 - version = "0.52.6" 6898 - source = "registry+https://github.com/rust-lang/crates.io-index" 6899 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 6900 - 6901 - [[package]] 6902 - name = "windows_i686_msvc" 6903 - version = "0.48.5" 6904 - source = "registry+https://github.com/rust-lang/crates.io-index" 6905 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 6906 - 6907 - [[package]] 6908 - name = "windows_i686_msvc" 6909 - version = "0.52.6" 6910 - source = "registry+https://github.com/rust-lang/crates.io-index" 6911 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 6912 - 6913 - [[package]] 6914 - name = "windows_x86_64_gnu" 6915 - version = "0.48.5" 6916 - source = "registry+https://github.com/rust-lang/crates.io-index" 6917 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 6918 - 6919 - [[package]] 6920 - name = "windows_x86_64_gnu" 6921 - version = "0.52.6" 6922 - source = "registry+https://github.com/rust-lang/crates.io-index" 6923 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 6924 - 6925 - [[package]] 6926 - name = "windows_x86_64_gnullvm" 6927 - version = "0.48.5" 6928 - source = "registry+https://github.com/rust-lang/crates.io-index" 6929 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 6930 - 6931 - [[package]] 6932 - name = "windows_x86_64_gnullvm" 6933 - version = "0.52.6" 6934 - source = "registry+https://github.com/rust-lang/crates.io-index" 6935 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 6936 - 6937 - [[package]] 6938 - name = "windows_x86_64_msvc" 6939 - version = "0.48.5" 6940 - source = "registry+https://github.com/rust-lang/crates.io-index" 6941 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 6942 - 6943 - [[package]] 6944 - name = "windows_x86_64_msvc" 6945 - version = "0.52.6" 6946 - source = "registry+https://github.com/rust-lang/crates.io-index" 6947 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6948 - 6949 - [[package]] 6950 - name = "winnow" 6951 - version = "0.6.18" 6952 - source = "registry+https://github.com/rust-lang/crates.io-index" 6953 - checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" 6954 - dependencies = [ 6955 - "memchr", 6956 - ] 6957 - 6958 - [[package]] 6959 - name = "winreg" 6960 - version = "0.50.0" 6961 - source = "registry+https://github.com/rust-lang/crates.io-index" 6962 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 6963 - dependencies = [ 6964 - "cfg-if", 6965 - "windows-sys 0.48.0", 6966 - ] 6967 - 6968 - [[package]] 6969 - name = "winreg" 6970 - version = "0.52.0" 6971 - source = "registry+https://github.com/rust-lang/crates.io-index" 6972 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 6973 - dependencies = [ 6974 - "cfg-if", 6975 - "windows-sys 0.48.0", 6976 - ] 6977 - 6978 - [[package]] 6979 - name = "wmi" 6980 - version = "0.13.3" 6981 - source = "registry+https://github.com/rust-lang/crates.io-index" 6982 - checksum = "fc2f0a4062ca522aad4705a2948fd4061b3857537990202a8ddd5af21607f79a" 6983 - dependencies = [ 6984 - "chrono", 6985 - "futures", 6986 - "log", 6987 - "serde", 6988 - "thiserror", 6989 - "windows 0.52.0", 6990 - ] 6991 - 6992 - [[package]] 6993 - name = "wyz" 6994 - version = "0.5.1" 6995 - source = "registry+https://github.com/rust-lang/crates.io-index" 6996 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 6997 - dependencies = [ 6998 - "tap", 6999 - ] 7000 - 7001 - [[package]] 7002 - name = "x25519-dalek" 7003 - version = "2.0.1" 7004 - source = "registry+https://github.com/rust-lang/crates.io-index" 7005 - checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 7006 - dependencies = [ 7007 - "curve25519-dalek", 7008 - "rand_core 0.6.4", 7009 - "serde", 7010 - "zeroize", 7011 - ] 7012 - 7013 - [[package]] 7014 - name = "x509-parser" 7015 - version = "0.16.0" 7016 - source = "registry+https://github.com/rust-lang/crates.io-index" 7017 - checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 7018 - dependencies = [ 7019 - "asn1-rs", 7020 - "data-encoding", 7021 - "der-parser", 7022 - "lazy_static", 7023 - "nom", 7024 - "oid-registry", 7025 - "rusticata-macros", 7026 - "thiserror", 7027 - "time 0.3.36", 7028 - ] 7029 - 7030 - [[package]] 7031 - name = "xattr" 7032 - version = "1.3.1" 7033 - source = "registry+https://github.com/rust-lang/crates.io-index" 7034 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 7035 - dependencies = [ 7036 - "libc", 7037 - "linux-raw-sys", 7038 - "rustix", 7039 - ] 7040 - 7041 - [[package]] 7042 - name = "xml-rs" 7043 - version = "0.8.20" 7044 - source = "registry+https://github.com/rust-lang/crates.io-index" 7045 - checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 7046 - 7047 - [[package]] 7048 - name = "xmltree" 7049 - version = "0.10.3" 7050 - source = "registry+https://github.com/rust-lang/crates.io-index" 7051 - checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" 7052 - dependencies = [ 7053 - "xml-rs", 7054 - ] 7055 - 7056 - [[package]] 7057 - name = "yansi" 7058 - version = "1.0.1" 7059 - source = "registry+https://github.com/rust-lang/crates.io-index" 7060 - checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 7061 - 7062 - [[package]] 7063 - name = "yasna" 7064 - version = "0.5.2" 7065 - source = "registry+https://github.com/rust-lang/crates.io-index" 7066 - checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 7067 - dependencies = [ 7068 - "time 0.3.36", 7069 - ] 7070 - 7071 - [[package]] 7072 - name = "yerpc" 7073 - version = "0.6.2" 7074 - source = "registry+https://github.com/rust-lang/crates.io-index" 7075 - checksum = "b4755f069230677a7a8d94164a521d30007c15e3be0eb4c15aa39065b9df25c8" 7076 - dependencies = [ 7077 - "anyhow", 7078 - "async-channel 1.9.0", 7079 - "async-mutex", 7080 - "async-trait", 7081 - "axum", 7082 - "futures", 7083 - "futures-util", 7084 - "log", 7085 - "schemars", 7086 - "serde", 7087 - "serde_json", 7088 - "tokio", 7089 - "tracing", 7090 - "typescript-type-def", 7091 - "yerpc_derive", 7092 - ] 7093 - 7094 - [[package]] 7095 - name = "yerpc_derive" 7096 - version = "0.6.1" 7097 - source = "registry+https://github.com/rust-lang/crates.io-index" 7098 - checksum = "35ba6b4417cfeb26cd806f3aabc22e7c4097632e07b5b61a4c818bccb2df4f21" 7099 - dependencies = [ 7100 - "convert_case", 7101 - "darling", 7102 - "proc-macro2", 7103 - "quote", 7104 - "syn 2.0.86", 7105 - ] 7106 - 7107 - [[package]] 7108 - name = "z32" 7109 - version = "1.1.1" 7110 - source = "registry+https://github.com/rust-lang/crates.io-index" 7111 - checksum = "edb37266251c28b03d08162174a91c3a092e3bd4f476f8205ee1c507b78b7bdc" 7112 - 7113 - [[package]] 7114 - name = "zerocopy" 7115 - version = "0.7.32" 7116 - source = "registry+https://github.com/rust-lang/crates.io-index" 7117 - checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 7118 - dependencies = [ 7119 - "zerocopy-derive", 7120 - ] 7121 - 7122 - [[package]] 7123 - name = "zerocopy-derive" 7124 - version = "0.7.32" 7125 - source = "registry+https://github.com/rust-lang/crates.io-index" 7126 - checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 7127 - dependencies = [ 7128 - "proc-macro2", 7129 - "quote", 7130 - "syn 2.0.86", 7131 - ] 7132 - 7133 - [[package]] 7134 - name = "zeroize" 7135 - version = "1.7.0" 7136 - source = "registry+https://github.com/rust-lang/crates.io-index" 7137 - checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 7138 - dependencies = [ 7139 - "zeroize_derive", 7140 - ] 7141 - 7142 - [[package]] 7143 - name = "zeroize_derive" 7144 - version = "1.4.2" 7145 - source = "registry+https://github.com/rust-lang/crates.io-index" 7146 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 7147 - dependencies = [ 7148 - "proc-macro2", 7149 - "quote", 7150 - "syn 2.0.86", 7151 - ] 7152 - 7153 - [[package]] 7154 - name = "zune-core" 7155 - version = "0.4.12" 7156 - source = "registry+https://github.com/rust-lang/crates.io-index" 7157 - checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 7158 - 7159 - [[package]] 7160 - name = "zune-jpeg" 7161 - version = "0.4.13" 7162 - source = "registry+https://github.com/rust-lang/crates.io-index" 7163 - checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768" 7164 - dependencies = [ 7165 - "zune-core", 7166 - ]
···
+3 -3
pkgs/by-name/li/libdeltachat/package.nix
··· 20 21 stdenv.mkDerivation rec { 22 pname = "libdeltachat"; 23 - version = "1.148.7"; 24 25 src = fetchFromGitHub { 26 owner = "deltachat"; 27 repo = "deltachat-core-rust"; 28 rev = "v${version}"; 29 - hash = "sha256-mTNWSR4ea972tIOvg6RClEc44mKXoHDEWoLZXio8O4k="; 30 }; 31 32 patches = [ ··· 36 cargoDeps = rustPlatform.fetchCargoVendor { 37 pname = "deltachat-core-rust"; 38 inherit version src; 39 - hash = "sha256-eDj8DIvvWWj+tfHuzR35WXlKY5klGxW+MixdN++vugk="; 40 }; 41 42 nativeBuildInputs = [
··· 20 21 stdenv.mkDerivation rec { 22 pname = "libdeltachat"; 23 + version = "1.150.0"; 24 25 src = fetchFromGitHub { 26 owner = "deltachat"; 27 repo = "deltachat-core-rust"; 28 rev = "v${version}"; 29 + hash = "sha256-lVMXW2fnpoa/iiypLhHl7WXLqouHfrRapEbXL37X7B8="; 30 }; 31 32 patches = [ ··· 36 cargoDeps = rustPlatform.fetchCargoVendor { 37 pname = "deltachat-core-rust"; 38 inherit version src; 39 + hash = "sha256-nzAQEaTHkKjDmKDmwZEznpvVh1KfxTM83/82hjV/Cpw="; 40 }; 41 42 nativeBuildInputs = [
+3 -3
pkgs/by-name/li/libkrun/package.nix
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "libkrun"; 24 - version = "1.9.6"; 25 26 src = fetchFromGitHub { 27 owner = "containers"; 28 repo = "libkrun"; 29 rev = "refs/tags/v${finalAttrs.version}"; 30 - hash = "sha256-bseyOHgteLEUz93gL5G2zR0ssijMd86zmlvm02a7FSY="; 31 }; 32 33 outputs = [ "out" "dev" ]; 34 35 cargoDeps = rustPlatform.fetchCargoTarball { 36 inherit (finalAttrs) src; 37 - hash = "sha256-OerD2SEJquv7bHEZw4jdxmrQn8SuIUJiYPu9E1u439o="; 38 }; 39 40 nativeBuildInputs = [
··· 21 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "libkrun"; 24 + version = "1.9.8"; 25 26 src = fetchFromGitHub { 27 owner = "containers"; 28 repo = "libkrun"; 29 rev = "refs/tags/v${finalAttrs.version}"; 30 + hash = "sha256-a5ot5ad8boANK3achn6PJ52k/xmxawbTM0/hEEC/fss="; 31 }; 32 33 outputs = [ "out" "dev" ]; 34 35 cargoDeps = rustPlatform.fetchCargoTarball { 36 inherit (finalAttrs) src; 37 + hash = "sha256-oa3M/HL0hWoXlqY0Wxy9jf6hIvMqevtpuYiTCrS1Q74="; 38 }; 39 40 nativeBuildInputs = [
+26 -15
pkgs/by-name/ln/lnav/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , pcre2 5 - , sqlite 6 - , ncurses 7 - , readline 8 - , zlib 9 - , bzip2 10 - , autoconf 11 - , automake 12 - , curl 13 - , buildPackages 14 - , nix-update-script 15 }: 16 17 stdenv.mkDerivation rec { ··· 26 }; 27 28 enableParallelBuilding = true; 29 30 strictDeps = true; 31 depsBuildBuild = [ buildPackages.stdenv.cc ]; ··· 34 automake 35 zlib 36 curl.dev 37 ]; 38 buildInputs = [ 39 bzip2 ··· 42 readline 43 sqlite 44 curl 45 ]; 46 47 preConfigure = '' ··· 64 ''; 65 downloadPage = "https://github.com/tstack/lnav/releases"; 66 license = licenses.bsd2; 67 - maintainers = with maintainers; [ dochang ]; 68 platforms = platforms.unix; 69 mainProgram = "lnav"; 70 };
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + pcre2, 6 + sqlite, 7 + ncurses, 8 + readline, 9 + zlib, 10 + bzip2, 11 + autoconf, 12 + automake, 13 + curl, 14 + buildPackages, 15 + re2c, 16 + gpm, 17 + libarchive, 18 + nix-update-script, 19 }: 20 21 stdenv.mkDerivation rec { ··· 30 }; 31 32 enableParallelBuilding = true; 33 + separateDebugInfo = true; 34 35 strictDeps = true; 36 depsBuildBuild = [ buildPackages.stdenv.cc ]; ··· 39 automake 40 zlib 41 curl.dev 42 + re2c 43 ]; 44 buildInputs = [ 45 bzip2 ··· 48 readline 49 sqlite 50 curl 51 + gpm 52 + libarchive 53 ]; 54 55 preConfigure = '' ··· 72 ''; 73 downloadPage = "https://github.com/tstack/lnav/releases"; 74 license = licenses.bsd2; 75 + maintainers = with maintainers; [ 76 + dochang 77 + symphorien 78 + ]; 79 platforms = platforms.unix; 80 mainProgram = "lnav"; 81 };
+2 -2
pkgs/by-name/lu/lunatask/package.nix
··· 5 }: 6 7 let 8 - version = "2.0.12"; 9 pname = "lunatask"; 10 11 src = fetchurl { 12 url = "https://lunatask.app/download/Lunatask-${version}.AppImage"; 13 - hash = "sha256-z1c3ACIRF8+iIy4ihEWqRDzalHyN5AvOdBxQG9sCXVs="; 14 }; 15 16 appimageContents = appimageTools.extract {
··· 5 }: 6 7 let 8 + version = "2.0.13"; 9 pname = "lunatask"; 10 11 src = fetchurl { 12 url = "https://lunatask.app/download/Lunatask-${version}.AppImage"; 13 + hash = "sha256-/OIIyl43oItg0XEbhEnB+rPBcY3XuQlurL5Ad+0T3aM="; 14 }; 15 16 appimageContents = appimageTools.extract {
+3 -3
pkgs/by-name/ma/markdownlint-cli/package.nix
··· 5 6 buildNpmPackage rec { 7 pname = "markdownlint-cli"; 8 - version = "0.42.0"; 9 10 src = fetchFromGitHub { 11 owner = "igorshubovych"; 12 repo = "markdownlint-cli"; 13 rev = "v${version}"; 14 - hash = "sha256-bT/6bRzpXa86e6T0bJSUm624dbRAux4qgmCc+lOtl3c="; 15 }; 16 17 - npmDepsHash = "sha256-g2+kieF+cq8olfQ5rElNNvp5NYJcg+eTNWnMxSXqlKk="; 18 19 dontNpmBuild = true; 20
··· 5 6 buildNpmPackage rec { 7 pname = "markdownlint-cli"; 8 + version = "0.43.0"; 9 10 src = fetchFromGitHub { 11 owner = "igorshubovych"; 12 repo = "markdownlint-cli"; 13 rev = "v${version}"; 14 + hash = "sha256-x9ind66qFS7k6rBDOiJ6amtVf7LTXmXsNKlnJmF6cJY="; 15 }; 16 17 + npmDepsHash = "sha256-oAUhSdbEMv96dS0lhZMSNXs9sQbu06Lwf45GVj0m+2U="; 18 19 dontNpmBuild = true; 20
+3 -3
pkgs/by-name/me/metacubexd/package.nix
··· 8 }: 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "metacubexd"; 11 - version = "1.168.0"; 12 13 src = fetchFromGitHub { 14 owner = "MetaCubeX"; 15 repo = "metacubexd"; 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-HTHqf4R3eD+LlI9qmSz4id0SPVgid8Qp4P9JZzXGKlk="; 18 }; 19 20 nativeBuildInputs = [ ··· 24 25 pnpmDeps = pnpm.fetchDeps { 26 inherit (finalAttrs) pname version src; 27 - hash = "sha256-OFcXsAFMwY6BnyEVK9Px1g17CHCQWyPpr1My7u3XPpU="; 28 }; 29 30 buildPhase = ''
··· 8 }: 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "metacubexd"; 11 + version = "1.171.0"; 12 13 src = fetchFromGitHub { 14 owner = "MetaCubeX"; 15 repo = "metacubexd"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-9ST7MwvEMCa2bORffWvhSXSHKU1V3b5oFZ3ExZ2kZnk="; 18 }; 19 20 nativeBuildInputs = [ ··· 24 25 pnpmDeps = pnpm.fetchDeps { 26 inherit (finalAttrs) pname version src; 27 + hash = "sha256-ta5H1sNROP8nyLNno6C7p6NyXRFuD32tnN7B0nlLdOM="; 28 }; 29 30 buildPhase = ''
+6 -12
pkgs/by-name/mu/mud/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 fetchFromGitHub, 5 python3Packages, 6 - versionCheckHook, 7 }: 8 9 python3Packages.buildPythonApplication rec { 10 pname = "mud"; 11 - version = "1.0.1"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "jasursadikov"; 16 repo = "mud"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-pW4B4+RN7hKtG2enJ33OHBeGsLj8w20ylvjcOL6owAk="; 19 }; 20 21 build-system = with python3Packages; [ 22 hatchling 23 ]; 24 25 dependencies = with python3Packages; [ ··· 28 29 pythonImportsCheck = [ "mud" ]; 30 31 - # Version checking fails on darwin with: 32 - # PermissionError: [Errno 1] Operation not permitted: '/var/empty/.mudsettings' 33 - # despite adding `export HOME=$(mktemp -d)` in the `preVersionCheck` phase. 34 - # The tool 35 - nativeCheckInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) [ 36 - versionCheckHook 37 - ]; 38 - versionCheckProgramArg = [ "--version" ]; 39 40 meta = { 41 description = "multi-directory git runner which allows you to run git commands in a multiple repositories";
··· 1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "mud"; 9 + version = "1.0.10"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "jasursadikov"; 14 repo = "mud"; 15 rev = "refs/tags/v${version}"; 16 + hash = "sha256-UPlAA63iANuChpqWLUDHQrcRjYkHvLcwXW/lVrAfY20="; 17 }; 18 19 build-system = with python3Packages; [ 20 hatchling 21 + setuptools-scm 22 ]; 23 24 dependencies = with python3Packages; [ ··· 27 28 pythonImportsCheck = [ "mud" ]; 29 30 + # Removed versionCheckHook due to conflict with the new release, 31 + # a mud config file is required to run the version check command. 32 + # Mud can only be initialized in a directory containing git repos. 33 34 meta = { 35 description = "multi-directory git runner which allows you to run git commands in a multiple repositories";
+1 -1
pkgs/by-name/n9/n98-magerun2/package.nix
··· 15 hash = "sha256-OPvyZ0r7Zt4PC+rmRtBm9EkbaE4PeovnUHrhzXUqT8E="; 16 }; 17 18 - vendorHash = "sha256-E2V5ARNCmGOmGGctfcjpW49cxFBcWyJEodBNjHhKQ+w="; 19 20 meta = { 21 changelog = "https://magerun.net/category/magerun/";
··· 15 hash = "sha256-OPvyZ0r7Zt4PC+rmRtBm9EkbaE4PeovnUHrhzXUqT8E="; 16 }; 17 18 + vendorHash = "sha256-604n3Z4R2+zca+NN75Y7afa2Y6Y6ussxE+MEQsDLWsg="; 19 20 meta = { 21 changelog = "https://magerun.net/category/magerun/";
+2 -2
pkgs/by-name/op/open62541pp/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "open62541pp"; 11 - version = "0.15.0"; 12 13 src = fetchFromGitHub { 14 owner = "open62541pp"; 15 repo = "open62541pp"; 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-6HQ8j23+xqJCOwCRK1GgNAoz/wXUBqdulfeQFFXSjEo="; 18 }; 19 20 cmakeFlags = [
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "open62541pp"; 11 + version = "0.16.0"; 12 13 src = fetchFromGitHub { 14 owner = "open62541pp"; 15 repo = "open62541pp"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-9sxfM1BH6f29JRckNJi+t2TWNvtHmfyc6WO93PR2ofY="; 18 }; 19 20 cmakeFlags = [
+3 -3
pkgs/by-name/op/opentofu/package.nix
··· 14 let 15 package = buildGoModule rec { 16 pname = "opentofu"; 17 - version = "1.8.5"; 18 19 src = fetchFromGitHub { 20 owner = "opentofu"; 21 repo = "opentofu"; 22 rev = "v${version}"; 23 - hash = "sha256-sZGKM6Dxz0bZkHIITujojSsKtRD4E+q1uReWRg5EfC8="; 24 }; 25 26 - vendorHash = "sha256-cM2DSP2ss3vleUhPBIdyxKeWJxtHpdjL5b5HVS/iC6o="; 27 ldflags = [ "-s" "-w" "-X" "github.com/opentofu/opentofu/version.dev=no" ]; 28 29 postConfigure = ''
··· 14 let 15 package = buildGoModule rec { 16 pname = "opentofu"; 17 + version = "1.8.6"; 18 19 src = fetchFromGitHub { 20 owner = "opentofu"; 21 repo = "opentofu"; 22 rev = "v${version}"; 23 + hash = "sha256-yJCUWRAntye3Dx2a+s/gNVa+XuCQak24TnFjSY+/3zc="; 24 }; 25 26 + vendorHash = "sha256-MHdEY2nlUGTKybMPran5mTXlAlTFilfrY5K2sMlPe5U="; 27 ldflags = [ "-s" "-w" "-X" "github.com/opentofu/opentofu/version.dev=no" ]; 28 29 postConfigure = ''
+3 -3
pkgs/by-name/ox/ox/package.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "ox"; 13 - version = "0.6.10"; 14 15 src = fetchFromGitHub { 16 owner = "curlpipe"; 17 repo = pname; 18 rev = version; 19 - hash = "sha256-7PaAcVatm/gqeZRuzCjoF6ZGDP6mIjDTuhmJQ5wt7x8="; 20 }; 21 22 - cargoHash = "sha256-2Jk8uDiTGUQqLOOQVlYm5R7qQXIqP0PkFvv5E5qTzT0="; 23 24 passthru = { 25 tests.version = testers.testVersion {
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "ox"; 13 + version = "0.7.1"; 14 15 src = fetchFromGitHub { 16 owner = "curlpipe"; 17 repo = pname; 18 rev = version; 19 + hash = "sha256-7rP/h3MlrMZl9yd655uRrnv1aUB57LzdyKs66wHp33Y="; 20 }; 21 22 + cargoHash = "sha256-z9pyMnYQZfCCVdVEakj3q27SFLahMDWRuAopYye6RIY="; 23 24 passthru = { 25 tests.version = testers.testVersion {
+33
pkgs/by-name/pa/passepartui/package.nix
···
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + nix-update-script, 5 + rustPlatform, 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "passepartui"; 10 + version = "0.1.4"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "kardwen"; 14 + repo = "passepartui"; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-ydX+Rjpfhi0K6f8pzjqWGF0O22gBco6Iot8fXSFNG5c="; 17 + }; 18 + 19 + cargoHash = "sha256-/lgEQ6PmHagt8TlGUV2A95MbV8IQzUwyQ/UkoaGIVHE="; 20 + 21 + passthru = { 22 + updateScript = nix-update-script { }; 23 + }; 24 + 25 + meta = { 26 + description = "TUI for pass, the standard unix password manager"; 27 + homepage = "https://github.com/kardwen/passepartui"; 28 + changelog = "https://github.com/kardwen/passepartui/releases/tag/v${version}"; 29 + license = lib.licenses.gpl3Only; 30 + maintainers = with lib.maintainers; [ getchoo ]; 31 + mainProgram = "passepartui"; 32 + }; 33 + }
+726 -896
pkgs/by-name/po/polarity/Cargo.lock
··· 4 5 [[package]] 6 name = "addr2line" 7 - version = "0.19.0" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 dependencies = [ 11 "gimli", 12 ] ··· 19 20 [[package]] 21 name = "ahash" 22 - version = "0.7.6" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 25 dependencies = [ 26 "getrandom", 27 "once_cell", ··· 30 31 [[package]] 32 name = "aho-corasick" 33 - version = "0.7.20" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 36 - dependencies = [ 37 - "memchr", 38 - ] 39 - 40 - [[package]] 41 - name = "aho-corasick" 42 version = "1.1.3" 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" ··· 48 49 [[package]] 50 name = "anstream" 51 - version = "0.2.6" 52 source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f" 54 dependencies = [ 55 - "anstyle 0.3.5", 56 - "anstyle-parse 0.1.1", 57 - "anstyle-wincon 0.2.0", 58 - "concolor-override", 59 - "concolor-query", 60 - "is-terminal", 61 - "utf8parse", 62 - ] 63 - 64 - [[package]] 65 - name = "anstream" 66 - version = "0.6.14" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 69 - dependencies = [ 70 - "anstyle 1.0.7", 71 - "anstyle-parse 0.2.4", 72 "anstyle-query", 73 - "anstyle-wincon 3.0.3", 74 "colorchoice", 75 "is_terminal_polyfill", 76 "utf8parse", ··· 78 79 [[package]] 80 name = "anstyle" 81 - version = "0.3.5" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" 84 - 85 - [[package]] 86 - name = "anstyle" 87 - version = "1.0.7" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 90 - 91 - [[package]] 92 - name = "anstyle-parse" 93 - version = "0.1.1" 94 source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116" 96 - dependencies = [ 97 - "utf8parse", 98 - ] 99 100 [[package]] 101 name = "anstyle-parse" 102 - version = "0.2.4" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 105 dependencies = [ 106 "utf8parse", 107 ] 108 109 [[package]] 110 name = "anstyle-query" 111 - version = "1.0.3" 112 source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 114 dependencies = [ 115 "windows-sys 0.52.0", 116 ] 117 118 [[package]] 119 name = "anstyle-wincon" 120 - version = "0.2.0" 121 source = "registry+https://github.com/rust-lang/crates.io-index" 122 - checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa" 123 dependencies = [ 124 - "anstyle 0.3.5", 125 - "windows-sys 0.45.0", 126 - ] 127 - 128 - [[package]] 129 - name = "anstyle-wincon" 130 - version = "3.0.3" 131 - source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 133 - dependencies = [ 134 - "anstyle 1.0.7", 135 "windows-sys 0.52.0", 136 ] 137 138 [[package]] 139 name = "anyhow" 140 - version = "1.0.70" 141 source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 143 144 [[package]] 145 name = "arrayvec" ··· 158 159 [[package]] 160 name = "assert_cmd" 161 - version = "2.0.14" 162 source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8" 164 dependencies = [ 165 - "anstyle 1.0.7", 166 "bstr", 167 "doc-comment", 168 "predicates", ··· 172 ] 173 174 [[package]] 175 name = "async-channel" 176 - version = "1.8.0" 177 source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 179 dependencies = [ 180 "concurrent-queue", 181 - "event-listener", 182 "futures-core", 183 ] 184 185 [[package]] 186 name = "async-codec-lite" 187 version = "0.0.2" 188 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 200 201 [[package]] 202 name = "async-executor" 203 - version = "1.5.0" 204 source = "registry+https://github.com/rust-lang/crates.io-index" 205 - checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" 206 dependencies = [ 207 - "async-lock", 208 "async-task", 209 "concurrent-queue", 210 - "fastrand", 211 - "futures-lite", 212 "slab", 213 ] 214 215 [[package]] 216 name = "async-global-executor" 217 - version = "2.3.1" 218 source = "registry+https://github.com/rust-lang/crates.io-index" 219 - checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 220 dependencies = [ 221 - "async-channel", 222 "async-executor", 223 - "async-io", 224 - "async-lock", 225 "blocking", 226 - "futures-lite", 227 "once_cell", 228 ] 229 ··· 233 source = "registry+https://github.com/rust-lang/crates.io-index" 234 checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 235 dependencies = [ 236 - "async-lock", 237 "autocfg", 238 "cfg-if", 239 "concurrent-queue", 240 - "futures-lite", 241 "log", 242 "parking", 243 - "polling", 244 - "rustix", 245 "slab", 246 "socket2", 247 "waker-fn", 248 ] 249 250 [[package]] 251 name = "async-lock" 252 - version = "2.7.0" 253 source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 255 dependencies = [ 256 - "event-listener", 257 ] 258 259 [[package]] ··· 262 source = "registry+https://github.com/rust-lang/crates.io-index" 263 checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 264 dependencies = [ 265 - "async-channel", 266 "async-global-executor", 267 - "async-io", 268 - "async-lock", 269 "crossbeam-utils", 270 "futures-channel", 271 "futures-core", 272 "futures-io", 273 - "futures-lite", 274 "gloo-timers", 275 "kv-log-macro", 276 "log", ··· 284 285 [[package]] 286 name = "async-task" 287 - version = "4.4.0" 288 source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 290 291 [[package]] 292 name = "async-trait" 293 - version = "0.1.68" 294 source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 296 dependencies = [ 297 "proc-macro2", 298 "quote", 299 - "syn 2.0.13", 300 ] 301 302 [[package]] 303 name = "atomic-waker" 304 - version = "1.1.0" 305 - source = "registry+https://github.com/rust-lang/crates.io-index" 306 - checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" 307 - 308 - [[package]] 309 - name = "atty" 310 - version = "0.2.14" 311 source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 313 - dependencies = [ 314 - "hermit-abi 0.1.19", 315 - "libc", 316 - "winapi 0.3.9", 317 - ] 318 319 [[package]] 320 name = "auto_impl" ··· 330 331 [[package]] 332 name = "autocfg" 333 - version = "1.1.0" 334 source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 336 337 [[package]] 338 name = "backtrace" 339 - version = "0.3.67" 340 source = "registry+https://github.com/rust-lang/crates.io-index" 341 - checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 342 dependencies = [ 343 "addr2line", 344 "cc", ··· 392 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 393 394 [[package]] 395 name = "bitpacking" 396 version = "0.8.4" 397 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 402 403 [[package]] 404 name = "blocking" 405 - version = "1.3.0" 406 source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" 408 dependencies = [ 409 - "async-channel", 410 - "async-lock", 411 "async-task", 412 - "atomic-waker", 413 - "fastrand", 414 - "futures-lite", 415 ] 416 417 [[package]] 418 name = "bstr" 419 - version = "1.9.1" 420 source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 422 dependencies = [ 423 "memchr", 424 - "regex-automata 0.4.6", 425 "serde", 426 ] 427 428 [[package]] 429 name = "bumpalo" 430 - version = "3.12.0" 431 source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 433 434 [[package]] 435 name = "byteorder" 436 - version = "1.4.3" 437 source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 439 440 [[package]] 441 name = "bytes" 442 - version = "1.4.0" 443 source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 445 446 [[package]] 447 name = "cc" 448 - version = "1.0.79" 449 source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 451 452 [[package]] 453 name = "census" 454 - version = "0.4.1" 455 source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "0fafee10a5dd1cffcb5cc560e0d0df8803d7355a2b12272e3557dee57314cb6e" 457 458 [[package]] 459 name = "cfg-if" ··· 463 464 [[package]] 465 name = "clap" 466 - version = "4.2.1" 467 source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" 469 dependencies = [ 470 "clap_builder", 471 "clap_derive", 472 - "once_cell", 473 ] 474 475 [[package]] 476 name = "clap_builder" 477 - version = "4.2.1" 478 source = "registry+https://github.com/rust-lang/crates.io-index" 479 - checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" 480 dependencies = [ 481 - "anstream 0.2.6", 482 - "anstyle 0.3.5", 483 - "bitflags", 484 "clap_lex", 485 "strsim", 486 ] 487 488 [[package]] 489 name = "clap_derive" 490 - version = "4.2.0" 491 source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" 493 dependencies = [ 494 "heck", 495 "proc-macro2", 496 "quote", 497 - "syn 2.0.13", 498 ] 499 500 [[package]] 501 name = "clap_lex" 502 - version = "0.4.1" 503 source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 505 506 [[package]] 507 name = "codespan" ··· 514 515 [[package]] 516 name = "colorchoice" 517 - version = "1.0.1" 518 source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 520 521 [[package]] 522 name = "combine" 523 - version = "4.6.6" 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 526 dependencies = [ 527 "memchr", 528 ] 529 530 [[package]] 531 - name = "concolor-override" 532 - version = "1.0.0" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f" 535 - 536 - [[package]] 537 - name = "concolor-query" 538 - version = "0.3.3" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" 541 - dependencies = [ 542 - "windows-sys 0.45.0", 543 - ] 544 - 545 - [[package]] 546 name = "concurrent-queue" 547 - version = "2.1.0" 548 source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 550 dependencies = [ 551 "crossbeam-utils", 552 ] ··· 563 564 [[package]] 565 name = "crc32fast" 566 - version = "1.3.2" 567 source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 569 dependencies = [ 570 "cfg-if", 571 ] 572 573 [[package]] 574 name = "crossbeam-channel" 575 - version = "0.5.7" 576 source = "registry+https://github.com/rust-lang/crates.io-index" 577 - checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 578 dependencies = [ 579 - "cfg-if", 580 "crossbeam-utils", 581 ] 582 583 [[package]] 584 name = "crossbeam-deque" 585 - version = "0.8.3" 586 source = "registry+https://github.com/rust-lang/crates.io-index" 587 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 588 dependencies = [ 589 - "cfg-if", 590 "crossbeam-epoch", 591 "crossbeam-utils", 592 ] 593 594 [[package]] 595 name = "crossbeam-epoch" 596 - version = "0.9.14" 597 source = "registry+https://github.com/rust-lang/crates.io-index" 598 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 599 dependencies = [ 600 - "autocfg", 601 - "cfg-if", 602 "crossbeam-utils", 603 - "memoffset", 604 - "scopeguard", 605 ] 606 607 [[package]] 608 name = "crossbeam-utils" 609 - version = "0.8.15" 610 source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 612 - dependencies = [ 613 - "cfg-if", 614 - ] 615 616 [[package]] 617 name = "crunchy" ··· 620 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 621 622 [[package]] 623 - name = "ctor" 624 - version = "0.1.26" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 627 - dependencies = [ 628 - "quote", 629 - "syn 1.0.109", 630 - ] 631 - 632 - [[package]] 633 name = "dashmap" 634 - version = "5.4.0" 635 source = "registry+https://github.com/rust-lang/crates.io-index" 636 - checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 637 dependencies = [ 638 "cfg-if", 639 - "hashbrown", 640 "lock_api", 641 "once_cell", 642 "parking_lot_core", 643 ] 644 645 [[package]] 646 name = "derivative" 647 version = "2.2.0" 648 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 683 dependencies = [ 684 "libc", 685 "redox_users", 686 - "winapi 0.3.9", 687 ] 688 689 [[package]] ··· 694 695 [[package]] 696 name = "downcast-rs" 697 - version = "1.2.0" 698 source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 700 701 [[package]] 702 name = "either" 703 - version = "1.8.1" 704 source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 706 707 [[package]] 708 name = "elaborator" 709 version = "0.1.0" 710 dependencies = [ 711 "codespan", 712 "derivative", 713 "log", ··· 715 "miette_util", 716 "pretty", 717 "printer", 718 - "syntax", 719 "thiserror", 720 ] 721 722 [[package]] 723 name = "ena" 724 - version = "0.14.2" 725 source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" 727 dependencies = [ 728 "log", 729 ] 730 731 [[package]] 732 name = "env_filter" 733 - version = "0.1.0" 734 source = "registry+https://github.com/rust-lang/crates.io-index" 735 - checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea" 736 dependencies = [ 737 "log", 738 "regex", ··· 740 741 [[package]] 742 name = "env_logger" 743 - version = "0.11.3" 744 source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" 746 dependencies = [ 747 - "anstream 0.6.14", 748 - "anstyle 1.0.7", 749 "env_filter", 750 "humantime", 751 "log", 752 ] 753 754 [[package]] 755 - name = "errno" 756 - version = "0.3.0" 757 source = "registry+https://github.com/rust-lang/crates.io-index" 758 - checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 759 - dependencies = [ 760 - "errno-dragonfly", 761 - "libc", 762 - "windows-sys 0.45.0", 763 - ] 764 765 [[package]] 766 - name = "errno-dragonfly" 767 - version = "0.1.2" 768 source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 770 dependencies = [ 771 - "cc", 772 "libc", 773 ] 774 775 [[package]] ··· 779 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 780 781 [[package]] 782 name = "fail" 783 version = "0.5.1" 784 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 791 792 [[package]] 793 name = "fastdivide" 794 - version = "0.4.0" 795 source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" 797 798 [[package]] 799 name = "fastfield_codecs" ··· 815 ] 816 817 [[package]] 818 name = "fixedbitset" 819 version = "0.4.2" 820 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 842 checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 843 dependencies = [ 844 "libc", 845 - "winapi 0.3.9", 846 ] 847 848 [[package]] 849 name = "futures" 850 - version = "0.3.28" 851 source = "registry+https://github.com/rust-lang/crates.io-index" 852 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 853 dependencies = [ 854 "futures-channel", 855 "futures-core", ··· 862 863 [[package]] 864 name = "futures-channel" 865 - version = "0.3.28" 866 source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 868 dependencies = [ 869 "futures-core", 870 "futures-sink", ··· 872 873 [[package]] 874 name = "futures-core" 875 - version = "0.3.28" 876 source = "registry+https://github.com/rust-lang/crates.io-index" 877 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 878 879 [[package]] 880 name = "futures-executor" 881 - version = "0.3.28" 882 source = "registry+https://github.com/rust-lang/crates.io-index" 883 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 884 dependencies = [ 885 "futures-core", 886 "futures-task", ··· 889 890 [[package]] 891 name = "futures-io" 892 - version = "0.3.28" 893 source = "registry+https://github.com/rust-lang/crates.io-index" 894 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 895 896 [[package]] 897 name = "futures-lite" 898 - version = "1.12.0" 899 source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 901 dependencies = [ 902 - "fastrand", 903 "futures-core", 904 "futures-io", 905 "memchr", ··· 909 ] 910 911 [[package]] 912 name = "futures-macro" 913 - version = "0.3.28" 914 source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 916 dependencies = [ 917 "proc-macro2", 918 "quote", 919 - "syn 2.0.13", 920 ] 921 922 [[package]] 923 name = "futures-sink" 924 - version = "0.3.28" 925 source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 927 928 [[package]] 929 name = "futures-task" 930 - version = "0.3.28" 931 source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 933 934 [[package]] 935 name = "futures-util" 936 - version = "0.3.28" 937 source = "registry+https://github.com/rust-lang/crates.io-index" 938 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 939 dependencies = [ 940 "futures-channel", 941 "futures-core", ··· 959 ] 960 961 [[package]] 962 - name = "generator" 963 - version = "0.7.3" 964 - source = "registry+https://github.com/rust-lang/crates.io-index" 965 - checksum = "33a20a288a94683f5f4da0adecdbe095c94a77c295e514cc6484e9394dd8376e" 966 - dependencies = [ 967 - "cc", 968 - "libc", 969 - "log", 970 - "rustversion", 971 - "windows", 972 - ] 973 - 974 - [[package]] 975 name = "getrandom" 976 - version = "0.2.8" 977 source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 979 dependencies = [ 980 "cfg-if", 981 "libc", ··· 984 985 [[package]] 986 name = "gimli" 987 - version = "0.27.2" 988 source = "registry+https://github.com/rust-lang/crates.io-index" 989 - checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 990 991 [[package]] 992 name = "gloo-timers" ··· 1010 ] 1011 1012 [[package]] 1013 - name = "heck" 1014 - version = "0.4.1" 1015 source = "registry+https://github.com/rust-lang/crates.io-index" 1016 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1017 1018 [[package]] 1019 - name = "hermit-abi" 1020 - version = "0.1.19" 1021 source = "registry+https://github.com/rust-lang/crates.io-index" 1022 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1023 - dependencies = [ 1024 - "libc", 1025 - ] 1026 1027 [[package]] 1028 name = "hermit-abi" 1029 - version = "0.2.6" 1030 source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1032 - dependencies = [ 1033 - "libc", 1034 - ] 1035 1036 [[package]] 1037 name = "hermit-abi" 1038 - version = "0.3.1" 1039 source = "registry+https://github.com/rust-lang/crates.io-index" 1040 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1041 1042 [[package]] 1043 name = "htmlescape" ··· 1047 1048 [[package]] 1049 name = "httparse" 1050 - version = "1.8.0" 1051 source = "registry+https://github.com/rust-lang/crates.io-index" 1052 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1053 1054 [[package]] 1055 name = "humantime" ··· 1069 1070 [[package]] 1071 name = "indexmap" 1072 - version = "1.9.3" 1073 source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1075 dependencies = [ 1076 - "autocfg", 1077 - "hashbrown", 1078 ] 1079 1080 [[package]] 1081 name = "instant" 1082 - version = "0.1.12" 1083 source = "registry+https://github.com/rust-lang/crates.io-index" 1084 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1085 dependencies = [ 1086 "cfg-if", 1087 "js-sys", ··· 1091 1092 [[package]] 1093 name = "io-lifetimes" 1094 - version = "1.0.9" 1095 source = "registry+https://github.com/rust-lang/crates.io-index" 1096 - checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" 1097 dependencies = [ 1098 - "hermit-abi 0.3.1", 1099 "libc", 1100 - "windows-sys 0.45.0", 1101 ] 1102 1103 [[package]] 1104 name = "is-terminal" 1105 - version = "0.4.6" 1106 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 1108 dependencies = [ 1109 - "hermit-abi 0.3.1", 1110 - "io-lifetimes", 1111 - "rustix", 1112 - "windows-sys 0.45.0", 1113 ] 1114 1115 [[package]] 1116 name = "is_ci" 1117 - version = "1.1.1" 1118 source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" 1120 1121 [[package]] 1122 name = "is_terminal_polyfill" 1123 - version = "1.70.0" 1124 source = "registry+https://github.com/rust-lang/crates.io-index" 1125 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 1126 1127 [[package]] 1128 name = "itertools" ··· 1144 1145 [[package]] 1146 name = "itoa" 1147 - version = "1.0.6" 1148 source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1150 1151 [[package]] 1152 name = "js-sys" 1153 - version = "0.3.61" 1154 source = "registry+https://github.com/rust-lang/crates.io-index" 1155 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1156 dependencies = [ 1157 "wasm-bindgen", 1158 ] 1159 1160 [[package]] 1161 - name = "kernel32-sys" 1162 - version = "0.2.2" 1163 - source = "registry+https://github.com/rust-lang/crates.io-index" 1164 - checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1165 - dependencies = [ 1166 - "winapi 0.2.8", 1167 - "winapi-build", 1168 - ] 1169 - 1170 - [[package]] 1171 name = "kv-log-macro" 1172 version = "1.0.7" 1173 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1178 1179 [[package]] 1180 name = "lalrpop" 1181 - version = "0.19.9" 1182 source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "f34313ec00c2eb5c3c87ca6732ea02dcf3af99c3ff7a8fb622ffb99c9d860a87" 1184 dependencies = [ 1185 "ascii-canvas", 1186 "bit-set", ··· 1188 "ena", 1189 "is-terminal", 1190 "itertools 0.10.5", 1191 - "lalrpop-util 0.19.9", 1192 "petgraph", 1193 - "pico-args 0.4.2", 1194 "regex", 1195 "regex-syntax 0.6.29", 1196 "string_cache", ··· 1211 "itertools 0.11.0", 1212 "lalrpop-util 0.20.2", 1213 "petgraph", 1214 - "pico-args 0.5.0", 1215 "regex", 1216 - "regex-syntax 0.8.3", 1217 "string_cache", 1218 "term", 1219 "tiny-keccak", ··· 1223 1224 [[package]] 1225 name = "lalrpop-util" 1226 - version = "0.19.9" 1227 source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "e5c1f7869c94d214466c5fd432dfed12c379fd87786768d36455892d46b18edd" 1229 dependencies = [ 1230 "regex", 1231 ] ··· 1236 source = "registry+https://github.com/rust-lang/crates.io-index" 1237 checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" 1238 dependencies = [ 1239 - "regex-automata 0.4.6", 1240 ] 1241 1242 [[package]] 1243 name = "lazy_static" 1244 - version = "1.4.0" 1245 source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1247 1248 [[package]] 1249 name = "levenshtein_automata" ··· 1253 1254 [[package]] 1255 name = "libc" 1256 - version = "0.2.140" 1257 source = "registry+https://github.com/rust-lang/crates.io-index" 1258 - checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 1259 1260 [[package]] 1261 - name = "lifting" 1262 - version = "0.1.0" 1263 dependencies = [ 1264 - "codespan", 1265 - "derivative", 1266 - "renaming", 1267 - "syntax", 1268 ] 1269 1270 [[package]] 1271 name = "linux-raw-sys" 1272 - version = "0.3.1" 1273 source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" 1275 1276 [[package]] 1277 name = "lock_api" 1278 - version = "0.4.9" 1279 source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1281 dependencies = [ 1282 "autocfg", 1283 "scopeguard", ··· 1285 1286 [[package]] 1287 name = "log" 1288 - version = "0.4.21" 1289 source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1291 dependencies = [ 1292 "value-bag", 1293 ] ··· 1312 "lazy_static", 1313 "proc-macro2", 1314 "quote", 1315 - "regex-syntax 0.8.3", 1316 - "syn 2.0.13", 1317 ] 1318 1319 [[package]] ··· 1326 ] 1327 1328 [[package]] 1329 - name = "loom" 1330 - version = "0.5.6" 1331 - source = "registry+https://github.com/rust-lang/crates.io-index" 1332 - checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1333 - dependencies = [ 1334 - "cfg-if", 1335 - "generator", 1336 - "pin-utils", 1337 - "scoped-tls", 1338 - "tracing", 1339 - "tracing-subscriber", 1340 - ] 1341 - 1342 - [[package]] 1343 name = "lowering" 1344 version = "0.1.0" 1345 dependencies = [ 1346 "codespan", 1347 "miette", 1348 "miette_util", 1349 "num-bigint", 1350 "parser", 1351 - "syntax", 1352 "thiserror", 1353 ] 1354 1355 [[package]] ··· 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1359 checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" 1360 dependencies = [ 1361 - "hashbrown", 1362 ] 1363 1364 [[package]] ··· 1380 name = "lsp-server" 1381 version = "0.1.0" 1382 dependencies = [ 1383 - "async-lock", 1384 "codespan", 1385 "lsp-types 0.93.2", 1386 "miette", 1387 "miette_util", 1388 "printer", 1389 - "query", 1390 - "syntax", 1391 "tower-lsp", 1392 ] 1393 1394 [[package]] ··· 1397 source = "registry+https://github.com/rust-lang/crates.io-index" 1398 checksum = "2368312c59425dd133cb9a327afee65be0a633a8ce471d248e2202a48f8f68ae" 1399 dependencies = [ 1400 - "bitflags", 1401 "serde", 1402 "serde_json", 1403 "serde_repr", ··· 1410 source = "registry+https://github.com/rust-lang/crates.io-index" 1411 checksum = "9be6e9c7e2d18f651974370d7aff703f9513e0df6e464fd795660edc77e6ca51" 1412 dependencies = [ 1413 - "bitflags", 1414 "serde", 1415 "serde_json", 1416 "serde_repr", ··· 1424 checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" 1425 1426 [[package]] 1427 - name = "matchers" 1428 - version = "0.1.0" 1429 - source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1431 - dependencies = [ 1432 - "regex-automata 0.1.10", 1433 - ] 1434 - 1435 - [[package]] 1436 name = "measure_time" 1437 - version = "0.8.2" 1438 source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" 1440 dependencies = [ 1441 "instant", 1442 "log", ··· 1444 1445 [[package]] 1446 name = "memchr" 1447 - version = "2.7.2" 1448 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 1450 1451 [[package]] 1452 name = "memmap2" ··· 1458 ] 1459 1460 [[package]] 1461 - name = "memoffset" 1462 - version = "0.8.0" 1463 - source = "registry+https://github.com/rust-lang/crates.io-index" 1464 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1465 - dependencies = [ 1466 - "autocfg", 1467 - ] 1468 - 1469 - [[package]] 1470 name = "miette" 1471 - version = "5.7.0" 1472 source = "registry+https://github.com/rust-lang/crates.io-index" 1473 - checksum = "7abdc09c381c9336b9f2e9bd6067a9a5290d20e2d2e2296f275456121c33ae89" 1474 dependencies = [ 1475 "backtrace", 1476 "backtrace-ext", ··· 1489 1490 [[package]] 1491 name = "miette-derive" 1492 - version = "5.7.0" 1493 source = "registry+https://github.com/rust-lang/crates.io-index" 1494 - checksum = "8842972f23939443013dfd3720f46772b743e86f1a81d120d4b6fb090f87de1c" 1495 dependencies = [ 1496 "proc-macro2", 1497 "quote", 1498 - "syn 2.0.13", 1499 ] 1500 1501 [[package]] ··· 1508 1509 [[package]] 1510 name = "miniz_oxide" 1511 - version = "0.6.2" 1512 source = "registry+https://github.com/rust-lang/crates.io-index" 1513 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1514 dependencies = [ 1515 "adler", 1516 ] ··· 1526 1527 [[package]] 1528 name = "new_debug_unreachable" 1529 - version = "1.0.4" 1530 - source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1532 - 1533 - [[package]] 1534 - name = "nu-ansi-term" 1535 - version = "0.46.0" 1536 source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1538 - dependencies = [ 1539 - "overload", 1540 - "winapi 0.3.9", 1541 - ] 1542 1543 [[package]] 1544 name = "num-bigint" 1545 - version = "0.4.3" 1546 source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1548 dependencies = [ 1549 - "autocfg", 1550 "num-integer", 1551 "num-traits", 1552 ] 1553 1554 [[package]] 1555 name = "num-integer" 1556 - version = "0.1.45" 1557 source = "registry+https://github.com/rust-lang/crates.io-index" 1558 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1559 dependencies = [ 1560 - "autocfg", 1561 "num-traits", 1562 ] 1563 1564 [[package]] 1565 name = "num-traits" 1566 - version = "0.2.15" 1567 source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1569 dependencies = [ 1570 "autocfg", 1571 ] 1572 1573 [[package]] 1574 name = "num_cpus" 1575 - version = "1.15.0" 1576 source = "registry+https://github.com/rust-lang/crates.io-index" 1577 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1578 dependencies = [ 1579 - "hermit-abi 0.2.6", 1580 "libc", 1581 ] 1582 1583 [[package]] 1584 - name = "numtoa" 1585 - version = "0.1.0" 1586 - source = "registry+https://github.com/rust-lang/crates.io-index" 1587 - checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" 1588 - 1589 - [[package]] 1590 name = "object" 1591 - version = "0.30.3" 1592 source = "registry+https://github.com/rust-lang/crates.io-index" 1593 - checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 1594 dependencies = [ 1595 "memchr", 1596 ] 1597 1598 [[package]] 1599 name = "once_cell" 1600 - version = "1.17.1" 1601 source = "registry+https://github.com/rust-lang/crates.io-index" 1602 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1603 1604 [[package]] 1605 name = "oneshot" 1606 - version = "0.1.5" 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1608 - checksum = "fc22d22931513428ea6cc089e942d38600e3d00976eef8c86de6b8a3aadec6eb" 1609 - dependencies = [ 1610 - "loom", 1611 - ] 1612 - 1613 - [[package]] 1614 - name = "output_vt100" 1615 - version = "0.1.3" 1616 - source = "registry+https://github.com/rust-lang/crates.io-index" 1617 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 1618 - dependencies = [ 1619 - "winapi 0.3.9", 1620 - ] 1621 - 1622 - [[package]] 1623 - name = "overload" 1624 - version = "0.1.1" 1625 - source = "registry+https://github.com/rust-lang/crates.io-index" 1626 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1627 1628 [[package]] 1629 name = "ownedbytes" ··· 1642 1643 [[package]] 1644 name = "parking" 1645 - version = "2.0.0" 1646 source = "registry+https://github.com/rust-lang/crates.io-index" 1647 - checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 1648 1649 [[package]] 1650 name = "parking_lot" 1651 - version = "0.12.1" 1652 source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1654 dependencies = [ 1655 "lock_api", 1656 "parking_lot_core", ··· 1658 1659 [[package]] 1660 name = "parking_lot_core" 1661 - version = "0.9.7" 1662 source = "registry+https://github.com/rust-lang/crates.io-index" 1663 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1664 dependencies = [ 1665 "cfg-if", 1666 "libc", 1667 - "redox_syscall 0.2.16", 1668 "smallvec", 1669 - "windows-sys 0.45.0", 1670 ] 1671 1672 [[package]] ··· 1674 version = "0.1.0" 1675 dependencies = [ 1676 "codespan", 1677 - "lalrpop 0.19.9", 1678 "lalrpop 0.20.2", 1679 "lalrpop-util 0.20.2", 1680 "logos", ··· 1692 1693 [[package]] 1694 name = "petgraph" 1695 - version = "0.6.3" 1696 source = "registry+https://github.com/rust-lang/crates.io-index" 1697 - checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 1698 dependencies = [ 1699 "fixedbitset", 1700 "indexmap", ··· 1711 1712 [[package]] 1713 name = "pico-args" 1714 - version = "0.4.2" 1715 - source = "registry+https://github.com/rust-lang/crates.io-index" 1716 - checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468" 1717 - 1718 - [[package]] 1719 - name = "pico-args" 1720 version = "0.5.0" 1721 source = "registry+https://github.com/rust-lang/crates.io-index" 1722 checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 1723 1724 [[package]] 1725 name = "pin-project" 1726 - version = "1.0.12" 1727 source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 1729 dependencies = [ 1730 "pin-project-internal", 1731 ] 1732 1733 [[package]] 1734 name = "pin-project-internal" 1735 - version = "1.0.12" 1736 source = "registry+https://github.com/rust-lang/crates.io-index" 1737 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 1738 dependencies = [ 1739 "proc-macro2", 1740 "quote", 1741 - "syn 1.0.109", 1742 ] 1743 1744 [[package]] 1745 name = "pin-project-lite" 1746 - version = "0.2.9" 1747 source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1749 1750 [[package]] 1751 name = "pin-utils" ··· 1754 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1755 1756 [[package]] 1757 name = "polarity" 1758 version = "0.1.0" 1759 dependencies = [ 1760 "assert_cmd", 1761 "async-std", 1762 "clap", 1763 "elaborator", 1764 "env_logger", 1765 "futures", 1766 "lsp-server", 1767 "miette", 1768 "printer", 1769 - "query", 1770 - "syntax", 1771 "termsize", 1772 "thiserror", 1773 "tokio", ··· 1776 1777 [[package]] 1778 name = "polling" 1779 - version = "2.6.0" 1780 source = "registry+https://github.com/rust-lang/crates.io-index" 1781 - checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 1782 dependencies = [ 1783 "autocfg", 1784 - "bitflags", 1785 "cfg-if", 1786 "concurrent-queue", 1787 "libc", 1788 "log", 1789 "pin-project-lite", 1790 - "windows-sys 0.45.0", 1791 ] 1792 1793 [[package]] 1794 name = "ppv-lite86" 1795 - version = "0.2.17" 1796 source = "registry+https://github.com/rust-lang/crates.io-index" 1797 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1798 1799 [[package]] 1800 name = "precomputed-hash" ··· 1804 1805 [[package]] 1806 name = "predicates" 1807 - version = "3.1.0" 1808 source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" 1810 dependencies = [ 1811 - "anstyle 1.0.7", 1812 "difflib", 1813 "predicates-core", 1814 ] 1815 1816 [[package]] 1817 name = "predicates-core" 1818 - version = "1.0.6" 1819 source = "registry+https://github.com/rust-lang/crates.io-index" 1820 - checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 1821 1822 [[package]] 1823 name = "predicates-tree" 1824 - version = "1.0.9" 1825 source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 1827 dependencies = [ 1828 "predicates-core", 1829 "termtree", ··· 1844 1845 [[package]] 1846 name = "pretty_assertions" 1847 - version = "1.3.0" 1848 source = "registry+https://github.com/rust-lang/crates.io-index" 1849 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 1850 dependencies = [ 1851 - "ctor", 1852 "diff", 1853 - "output_vt100", 1854 "yansi", 1855 ] 1856 ··· 1859 version = "0.1.0" 1860 dependencies = [ 1861 "pretty", 1862 - "syntax", 1863 ] 1864 1865 [[package]] ··· 1888 1889 [[package]] 1890 name = "proc-macro2" 1891 - version = "1.0.55" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" 1894 dependencies = [ 1895 "unicode-ident", 1896 ] 1897 1898 [[package]] 1899 - name = "query" 1900 - version = "0.1.0" 1901 - dependencies = [ 1902 - "codespan", 1903 - "elaborator", 1904 - "lifting", 1905 - "lowering", 1906 - "miette", 1907 - "parser", 1908 - "printer", 1909 - "renaming", 1910 - "ropey", 1911 - "rust-lapper", 1912 - "syntax", 1913 - "thiserror", 1914 - "url", 1915 - "xfunc", 1916 - ] 1917 - 1918 - [[package]] 1919 name = "quote" 1920 - version = "1.0.26" 1921 source = "registry+https://github.com/rust-lang/crates.io-index" 1922 - checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1923 dependencies = [ 1924 "proc-macro2", 1925 ] ··· 1956 1957 [[package]] 1958 name = "rayon" 1959 - version = "1.7.0" 1960 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1962 dependencies = [ 1963 "either", 1964 "rayon-core", ··· 1966 1967 [[package]] 1968 name = "rayon-core" 1969 - version = "1.11.0" 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1972 dependencies = [ 1973 - "crossbeam-channel", 1974 "crossbeam-deque", 1975 "crossbeam-utils", 1976 - "num_cpus", 1977 ] 1978 1979 [[package]] 1980 name = "redox_syscall" 1981 - version = "0.2.16" 1982 - source = "registry+https://github.com/rust-lang/crates.io-index" 1983 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1984 - dependencies = [ 1985 - "bitflags", 1986 - ] 1987 - 1988 - [[package]] 1989 - name = "redox_syscall" 1990 - version = "0.3.5" 1991 - source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1993 - dependencies = [ 1994 - "bitflags", 1995 - ] 1996 - 1997 - [[package]] 1998 - name = "redox_termios" 1999 - version = "0.1.2" 2000 source = "registry+https://github.com/rust-lang/crates.io-index" 2001 - checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f" 2002 dependencies = [ 2003 - "redox_syscall 0.2.16", 2004 ] 2005 2006 [[package]] 2007 name = "redox_users" 2008 - version = "0.4.3" 2009 source = "registry+https://github.com/rust-lang/crates.io-index" 2010 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2011 dependencies = [ 2012 "getrandom", 2013 - "redox_syscall 0.2.16", 2014 "thiserror", 2015 ] 2016 2017 [[package]] 2018 name = "regex" 2019 - version = "1.7.3" 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 2022 dependencies = [ 2023 - "aho-corasick 0.7.20", 2024 "memchr", 2025 - "regex-syntax 0.6.29", 2026 ] 2027 2028 [[package]] 2029 name = "regex-automata" 2030 - version = "0.1.10" 2031 source = "registry+https://github.com/rust-lang/crates.io-index" 2032 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2033 - dependencies = [ 2034 - "regex-syntax 0.6.29", 2035 - ] 2036 - 2037 - [[package]] 2038 - name = "regex-automata" 2039 - version = "0.4.6" 2040 - source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2042 dependencies = [ 2043 - "aho-corasick 1.1.3", 2044 "memchr", 2045 - "regex-syntax 0.8.3", 2046 ] 2047 2048 [[package]] ··· 2059 2060 [[package]] 2061 name = "regex-syntax" 2062 - version = "0.8.3" 2063 source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 2065 - 2066 - [[package]] 2067 - name = "renaming" 2068 - version = "0.1.0" 2069 - dependencies = [ 2070 - "codespan", 2071 - "syntax", 2072 - ] 2073 2074 [[package]] 2075 name = "ropey" 2076 - version = "1.6.0" 2077 source = "registry+https://github.com/rust-lang/crates.io-index" 2078 - checksum = "53ce7a2c43a32e50d666e33c5a80251b31147bb4b49024bcab11fb6f20c671ed" 2079 dependencies = [ 2080 "smallvec", 2081 "str_indices", ··· 2102 2103 [[package]] 2104 name = "rustc-demangle" 2105 - version = "0.1.22" 2106 source = "registry+https://github.com/rust-lang/crates.io-index" 2107 - checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b" 2108 2109 [[package]] 2110 name = "rustix" 2111 - version = "0.37.6" 2112 source = "registry+https://github.com/rust-lang/crates.io-index" 2113 - checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" 2114 dependencies = [ 2115 - "bitflags", 2116 "errno", 2117 "io-lifetimes", 2118 "libc", 2119 - "linux-raw-sys", 2120 - "windows-sys 0.45.0", 2121 ] 2122 2123 [[package]] 2124 name = "rustversion" 2125 - version = "1.0.12" 2126 source = "registry+https://github.com/rust-lang/crates.io-index" 2127 - checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 2128 2129 [[package]] 2130 name = "ryu" 2131 - version = "1.0.13" 2132 source = "registry+https://github.com/rust-lang/crates.io-index" 2133 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2134 2135 [[package]] 2136 name = "same-file" ··· 2142 ] 2143 2144 [[package]] 2145 - name = "scoped-tls" 2146 - version = "1.0.1" 2147 - source = "registry+https://github.com/rust-lang/crates.io-index" 2148 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2149 - 2150 - [[package]] 2151 name = "scopeguard" 2152 - version = "1.1.0" 2153 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2155 2156 [[package]] 2157 name = "serde" 2158 - version = "1.0.159" 2159 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 2161 dependencies = [ 2162 "serde_derive", 2163 ] 2164 2165 [[package]] 2166 name = "serde_derive" 2167 - version = "1.0.159" 2168 source = "registry+https://github.com/rust-lang/crates.io-index" 2169 - checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 2170 dependencies = [ 2171 "proc-macro2", 2172 "quote", 2173 - "syn 2.0.13", 2174 ] 2175 2176 [[package]] 2177 name = "serde_json" 2178 - version = "1.0.95" 2179 source = "registry+https://github.com/rust-lang/crates.io-index" 2180 - checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 2181 dependencies = [ 2182 "itoa", 2183 "ryu", 2184 "serde", 2185 ] 2186 2187 [[package]] 2188 name = "serde_repr" 2189 - version = "0.1.12" 2190 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" 2192 dependencies = [ 2193 "proc-macro2", 2194 "quote", 2195 - "syn 2.0.13", 2196 - ] 2197 - 2198 - [[package]] 2199 - name = "sharded-slab" 2200 - version = "0.1.4" 2201 - source = "registry+https://github.com/rust-lang/crates.io-index" 2202 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2203 - dependencies = [ 2204 - "lazy_static", 2205 ] 2206 2207 [[package]] 2208 name = "siphasher" 2209 - version = "0.3.10" 2210 source = "registry+https://github.com/rust-lang/crates.io-index" 2211 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2212 2213 [[package]] 2214 name = "slab" 2215 - version = "0.4.8" 2216 source = "registry+https://github.com/rust-lang/crates.io-index" 2217 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2218 dependencies = [ 2219 "autocfg", 2220 ] 2221 2222 [[package]] 2223 name = "smallvec" 2224 - version = "1.10.0" 2225 source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2227 2228 [[package]] 2229 name = "smawk" 2230 - version = "0.3.1" 2231 source = "registry+https://github.com/rust-lang/crates.io-index" 2232 - checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 2233 2234 [[package]] 2235 name = "socket2" 2236 - version = "0.4.9" 2237 source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2239 dependencies = [ 2240 "libc", 2241 - "winapi 0.3.9", 2242 ] 2243 2244 [[package]] ··· 2249 2250 [[package]] 2251 name = "str_indices" 2252 - version = "0.4.1" 2253 source = "registry+https://github.com/rust-lang/crates.io-index" 2254 - checksum = "5f026164926842ec52deb1938fae44f83dfdb82d0a5b0270c5bd5935ab74d6dd" 2255 2256 [[package]] 2257 name = "string_cache" ··· 2268 2269 [[package]] 2270 name = "strsim" 2271 - version = "0.10.0" 2272 source = "registry+https://github.com/rust-lang/crates.io-index" 2273 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2274 2275 [[package]] 2276 name = "supports-color" 2277 - version = "2.0.0" 2278 source = "registry+https://github.com/rust-lang/crates.io-index" 2279 - checksum = "4950e7174bffabe99455511c39707310e7e9b440364a2fcb1cc21521be57b354" 2280 dependencies = [ 2281 "is-terminal", 2282 "is_ci", ··· 2284 2285 [[package]] 2286 name = "supports-hyperlinks" 2287 - version = "2.0.0" 2288 source = "registry+https://github.com/rust-lang/crates.io-index" 2289 - checksum = "4b4806e0b03b9906e76b018a5d821ebf198c8e9dc0829ed3328eeeb5094aed60" 2290 dependencies = [ 2291 "is-terminal", 2292 ] 2293 2294 [[package]] 2295 name = "supports-unicode" 2296 - version = "2.0.0" 2297 source = "registry+https://github.com/rust-lang/crates.io-index" 2298 - checksum = "4b6c2cb240ab5dd21ed4906895ee23fe5a48acdbd15a3ce388e7b62a9b66baf7" 2299 dependencies = [ 2300 "is-terminal", 2301 ] ··· 2313 2314 [[package]] 2315 name = "syn" 2316 - version = "2.0.13" 2317 source = "registry+https://github.com/rust-lang/crates.io-index" 2318 - checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" 2319 dependencies = [ 2320 "proc-macro2", 2321 "quote", ··· 2323 ] 2324 2325 [[package]] 2326 - name = "syntax" 2327 - version = "0.1.0" 2328 - dependencies = [ 2329 - "codespan", 2330 - "derivative", 2331 - "fxhash", 2332 - "miette", 2333 - "miette_util", 2334 - "num-bigint", 2335 - "thiserror", 2336 - "url", 2337 - ] 2338 - 2339 - [[package]] 2340 name = "tantivy" 2341 version = "0.18.1" 2342 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2384 "thiserror", 2385 "time", 2386 "uuid", 2387 - "winapi 0.3.9", 2388 ] 2389 2390 [[package]] ··· 2427 2428 [[package]] 2429 name = "tempfile" 2430 - version = "3.5.0" 2431 source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 2433 dependencies = [ 2434 "cfg-if", 2435 - "fastrand", 2436 - "redox_syscall 0.3.5", 2437 - "rustix", 2438 - "windows-sys 0.45.0", 2439 ] 2440 2441 [[package]] ··· 2446 dependencies = [ 2447 "dirs-next", 2448 "rustversion", 2449 - "winapi 0.3.9", 2450 ] 2451 2452 [[package]] 2453 name = "termcolor" 2454 - version = "1.2.0" 2455 source = "registry+https://github.com/rust-lang/crates.io-index" 2456 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2457 dependencies = [ 2458 "winapi-util", 2459 ] ··· 2465 checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 2466 dependencies = [ 2467 "libc", 2468 - "winapi 0.3.9", 2469 - ] 2470 - 2471 - [[package]] 2472 - name = "termion" 2473 - version = "1.5.6" 2474 - source = "registry+https://github.com/rust-lang/crates.io-index" 2475 - checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e" 2476 - dependencies = [ 2477 - "libc", 2478 - "numtoa", 2479 - "redox_syscall 0.2.16", 2480 - "redox_termios", 2481 ] 2482 2483 [[package]] 2484 name = "termsize" 2485 - version = "0.1.6" 2486 source = "registry+https://github.com/rust-lang/crates.io-index" 2487 - checksum = "5e86d824a8e90f342ad3ef4bd51ef7119a9b681b0cc9f8ee7b2852f02ccd2517" 2488 dependencies = [ 2489 - "atty", 2490 - "kernel32-sys", 2491 "libc", 2492 - "termion", 2493 - "winapi 0.2.8", 2494 ] 2495 2496 [[package]] ··· 2503 name = "test-runner" 2504 version = "0.1.0" 2505 dependencies = [ 2506 "clap", 2507 "elaborator", 2508 "env_logger", 2509 - "lowering", 2510 "parser", 2511 "printer", 2512 - "renaming", 2513 "serde", 2514 "serde_derive", 2515 - "syntax", 2516 "tantivy", 2517 "toml", 2518 "url", 2519 ] 2520 2521 [[package]] ··· 2531 2532 [[package]] 2533 name = "thiserror" 2534 - version = "1.0.40" 2535 source = "registry+https://github.com/rust-lang/crates.io-index" 2536 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2537 dependencies = [ 2538 "thiserror-impl", 2539 ] 2540 2541 [[package]] 2542 name = "thiserror-impl" 2543 - version = "1.0.40" 2544 source = "registry+https://github.com/rust-lang/crates.io-index" 2545 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2546 dependencies = [ 2547 "proc-macro2", 2548 "quote", 2549 - "syn 2.0.13", 2550 - ] 2551 - 2552 - [[package]] 2553 - name = "thread_local" 2554 - version = "1.1.7" 2555 - source = "registry+https://github.com/rust-lang/crates.io-index" 2556 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2557 - dependencies = [ 2558 - "cfg-if", 2559 - "once_cell", 2560 ] 2561 2562 [[package]] 2563 name = "time" 2564 - version = "0.3.20" 2565 source = "registry+https://github.com/rust-lang/crates.io-index" 2566 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 2567 dependencies = [ 2568 "itoa", 2569 "serde", 2570 "time-core", 2571 "time-macros", ··· 2573 2574 [[package]] 2575 name = "time-core" 2576 - version = "0.1.0" 2577 source = "registry+https://github.com/rust-lang/crates.io-index" 2578 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 2579 2580 [[package]] 2581 name = "time-macros" 2582 - version = "0.2.8" 2583 source = "registry+https://github.com/rust-lang/crates.io-index" 2584 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 2585 dependencies = [ 2586 "time-core", 2587 ] 2588 ··· 2597 2598 [[package]] 2599 name = "tinyvec" 2600 - version = "1.6.0" 2601 source = "registry+https://github.com/rust-lang/crates.io-index" 2602 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2603 dependencies = [ 2604 "tinyvec_macros", 2605 ] ··· 2612 2613 [[package]] 2614 name = "tokio" 2615 - version = "1.27.0" 2616 source = "registry+https://github.com/rust-lang/crates.io-index" 2617 - checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 2618 dependencies = [ 2619 - "autocfg", 2620 - "num_cpus", 2621 "pin-project-lite", 2622 - "windows-sys 0.45.0", 2623 ] 2624 2625 [[package]] ··· 2692 2693 [[package]] 2694 name = "tracing" 2695 - version = "0.1.37" 2696 source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2698 dependencies = [ 2699 - "cfg-if", 2700 "pin-project-lite", 2701 - "tracing-attributes", 2702 "tracing-core", 2703 ] 2704 2705 [[package]] 2706 - name = "tracing-attributes" 2707 - version = "0.1.23" 2708 - source = "registry+https://github.com/rust-lang/crates.io-index" 2709 - checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 2710 - dependencies = [ 2711 - "proc-macro2", 2712 - "quote", 2713 - "syn 1.0.109", 2714 - ] 2715 - 2716 - [[package]] 2717 name = "tracing-core" 2718 - version = "0.1.30" 2719 source = "registry+https://github.com/rust-lang/crates.io-index" 2720 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2721 - dependencies = [ 2722 - "once_cell", 2723 - "valuable", 2724 - ] 2725 2726 [[package]] 2727 - name = "tracing-log" 2728 - version = "0.1.3" 2729 - source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 2731 dependencies = [ 2732 - "lazy_static", 2733 - "log", 2734 - "tracing-core", 2735 - ] 2736 - 2737 - [[package]] 2738 - name = "tracing-subscriber" 2739 - version = "0.3.16" 2740 - source = "registry+https://github.com/rust-lang/crates.io-index" 2741 - checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 2742 - dependencies = [ 2743 - "matchers", 2744 - "nu-ansi-term", 2745 - "once_cell", 2746 - "regex", 2747 - "sharded-slab", 2748 - "smallvec", 2749 - "thread_local", 2750 - "tracing", 2751 - "tracing-core", 2752 - "tracing-log", 2753 ] 2754 2755 [[package]] ··· 2760 2761 [[package]] 2762 name = "unicode-bidi" 2763 - version = "0.3.13" 2764 source = "registry+https://github.com/rust-lang/crates.io-index" 2765 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2766 2767 [[package]] 2768 name = "unicode-ident" 2769 - version = "1.0.8" 2770 source = "registry+https://github.com/rust-lang/crates.io-index" 2771 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2772 2773 [[package]] 2774 name = "unicode-linebreak" 2775 - version = "0.1.4" 2776 source = "registry+https://github.com/rust-lang/crates.io-index" 2777 - checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 2778 - dependencies = [ 2779 - "hashbrown", 2780 - "regex", 2781 - ] 2782 2783 [[package]] 2784 name = "unicode-normalization" 2785 - version = "0.1.22" 2786 source = "registry+https://github.com/rust-lang/crates.io-index" 2787 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2788 dependencies = [ 2789 "tinyvec", 2790 ] 2791 2792 [[package]] 2793 name = "unicode-segmentation" 2794 - version = "1.10.1" 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2796 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2797 2798 [[package]] 2799 name = "unicode-width" 2800 - version = "0.1.10" 2801 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2803 2804 [[package]] 2805 name = "unicode-xid" ··· 2809 2810 [[package]] 2811 name = "url" 2812 - version = "2.5.0" 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 2815 dependencies = [ 2816 "form_urlencoded", 2817 "idna", ··· 2827 2828 [[package]] 2829 name = "utf8parse" 2830 - version = "0.2.1" 2831 source = "registry+https://github.com/rust-lang/crates.io-index" 2832 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2833 2834 [[package]] 2835 name = "uuid" 2836 - version = "1.3.0" 2837 source = "registry+https://github.com/rust-lang/crates.io-index" 2838 - checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" 2839 dependencies = [ 2840 "getrandom", 2841 "serde", 2842 ] 2843 2844 [[package]] 2845 - name = "valuable" 2846 - version = "0.1.0" 2847 - source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2849 - 2850 - [[package]] 2851 name = "value-bag" 2852 version = "1.9.0" 2853 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2855 2856 [[package]] 2857 name = "version_check" 2858 - version = "0.9.4" 2859 source = "registry+https://github.com/rust-lang/crates.io-index" 2860 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2861 2862 [[package]] 2863 name = "wait-timeout" ··· 2870 2871 [[package]] 2872 name = "waker-fn" 2873 - version = "1.1.0" 2874 source = "registry+https://github.com/rust-lang/crates.io-index" 2875 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 2876 2877 [[package]] 2878 name = "walkdir" ··· 2892 2893 [[package]] 2894 name = "wasm-bindgen" 2895 - version = "0.2.84" 2896 source = "registry+https://github.com/rust-lang/crates.io-index" 2897 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 2898 dependencies = [ 2899 "cfg-if", 2900 "wasm-bindgen-macro", 2901 ] 2902 2903 [[package]] 2904 name = "wasm-bindgen-backend" 2905 - version = "0.2.84" 2906 source = "registry+https://github.com/rust-lang/crates.io-index" 2907 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 2908 dependencies = [ 2909 "bumpalo", 2910 "log", 2911 "once_cell", 2912 "proc-macro2", 2913 "quote", 2914 - "syn 1.0.109", 2915 "wasm-bindgen-shared", 2916 ] 2917 2918 [[package]] 2919 name = "wasm-bindgen-futures" 2920 - version = "0.4.34" 2921 source = "registry+https://github.com/rust-lang/crates.io-index" 2922 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 2923 dependencies = [ 2924 "cfg-if", 2925 "futures-core", ··· 2930 2931 [[package]] 2932 name = "wasm-bindgen-macro" 2933 - version = "0.2.84" 2934 source = "registry+https://github.com/rust-lang/crates.io-index" 2935 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 2936 dependencies = [ 2937 "quote", 2938 "wasm-bindgen-macro-support", ··· 2940 2941 [[package]] 2942 name = "wasm-bindgen-macro-support" 2943 - version = "0.2.84" 2944 source = "registry+https://github.com/rust-lang/crates.io-index" 2945 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 2946 dependencies = [ 2947 "proc-macro2", 2948 "quote", 2949 - "syn 1.0.109", 2950 "wasm-bindgen-backend", 2951 "wasm-bindgen-shared", 2952 ] 2953 2954 [[package]] 2955 name = "wasm-bindgen-shared" 2956 - version = "0.2.84" 2957 source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 2959 2960 [[package]] 2961 name = "wasm-streams" ··· 2972 2973 [[package]] 2974 name = "web-sys" 2975 - version = "0.3.61" 2976 source = "registry+https://github.com/rust-lang/crates.io-index" 2977 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 2978 dependencies = [ 2979 "js-sys", 2980 "wasm-bindgen", ··· 2982 2983 [[package]] 2984 name = "winapi" 2985 - version = "0.2.8" 2986 - source = "registry+https://github.com/rust-lang/crates.io-index" 2987 - checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2988 - 2989 - [[package]] 2990 - name = "winapi" 2991 version = "0.3.9" 2992 source = "registry+https://github.com/rust-lang/crates.io-index" 2993 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" ··· 2997 ] 2998 2999 [[package]] 3000 - name = "winapi-build" 3001 - version = "0.1.1" 3002 - source = "registry+https://github.com/rust-lang/crates.io-index" 3003 - checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 3004 - 3005 - [[package]] 3006 name = "winapi-i686-pc-windows-gnu" 3007 version = "0.4.0" 3008 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3010 3011 [[package]] 3012 name = "winapi-util" 3013 - version = "0.1.5" 3014 source = "registry+https://github.com/rust-lang/crates.io-index" 3015 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3016 dependencies = [ 3017 - "winapi 0.3.9", 3018 ] 3019 3020 [[package]] ··· 3024 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3025 3026 [[package]] 3027 - name = "windows" 3028 - version = "0.44.0" 3029 - source = "registry+https://github.com/rust-lang/crates.io-index" 3030 - checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 3031 - dependencies = [ 3032 - "windows-targets 0.42.2", 3033 - ] 3034 - 3035 - [[package]] 3036 name = "windows-sys" 3037 - version = "0.45.0" 3038 source = "registry+https://github.com/rust-lang/crates.io-index" 3039 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3040 dependencies = [ 3041 - "windows-targets 0.42.2", 3042 ] 3043 3044 [[package]] ··· 3047 source = "registry+https://github.com/rust-lang/crates.io-index" 3048 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3049 dependencies = [ 3050 - "windows-targets 0.52.5", 3051 ] 3052 3053 [[package]] 3054 name = "windows-targets" 3055 - version = "0.42.2" 3056 source = "registry+https://github.com/rust-lang/crates.io-index" 3057 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3058 dependencies = [ 3059 - "windows_aarch64_gnullvm 0.42.2", 3060 - "windows_aarch64_msvc 0.42.2", 3061 - "windows_i686_gnu 0.42.2", 3062 - "windows_i686_msvc 0.42.2", 3063 - "windows_x86_64_gnu 0.42.2", 3064 - "windows_x86_64_gnullvm 0.42.2", 3065 - "windows_x86_64_msvc 0.42.2", 3066 ] 3067 3068 [[package]] 3069 name = "windows-targets" 3070 - version = "0.52.5" 3071 source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 3073 dependencies = [ 3074 - "windows_aarch64_gnullvm 0.52.5", 3075 - "windows_aarch64_msvc 0.52.5", 3076 - "windows_i686_gnu 0.52.5", 3077 "windows_i686_gnullvm", 3078 - "windows_i686_msvc 0.52.5", 3079 - "windows_x86_64_gnu 0.52.5", 3080 - "windows_x86_64_gnullvm 0.52.5", 3081 - "windows_x86_64_msvc 0.52.5", 3082 ] 3083 3084 [[package]] 3085 name = "windows_aarch64_gnullvm" 3086 - version = "0.42.2" 3087 source = "registry+https://github.com/rust-lang/crates.io-index" 3088 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3089 3090 [[package]] 3091 name = "windows_aarch64_gnullvm" 3092 - version = "0.52.5" 3093 source = "registry+https://github.com/rust-lang/crates.io-index" 3094 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 3095 3096 [[package]] 3097 name = "windows_aarch64_msvc" 3098 - version = "0.42.2" 3099 source = "registry+https://github.com/rust-lang/crates.io-index" 3100 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3101 3102 [[package]] 3103 name = "windows_aarch64_msvc" 3104 - version = "0.52.5" 3105 source = "registry+https://github.com/rust-lang/crates.io-index" 3106 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 3107 3108 [[package]] 3109 name = "windows_i686_gnu" 3110 - version = "0.42.2" 3111 source = "registry+https://github.com/rust-lang/crates.io-index" 3112 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3113 3114 [[package]] 3115 name = "windows_i686_gnu" 3116 - version = "0.52.5" 3117 source = "registry+https://github.com/rust-lang/crates.io-index" 3118 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 3119 3120 [[package]] 3121 name = "windows_i686_gnullvm" 3122 - version = "0.52.5" 3123 source = "registry+https://github.com/rust-lang/crates.io-index" 3124 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 3125 3126 [[package]] 3127 name = "windows_i686_msvc" 3128 - version = "0.42.2" 3129 source = "registry+https://github.com/rust-lang/crates.io-index" 3130 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3131 3132 [[package]] 3133 name = "windows_i686_msvc" 3134 - version = "0.52.5" 3135 source = "registry+https://github.com/rust-lang/crates.io-index" 3136 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 3137 3138 [[package]] 3139 name = "windows_x86_64_gnu" 3140 - version = "0.42.2" 3141 source = "registry+https://github.com/rust-lang/crates.io-index" 3142 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3143 3144 [[package]] 3145 name = "windows_x86_64_gnu" 3146 - version = "0.52.5" 3147 source = "registry+https://github.com/rust-lang/crates.io-index" 3148 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 3149 3150 [[package]] 3151 name = "windows_x86_64_gnullvm" 3152 - version = "0.42.2" 3153 source = "registry+https://github.com/rust-lang/crates.io-index" 3154 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3155 3156 [[package]] 3157 name = "windows_x86_64_gnullvm" 3158 - version = "0.52.5" 3159 source = "registry+https://github.com/rust-lang/crates.io-index" 3160 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 3161 3162 [[package]] 3163 name = "windows_x86_64_msvc" 3164 - version = "0.42.2" 3165 source = "registry+https://github.com/rust-lang/crates.io-index" 3166 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3167 3168 [[package]] 3169 name = "windows_x86_64_msvc" 3170 - version = "0.52.5" 3171 source = "registry+https://github.com/rust-lang/crates.io-index" 3172 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 3173 3174 [[package]] 3175 - name = "xfunc" 3176 - version = "0.1.0" 3177 dependencies = [ 3178 - "codespan", 3179 - "miette", 3180 - "syntax", 3181 - "thiserror", 3182 ] 3183 3184 [[package]] 3185 - name = "yansi" 3186 - version = "0.5.1" 3187 source = "registry+https://github.com/rust-lang/crates.io-index" 3188 - checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
··· 4 5 [[package]] 6 name = "addr2line" 7 + version = "0.22.0" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 dependencies = [ 11 "gimli", 12 ] ··· 19 20 [[package]] 21 name = "ahash" 22 + version = "0.7.8" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 dependencies = [ 26 "getrandom", 27 "once_cell", ··· 30 31 [[package]] 32 name = "aho-corasick" 33 version = "1.1.3" 34 source = "registry+https://github.com/rust-lang/crates.io-index" 35 checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" ··· 39 40 [[package]] 41 name = "anstream" 42 + version = "0.6.15" 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 45 dependencies = [ 46 + "anstyle", 47 + "anstyle-parse", 48 "anstyle-query", 49 + "anstyle-wincon", 50 "colorchoice", 51 "is_terminal_polyfill", 52 "utf8parse", ··· 54 55 [[package]] 56 name = "anstyle" 57 + version = "1.0.8" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 60 61 [[package]] 62 name = "anstyle-parse" 63 + version = "0.2.5" 64 source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 66 dependencies = [ 67 "utf8parse", 68 ] 69 70 [[package]] 71 name = "anstyle-query" 72 + version = "1.1.1" 73 source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 75 dependencies = [ 76 "windows-sys 0.52.0", 77 ] 78 79 [[package]] 80 name = "anstyle-wincon" 81 + version = "3.0.4" 82 source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 84 dependencies = [ 85 + "anstyle", 86 "windows-sys 0.52.0", 87 ] 88 89 [[package]] 90 name = "anyhow" 91 + version = "1.0.86" 92 source = "registry+https://github.com/rust-lang/crates.io-index" 93 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 94 95 [[package]] 96 name = "arrayvec" ··· 109 110 [[package]] 111 name = "assert_cmd" 112 + version = "2.0.15" 113 source = "registry+https://github.com/rust-lang/crates.io-index" 114 + checksum = "bc65048dd435533bb1baf2ed9956b9a278fbfdcf90301b39ee117f06c0199d37" 115 dependencies = [ 116 + "anstyle", 117 "bstr", 118 "doc-comment", 119 "predicates", ··· 123 ] 124 125 [[package]] 126 + name = "ast" 127 + version = "0.1.0" 128 + dependencies = [ 129 + "codespan", 130 + "derivative", 131 + "fxhash", 132 + "miette", 133 + "miette_util", 134 + "num-bigint", 135 + "pretty", 136 + "printer", 137 + "thiserror", 138 + "url", 139 + ] 140 + 141 + [[package]] 142 name = "async-channel" 143 + version = "1.9.0" 144 source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 146 dependencies = [ 147 "concurrent-queue", 148 + "event-listener 2.5.3", 149 "futures-core", 150 ] 151 152 [[package]] 153 + name = "async-channel" 154 + version = "2.3.1" 155 + source = "registry+https://github.com/rust-lang/crates.io-index" 156 + checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 157 + dependencies = [ 158 + "concurrent-queue", 159 + "event-listener-strategy", 160 + "futures-core", 161 + "pin-project-lite", 162 + ] 163 + 164 + [[package]] 165 name = "async-codec-lite" 166 version = "0.0.2" 167 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 179 180 [[package]] 181 name = "async-executor" 182 + version = "1.13.0" 183 source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" 185 dependencies = [ 186 "async-task", 187 "concurrent-queue", 188 + "fastrand 2.1.0", 189 + "futures-lite 2.3.0", 190 "slab", 191 ] 192 193 [[package]] 194 name = "async-global-executor" 195 + version = "2.4.1" 196 source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 198 dependencies = [ 199 + "async-channel 2.3.1", 200 "async-executor", 201 + "async-io 2.3.3", 202 + "async-lock 3.4.0", 203 "blocking", 204 + "futures-lite 2.3.0", 205 "once_cell", 206 ] 207 ··· 211 source = "registry+https://github.com/rust-lang/crates.io-index" 212 checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 213 dependencies = [ 214 + "async-lock 2.8.0", 215 "autocfg", 216 "cfg-if", 217 "concurrent-queue", 218 + "futures-lite 1.13.0", 219 "log", 220 "parking", 221 + "polling 2.8.0", 222 + "rustix 0.37.27", 223 "slab", 224 "socket2", 225 "waker-fn", 226 ] 227 228 [[package]] 229 + name = "async-io" 230 + version = "2.3.3" 231 + source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 233 + dependencies = [ 234 + "async-lock 3.4.0", 235 + "cfg-if", 236 + "concurrent-queue", 237 + "futures-io", 238 + "futures-lite 2.3.0", 239 + "parking", 240 + "polling 3.7.2", 241 + "rustix 0.38.34", 242 + "slab", 243 + "tracing", 244 + "windows-sys 0.52.0", 245 + ] 246 + 247 + [[package]] 248 name = "async-lock" 249 + version = "2.8.0" 250 source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 252 + dependencies = [ 253 + "event-listener 2.5.3", 254 + ] 255 + 256 + [[package]] 257 + name = "async-lock" 258 + version = "3.4.0" 259 + source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 261 dependencies = [ 262 + "event-listener 5.3.1", 263 + "event-listener-strategy", 264 + "pin-project-lite", 265 ] 266 267 [[package]] ··· 270 source = "registry+https://github.com/rust-lang/crates.io-index" 271 checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 272 dependencies = [ 273 + "async-channel 1.9.0", 274 "async-global-executor", 275 + "async-io 1.13.0", 276 + "async-lock 2.8.0", 277 "crossbeam-utils", 278 "futures-channel", 279 "futures-core", 280 "futures-io", 281 + "futures-lite 1.13.0", 282 "gloo-timers", 283 "kv-log-macro", 284 "log", ··· 292 293 [[package]] 294 name = "async-task" 295 + version = "4.7.1" 296 source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 298 299 [[package]] 300 name = "async-trait" 301 + version = "0.1.81" 302 source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 304 dependencies = [ 305 "proc-macro2", 306 "quote", 307 + "syn 2.0.72", 308 ] 309 310 [[package]] 311 name = "atomic-waker" 312 + version = "1.1.2" 313 source = "registry+https://github.com/rust-lang/crates.io-index" 314 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 315 316 [[package]] 317 name = "auto_impl" ··· 327 328 [[package]] 329 name = "autocfg" 330 + version = "1.3.0" 331 source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 333 334 [[package]] 335 name = "backtrace" 336 + version = "0.3.73" 337 source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 339 dependencies = [ 340 "addr2line", 341 "cc", ··· 389 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 390 391 [[package]] 392 + name = "bitflags" 393 + version = "2.6.0" 394 + source = "registry+https://github.com/rust-lang/crates.io-index" 395 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 396 + 397 + [[package]] 398 name = "bitpacking" 399 version = "0.8.4" 400 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 405 406 [[package]] 407 name = "blocking" 408 + version = "1.6.1" 409 source = "registry+https://github.com/rust-lang/crates.io-index" 410 + checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 411 dependencies = [ 412 + "async-channel 2.3.1", 413 "async-task", 414 + "futures-io", 415 + "futures-lite 2.3.0", 416 + "piper", 417 ] 418 419 [[package]] 420 name = "bstr" 421 + version = "1.10.0" 422 source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 424 dependencies = [ 425 "memchr", 426 + "regex-automata", 427 "serde", 428 ] 429 430 [[package]] 431 name = "bumpalo" 432 + version = "3.16.0" 433 source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 435 436 [[package]] 437 name = "byteorder" 438 + version = "1.5.0" 439 source = "registry+https://github.com/rust-lang/crates.io-index" 440 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 441 442 [[package]] 443 name = "bytes" 444 + version = "1.6.1" 445 source = "registry+https://github.com/rust-lang/crates.io-index" 446 + checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" 447 448 [[package]] 449 name = "cc" 450 + version = "1.1.7" 451 source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" 453 454 [[package]] 455 name = "census" 456 + version = "0.4.2" 457 source = "registry+https://github.com/rust-lang/crates.io-index" 458 + checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0" 459 460 [[package]] 461 name = "cfg-if" ··· 465 466 [[package]] 467 name = "clap" 468 + version = "4.5.11" 469 source = "registry+https://github.com/rust-lang/crates.io-index" 470 + checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3" 471 dependencies = [ 472 "clap_builder", 473 "clap_derive", 474 ] 475 476 [[package]] 477 name = "clap_builder" 478 + version = "4.5.11" 479 source = "registry+https://github.com/rust-lang/crates.io-index" 480 + checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa" 481 dependencies = [ 482 + "anstream", 483 + "anstyle", 484 "clap_lex", 485 "strsim", 486 ] 487 488 [[package]] 489 name = "clap_derive" 490 + version = "4.5.11" 491 source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e" 493 dependencies = [ 494 "heck", 495 "proc-macro2", 496 "quote", 497 + "syn 2.0.72", 498 ] 499 500 [[package]] 501 name = "clap_lex" 502 + version = "0.7.2" 503 source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 505 506 [[package]] 507 name = "codespan" ··· 514 515 [[package]] 516 name = "colorchoice" 517 + version = "1.0.2" 518 source = "registry+https://github.com/rust-lang/crates.io-index" 519 + checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 520 521 [[package]] 522 name = "combine" 523 + version = "4.6.7" 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 526 dependencies = [ 527 "memchr", 528 ] 529 530 [[package]] 531 name = "concurrent-queue" 532 + version = "2.5.0" 533 source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 535 dependencies = [ 536 "crossbeam-utils", 537 ] ··· 548 549 [[package]] 550 name = "crc32fast" 551 + version = "1.4.2" 552 source = "registry+https://github.com/rust-lang/crates.io-index" 553 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 554 dependencies = [ 555 "cfg-if", 556 ] 557 558 [[package]] 559 name = "crossbeam-channel" 560 + version = "0.5.13" 561 source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 563 dependencies = [ 564 "crossbeam-utils", 565 ] 566 567 [[package]] 568 name = "crossbeam-deque" 569 + version = "0.8.5" 570 source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 572 dependencies = [ 573 "crossbeam-epoch", 574 "crossbeam-utils", 575 ] 576 577 [[package]] 578 name = "crossbeam-epoch" 579 + version = "0.9.18" 580 source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 582 dependencies = [ 583 "crossbeam-utils", 584 ] 585 586 [[package]] 587 name = "crossbeam-utils" 588 + version = "0.8.20" 589 source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 591 592 [[package]] 593 name = "crunchy" ··· 596 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 597 598 [[package]] 599 name = "dashmap" 600 + version = "5.5.3" 601 source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 603 dependencies = [ 604 "cfg-if", 605 + "hashbrown 0.14.5", 606 "lock_api", 607 "once_cell", 608 "parking_lot_core", 609 ] 610 611 [[package]] 612 + name = "deranged" 613 + version = "0.3.11" 614 + source = "registry+https://github.com/rust-lang/crates.io-index" 615 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 616 + dependencies = [ 617 + "powerfmt", 618 + "serde", 619 + ] 620 + 621 + [[package]] 622 name = "derivative" 623 version = "2.2.0" 624 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 659 dependencies = [ 660 "libc", 661 "redox_users", 662 + "winapi", 663 ] 664 665 [[package]] ··· 670 671 [[package]] 672 name = "downcast-rs" 673 + version = "1.2.1" 674 source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 676 + 677 + [[package]] 678 + name = "driver" 679 + version = "0.1.0" 680 + dependencies = [ 681 + "ast", 682 + "codespan", 683 + "elaborator", 684 + "log", 685 + "lowering", 686 + "miette", 687 + "parser", 688 + "printer", 689 + "ropey", 690 + "rust-lapper", 691 + "thiserror", 692 + "transformations", 693 + "url", 694 + ] 695 696 [[package]] 697 name = "either" 698 + version = "1.13.0" 699 source = "registry+https://github.com/rust-lang/crates.io-index" 700 + checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 701 702 [[package]] 703 name = "elaborator" 704 version = "0.1.0" 705 dependencies = [ 706 + "ast", 707 "codespan", 708 "derivative", 709 "log", ··· 711 "miette_util", 712 "pretty", 713 "printer", 714 "thiserror", 715 + "url", 716 ] 717 718 [[package]] 719 name = "ena" 720 + version = "0.14.3" 721 source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" 723 dependencies = [ 724 "log", 725 ] 726 727 [[package]] 728 name = "env_filter" 729 + version = "0.1.2" 730 source = "registry+https://github.com/rust-lang/crates.io-index" 731 + checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" 732 dependencies = [ 733 "log", 734 "regex", ··· 736 737 [[package]] 738 name = "env_logger" 739 + version = "0.11.5" 740 source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 742 dependencies = [ 743 + "anstream", 744 + "anstyle", 745 "env_filter", 746 "humantime", 747 "log", 748 ] 749 750 [[package]] 751 + name = "equivalent" 752 + version = "1.0.1" 753 source = "registry+https://github.com/rust-lang/crates.io-index" 754 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 755 756 [[package]] 757 + name = "errno" 758 + version = "0.3.9" 759 source = "registry+https://github.com/rust-lang/crates.io-index" 760 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 761 dependencies = [ 762 "libc", 763 + "windows-sys 0.52.0", 764 ] 765 766 [[package]] ··· 770 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 771 772 [[package]] 773 + name = "event-listener" 774 + version = "5.3.1" 775 + source = "registry+https://github.com/rust-lang/crates.io-index" 776 + checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 777 + dependencies = [ 778 + "concurrent-queue", 779 + "parking", 780 + "pin-project-lite", 781 + ] 782 + 783 + [[package]] 784 + name = "event-listener-strategy" 785 + version = "0.5.2" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 788 + dependencies = [ 789 + "event-listener 5.3.1", 790 + "pin-project-lite", 791 + ] 792 + 793 + [[package]] 794 name = "fail" 795 version = "0.5.1" 796 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 803 804 [[package]] 805 name = "fastdivide" 806 + version = "0.4.1" 807 source = "registry+https://github.com/rust-lang/crates.io-index" 808 + checksum = "59668941c55e5c186b8b58c391629af56774ec768f73c08bbcd56f09348eb00b" 809 810 [[package]] 811 name = "fastfield_codecs" ··· 827 ] 828 829 [[package]] 830 + name = "fastrand" 831 + version = "2.1.0" 832 + source = "registry+https://github.com/rust-lang/crates.io-index" 833 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 834 + 835 + [[package]] 836 name = "fixedbitset" 837 version = "0.4.2" 838 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 860 checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 861 dependencies = [ 862 "libc", 863 + "winapi", 864 ] 865 866 [[package]] 867 name = "futures" 868 + version = "0.3.30" 869 source = "registry+https://github.com/rust-lang/crates.io-index" 870 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 871 dependencies = [ 872 "futures-channel", 873 "futures-core", ··· 880 881 [[package]] 882 name = "futures-channel" 883 + version = "0.3.30" 884 source = "registry+https://github.com/rust-lang/crates.io-index" 885 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 886 dependencies = [ 887 "futures-core", 888 "futures-sink", ··· 890 891 [[package]] 892 name = "futures-core" 893 + version = "0.3.30" 894 source = "registry+https://github.com/rust-lang/crates.io-index" 895 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 896 897 [[package]] 898 name = "futures-executor" 899 + version = "0.3.30" 900 source = "registry+https://github.com/rust-lang/crates.io-index" 901 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 902 dependencies = [ 903 "futures-core", 904 "futures-task", ··· 907 908 [[package]] 909 name = "futures-io" 910 + version = "0.3.30" 911 source = "registry+https://github.com/rust-lang/crates.io-index" 912 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 913 914 [[package]] 915 name = "futures-lite" 916 + version = "1.13.0" 917 source = "registry+https://github.com/rust-lang/crates.io-index" 918 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 919 dependencies = [ 920 + "fastrand 1.9.0", 921 "futures-core", 922 "futures-io", 923 "memchr", ··· 927 ] 928 929 [[package]] 930 + name = "futures-lite" 931 + version = "2.3.0" 932 + source = "registry+https://github.com/rust-lang/crates.io-index" 933 + checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 934 + dependencies = [ 935 + "fastrand 2.1.0", 936 + "futures-core", 937 + "futures-io", 938 + "parking", 939 + "pin-project-lite", 940 + ] 941 + 942 + [[package]] 943 name = "futures-macro" 944 + version = "0.3.30" 945 source = "registry+https://github.com/rust-lang/crates.io-index" 946 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 947 dependencies = [ 948 "proc-macro2", 949 "quote", 950 + "syn 2.0.72", 951 ] 952 953 [[package]] 954 name = "futures-sink" 955 + version = "0.3.30" 956 source = "registry+https://github.com/rust-lang/crates.io-index" 957 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 958 959 [[package]] 960 name = "futures-task" 961 + version = "0.3.30" 962 source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 964 965 [[package]] 966 name = "futures-util" 967 + version = "0.3.30" 968 source = "registry+https://github.com/rust-lang/crates.io-index" 969 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 970 dependencies = [ 971 "futures-channel", 972 "futures-core", ··· 990 ] 991 992 [[package]] 993 name = "getrandom" 994 + version = "0.2.15" 995 source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 997 dependencies = [ 998 "cfg-if", 999 "libc", ··· 1002 1003 [[package]] 1004 name = "gimli" 1005 + version = "0.29.0" 1006 source = "registry+https://github.com/rust-lang/crates.io-index" 1007 + checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 1008 1009 [[package]] 1010 name = "gloo-timers" ··· 1028 ] 1029 1030 [[package]] 1031 + name = "hashbrown" 1032 + version = "0.14.5" 1033 source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1035 1036 [[package]] 1037 + name = "heck" 1038 + version = "0.5.0" 1039 source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1041 1042 [[package]] 1043 name = "hermit-abi" 1044 + version = "0.3.9" 1045 source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 1047 1048 [[package]] 1049 name = "hermit-abi" 1050 + version = "0.4.0" 1051 source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 1053 1054 [[package]] 1055 name = "htmlescape" ··· 1059 1060 [[package]] 1061 name = "httparse" 1062 + version = "1.9.4" 1063 source = "registry+https://github.com/rust-lang/crates.io-index" 1064 + checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 1065 1066 [[package]] 1067 name = "humantime" ··· 1081 1082 [[package]] 1083 name = "indexmap" 1084 + version = "2.2.6" 1085 source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1087 dependencies = [ 1088 + "equivalent", 1089 + "hashbrown 0.14.5", 1090 ] 1091 1092 [[package]] 1093 name = "instant" 1094 + version = "0.1.13" 1095 source = "registry+https://github.com/rust-lang/crates.io-index" 1096 + checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1097 dependencies = [ 1098 "cfg-if", 1099 "js-sys", ··· 1103 1104 [[package]] 1105 name = "io-lifetimes" 1106 + version = "1.0.11" 1107 source = "registry+https://github.com/rust-lang/crates.io-index" 1108 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1109 dependencies = [ 1110 + "hermit-abi 0.3.9", 1111 "libc", 1112 + "windows-sys 0.48.0", 1113 ] 1114 1115 [[package]] 1116 name = "is-terminal" 1117 + version = "0.4.12" 1118 source = "registry+https://github.com/rust-lang/crates.io-index" 1119 + checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 1120 dependencies = [ 1121 + "hermit-abi 0.3.9", 1122 + "libc", 1123 + "windows-sys 0.52.0", 1124 ] 1125 1126 [[package]] 1127 name = "is_ci" 1128 + version = "1.2.0" 1129 source = "registry+https://github.com/rust-lang/crates.io-index" 1130 + checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 1131 1132 [[package]] 1133 name = "is_terminal_polyfill" 1134 + version = "1.70.1" 1135 source = "registry+https://github.com/rust-lang/crates.io-index" 1136 + checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1137 1138 [[package]] 1139 name = "itertools" ··· 1155 1156 [[package]] 1157 name = "itoa" 1158 + version = "1.0.11" 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 1160 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1161 1162 [[package]] 1163 name = "js-sys" 1164 + version = "0.3.69" 1165 source = "registry+https://github.com/rust-lang/crates.io-index" 1166 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1167 dependencies = [ 1168 "wasm-bindgen", 1169 ] 1170 1171 [[package]] 1172 name = "kv-log-macro" 1173 version = "1.0.7" 1174 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1179 1180 [[package]] 1181 name = "lalrpop" 1182 + version = "0.19.12" 1183 source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" 1185 dependencies = [ 1186 "ascii-canvas", 1187 "bit-set", ··· 1189 "ena", 1190 "is-terminal", 1191 "itertools 0.10.5", 1192 + "lalrpop-util 0.19.12", 1193 "petgraph", 1194 "regex", 1195 "regex-syntax 0.6.29", 1196 "string_cache", ··· 1211 "itertools 0.11.0", 1212 "lalrpop-util 0.20.2", 1213 "petgraph", 1214 + "pico-args", 1215 "regex", 1216 + "regex-syntax 0.8.4", 1217 "string_cache", 1218 "term", 1219 "tiny-keccak", ··· 1223 1224 [[package]] 1225 name = "lalrpop-util" 1226 + version = "0.19.12" 1227 source = "registry+https://github.com/rust-lang/crates.io-index" 1228 + checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" 1229 dependencies = [ 1230 "regex", 1231 ] ··· 1236 source = "registry+https://github.com/rust-lang/crates.io-index" 1237 checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" 1238 dependencies = [ 1239 + "regex-automata", 1240 ] 1241 1242 [[package]] 1243 name = "lazy_static" 1244 + version = "1.5.0" 1245 source = "registry+https://github.com/rust-lang/crates.io-index" 1246 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1247 1248 [[package]] 1249 name = "levenshtein_automata" ··· 1253 1254 [[package]] 1255 name = "libc" 1256 + version = "0.2.155" 1257 source = "registry+https://github.com/rust-lang/crates.io-index" 1258 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1259 1260 [[package]] 1261 + name = "libredox" 1262 + version = "0.1.3" 1263 + source = "registry+https://github.com/rust-lang/crates.io-index" 1264 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1265 dependencies = [ 1266 + "bitflags 2.6.0", 1267 + "libc", 1268 ] 1269 1270 [[package]] 1271 name = "linux-raw-sys" 1272 + version = "0.3.8" 1273 + source = "registry+https://github.com/rust-lang/crates.io-index" 1274 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1275 + 1276 + [[package]] 1277 + name = "linux-raw-sys" 1278 + version = "0.4.14" 1279 source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1281 1282 [[package]] 1283 name = "lock_api" 1284 + version = "0.4.12" 1285 source = "registry+https://github.com/rust-lang/crates.io-index" 1286 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1287 dependencies = [ 1288 "autocfg", 1289 "scopeguard", ··· 1291 1292 [[package]] 1293 name = "log" 1294 + version = "0.4.22" 1295 source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1297 dependencies = [ 1298 "value-bag", 1299 ] ··· 1318 "lazy_static", 1319 "proc-macro2", 1320 "quote", 1321 + "regex-syntax 0.8.4", 1322 + "syn 2.0.72", 1323 ] 1324 1325 [[package]] ··· 1332 ] 1333 1334 [[package]] 1335 name = "lowering" 1336 version = "0.1.0" 1337 dependencies = [ 1338 + "ast", 1339 "codespan", 1340 + "log", 1341 "miette", 1342 "miette_util", 1343 "num-bigint", 1344 "parser", 1345 "thiserror", 1346 + "url", 1347 ] 1348 1349 [[package]] ··· 1352 source = "registry+https://github.com/rust-lang/crates.io-index" 1353 checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" 1354 dependencies = [ 1355 + "hashbrown 0.12.3", 1356 ] 1357 1358 [[package]] ··· 1374 name = "lsp-server" 1375 version = "0.1.0" 1376 dependencies = [ 1377 + "ast", 1378 + "async-lock 2.8.0", 1379 "codespan", 1380 + "driver", 1381 "lsp-types 0.93.2", 1382 "miette", 1383 "miette_util", 1384 "printer", 1385 "tower-lsp", 1386 + "url", 1387 ] 1388 1389 [[package]] ··· 1392 source = "registry+https://github.com/rust-lang/crates.io-index" 1393 checksum = "2368312c59425dd133cb9a327afee65be0a633a8ce471d248e2202a48f8f68ae" 1394 dependencies = [ 1395 + "bitflags 1.3.2", 1396 "serde", 1397 "serde_json", 1398 "serde_repr", ··· 1405 source = "registry+https://github.com/rust-lang/crates.io-index" 1406 checksum = "9be6e9c7e2d18f651974370d7aff703f9513e0df6e464fd795660edc77e6ca51" 1407 dependencies = [ 1408 + "bitflags 1.3.2", 1409 "serde", 1410 "serde_json", 1411 "serde_repr", ··· 1419 checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" 1420 1421 [[package]] 1422 name = "measure_time" 1423 + version = "0.8.3" 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc" 1426 dependencies = [ 1427 "instant", 1428 "log", ··· 1430 1431 [[package]] 1432 name = "memchr" 1433 + version = "2.7.4" 1434 source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1436 1437 [[package]] 1438 name = "memmap2" ··· 1444 ] 1445 1446 [[package]] 1447 name = "miette" 1448 + version = "5.10.0" 1449 source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e" 1451 dependencies = [ 1452 "backtrace", 1453 "backtrace-ext", ··· 1466 1467 [[package]] 1468 name = "miette-derive" 1469 + version = "5.10.0" 1470 source = "registry+https://github.com/rust-lang/crates.io-index" 1471 + checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c" 1472 dependencies = [ 1473 "proc-macro2", 1474 "quote", 1475 + "syn 2.0.72", 1476 ] 1477 1478 [[package]] ··· 1485 1486 [[package]] 1487 name = "miniz_oxide" 1488 + version = "0.7.4" 1489 source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 1491 dependencies = [ 1492 "adler", 1493 ] ··· 1503 1504 [[package]] 1505 name = "new_debug_unreachable" 1506 + version = "1.0.6" 1507 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 1509 1510 [[package]] 1511 name = "num-bigint" 1512 + version = "0.4.6" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 + checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1515 dependencies = [ 1516 "num-integer", 1517 "num-traits", 1518 ] 1519 1520 [[package]] 1521 + name = "num-conv" 1522 + version = "0.1.0" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1525 + 1526 + [[package]] 1527 name = "num-integer" 1528 + version = "0.1.46" 1529 source = "registry+https://github.com/rust-lang/crates.io-index" 1530 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1531 dependencies = [ 1532 "num-traits", 1533 ] 1534 1535 [[package]] 1536 name = "num-traits" 1537 + version = "0.2.19" 1538 source = "registry+https://github.com/rust-lang/crates.io-index" 1539 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1540 dependencies = [ 1541 "autocfg", 1542 ] 1543 1544 [[package]] 1545 name = "num_cpus" 1546 + version = "1.16.0" 1547 source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1549 dependencies = [ 1550 + "hermit-abi 0.3.9", 1551 "libc", 1552 ] 1553 1554 [[package]] 1555 name = "object" 1556 + version = "0.36.2" 1557 source = "registry+https://github.com/rust-lang/crates.io-index" 1558 + checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" 1559 dependencies = [ 1560 "memchr", 1561 ] 1562 1563 [[package]] 1564 name = "once_cell" 1565 + version = "1.19.0" 1566 source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1568 1569 [[package]] 1570 name = "oneshot" 1571 + version = "0.1.8" 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1573 + checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29" 1574 1575 [[package]] 1576 name = "ownedbytes" ··· 1589 1590 [[package]] 1591 name = "parking" 1592 + version = "2.2.0" 1593 source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 1595 1596 [[package]] 1597 name = "parking_lot" 1598 + version = "0.12.3" 1599 source = "registry+https://github.com/rust-lang/crates.io-index" 1600 + checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 1601 dependencies = [ 1602 "lock_api", 1603 "parking_lot_core", ··· 1605 1606 [[package]] 1607 name = "parking_lot_core" 1608 + version = "0.9.10" 1609 source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1611 dependencies = [ 1612 "cfg-if", 1613 "libc", 1614 + "redox_syscall", 1615 "smallvec", 1616 + "windows-targets 0.52.6", 1617 ] 1618 1619 [[package]] ··· 1621 version = "0.1.0" 1622 dependencies = [ 1623 "codespan", 1624 + "derivative", 1625 + "lalrpop 0.19.12", 1626 "lalrpop 0.20.2", 1627 "lalrpop-util 0.20.2", 1628 "logos", ··· 1640 1641 [[package]] 1642 name = "petgraph" 1643 + version = "0.6.5" 1644 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 + checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 1646 dependencies = [ 1647 "fixedbitset", 1648 "indexmap", ··· 1659 1660 [[package]] 1661 name = "pico-args" 1662 version = "0.5.0" 1663 source = "registry+https://github.com/rust-lang/crates.io-index" 1664 checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 1665 1666 [[package]] 1667 name = "pin-project" 1668 + version = "1.1.5" 1669 source = "registry+https://github.com/rust-lang/crates.io-index" 1670 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 1671 dependencies = [ 1672 "pin-project-internal", 1673 ] 1674 1675 [[package]] 1676 name = "pin-project-internal" 1677 + version = "1.1.5" 1678 source = "registry+https://github.com/rust-lang/crates.io-index" 1679 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 1680 dependencies = [ 1681 "proc-macro2", 1682 "quote", 1683 + "syn 2.0.72", 1684 ] 1685 1686 [[package]] 1687 name = "pin-project-lite" 1688 + version = "0.2.14" 1689 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1691 1692 [[package]] 1693 name = "pin-utils" ··· 1696 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1697 1698 [[package]] 1699 + name = "piper" 1700 + version = "0.2.3" 1701 + source = "registry+https://github.com/rust-lang/crates.io-index" 1702 + checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 1703 + dependencies = [ 1704 + "atomic-waker", 1705 + "fastrand 2.1.0", 1706 + "futures-io", 1707 + ] 1708 + 1709 + [[package]] 1710 name = "polarity" 1711 version = "0.1.0" 1712 dependencies = [ 1713 "assert_cmd", 1714 + "ast", 1715 "async-std", 1716 "clap", 1717 + "driver", 1718 "elaborator", 1719 "env_logger", 1720 "futures", 1721 + "log", 1722 "lsp-server", 1723 "miette", 1724 "printer", 1725 "termsize", 1726 "thiserror", 1727 "tokio", ··· 1730 1731 [[package]] 1732 name = "polling" 1733 + version = "2.8.0" 1734 source = "registry+https://github.com/rust-lang/crates.io-index" 1735 + checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 1736 dependencies = [ 1737 "autocfg", 1738 + "bitflags 1.3.2", 1739 "cfg-if", 1740 "concurrent-queue", 1741 "libc", 1742 "log", 1743 "pin-project-lite", 1744 + "windows-sys 0.48.0", 1745 + ] 1746 + 1747 + [[package]] 1748 + name = "polling" 1749 + version = "3.7.2" 1750 + source = "registry+https://github.com/rust-lang/crates.io-index" 1751 + checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 1752 + dependencies = [ 1753 + "cfg-if", 1754 + "concurrent-queue", 1755 + "hermit-abi 0.4.0", 1756 + "pin-project-lite", 1757 + "rustix 0.38.34", 1758 + "tracing", 1759 + "windows-sys 0.52.0", 1760 ] 1761 1762 [[package]] 1763 + name = "powerfmt" 1764 + version = "0.2.0" 1765 + source = "registry+https://github.com/rust-lang/crates.io-index" 1766 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1767 + 1768 + [[package]] 1769 name = "ppv-lite86" 1770 + version = "0.2.19" 1771 source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "2288c0e17cc8d342c712bb43a257a80ebffce59cdb33d5000d8348f3ec02528b" 1773 + dependencies = [ 1774 + "zerocopy", 1775 + "zerocopy-derive", 1776 + ] 1777 1778 [[package]] 1779 name = "precomputed-hash" ··· 1783 1784 [[package]] 1785 name = "predicates" 1786 + version = "3.1.2" 1787 source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" 1789 dependencies = [ 1790 + "anstyle", 1791 "difflib", 1792 "predicates-core", 1793 ] 1794 1795 [[package]] 1796 name = "predicates-core" 1797 + version = "1.0.8" 1798 source = "registry+https://github.com/rust-lang/crates.io-index" 1799 + checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" 1800 1801 [[package]] 1802 name = "predicates-tree" 1803 + version = "1.0.11" 1804 source = "registry+https://github.com/rust-lang/crates.io-index" 1805 + checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" 1806 dependencies = [ 1807 "predicates-core", 1808 "termtree", ··· 1823 1824 [[package]] 1825 name = "pretty_assertions" 1826 + version = "1.4.0" 1827 source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 1829 dependencies = [ 1830 "diff", 1831 "yansi", 1832 ] 1833 ··· 1836 version = "0.1.0" 1837 dependencies = [ 1838 "pretty", 1839 ] 1840 1841 [[package]] ··· 1864 1865 [[package]] 1866 name = "proc-macro2" 1867 + version = "1.0.86" 1868 source = "registry+https://github.com/rust-lang/crates.io-index" 1869 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 1870 dependencies = [ 1871 "unicode-ident", 1872 ] 1873 1874 [[package]] 1875 name = "quote" 1876 + version = "1.0.36" 1877 source = "registry+https://github.com/rust-lang/crates.io-index" 1878 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1879 dependencies = [ 1880 "proc-macro2", 1881 ] ··· 1912 1913 [[package]] 1914 name = "rayon" 1915 + version = "1.10.0" 1916 source = "registry+https://github.com/rust-lang/crates.io-index" 1917 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1918 dependencies = [ 1919 "either", 1920 "rayon-core", ··· 1922 1923 [[package]] 1924 name = "rayon-core" 1925 + version = "1.12.1" 1926 source = "registry+https://github.com/rust-lang/crates.io-index" 1927 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1928 dependencies = [ 1929 "crossbeam-deque", 1930 "crossbeam-utils", 1931 ] 1932 1933 [[package]] 1934 name = "redox_syscall" 1935 + version = "0.5.3" 1936 source = "registry+https://github.com/rust-lang/crates.io-index" 1937 + checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" 1938 dependencies = [ 1939 + "bitflags 2.6.0", 1940 ] 1941 1942 [[package]] 1943 name = "redox_users" 1944 + version = "0.4.5" 1945 source = "registry+https://github.com/rust-lang/crates.io-index" 1946 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 1947 dependencies = [ 1948 "getrandom", 1949 + "libredox", 1950 "thiserror", 1951 ] 1952 1953 [[package]] 1954 name = "regex" 1955 + version = "1.10.5" 1956 source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 1958 dependencies = [ 1959 + "aho-corasick", 1960 "memchr", 1961 + "regex-automata", 1962 + "regex-syntax 0.8.4", 1963 ] 1964 1965 [[package]] 1966 name = "regex-automata" 1967 + version = "0.4.7" 1968 source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1970 dependencies = [ 1971 + "aho-corasick", 1972 "memchr", 1973 + "regex-syntax 0.8.4", 1974 ] 1975 1976 [[package]] ··· 1987 1988 [[package]] 1989 name = "regex-syntax" 1990 + version = "0.8.4" 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1993 1994 [[package]] 1995 name = "ropey" 1996 + version = "1.6.1" 1997 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "93411e420bcd1a75ddd1dc3caf18c23155eda2c090631a85af21ba19e97093b5" 1999 dependencies = [ 2000 "smallvec", 2001 "str_indices", ··· 2022 2023 [[package]] 2024 name = "rustc-demangle" 2025 + version = "0.1.24" 2026 source = "registry+https://github.com/rust-lang/crates.io-index" 2027 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 2028 2029 [[package]] 2030 name = "rustix" 2031 + version = "0.37.27" 2032 source = "registry+https://github.com/rust-lang/crates.io-index" 2033 + checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 2034 dependencies = [ 2035 + "bitflags 1.3.2", 2036 "errno", 2037 "io-lifetimes", 2038 "libc", 2039 + "linux-raw-sys 0.3.8", 2040 + "windows-sys 0.48.0", 2041 + ] 2042 + 2043 + [[package]] 2044 + name = "rustix" 2045 + version = "0.38.34" 2046 + source = "registry+https://github.com/rust-lang/crates.io-index" 2047 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 2048 + dependencies = [ 2049 + "bitflags 2.6.0", 2050 + "errno", 2051 + "libc", 2052 + "linux-raw-sys 0.4.14", 2053 + "windows-sys 0.52.0", 2054 ] 2055 2056 [[package]] 2057 name = "rustversion" 2058 + version = "1.0.17" 2059 source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 2061 2062 [[package]] 2063 name = "ryu" 2064 + version = "1.0.18" 2065 source = "registry+https://github.com/rust-lang/crates.io-index" 2066 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 2067 2068 [[package]] 2069 name = "same-file" ··· 2075 ] 2076 2077 [[package]] 2078 name = "scopeguard" 2079 + version = "1.2.0" 2080 source = "registry+https://github.com/rust-lang/crates.io-index" 2081 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2082 2083 [[package]] 2084 name = "serde" 2085 + version = "1.0.204" 2086 source = "registry+https://github.com/rust-lang/crates.io-index" 2087 + checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 2088 dependencies = [ 2089 "serde_derive", 2090 ] 2091 2092 [[package]] 2093 name = "serde_derive" 2094 + version = "1.0.204" 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2096 + checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 2097 dependencies = [ 2098 "proc-macro2", 2099 "quote", 2100 + "syn 2.0.72", 2101 ] 2102 2103 [[package]] 2104 name = "serde_json" 2105 + version = "1.0.121" 2106 source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609" 2108 dependencies = [ 2109 "itoa", 2110 + "memchr", 2111 "ryu", 2112 "serde", 2113 ] 2114 2115 [[package]] 2116 name = "serde_repr" 2117 + version = "0.1.19" 2118 source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2120 dependencies = [ 2121 "proc-macro2", 2122 "quote", 2123 + "syn 2.0.72", 2124 ] 2125 2126 [[package]] 2127 name = "siphasher" 2128 + version = "0.3.11" 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 2130 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2131 2132 [[package]] 2133 name = "slab" 2134 + version = "0.4.9" 2135 source = "registry+https://github.com/rust-lang/crates.io-index" 2136 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2137 dependencies = [ 2138 "autocfg", 2139 ] 2140 2141 [[package]] 2142 name = "smallvec" 2143 + version = "1.13.2" 2144 source = "registry+https://github.com/rust-lang/crates.io-index" 2145 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2146 2147 [[package]] 2148 name = "smawk" 2149 + version = "0.3.2" 2150 source = "registry+https://github.com/rust-lang/crates.io-index" 2151 + checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 2152 2153 [[package]] 2154 name = "socket2" 2155 + version = "0.4.10" 2156 source = "registry+https://github.com/rust-lang/crates.io-index" 2157 + checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2158 dependencies = [ 2159 "libc", 2160 + "winapi", 2161 ] 2162 2163 [[package]] ··· 2168 2169 [[package]] 2170 name = "str_indices" 2171 + version = "0.4.3" 2172 source = "registry+https://github.com/rust-lang/crates.io-index" 2173 + checksum = "e9557cb6521e8d009c51a8666f09356f4b817ba9ba0981a305bd86aee47bd35c" 2174 2175 [[package]] 2176 name = "string_cache" ··· 2187 2188 [[package]] 2189 name = "strsim" 2190 + version = "0.11.1" 2191 source = "registry+https://github.com/rust-lang/crates.io-index" 2192 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2193 2194 [[package]] 2195 name = "supports-color" 2196 + version = "2.1.0" 2197 source = "registry+https://github.com/rust-lang/crates.io-index" 2198 + checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89" 2199 dependencies = [ 2200 "is-terminal", 2201 "is_ci", ··· 2203 2204 [[package]] 2205 name = "supports-hyperlinks" 2206 + version = "2.1.0" 2207 source = "registry+https://github.com/rust-lang/crates.io-index" 2208 + checksum = "f84231692eb0d4d41e4cdd0cabfdd2e6cd9e255e65f80c9aa7c98dd502b4233d" 2209 dependencies = [ 2210 "is-terminal", 2211 ] 2212 2213 [[package]] 2214 name = "supports-unicode" 2215 + version = "2.1.0" 2216 source = "registry+https://github.com/rust-lang/crates.io-index" 2217 + checksum = "f850c19edd184a205e883199a261ed44471c81e39bd95b1357f5febbef00e77a" 2218 dependencies = [ 2219 "is-terminal", 2220 ] ··· 2232 2233 [[package]] 2234 name = "syn" 2235 + version = "2.0.72" 2236 source = "registry+https://github.com/rust-lang/crates.io-index" 2237 + checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" 2238 dependencies = [ 2239 "proc-macro2", 2240 "quote", ··· 2242 ] 2243 2244 [[package]] 2245 name = "tantivy" 2246 version = "0.18.1" 2247 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2289 "thiserror", 2290 "time", 2291 "uuid", 2292 + "winapi", 2293 ] 2294 2295 [[package]] ··· 2332 2333 [[package]] 2334 name = "tempfile" 2335 + version = "3.10.1" 2336 source = "registry+https://github.com/rust-lang/crates.io-index" 2337 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 2338 dependencies = [ 2339 "cfg-if", 2340 + "fastrand 2.1.0", 2341 + "rustix 0.38.34", 2342 + "windows-sys 0.52.0", 2343 ] 2344 2345 [[package]] ··· 2350 dependencies = [ 2351 "dirs-next", 2352 "rustversion", 2353 + "winapi", 2354 ] 2355 2356 [[package]] 2357 name = "termcolor" 2358 + version = "1.4.1" 2359 source = "registry+https://github.com/rust-lang/crates.io-index" 2360 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2361 dependencies = [ 2362 "winapi-util", 2363 ] ··· 2369 checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 2370 dependencies = [ 2371 "libc", 2372 + "winapi", 2373 ] 2374 2375 [[package]] 2376 name = "termsize" 2377 + version = "0.1.9" 2378 source = "registry+https://github.com/rust-lang/crates.io-index" 2379 + checksum = "6f11ff5c25c172608d5b85e2fb43ee9a6d683a7f4ab7f96ae07b3d8b590368fd" 2380 dependencies = [ 2381 "libc", 2382 + "winapi", 2383 ] 2384 2385 [[package]] ··· 2392 name = "test-runner" 2393 version = "0.1.0" 2394 dependencies = [ 2395 + "ast", 2396 "clap", 2397 + "driver", 2398 "elaborator", 2399 "env_logger", 2400 + "log", 2401 "parser", 2402 "printer", 2403 "serde", 2404 "serde_derive", 2405 "tantivy", 2406 + "termcolor", 2407 "toml", 2408 "url", 2409 + "walkdir", 2410 ] 2411 2412 [[package]] ··· 2422 2423 [[package]] 2424 name = "thiserror" 2425 + version = "1.0.63" 2426 source = "registry+https://github.com/rust-lang/crates.io-index" 2427 + checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 2428 dependencies = [ 2429 "thiserror-impl", 2430 ] 2431 2432 [[package]] 2433 name = "thiserror-impl" 2434 + version = "1.0.63" 2435 source = "registry+https://github.com/rust-lang/crates.io-index" 2436 + checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 2437 dependencies = [ 2438 "proc-macro2", 2439 "quote", 2440 + "syn 2.0.72", 2441 ] 2442 2443 [[package]] 2444 name = "time" 2445 + version = "0.3.36" 2446 source = "registry+https://github.com/rust-lang/crates.io-index" 2447 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2448 dependencies = [ 2449 + "deranged", 2450 "itoa", 2451 + "num-conv", 2452 + "powerfmt", 2453 "serde", 2454 "time-core", 2455 "time-macros", ··· 2457 2458 [[package]] 2459 name = "time-core" 2460 + version = "0.1.2" 2461 source = "registry+https://github.com/rust-lang/crates.io-index" 2462 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2463 2464 [[package]] 2465 name = "time-macros" 2466 + version = "0.2.18" 2467 source = "registry+https://github.com/rust-lang/crates.io-index" 2468 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2469 dependencies = [ 2470 + "num-conv", 2471 "time-core", 2472 ] 2473 ··· 2482 2483 [[package]] 2484 name = "tinyvec" 2485 + version = "1.8.0" 2486 source = "registry+https://github.com/rust-lang/crates.io-index" 2487 + checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 2488 dependencies = [ 2489 "tinyvec_macros", 2490 ] ··· 2497 2498 [[package]] 2499 name = "tokio" 2500 + version = "1.39.2" 2501 source = "registry+https://github.com/rust-lang/crates.io-index" 2502 + checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" 2503 dependencies = [ 2504 + "backtrace", 2505 "pin-project-lite", 2506 ] 2507 2508 [[package]] ··· 2575 2576 [[package]] 2577 name = "tracing" 2578 + version = "0.1.40" 2579 source = "registry+https://github.com/rust-lang/crates.io-index" 2580 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2581 dependencies = [ 2582 "pin-project-lite", 2583 "tracing-core", 2584 ] 2585 2586 [[package]] 2587 name = "tracing-core" 2588 + version = "0.1.32" 2589 source = "registry+https://github.com/rust-lang/crates.io-index" 2590 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2591 2592 [[package]] 2593 + name = "transformations" 2594 + version = "0.1.0" 2595 dependencies = [ 2596 + "ast", 2597 + "codespan", 2598 + "derivative", 2599 + "miette", 2600 + "thiserror", 2601 + "url", 2602 ] 2603 2604 [[package]] ··· 2609 2610 [[package]] 2611 name = "unicode-bidi" 2612 + version = "0.3.15" 2613 source = "registry+https://github.com/rust-lang/crates.io-index" 2614 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2615 2616 [[package]] 2617 name = "unicode-ident" 2618 + version = "1.0.12" 2619 source = "registry+https://github.com/rust-lang/crates.io-index" 2620 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2621 2622 [[package]] 2623 name = "unicode-linebreak" 2624 + version = "0.1.5" 2625 source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 2627 2628 [[package]] 2629 name = "unicode-normalization" 2630 + version = "0.1.23" 2631 source = "registry+https://github.com/rust-lang/crates.io-index" 2632 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2633 dependencies = [ 2634 "tinyvec", 2635 ] 2636 2637 [[package]] 2638 name = "unicode-segmentation" 2639 + version = "1.11.0" 2640 source = "registry+https://github.com/rust-lang/crates.io-index" 2641 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 2642 2643 [[package]] 2644 name = "unicode-width" 2645 + version = "0.1.13" 2646 source = "registry+https://github.com/rust-lang/crates.io-index" 2647 + checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 2648 2649 [[package]] 2650 name = "unicode-xid" ··· 2654 2655 [[package]] 2656 name = "url" 2657 + version = "2.5.2" 2658 source = "registry+https://github.com/rust-lang/crates.io-index" 2659 + checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 2660 dependencies = [ 2661 "form_urlencoded", 2662 "idna", ··· 2672 2673 [[package]] 2674 name = "utf8parse" 2675 + version = "0.2.2" 2676 source = "registry+https://github.com/rust-lang/crates.io-index" 2677 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2678 2679 [[package]] 2680 name = "uuid" 2681 + version = "1.10.0" 2682 source = "registry+https://github.com/rust-lang/crates.io-index" 2683 + checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 2684 dependencies = [ 2685 "getrandom", 2686 "serde", 2687 ] 2688 2689 [[package]] 2690 name = "value-bag" 2691 version = "1.9.0" 2692 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2694 2695 [[package]] 2696 name = "version_check" 2697 + version = "0.9.5" 2698 source = "registry+https://github.com/rust-lang/crates.io-index" 2699 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2700 2701 [[package]] 2702 name = "wait-timeout" ··· 2709 2710 [[package]] 2711 name = "waker-fn" 2712 + version = "1.2.0" 2713 source = "registry+https://github.com/rust-lang/crates.io-index" 2714 + checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 2715 2716 [[package]] 2717 name = "walkdir" ··· 2731 2732 [[package]] 2733 name = "wasm-bindgen" 2734 + version = "0.2.93" 2735 source = "registry+https://github.com/rust-lang/crates.io-index" 2736 + checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 2737 dependencies = [ 2738 "cfg-if", 2739 + "once_cell", 2740 "wasm-bindgen-macro", 2741 ] 2742 2743 [[package]] 2744 name = "wasm-bindgen-backend" 2745 + version = "0.2.93" 2746 source = "registry+https://github.com/rust-lang/crates.io-index" 2747 + checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 2748 dependencies = [ 2749 "bumpalo", 2750 "log", 2751 "once_cell", 2752 "proc-macro2", 2753 "quote", 2754 + "syn 2.0.72", 2755 "wasm-bindgen-shared", 2756 ] 2757 2758 [[package]] 2759 name = "wasm-bindgen-futures" 2760 + version = "0.4.42" 2761 source = "registry+https://github.com/rust-lang/crates.io-index" 2762 + checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 2763 dependencies = [ 2764 "cfg-if", 2765 "futures-core", ··· 2770 2771 [[package]] 2772 name = "wasm-bindgen-macro" 2773 + version = "0.2.93" 2774 source = "registry+https://github.com/rust-lang/crates.io-index" 2775 + checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 2776 dependencies = [ 2777 "quote", 2778 "wasm-bindgen-macro-support", ··· 2780 2781 [[package]] 2782 name = "wasm-bindgen-macro-support" 2783 + version = "0.2.93" 2784 source = "registry+https://github.com/rust-lang/crates.io-index" 2785 + checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 2786 dependencies = [ 2787 "proc-macro2", 2788 "quote", 2789 + "syn 2.0.72", 2790 "wasm-bindgen-backend", 2791 "wasm-bindgen-shared", 2792 ] 2793 2794 [[package]] 2795 name = "wasm-bindgen-shared" 2796 + version = "0.2.93" 2797 source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 2799 2800 [[package]] 2801 name = "wasm-streams" ··· 2812 2813 [[package]] 2814 name = "web-sys" 2815 + version = "0.3.69" 2816 source = "registry+https://github.com/rust-lang/crates.io-index" 2817 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 2818 dependencies = [ 2819 "js-sys", 2820 "wasm-bindgen", ··· 2822 2823 [[package]] 2824 name = "winapi" 2825 version = "0.3.9" 2826 source = "registry+https://github.com/rust-lang/crates.io-index" 2827 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" ··· 2831 ] 2832 2833 [[package]] 2834 name = "winapi-i686-pc-windows-gnu" 2835 version = "0.4.0" 2836 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2838 2839 [[package]] 2840 name = "winapi-util" 2841 + version = "0.1.8" 2842 source = "registry+https://github.com/rust-lang/crates.io-index" 2843 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 2844 dependencies = [ 2845 + "windows-sys 0.52.0", 2846 ] 2847 2848 [[package]] ··· 2852 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2853 2854 [[package]] 2855 name = "windows-sys" 2856 + version = "0.48.0" 2857 source = "registry+https://github.com/rust-lang/crates.io-index" 2858 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2859 dependencies = [ 2860 + "windows-targets 0.48.5", 2861 ] 2862 2863 [[package]] ··· 2866 source = "registry+https://github.com/rust-lang/crates.io-index" 2867 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2868 dependencies = [ 2869 + "windows-targets 0.52.6", 2870 ] 2871 2872 [[package]] 2873 name = "windows-targets" 2874 + version = "0.48.5" 2875 source = "registry+https://github.com/rust-lang/crates.io-index" 2876 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2877 dependencies = [ 2878 + "windows_aarch64_gnullvm 0.48.5", 2879 + "windows_aarch64_msvc 0.48.5", 2880 + "windows_i686_gnu 0.48.5", 2881 + "windows_i686_msvc 0.48.5", 2882 + "windows_x86_64_gnu 0.48.5", 2883 + "windows_x86_64_gnullvm 0.48.5", 2884 + "windows_x86_64_msvc 0.48.5", 2885 ] 2886 2887 [[package]] 2888 name = "windows-targets" 2889 + version = "0.52.6" 2890 source = "registry+https://github.com/rust-lang/crates.io-index" 2891 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2892 dependencies = [ 2893 + "windows_aarch64_gnullvm 0.52.6", 2894 + "windows_aarch64_msvc 0.52.6", 2895 + "windows_i686_gnu 0.52.6", 2896 "windows_i686_gnullvm", 2897 + "windows_i686_msvc 0.52.6", 2898 + "windows_x86_64_gnu 0.52.6", 2899 + "windows_x86_64_gnullvm 0.52.6", 2900 + "windows_x86_64_msvc 0.52.6", 2901 ] 2902 2903 [[package]] 2904 name = "windows_aarch64_gnullvm" 2905 + version = "0.48.5" 2906 source = "registry+https://github.com/rust-lang/crates.io-index" 2907 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2908 2909 [[package]] 2910 name = "windows_aarch64_gnullvm" 2911 + version = "0.52.6" 2912 source = "registry+https://github.com/rust-lang/crates.io-index" 2913 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2914 2915 [[package]] 2916 name = "windows_aarch64_msvc" 2917 + version = "0.48.5" 2918 source = "registry+https://github.com/rust-lang/crates.io-index" 2919 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2920 2921 [[package]] 2922 name = "windows_aarch64_msvc" 2923 + version = "0.52.6" 2924 source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2926 2927 [[package]] 2928 name = "windows_i686_gnu" 2929 + version = "0.48.5" 2930 source = "registry+https://github.com/rust-lang/crates.io-index" 2931 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2932 2933 [[package]] 2934 name = "windows_i686_gnu" 2935 + version = "0.52.6" 2936 source = "registry+https://github.com/rust-lang/crates.io-index" 2937 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2938 2939 [[package]] 2940 name = "windows_i686_gnullvm" 2941 + version = "0.52.6" 2942 source = "registry+https://github.com/rust-lang/crates.io-index" 2943 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2944 2945 [[package]] 2946 name = "windows_i686_msvc" 2947 + version = "0.48.5" 2948 source = "registry+https://github.com/rust-lang/crates.io-index" 2949 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2950 2951 [[package]] 2952 name = "windows_i686_msvc" 2953 + version = "0.52.6" 2954 source = "registry+https://github.com/rust-lang/crates.io-index" 2955 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2956 2957 [[package]] 2958 name = "windows_x86_64_gnu" 2959 + version = "0.48.5" 2960 source = "registry+https://github.com/rust-lang/crates.io-index" 2961 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2962 2963 [[package]] 2964 name = "windows_x86_64_gnu" 2965 + version = "0.52.6" 2966 source = "registry+https://github.com/rust-lang/crates.io-index" 2967 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2968 2969 [[package]] 2970 name = "windows_x86_64_gnullvm" 2971 + version = "0.48.5" 2972 source = "registry+https://github.com/rust-lang/crates.io-index" 2973 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2974 2975 [[package]] 2976 name = "windows_x86_64_gnullvm" 2977 + version = "0.52.6" 2978 source = "registry+https://github.com/rust-lang/crates.io-index" 2979 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2980 2981 [[package]] 2982 name = "windows_x86_64_msvc" 2983 + version = "0.48.5" 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2986 2987 [[package]] 2988 name = "windows_x86_64_msvc" 2989 + version = "0.52.6" 2990 source = "registry+https://github.com/rust-lang/crates.io-index" 2991 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2992 2993 [[package]] 2994 + name = "yansi" 2995 + version = "0.5.1" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 2998 + 2999 + [[package]] 3000 + name = "zerocopy" 3001 + version = "0.7.35" 3002 + source = "registry+https://github.com/rust-lang/crates.io-index" 3003 + checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 3004 dependencies = [ 3005 + "byteorder", 3006 + "zerocopy-derive", 3007 ] 3008 3009 [[package]] 3010 + name = "zerocopy-derive" 3011 + version = "0.7.35" 3012 source = "registry+https://github.com/rust-lang/crates.io-index" 3013 + checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 3014 + dependencies = [ 3015 + "proc-macro2", 3016 + "quote", 3017 + "syn 2.0.72", 3018 + ]
+3 -3
pkgs/by-name/po/polarity/package.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "polarity"; 8 - version = "0-unstable-2024-06-28"; 9 10 src = fetchFromGitHub { 11 owner = "polarity-lang"; 12 repo = "polarity"; 13 - rev = "59bd7a2c3c3d0a61b25d3bb85b9d21f7b3fef343"; 14 - hash = "sha256-85uo2GAGxWAWwN2vyhUqwz28Ofb+2eOSuetzovAle+A="; 15 }; 16 17 cargoLock = {
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "polarity"; 8 + version = "0-unstable-2024-11-15"; 9 10 src = fetchFromGitHub { 11 owner = "polarity-lang"; 12 repo = "polarity"; 13 + rev = "2f6ce455ec512f3b0cfff0f3ca9c5016e6a4e9de"; 14 + hash = "sha256-viJGqtUsoAZznhfDN3PnPG+LJ5ppVL11eyhuEiTG+IQ="; 15 }; 16 17 cargoLock = {
+2 -2
pkgs/by-name/ra/raycast/package.nix
··· 11 12 stdenvNoCC.mkDerivation (finalAttrs: { 13 pname = "raycast"; 14 - version = "1.85.2"; 15 16 src = fetchurl { 17 name = "Raycast.dmg"; 18 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 19 - hash = "sha256-pmzoRZ0EMEA0kU37skGuEDu6ggBuUdFYCLRpZty5kgs="; 20 }; 21 22 dontPatch = true;
··· 11 12 stdenvNoCC.mkDerivation (finalAttrs: { 13 pname = "raycast"; 14 + version = "1.86.0"; 15 16 src = fetchurl { 17 name = "Raycast.dmg"; 18 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 19 + hash = "sha256-UvMPRLCaGgunpVwoF0Nbz+7Gma7zQP+nMMh5Cvqn0MA="; 20 }; 21 22 dontPatch = true;
+3 -3
pkgs/by-name/rc/rcp/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "rcp"; 10 - version = "0.13.0"; 11 12 src = fetchFromGitHub { 13 owner = "wykurz"; 14 repo = "rcp"; 15 rev = "v${version}"; 16 - hash = "sha256-INLXVruiaK5yv5old0NOWFcg9y13M6Dm7bBMmcPFY1I="; 17 }; 18 19 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ 20 IOKit 21 ]); 22 23 - cargoHash = "sha256-JXDM97uGuGh3qHK3Gh8Nd/YSZq/Kcj81PpufJJMqQQI="; 24 25 RUSTFLAGS = "--cfg tokio_unstable"; 26
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "rcp"; 10 + version = "0.15.0"; 11 12 src = fetchFromGitHub { 13 owner = "wykurz"; 14 repo = "rcp"; 15 rev = "v${version}"; 16 + hash = "sha256-gFkrUqG3GXPAg9Zqv7Wr3axQ30axYGXw8bo+P1kmSJM="; 17 }; 18 19 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ 20 IOKit 21 ]); 22 23 + cargoHash = "sha256-loS55mQUVbIm+5VcQnPf6olERNTm3dbnQu5SPXe6a8I="; 24 25 RUSTFLAGS = "--cfg tokio_unstable"; 26
+7
pkgs/by-name/si/signal-desktop/package.nix
···
··· 1 + { stdenv, callPackage }: 2 + if stdenv.hostPlatform.system == "aarch64-linux" then 3 + callPackage ./signal-desktop-aarch64.nix { } 4 + else if stdenv.hostPlatform.isDarwin then 5 + callPackage ./signal-desktop-darwin.nix { } 6 + else 7 + callPackage ./signal-desktop.nix { }
+1 -1
pkgs/by-name/st/streamcontroller/package.nix
··· 22 repo = "StreamController"; 23 owner = "StreamController"; 24 rev = version; 25 - hash = "sha256-UBcsA9pAo7fONhk4vYXQU4EgSVKm1D7/7nvL9BaNIgo="; 26 }; 27 28 # The installation method documented upstream
··· 22 repo = "StreamController"; 23 owner = "StreamController"; 24 rev = version; 25 + hash = "sha256-w2ElVus0dgA375lv58q3H8ZmQ+8iBxC4vxtJSlKssoM="; 26 }; 27 28 # The installation method documented upstream
+3 -3
pkgs/by-name/te/temporal-cli/package.nix
··· 17 18 tctl-next = buildGoModule rec { 19 pname = "tctl-next"; 20 - version = "1.0.0"; 21 22 src = fetchFromGitHub { 23 owner = "temporalio"; 24 repo = "cli"; 25 rev = "v${version}"; 26 - hash = "sha256-y0C2z2iMMQSG5+xGngZ98+ixIgbvaQxPdAWuPbEbBAY="; 27 }; 28 29 - vendorHash = "sha256-zhGqDHdVGg7eGnw5L3eSyXKBTjp85ir5zrtf7HbXmC0="; 30 31 inherit overrideModAttrs; 32
··· 17 18 tctl-next = buildGoModule rec { 19 pname = "tctl-next"; 20 + version = "1.1.1"; 21 22 src = fetchFromGitHub { 23 owner = "temporalio"; 24 repo = "cli"; 25 rev = "v${version}"; 26 + hash = "sha256-KDJtCqx9Yp/zhutSElFveWYAKwJCckiM9k3FOtYTlLo="; 27 }; 28 29 + vendorHash = "sha256-Vur3e6olkC0Ewz/RDZe2AIpcIs5GqeVgJa+KO9g8X7o="; 30 31 inherit overrideModAttrs; 32
+6 -1
pkgs/by-name/te/tetragon/package.nix
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "tetragon"; 13 - version = "0.11.0"; 14 15 src = fetchFromGitHub { 16 owner = "cilium"; ··· 39 make tetragon-bpf 40 runHook postBuild 41 ''; 42 43 postPatch = '' 44 substituteInPlace bpf/Makefile --replace '/bin/bash' '${lib.getExe bash}'
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "tetragon"; 13 + version = "1.2.0"; 14 15 src = fetchFromGitHub { 16 owner = "cilium"; ··· 39 make tetragon-bpf 40 runHook postBuild 41 ''; 42 + 43 + # For BPF compilation 44 + hardeningDisable = [ 45 + "zerocallusedregs" 46 + ]; 47 48 postPatch = '' 49 substituteInPlace bpf/Makefile --replace '/bin/bash' '${lib.getExe bash}'
+3 -3
pkgs/by-name/te/tex-fmt/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "tex-fmt"; 9 - version = "0.4.6"; 10 11 src = fetchFromGitHub { 12 owner = "WGUNDERWOOD"; 13 repo = "tex-fmt"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-Ii/z9ZmsWCHxxqUbkcu7HRBuN2LiLCxzUvqRexwQ/Co="; 16 }; 17 18 - cargoHash = "sha256-2vPxsXKInH18h/AoOWfl0VteUBmxWDzZa6AtpKfY5Hs="; 19 20 meta = { 21 description = "LaTeX formatter written in Rust";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "tex-fmt"; 9 + version = "0.4.7"; 10 11 src = fetchFromGitHub { 12 owner = "WGUNDERWOOD"; 13 repo = "tex-fmt"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-jVrd3yZ07+ppsdt+8sNKX1rdmU+UiRCyx80EMXdoK54="; 16 }; 17 18 + cargoHash = "sha256-XQ1oEF+axp8pC6OkLlab1qI7RJeAyeSb58oChgaaS1s="; 19 20 meta = { 21 description = "LaTeX formatter written in Rust";
+1 -1
pkgs/by-name/ti/tilt/assets.nix
··· 53 dontInstall = true; 54 55 outputHashAlgo = "sha256"; 56 - outputHash = "sha256-5f9lKRD6vc2FOnUeSxK/zlu/tshS1+RCSB0slGSO/Rc="; 57 outputHashMode = "recursive"; 58 }; 59
··· 53 dontInstall = true; 54 55 outputHashAlgo = "sha256"; 56 + outputHash = "sha256-1poTBB9cm0EHeIvXhan6/kaxr22LXvhHD4Y+JBocioE="; 57 outputHashMode = "recursive"; 58 }; 59
+2 -2
pkgs/by-name/ti/tilt/package.nix
··· 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 6 running in development environment and try to serve assets from the 7 source tree, which is not there once build completes. */ 8 - version = "0.33.17"; 9 10 src = fetchFromGitHub { 11 owner = "tilt-dev"; 12 repo = "tilt"; 13 rev = "v${version}"; 14 - hash = "sha256-GzWnTq3X615A/jRjYhBriRYaH4tjv+yg2/zHIJuKXPE="; 15 }; 16 }; 17
··· 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 6 running in development environment and try to serve assets from the 7 source tree, which is not there once build completes. */ 8 + version = "0.33.21"; 9 10 src = fetchFromGitHub { 11 owner = "tilt-dev"; 12 repo = "tilt"; 13 rev = "v${version}"; 14 + hash = "sha256-3LFsTaz47QAIDGId/Tl3G7xP5b9gc25X+ZeMaVhXf8w="; 15 }; 16 }; 17
+45
pkgs/by-name/uf/ufetch/package.nix
···
··· 1 + { 2 + stdenvNoCC, 3 + fetchFromGitLab, 4 + lib, 5 + full ? true, 6 + # see https://gitlab.com/jschx/ufetch for a list 7 + osName ? "nixos", 8 + }: 9 + 10 + stdenvNoCC.mkDerivation (finalAttrs: { 11 + pname = "ufetch"; 12 + version = "0.4"; 13 + 14 + src = fetchFromGitLab { 15 + owner = "jschx"; 16 + repo = "ufetch"; 17 + rev = "v${finalAttrs.version}"; 18 + hash = "sha256-icrf7OjDageBRSBD40wX2ZzCvB6T5n0jgd5aRROGqCA="; 19 + }; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + mkdir -p $out/bin $out/share/licenses/${finalAttrs.pname} 24 + ${ 25 + if !full then 26 + "install -Dm755 ufetch-${osName} $out/bin/ufetch" 27 + else 28 + '' 29 + install -Dm755 ufetch-* $out/bin 30 + ln -s $out/bin/ufetch-${osName} $out/bin/ufetch 31 + '' 32 + } 33 + install -Dm644 LICENSE $out/share/licenses/${finalAttrs.pname}/LICENSE 34 + runHook postInstall 35 + ''; 36 + 37 + meta = { 38 + description = "Tiny system info for Unix-like operating systems"; 39 + homepage = "https://gitlab.com/jschx/ufetch"; 40 + license = lib.licenses.mit; 41 + platforms = lib.platforms.linux; 42 + mainProgram = "ufetch"; 43 + maintainers = with lib.maintainers; [ mrtnvgr ]; 44 + }; 45 + })
+3 -3
pkgs/by-name/va/varia/package.nix
··· 13 14 python3Packages.buildPythonApplication rec { 15 pname = "varia"; 16 - version = "2024.5.7"; 17 pyproject = false; 18 19 src = fetchFromGitHub { 20 owner = "giantpinkrobots"; 21 repo = "varia"; 22 - rev = "v${version}"; 23 - hash = "sha256-axBBJYIFCt3J0aCY8tMYehho0QN1eIcUMPhWb5g5uDc="; 24 }; 25 26 postPatch = ''
··· 13 14 python3Packages.buildPythonApplication rec { 15 pname = "varia"; 16 + version = "2024.11.7-1"; 17 pyproject = false; 18 19 src = fetchFromGitHub { 20 owner = "giantpinkrobots"; 21 repo = "varia"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-Xx3rd+FwelE7yjW4dXTAEzCMVa25ojXuhOLjqc6H57c="; 24 }; 25 26 postPatch = ''
+2 -2
pkgs/development/compilers/swift/swiftpm2nix/default.nix
··· 1 - { lib, stdenv, callPackage, makeWrapper, jq, nix-prefetch-git }: 2 3 stdenv.mkDerivation { 4 name = "swiftpm2nix"; ··· 10 installPhase = '' 11 install -vD ${./swiftpm2nix.sh} $out/bin/swiftpm2nix 12 wrapProgram $out/bin/$name \ 13 - --prefix PATH : ${lib.makeBinPath [ jq nix-prefetch-git ]} \ 14 ''; 15 16 preferLocalBuild = true;
··· 1 + { lib, stdenv, callPackage, makeWrapper, jq, nurl }: 2 3 stdenv.mkDerivation { 4 name = "swiftpm2nix"; ··· 10 installPhase = '' 11 install -vD ${./swiftpm2nix.sh} $out/bin/swiftpm2nix 12 wrapProgram $out/bin/$name \ 13 + --prefix PATH : ${lib.makeBinPath [ jq nurl ]} \ 14 ''; 15 16 preferLocalBuild = true;
+3 -3
pkgs/development/compilers/swift/swiftpm2nix/swiftpm2nix.sh
··· 23 jq -r '.object.dependencies[] | "\(.subpath) \(.packageRef.location) \(.state.checkoutState.revision)"' $stateFile \ 24 | while read -r name url rev; do 25 echo >&2 "-- Fetching $name" 26 - sha256="$(nix-prefetch-git --fetch-submodules $url $rev | jq -r .sha256)" 27 - hashes+=" 28 - \"$name\" = \"$sha256\";" 29 echo >&2 30 done 31 hashes+=$'\n'" "
··· 23 jq -r '.object.dependencies[] | "\(.subpath) \(.packageRef.location) \(.state.checkoutState.revision)"' $stateFile \ 24 | while read -r name url rev; do 25 echo >&2 "-- Fetching $name" 26 + hash="$(nurl "$url" "$rev" --json --submodules=true --fetcher=fetchgit | jq -r .args.hash)" 27 + hashes+=" 28 + \"$name\" = \"$hash\";" 29 echo >&2 30 done 31 hashes+=$'\n'" "
+3 -3
pkgs/development/libraries/duckdb/versions.json
··· 1 { 2 - "version": "1.1.2", 3 - "rev": "f680b7d08f56183391b581077d4baf589e1cc8bd", 4 - "hash": "sha256-JoGGnlu2aioO6XbeUZDe23AHSBxciLSEKBWRedPuXjI=" 5 }
··· 1 { 2 + "version": "1.1.3", 3 + "rev": "19864453f7d0ed095256d848b46e7b8630989bac", 4 + "hash": "sha256-Inaawm6mAy1CPCPfGO5LNBgaF/QcZOTAjm1aGjrJp6w=" 5 }
+2 -2
pkgs/development/python-modules/boltons/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "boltons"; 11 - version = "24.0.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "mahmoud"; 18 repo = "boltons"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-Ie5CPT2u/2/hAIhDzXT6CPzJwmbgt3B6q3oxqKYb27o="; 21 }; 22 23 nativeCheckInputs = [ pytestCheckHook ];
··· 8 9 buildPythonPackage rec { 10 pname = "boltons"; 11 + version = "24.1.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "mahmoud"; 18 repo = "boltons"; 19 rev = "refs/tags/${version}"; 20 + hash = "sha256-rKBuqJ4EAm0OH97oeGOgcTcMWsloyU2u/PaBEKhm8dA="; 21 }; 22 23 nativeCheckInputs = [ pytestCheckHook ];
+2 -2
pkgs/development/python-modules/crc/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "crc"; 12 - version = "7.0.0"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "Nicoretti"; 19 repo = "crc"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; 22 }; 23 24 build-system = [ poetry-core ];
··· 9 10 buildPythonPackage rec { 11 pname = "crc"; 12 + version = "7.1.0"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "Nicoretti"; 19 repo = "crc"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-Oa2VSzNT+8O/rWZurIr7RnP8m3xAEVOQLs+ObT4xIa0="; 22 }; 23 24 build-system = [ poetry-core ];
+8 -4
pkgs/development/python-modules/debugpy/default.nix
··· 13 pytest-timeout, 14 importlib-metadata, 15 psutil, 16 django, 17 - requests, 18 gevent, 19 numpy, 20 - flask, 21 }: 22 23 buildPythonPackage rec { 24 pname = "debugpy"; 25 - version = "1.8.8"; 26 format = "setuptools"; 27 28 disabled = pythonOlder "3.8"; ··· 31 owner = "microsoft"; 32 repo = "debugpy"; 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-zkNV+tFRAxTdl+lCPD4XYI1Oz0dVyX4GGuNdfzy2sJU="; 35 }; 36 37 patches = ··· 104 ## Used by test helpers: 105 importlib-metadata 106 psutil 107 108 ## Used in Python code that is run/debugged by the tests: 109 django ··· 111 gevent 112 numpy 113 requests 114 ]; 115 116 preCheck =
··· 13 pytest-timeout, 14 importlib-metadata, 15 psutil, 16 + untangle, 17 django, 18 + flask, 19 gevent, 20 numpy, 21 + requests, 22 + typing-extensions, 23 }: 24 25 buildPythonPackage rec { 26 pname = "debugpy"; 27 + version = "1.8.9"; 28 format = "setuptools"; 29 30 disabled = pythonOlder "3.8"; ··· 33 owner = "microsoft"; 34 repo = "debugpy"; 35 rev = "refs/tags/v${version}"; 36 + hash = "sha256-JgYGdCGzzktigjEKMPbkcSJlFPYSEFEJvmIFfR0qSZM="; 37 }; 38 39 patches = ··· 106 ## Used by test helpers: 107 importlib-metadata 108 psutil 109 + untangle 110 111 ## Used in Python code that is run/debugged by the tests: 112 django ··· 114 gevent 115 numpy 116 requests 117 + typing-extensions 118 ]; 119 120 preCheck =
+1 -1
pkgs/development/python-modules/debugpy/hardcode-gdb.patch
··· 1 diff --git a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 2 - index a1a852a0..0bb91807 100644 3 --- a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 4 +++ b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 5 @@ -412,7 +412,7 @@ def run_python_code_linux(pid, python_code, connect_debugger_tracing=False, show
··· 1 diff --git a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 2 + index 2e328f61..ba7221fe 100644 3 --- a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 4 +++ b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 5 @@ -412,7 +412,7 @@ def run_python_code_linux(pid, python_code, connect_debugger_tracing=False, show
+1 -1
pkgs/development/python-modules/debugpy/hardcode-lldb.patch
··· 1 diff --git a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 2 - index 0bb91807..8026a5ad 100644 3 --- a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 4 +++ b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 5 @@ -503,7 +503,7 @@ def run_python_code_mac(pid, python_code, connect_debugger_tracing=False, show_d
··· 1 diff --git a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 2 + index ba7221fe..24efc1ed 100644 3 --- a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 4 +++ b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py 5 @@ -503,7 +503,7 @@ def run_python_code_mac(pid, python_code, connect_debugger_tracing=False, show_d
+3 -3
pkgs/development/python-modules/debugpy/hardcode-version.patch
··· 1 diff --git a/setup.py b/setup.py 2 - index 1bfba237..414bb4d5 100644 3 --- a/setup.py 4 +++ b/setup.py 5 @@ -12,7 +12,6 @@ import sys ··· 27 long_description=long_description, 28 long_description_content_type="text/markdown", 29 diff --git a/src/debugpy/public_api.py b/src/debugpy/public_api.py 30 - index 9d0f705a..ee0b26ca 100644 31 --- a/src/debugpy/public_api.py 32 +++ b/src/debugpy/public_api.py 33 @@ -7,8 +7,6 @@ from __future__ import annotations ··· 39 40 # Expose debugpy.server API from subpackage, but do not actually import it unless 41 # and until a member is invoked - we don't want the server package loaded in the 42 - @@ -191,4 +189,4 @@ def trace_this_thread(__should_trace: bool): 43 """ 44 45
··· 1 diff --git a/setup.py b/setup.py 2 + index d16a27c5..a7e407e1 100644 3 --- a/setup.py 4 +++ b/setup.py 5 @@ -12,7 +12,6 @@ import sys ··· 27 long_description=long_description, 28 long_description_content_type="text/markdown", 29 diff --git a/src/debugpy/public_api.py b/src/debugpy/public_api.py 30 + index c61a2607..f26f8272 100644 31 --- a/src/debugpy/public_api.py 32 +++ b/src/debugpy/public_api.py 33 @@ -7,8 +7,6 @@ from __future__ import annotations ··· 39 40 # Expose debugpy.server API from subpackage, but do not actually import it unless 41 # and until a member is invoked - we don't want the server package loaded in the 42 + @@ -192,4 +190,4 @@ def trace_this_thread(__should_trace: bool): 43 """ 44 45
+4 -4
pkgs/development/python-modules/debugpy/skip-attach-pid-tests.patch
··· 1 diff --git a/tests/debug/runners.py b/tests/debug/runners.py 2 - index dc60d0ae..cf4a06a3 100644 3 --- a/tests/debug/runners.py 4 +++ b/tests/debug/runners.py 5 @@ -163,7 +163,7 @@ def _attach_common_config(session, target, cwd): ··· 12 13 log.info("Attaching {0} to {1} by PID.", session, target) 14 diff --git a/tests/debugpy/test_attach.py b/tests/debugpy/test_attach.py 15 - index 017d7f59..63e86328 100644 16 --- a/tests/debugpy/test_attach.py 17 +++ b/tests/debugpy/test_attach.py 18 - @@ -151,8 +151,7 @@ def test_reattach(pyfile, target, run): 19 20 21 @pytest.mark.parametrize("pid_type", ["int", "str"]) ··· 24 +@pytest.mark.skip( 25 reason="https://github.com/microsoft/debugpy/issues/311", 26 ) 27 - def test_attach_pid_client(pyfile, target, pid_type):
··· 1 diff --git a/tests/debug/runners.py b/tests/debug/runners.py 2 + index cac4fbf5..079bb743 100644 3 --- a/tests/debug/runners.py 4 +++ b/tests/debug/runners.py 5 @@ -163,7 +163,7 @@ def _attach_common_config(session, target, cwd): ··· 12 13 log.info("Attaching {0} to {1} by PID.", session, target) 14 diff --git a/tests/debugpy/test_attach.py b/tests/debugpy/test_attach.py 15 + index 78453bfe..458716af 100644 16 --- a/tests/debugpy/test_attach.py 17 +++ b/tests/debugpy/test_attach.py 18 + @@ -153,8 +153,7 @@ def test_reattach(pyfile, target, run): 19 20 21 @pytest.mark.parametrize("pid_type", ["int", "str"]) ··· 24 +@pytest.mark.skip( 25 reason="https://github.com/microsoft/debugpy/issues/311", 26 ) 27 + @pytest.mark.flaky(retries=2, delay=1)
+4 -2
pkgs/development/python-modules/fastembed/default.nix
··· 38 39 build-system = [ poetry-core ]; 40 41 - 42 dependencies = [ 43 huggingface-hub 44 loguru ··· 56 57 pythonImportsCheck = [ "fastembed" ]; 58 59 - pythonRelaxDeps = [ "onnxruntime" ]; 60 61 # there is one test and it requires network 62 doCheck = false;
··· 38 39 build-system = [ poetry-core ]; 40 41 dependencies = [ 42 huggingface-hub 43 loguru ··· 55 56 pythonImportsCheck = [ "fastembed" ]; 57 58 + pythonRelaxDeps = [ 59 + "onnxruntime" 60 + "pillow" 61 + ]; 62 63 # there is one test and it requires network 64 doCheck = false;
+2 -2
pkgs/development/python-modules/marisa-trie/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "marisa-trie"; 15 - version = "1.2.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 20 src = fetchPypi { 21 pname = "marisa_trie"; 22 inherit version; 23 - hash = "sha256-/t/GdJf4qidXdWtc9JN1nyRdMh+3iRTOElttddqom18="; 24 }; 25 26 build-system = [
··· 12 13 buildPythonPackage rec { 14 pname = "marisa-trie"; 15 + version = "1.2.1"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 20 src = fetchPypi { 21 pname = "marisa_trie"; 22 inherit version; 23 + hash = "sha256-OifECOKu/APg8dJbL/KvuFqsNWj2+iripTtXouh84p0="; 24 }; 25 26 build-system = [
+2 -2
pkgs/development/python-modules/pymupdf/default.nix
··· 41 in 42 buildPythonPackage rec { 43 pname = "pymupdf"; 44 - version = "1.24.10"; 45 pyproject = true; 46 47 disabled = pythonOlder "3.7"; ··· 50 owner = "pymupdf"; 51 repo = "PyMuPDF"; 52 rev = "refs/tags/${version}"; 53 - hash = "sha256-QAcQPWzPTnTg3l5lGJ8me4FUbK7xgXgyYHep+rF3wf4="; 54 }; 55 56 # swig is not wrapped as Python package
··· 41 in 42 buildPythonPackage rec { 43 pname = "pymupdf"; 44 + version = "1.24.14"; 45 pyproject = true; 46 47 disabled = pythonOlder "3.7"; ··· 50 owner = "pymupdf"; 51 repo = "PyMuPDF"; 52 rev = "refs/tags/${version}"; 53 + hash = "sha256-M7Ca3nqnqeClp4MGJqTAVGZhAGRniregjRrjtAhRkBc="; 54 }; 55 56 # swig is not wrapped as Python package
+3
pkgs/development/python-modules/setuptools-odoo/default.nix
··· 5 git, 6 pytestCheckHook, 7 pythonOlder, 8 setuptools-scm, 9 writeScript, 10 }: ··· 22 rev = "refs/tags/${version}"; 23 hash = "sha256-38YlkDH/PuJ1yvQ43OYmdnRd1SGJULv6fC/+fitLDJ8="; 24 }; 25 26 propagatedBuildInputs = [ setuptools-scm ]; 27
··· 5 git, 6 pytestCheckHook, 7 pythonOlder, 8 + distutils, 9 setuptools-scm, 10 writeScript, 11 }: ··· 23 rev = "refs/tags/${version}"; 24 hash = "sha256-38YlkDH/PuJ1yvQ43OYmdnRd1SGJULv6fC/+fitLDJ8="; 25 }; 26 + 27 + nativeBuildInputs = [ distutils ]; 28 29 propagatedBuildInputs = [ setuptools-scm ]; 30
+25 -23
pkgs/development/python-modules/slack-bolt/default.nix
··· 1 { 2 lib, 3 aiohttp, 4 bottle, 5 - buildPythonPackage, 6 chalice, 7 cherrypy, 8 django, 9 - docker, 10 falcon, 11 fastapi, 12 - fetchFromGitHub, 13 flask, 14 flask-sockets, 15 gunicorn, 16 moto, 17 pyramid, 18 - pytest-asyncio, 19 - pytestCheckHook, 20 - pythonOlder, 21 sanic, 22 - setuptools, 23 sanic-testing, 24 - slack-sdk, 25 starlette, 26 tornado, 27 uvicorn, 28 websocket-client, 29 - websockets, 30 werkzeug, 31 }: 32 33 buildPythonPackage rec { 34 pname = "slack-bolt"; 35 version = "1.21.2"; 36 pyproject = true; 37 - 38 - disabled = pythonOlder "3.9"; 39 40 src = fetchFromGitHub { 41 owner = "slackapi"; ··· 80 ]; 81 }; 82 83 nativeCheckInputs = [ 84 docker 85 pytest-asyncio ··· 90 export HOME="$(mktemp -d)" 91 ''; 92 93 disabledTestPaths = [ 94 # boddle is not packaged as of 2023-07-15 95 "tests/adapter_tests/bottle/" 96 - # Tests are blocking at some point. Blocking could be performance-related. 97 - "tests/scenario_tests_async/" 98 - "tests/slack_bolt_async/" 99 ]; 100 101 disabledTests = [ 102 # Require network access 103 - "test_events" 104 - "test_interactions" 105 - "test_lazy_listener_calls" 106 - "test_lazy_listeners" 107 "test_failure" 108 ]; 109 110 - pythonImportsCheck = [ "slack_bolt" ]; 111 - 112 - meta = with lib; { 113 description = "Framework to build Slack apps using Python"; 114 homepage = "https://github.com/slackapi/bolt-python"; 115 changelog = "https://github.com/slackapi/bolt-python/releases/tag/v${version}"; 116 - license = licenses.mit; 117 - maintainers = with maintainers; [ samuela ]; 118 }; 119 }
··· 1 { 2 lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + 6 + # build-system 7 + setuptools, 8 + 9 + # dependencies 10 + slack-sdk, 11 + 12 + # optional-dependencies 13 + # - async 14 aiohttp, 15 + websockets, 16 + # - adapter 17 bottle, 18 chalice, 19 cherrypy, 20 django, 21 falcon, 22 fastapi, 23 flask, 24 flask-sockets, 25 gunicorn, 26 moto, 27 pyramid, 28 sanic, 29 sanic-testing, 30 starlette, 31 tornado, 32 uvicorn, 33 websocket-client, 34 werkzeug, 35 + 36 + # tests 37 + docker, 38 + pytest-asyncio, 39 + pytestCheckHook, 40 }: 41 42 buildPythonPackage rec { 43 pname = "slack-bolt"; 44 version = "1.21.2"; 45 pyproject = true; 46 47 src = fetchFromGitHub { 48 owner = "slackapi"; ··· 87 ]; 88 }; 89 90 + pythonImportsCheck = [ "slack_bolt" ]; 91 + 92 nativeCheckInputs = [ 93 docker 94 pytest-asyncio ··· 99 export HOME="$(mktemp -d)" 100 ''; 101 102 + __darwinAllowLocalNetworking = true; 103 + 104 disabledTestPaths = [ 105 # boddle is not packaged as of 2023-07-15 106 "tests/adapter_tests/bottle/" 107 ]; 108 109 disabledTests = [ 110 # Require network access 111 "test_failure" 112 ]; 113 114 + meta = { 115 description = "Framework to build Slack apps using Python"; 116 homepage = "https://github.com/slackapi/bolt-python"; 117 changelog = "https://github.com/slackapi/bolt-python/releases/tag/v${version}"; 118 + license = lib.licenses.mit; 119 + maintainers = with lib.maintainers; [ samuela ]; 120 }; 121 }
+11 -18
pkgs/development/python-modules/slack-sdk/default.nix
··· 8 flake8, 9 flask-sockets, 10 moto, 11 - pythonOlder, 12 psutil, 13 pytest-asyncio, 14 pytestCheckHook, ··· 20 21 buildPythonPackage rec { 22 pname = "slack-sdk"; 23 - version = "3.33.3"; 24 pyproject = true; 25 26 - disabled = pythonOlder "3.6"; 27 - 28 src = fetchFromGitHub { 29 owner = "slackapi"; 30 repo = "python-slack-sdk"; 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-ewNEo8kcxdrd6mVze/UbKdnTIIf59s7OnMP42St1www="; 33 }; 34 35 postPatch = '' ··· 48 websockets 49 ]; 50 51 nativeCheckInputs = [ 52 flake8 53 flask-sockets ··· 61 export HOME=$(mktemp -d) 62 ''; 63 64 - disabledTestPaths = [ 65 - # Exclude tests that requires network features 66 - "integration_tests" 67 - ]; 68 - 69 disabledTests = [ 70 - # Requires network features 71 "test_start_raises_an_error_if_rtm_ws_url_is_not_returned" 72 - "test_org_installation" 73 - "test_interactions" 74 - "test_issue_690_oauth_access" 75 ]; 76 77 - pythonImportsCheck = [ "slack_sdk" ]; 78 79 - meta = with lib; { 80 description = "Slack Developer Kit for Python"; 81 homepage = "https://slack.dev/python-slack-sdk/"; 82 changelog = "https://github.com/slackapi/python-slack-sdk/releases/tag/v${version}"; 83 - license = licenses.mit; 84 - maintainers = with maintainers; [ fab ]; 85 }; 86 }
··· 8 flake8, 9 flask-sockets, 10 moto, 11 psutil, 12 pytest-asyncio, 13 pytestCheckHook, ··· 19 20 buildPythonPackage rec { 21 pname = "slack-sdk"; 22 + version = "3.33.4"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "slackapi"; 27 repo = "python-slack-sdk"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-WIUhkIFWbIcxjTjzZ2C3VNFhGftBmyYO3iaHpz6d+Sc="; 30 }; 31 32 postPatch = '' ··· 45 websockets 46 ]; 47 48 + pythonImportsCheck = [ "slack_sdk" ]; 49 + 50 nativeCheckInputs = [ 51 flake8 52 flask-sockets ··· 60 export HOME=$(mktemp -d) 61 ''; 62 63 disabledTests = [ 64 + # Requires internet access (to slack API) 65 "test_start_raises_an_error_if_rtm_ws_url_is_not_returned" 66 + # Requires network access: [Errno 111] Connection refused 67 + "test_send_message_while_disconnection" 68 ]; 69 70 + __darwinAllowLocalNetworking = true; 71 72 + meta = { 73 description = "Slack Developer Kit for Python"; 74 homepage = "https://slack.dev/python-slack-sdk/"; 75 changelog = "https://github.com/slackapi/python-slack-sdk/releases/tag/v${version}"; 76 + license = lib.licenses.mit; 77 + maintainers = with lib.maintainers; [ fab ]; 78 }; 79 }
-1
pkgs/development/python-modules/sphinx-multiversion/default.nix
··· 22 23 build-system = [ setuptools ]; 24 dependencies = [ sphinx ]; 25 - nativeCheckInputs = [ unittestCheckHook ]; 26 27 pythonImportsCheck = [ "sphinx_multiversion" ]; 28
··· 22 23 build-system = [ setuptools ]; 24 dependencies = [ sphinx ]; 25 26 pythonImportsCheck = [ "sphinx_multiversion" ]; 27
+5 -2
pkgs/development/python-modules/uarray/default.nix
··· 11 numpy, 12 astunparse, 13 typing-extensions, 14 pytestCheckHook, 15 pytest-cov-stub, 16 }: 17 18 buildPythonPackage rec { 19 pname = "uarray"; 20 - version = "0.9.0"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "Quansight-Labs"; 25 repo = pname; 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-q9lMU/xA+G2x38yZy3DxCpXTEmg1lZhZ8GFIHDIKE24="; 28 }; 29 30 build-system = [ ··· 60 ]; 61 62 pythonImportsCheck = [ "uarray" ]; 63 64 meta = with lib; { 65 description = "Universal array library";
··· 11 numpy, 12 astunparse, 13 typing-extensions, 14 + nix-update-script, 15 pytestCheckHook, 16 pytest-cov-stub, 17 }: 18 19 buildPythonPackage rec { 20 pname = "uarray"; 21 + version = "0.9.1"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "Quansight-Labs"; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-6dOi7+quWvASl2RHetULK5zixHFJlj/D6667o99ceSs="; 29 }; 30 31 build-system = [ ··· 61 ]; 62 63 pythonImportsCheck = [ "uarray" ]; 64 + 65 + passthru.updateScript = nix-update-script { }; 66 67 meta = with lib; { 68 description = "Universal array library";
+4 -4
pkgs/development/python-modules/unicorn/default.nix
··· 3 stdenv, 4 buildPythonPackage, 5 setuptools, 6 - unicorn-emu, 7 }: 8 9 buildPythonPackage rec { 10 pname = "unicorn"; 11 - version = lib.getVersion unicorn-emu; 12 pyproject = true; 13 14 - src = unicorn-emu.src; 15 16 sourceRoot = "${src.name}/bindings/python"; 17 18 prePatch = '' 19 - ln -s ${unicorn-emu}/lib/libunicorn.* prebuilt/ 20 ''; 21 22 # Needed on non-x86 linux
··· 3 stdenv, 4 buildPythonPackage, 5 setuptools, 6 + unicorn, 7 }: 8 9 buildPythonPackage rec { 10 pname = "unicorn"; 11 + version = lib.getVersion unicorn; 12 pyproject = true; 13 14 + src = unicorn.src; 15 16 sourceRoot = "${src.name}/bindings/python"; 17 18 prePatch = '' 19 + ln -s ${unicorn}/lib/libunicorn.* prebuilt/ 20 ''; 21 22 # Needed on non-x86 linux
+1 -1
pkgs/development/tools/infisical/default.nix
··· 15 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 16 17 # the version of infisical 18 - version = "0.31.2"; 19 20 # the platform-specific, statically linked binary 21 src =
··· 15 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 16 17 # the version of infisical 18 + version = "0.31.8"; 19 20 # the platform-specific, statically linked binary 21 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-vNA6bhbgfzWRSlIitA9VJVOxe+LF3ra6q6lJY1NW13w=" 3 - , "x86_64-darwin": "sha256-p+iis192d77vRWbPtWiFWZSgzdNY3K7VeDmmc7AbBtg=" 4 - , "aarch64-linux": "sha256-IeCyJT8KF3Kh4XXfKmsKAewZWW3C9Gz3GQseMd0WMUw=" 5 - , "aarch64-darwin": "sha256-vXS8YbLb2tCqaGEJSmS147b0m1OMZTFZ5Ou2vtegFWo=" 6 }
··· 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 + , "x86_64-linux": "sha256-SkWcRnbmvKWFX0dvAfj71uHNRbVZ0LYLzyPogiSaMnw=" 3 + , "x86_64-darwin": "sha256-h6VoI+Xd7ZDiVEUqSMRMIpc7f9s/HZilfwzXFgPWAV8=" 4 + , "aarch64-linux": "sha256-7TWuNTgrccSn634qje46AuSWr9fg6zlrTpz4iB9tzE0=" 5 + , "aarch64-darwin": "sha256-o39uHZd1MjbEszpDwIAbhUS/w8LEiRVVvJjaX+SQmww=" 6 }
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 14 # kernel config in the xanmod version commit 15 variants = { 16 lts = { 17 - version = "6.6.62"; 18 - hash = "sha256-KbD5YaaZLDDsp5wuEkenUe+/KrFjOgUomXtLKHtQzvs="; 19 }; 20 main = { 21 - version = "6.11.9"; 22 - hash = "sha256-lR7GXFy3eYq75+LwVlXScPYWbdVW6wAV+He0YZ+5AF4="; 23 }; 24 }; 25
··· 14 # kernel config in the xanmod version commit 15 variants = { 16 lts = { 17 + version = "6.6.63"; 18 + hash = "sha256-P4B6r3p+Buu1Hf+RQsw5h2oUANVvQvQ4e/2gQcZ0vKw="; 19 }; 20 main = { 21 + version = "6.11.10"; 22 + hash = "sha256-WNzMM+P8c8Mv+FdrwcEPHwv/ppvgN2fiM+SHMmlAPYw="; 23 }; 24 }; 25
+7 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 62 settingsSha256 = "sha256-kQsvDgnxis9ANFmwIwB7HX5MkIAcpEEAHc8IBOLdXvk="; 63 persistencedSha256 = "sha256-E2J2wYYyRu7Kc3MMZz/8ZIemcZg68rkzvqEwFAL3fFs="; 64 patchesOpen = [ fbdev_linux_611_patch ]; 65 }); 66 67 beta = selectHighestVersion latest (generic { ··· 77 # Vulkan developer beta driver 78 # See here for more information: https://developer.nvidia.com/vulkan-driver 79 vulkan_beta = generic rec { 80 - version = "550.40.79"; 81 persistencedVersion = "550.54.14"; 82 settingsVersion = "550.54.14"; 83 - sha256_64bit = "sha256-t/i/MeAkw03evuil0lbQnDiOVQmc8xAZqGo5P+BnUt8="; 84 - openSha256 = "sha256-mWoI6j/OqAPrGrw6QwdOT9kFPzg3PSNSZW5JDlRTB+s="; 85 settingsSha256 = "sha256-m2rNASJp0i0Ez2OuqL+JpgEF0Yd8sYVCyrOoo/ln2a4="; 86 persistencedSha256 = "sha256-XaPN8jVTjdag9frLPgBtqvO/goB5zxeGzaTU0CdL6C4="; 87 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux"; 88 }; 89 90 # data center driver compatible with current default cudaPackages
··· 62 settingsSha256 = "sha256-kQsvDgnxis9ANFmwIwB7HX5MkIAcpEEAHc8IBOLdXvk="; 63 persistencedSha256 = "sha256-E2J2wYYyRu7Kc3MMZz/8ZIemcZg68rkzvqEwFAL3fFs="; 64 patchesOpen = [ fbdev_linux_611_patch ]; 65 + 66 + broken = kernel.kernelAtLeast "6.12"; 67 }); 68 69 beta = selectHighestVersion latest (generic { ··· 79 # Vulkan developer beta driver 80 # See here for more information: https://developer.nvidia.com/vulkan-driver 81 vulkan_beta = generic rec { 82 + version = "550.40.80"; 83 persistencedVersion = "550.54.14"; 84 settingsVersion = "550.54.14"; 85 + sha256_64bit = "sha256-fuI9G9KHCCddtPNDz+8FAkporSB7G97UU/pw4KGGZOE="; 86 + openSha256 = "sha256-+soDdbklk8wr/G5cj4BzZ8ql0zeHSswJ2OkOv59uMp0="; 87 settingsSha256 = "sha256-m2rNASJp0i0Ez2OuqL+JpgEF0Yd8sYVCyrOoo/ln2a4="; 88 persistencedSha256 = "sha256-XaPN8jVTjdag9frLPgBtqvO/goB5zxeGzaTU0CdL6C4="; 89 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux"; 90 + 91 + broken = kernel.kernelAtLeast "6.12"; 92 }; 93 94 # data center driver compatible with current default cudaPackages
+42 -2
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 32 33 { lib 34 , stdenv 35 , callPackage 36 , pkgs 37 , pkgsi686Linux ··· 68 assert useFabricmanager -> !useSettings; 69 70 let 71 nameSuffix = lib.optionalString (!libsOnly) "-${kernel.version}"; 72 pkgSuffix = lib.optionalString (lib.versionOlder version "304") "-pkg0"; 73 i686bundled = lib.versionAtLeast version "391" && !disable32Bit; ··· 144 } 145 else throw "nvidia-x11 does not support platform ${stdenv.hostPlatform.system}"; 146 147 - patches = if libsOnly then null else patches; 148 inherit prePatch postPatch patchFlags; 149 inherit preInstall postInstall; 150 inherit version useGLVND useProfiles; ··· 202 (hash: callPackage ./open.nix { 203 inherit hash; 204 nvidia_x11 = self; 205 - patches = patchesOpen; 206 broken = brokenOpen; 207 }) 208 openSha256;
··· 32 33 { lib 34 , stdenv 35 + , runCommandLocal 36 + , patchutils 37 , callPackage 38 , pkgs 39 , pkgsi686Linux ··· 70 assert useFabricmanager -> !useSettings; 71 72 let 73 + # Rewrites patches meant for the kernel/* folder structure to kernel-open/* 74 + rewritePatch = 75 + { from, to }: 76 + patch: 77 + runCommandLocal (builtins.baseNameOf patch) 78 + { 79 + inherit patch; 80 + nativeBuildInputs = [ patchutils ]; 81 + } 82 + '' 83 + lsdiff \ 84 + -p1 -i ${from}/'*' \ 85 + "$patch" \ 86 + | sort -u | sed -e 's/[*?]/\\&/g' \ 87 + | xargs -I{} \ 88 + filterdiff \ 89 + --include={} \ 90 + --strip=2 \ 91 + --addoldprefix=a/${to}/ \ 92 + --addnewprefix=b/${to}/ \ 93 + --clean "$patch" > "$out" 94 + ''; 95 + 96 nameSuffix = lib.optionalString (!libsOnly) "-${kernel.version}"; 97 pkgSuffix = lib.optionalString (lib.versionOlder version "304") "-pkg0"; 98 i686bundled = lib.versionAtLeast version "391" && !disable32Bit; ··· 169 } 170 else throw "nvidia-x11 does not support platform ${stdenv.hostPlatform.system}"; 171 172 + patches = 173 + if libsOnly then 174 + null 175 + else 176 + ( 177 + patches 178 + ++ (builtins.map (rewritePatch { 179 + from = "kernel-open"; 180 + to = "kernel"; 181 + }) patchesOpen) 182 + ); 183 inherit prePatch postPatch patchFlags; 184 inherit preInstall postInstall; 185 inherit version useGLVND useProfiles; ··· 237 (hash: callPackage ./open.nix { 238 inherit hash; 239 nvidia_x11 = self; 240 + patches = 241 + (builtins.map (rewritePatch { 242 + from = "kernel"; 243 + to = "kernel-open"; 244 + }) patches) 245 + ++ patchesOpen; 246 broken = brokenOpen; 247 }) 248 openSha256;
+1 -1
pkgs/servers/pingvin-share/backend.nix
··· 31 prisma 32 ]; 33 34 - npmDepsHash = "sha256-RedMH3zWXTNOu/15UDeATP+gWBfDvt4vhKVahL/sEKM="; 35 makeCacheWritable = true; 36 npmFlags = [ "--legacy-peer-deps" ]; 37
··· 31 prisma 32 ]; 33 34 + npmDepsHash = "sha256-IeryDlBFG+fu0FyqlNujkF+O+YwfQm0hoMMvp/vN0IQ="; 35 makeCacheWritable = true; 36 npmFlags = [ "--legacy-peer-deps" ]; 37
+2 -2
pkgs/servers/pingvin-share/default.nix
··· 5 }: 6 7 let 8 - version = "1.2.4"; 9 src = fetchFromGitHub { 10 owner = "stonith404"; 11 repo = "pingvin-share"; 12 rev = "v${version}"; 13 - hash = "sha256-hGM7xTgB+XTytnNdGNKQYd7YLAIMbBczxsrcNE3EXkc="; 14 }; 15 in 16
··· 5 }: 6 7 let 8 + version = "1.4.0"; 9 src = fetchFromGitHub { 10 owner = "stonith404"; 11 repo = "pingvin-share"; 12 rev = "v${version}"; 13 + hash = "sha256-5tu81kB9UDui2/n5KJLRug4IHeDihuv8+HWeo0saqAM="; 14 }; 15 in 16
+1 -1
pkgs/servers/pingvin-share/frontend.nix
··· 23 buildInputs = [ vips ]; 24 nativeBuildInputs = [ pkg-config ]; 25 26 - npmDepsHash = "sha256-aTarzVt+9Sn0xvAfPyoXFoHqPVjKDGv/OfLO8/RdkQw="; 27 makeCacheWritable = true; 28 npmFlags = [ "--legacy-peer-deps" ]; 29
··· 23 buildInputs = [ vips ]; 24 nativeBuildInputs = [ pkg-config ]; 25 26 + npmDepsHash = "sha256-G9UzA/laXEiU101ehFwhi0i6PAeErNWqmb1fu4W+cII="; 27 makeCacheWritable = true; 28 npmFlags = [ "--legacy-peer-deps" ]; 29
+1 -1
pkgs/servers/sql/postgresql/generic.nix
··· 365 description = "Powerful, open source object-relational database system"; 366 license = licenses.postgresql; 367 changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/"; 368 - maintainers = with maintainers; [ globin ivan ] ++ teams.postgres.members; 369 pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ]; 370 platforms = platforms.unix; 371
··· 365 description = "Powerful, open source object-relational database system"; 366 license = licenses.postgresql; 367 changelog = "https://www.postgresql.org/docs/release/${finalAttrs.version}/"; 368 + maintainers = with maintainers; teams.postgres.members; 369 pkgConfigModules = [ "libecpg" "libecpg_compat" "libpgtypes" "libpq" ]; 370 platforms = platforms.unix; 371
+4 -4
pkgs/shells/nushell/plugins/skim.nix
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "nu_plugin_skim"; 16 - version = "0.8.0"; 17 18 src = fetchFromGitHub { 19 owner = "idanarye"; 20 repo = pname; 21 rev = "v${version}"; 22 - hash = "sha256-3q2qt35lZ07N8E3p4/BoYX1H4B8qcKXJWnZhdJhgpJE="; 23 }; 24 25 - cargoHash = "sha256-+RYrQsB8LVjxZsQ7dVDK6GT6nXSM4b+qpILOe0Q2SjA="; 26 27 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ rustPlatform.bindgenHook ]; 28 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ ··· 50 homepage = "https://github.com/idanarye/nu_plugin_skim"; 51 license = licenses.mit; 52 maintainers = with maintainers; [ aftix ]; 53 - platforms = with platforms; all; 54 }; 55 }
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "nu_plugin_skim"; 16 + version = "0.9.1"; 17 18 src = fetchFromGitHub { 19 owner = "idanarye"; 20 repo = pname; 21 rev = "v${version}"; 22 + hash = "sha256-cPM4Z1o2ED8Q5u9AcnwBv+SOvuE2C4NO9xC7PfX+ntk="; 23 }; 24 25 + cargoHash = "sha256-93GSnw/3Ms83bYEyRRc2sguUpR7BIWz8hgqzXdU5CF4="; 26 27 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ rustPlatform.bindgenHook ]; 28 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ ··· 50 homepage = "https://github.com/idanarye/nu_plugin_skim"; 51 license = licenses.mit; 52 maintainers = with maintainers; [ aftix ]; 53 + platforms = platforms.all; 54 }; 55 }
+4 -4
pkgs/tools/networking/zrok/default.nix
··· 14 }.${system} or throwSystem; 15 16 hash = { 17 - x86_64-linux = "sha256-EzMkl/XTtieAj/pg1L4BLTEuWNnQ5m18WYu/sqRZx/I="; 18 - aarch64-linux = "sha256-D5FpJBRzvbsgrQmopJQpJZTIm9TroaGB6fkYX2UAaHM="; 19 - armv7l-linux = "sha256-PQl/ZQxxkzQ4iTUPBO9tbCsswOnEQuupdzxul0/vKG4="; 20 }.${system} or throwSystem; 21 in 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "zrok"; 24 - version = "0.4.39"; 25 26 src = fetchzip { 27 url = "https://github.com/openziti/zrok/releases/download/v${finalAttrs.version}/zrok_${finalAttrs.version}_${plat}.tar.gz";
··· 14 }.${system} or throwSystem; 15 16 hash = { 17 + x86_64-linux = "sha256-oga8WQYxFeJlXhkJRpgb08QSV1vA7rfbVzwxxdl8xUw="; 18 + aarch64-linux = "sha256-Xa7CGpv35fZDZjYmR3y3NUriOt1/I85556P32eP9UjQ="; 19 + armv7l-linux = "sha256-k3FGn5pZX5Iqzh0J/nclQC4+n6CMrr+JPt2/rabnWvo="; 20 }.${system} or throwSystem; 21 in 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "zrok"; 24 + version = "0.4.44"; 25 26 src = fetchzip { 27 url = "https://github.com/openziti/zrok/releases/download/v${finalAttrs.version}/zrok_${finalAttrs.version}_${plat}.tar.gz";
+2 -2
pkgs/tools/system/osquery/info.json
··· 5 }, 6 "osquery": { 7 "fetchSubmodules": true, 8 - "hash": "sha256-ZgIYPPfLNXuCVcz+9lmFnDAnpmlLBolt6mLsfGR8rvs=", 9 "owner": "osquery", 10 "repo": "osquery", 11 - "rev": "5.13.1" 12 } 13 }
··· 5 }, 6 "osquery": { 7 "fetchSubmodules": true, 8 + "hash": "sha256-Zi1lCV7i+UmaG1/32mg82BH5vjb9291fnEXLha26zQ0=", 9 "owner": "osquery", 10 "repo": "osquery", 11 + "rev": "5.14.1" 12 } 13 }
+1
pkgs/top-level/aliases.nix
··· 147 bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 148 bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 149 bird2 = bird; # Added 2022-02-21 150 bitwarden = bitwarden-desktop; # Added 2024-02-25 151 blender-with-packages = args: 152 lib.warn "blender-with-packages is deprecated in favor of blender.withPackages, e.g. `blender.withPackages(ps: [ ps.foobar ])`"
··· 147 bitcoin-unlimited = throw "bitcoin-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 148 bitcoind-unlimited = throw "bitcoind-unlimited has been removed as it was broken and unmaintained"; # Added 2024-07-15 149 bird2 = bird; # Added 2022-02-21 150 + bisq-desktop = throw "bisq-desktop has been removed because OpenJFX 11 was removed"; # Added 2024-11-17 151 bitwarden = bitwarden-desktop; # Added 2024-02-25 152 blender-with-packages = args: 153 lib.warn "blender-with-packages is deprecated in favor of blender.withPackages, e.g. `blender.withPackages(ps: [ ps.foobar ])`"
+1 -10
pkgs/top-level/all-packages.nix
··· 1749 python3Packages = python311Packages; 1750 }; 1751 1752 - bisq-desktop = callPackage ../applications/blockchains/bisq-desktop { }; 1753 - 1754 inherit (callPackages ../tools/security/bitwarden-directory-connector { }) bitwarden-directory-connector-cli bitwarden-directory-connector; 1755 1756 bitwarden-menu = python3Packages.callPackage ../applications/misc/bitwarden-menu { }; ··· 2313 2314 element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { 2315 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 2316 - electron = electron_32; 2317 }; 2318 element-desktop-wayland = writeScriptBin "element-desktop" '' 2319 #!/bin/sh ··· 5250 5251 sigil = libsForQt5.callPackage ../applications/editors/sigil { }; 5252 5253 - inherit (callPackage ../applications/networking/instant-messengers/signal-desktop {}) signal-desktop; 5254 - 5255 slither-analyzer = with python3Packages; toPythonApplication slither-analyzer; 5256 5257 # aka., pgp-tools ··· 7422 # PHP interpreters, packages and extensions. 7423 # 7424 # Set default PHP interpreter, extensions and packages 7425 - php = php82; 7426 phpExtensions = php.extensions; 7427 phpPackages = php.packages; 7428 ··· 15737 super-slicer-beta = super-slicer.beta; 15738 15739 super-slicer-latest = super-slicer.latest; 15740 - 15741 - bambu-studio = callPackage ../applications/misc/bambu-studio { }; 15742 - 15743 - orca-slicer = callPackage ../applications/misc/bambu-studio/orca-slicer.nix {}; 15744 15745 skrooge = libsForQt5.callPackage ../applications/office/skrooge { }; 15746
··· 1749 python3Packages = python311Packages; 1750 }; 1751 1752 inherit (callPackages ../tools/security/bitwarden-directory-connector { }) bitwarden-directory-connector-cli bitwarden-directory-connector; 1753 1754 bitwarden-menu = python3Packages.callPackage ../applications/misc/bitwarden-menu { }; ··· 2311 2312 element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { 2313 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 2314 }; 2315 element-desktop-wayland = writeScriptBin "element-desktop" '' 2316 #!/bin/sh ··· 5247 5248 sigil = libsForQt5.callPackage ../applications/editors/sigil { }; 5249 5250 slither-analyzer = with python3Packages; toPythonApplication slither-analyzer; 5251 5252 # aka., pgp-tools ··· 7417 # PHP interpreters, packages and extensions. 7418 # 7419 # Set default PHP interpreter, extensions and packages 7420 + php = php83; 7421 phpExtensions = php.extensions; 7422 phpPackages = php.packages; 7423 ··· 15732 super-slicer-beta = super-slicer.beta; 15733 15734 super-slicer-latest = super-slicer.latest; 15735 15736 skrooge = libsForQt5.callPackage ../applications/office/skrooge { }; 15737
+1 -1
pkgs/top-level/python-packages.nix
··· 17259 unicode-slugify = callPackage ../development/python-modules/unicode-slugify { }; 17260 17261 unicorn = callPackage ../development/python-modules/unicorn { 17262 - unicorn-emu = pkgs.unicorn; 17263 }; 17264 17265 unicurses = callPackage ../development/python-modules/unicurses { };
··· 17259 unicode-slugify = callPackage ../development/python-modules/unicode-slugify { }; 17260 17261 unicorn = callPackage ../development/python-modules/unicorn { 17262 + inherit (pkgs) unicorn; 17263 }; 17264 17265 unicurses = callPackage ../development/python-modules/unicurses { };