Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge master into staging-next

authored by github-actions[bot] and committed by GitHub d076cde7 b81c1302

+954 -611
+1 -1
nixos/modules/services/continuous-integration/hydra/default.nix
··· 39 40 hydra-package = 41 let 42 - makeWrapperArgs = concatStringsSep " " (mapAttrsToList (key: value: "--set \"${key}\" \"${value}\"") hydraEnv); 43 in pkgs.buildEnv rec { 44 name = "hydra-env"; 45 nativeBuildInputs = [ pkgs.makeWrapper ];
··· 39 40 hydra-package = 41 let 42 + makeWrapperArgs = concatStringsSep " " (mapAttrsToList (key: value: "--set-default \"${key}\" \"${value}\"") hydraEnv); 43 in pkgs.buildEnv rec { 44 name = "hydra-env"; 45 nativeBuildInputs = [ pkgs.makeWrapper ];
+5 -10
nixos/modules/services/databases/mysql.nix
··· 7 cfg = config.services.mysql; 8 9 isMariaDB = lib.getName cfg.package == lib.getName pkgs.mariadb; 10 11 mysqldOptions = 12 "--user=${cfg.user} --datadir=${cfg.dataDir} --basedir=${cfg.package}"; ··· 377 # The super user account to use on *first* run of MySQL server 378 superUser = if isMariaDB then cfg.user else "root"; 379 in '' 380 - ${optionalString (!isMariaDB) '' 381 # Wait until the MySQL server is available for use 382 - count=0 383 while [ ! -e /run/mysqld/mysqld.sock ] 384 do 385 - if [ $count -eq 30 ] 386 - then 387 - echo "Tried 30 times, giving up..." 388 - exit 1 389 - fi 390 - 391 echo "MySQL daemon not yet started. Waiting for 1 second..." 392 - count=$((count++)) 393 sleep 1 394 done 395 ''} ··· 477 478 serviceConfig = mkMerge [ 479 { 480 - Type = if isMariaDB then "notify" else "simple"; 481 Restart = "on-abort"; 482 RestartSec = "5s"; 483
··· 7 cfg = config.services.mysql; 8 9 isMariaDB = lib.getName cfg.package == lib.getName pkgs.mariadb; 10 + isOracle = lib.getName cfg.package == lib.getName pkgs.mysql80; 11 + # Oracle MySQL has supported "notify" service type since 8.0 12 + hasNotify = isMariaDB || (isOracle && versionAtLeast cfg.package.version "8.0"); 13 14 mysqldOptions = 15 "--user=${cfg.user} --datadir=${cfg.dataDir} --basedir=${cfg.package}"; ··· 380 # The super user account to use on *first* run of MySQL server 381 superUser = if isMariaDB then cfg.user else "root"; 382 in '' 383 + ${optionalString (!hasNotify) '' 384 # Wait until the MySQL server is available for use 385 while [ ! -e /run/mysqld/mysqld.sock ] 386 do 387 echo "MySQL daemon not yet started. Waiting for 1 second..." 388 sleep 1 389 done 390 ''} ··· 472 473 serviceConfig = mkMerge [ 474 { 475 + Type = if hasNotify then "notify" else "simple"; 476 Restart = "on-abort"; 477 RestartSec = "5s"; 478
+1 -1
nixos/modules/services/torrent/transmission.nix
··· 74 description = lib.mdDoc ""; 75 }; 76 options.message-level = mkOption { 77 - type = types.ints.between 0 3; 78 default = 2; 79 description = lib.mdDoc "Set verbosity of transmission messages."; 80 };
··· 74 description = lib.mdDoc ""; 75 }; 76 options.message-level = mkOption { 77 + type = types.ints.between 0 6; 78 default = 2; 79 description = lib.mdDoc "Set verbosity of transmission messages."; 80 };
+4 -2
pkgs/applications/blockchains/bitcoin-abc/default.nix
··· 15 , protobuf 16 , qrencode 17 , libevent 18 , sqlite 19 , withGui 20 , python3 ··· 24 25 mkDerivation rec { 26 pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-abc"; 27 - version = "0.26.2"; 28 29 src = fetchFromGitHub { 30 owner = "bitcoin-ABC"; 31 repo = "bitcoin-abc"; 32 rev = "v${version}"; 33 - sha256 = "0gz4713lk3alk3ykwq1bdqjywadrfrnb7n2878136g01n87j00az"; 34 }; 35 36 nativeBuildInputs = [ pkg-config cmake ]; ··· 41 zlib 42 python3 43 jemalloc 44 zeromq4 45 miniupnpc 46 util-linux
··· 15 , protobuf 16 , qrencode 17 , libevent 18 + , libnatpmp 19 , sqlite 20 , withGui 21 , python3 ··· 25 26 mkDerivation rec { 27 pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-abc"; 28 + version = "0.28.9"; 29 30 src = fetchFromGitHub { 31 owner = "bitcoin-ABC"; 32 repo = "bitcoin-abc"; 33 rev = "v${version}"; 34 + hash = "sha256-VK9/qL3rFdU7O62FwEdr3WD4VWli8KGZH9hcbTaVHGQ="; 35 }; 36 37 nativeBuildInputs = [ pkg-config cmake ]; ··· 42 zlib 43 python3 44 jemalloc 45 + libnatpmp 46 zeromq4 47 miniupnpc 48 util-linux
+10
pkgs/applications/editors/vscode/extensions/default.nix
··· 2288 }; 2289 }; 2290 2291 kddejong.vscode-cfn-lint = 2292 let 2293 inherit (python3Packages) cfn-lint pydot;
··· 2288 }; 2289 }; 2290 2291 + karunamurti.haml = buildVscodeMarketplaceExtension { 2292 + mktplcRef = { 2293 + name = "haml"; 2294 + publisher = "karunamurti"; 2295 + version = "1.4.1"; 2296 + sha256 = "123cwfajakkg2pr0z4v289fzzlhwbxx9dvb5bjc32l3pzvbhq4gv"; 2297 + }; 2298 + meta.license = lib.licenses.mit; 2299 + }; 2300 + 2301 kddejong.vscode-cfn-lint = 2302 let 2303 inherit (python3Packages) cfn-lint pydot;
+4 -4
pkgs/applications/networking/cluster/k3s/1_28/versions.nix
··· 1 { 2 - k3sVersion = "1.28.6+k3s1"; 3 - k3sCommit = "39a0001575780fffa6aae0271f4cb4ce7413aac8"; 4 - k3sRepoSha256 = "1bhbpbgs02gh5y7pgn6vmanacrz3p0b2gq3w2kqpb11bijp2alld"; 5 - k3sVendorHash = "sha256-Mo+gZ+NOZqd3CP/Z02LfO4dHyEuRhabZVAU60GofOMo="; 6 chartVersions = import ./chart-versions.nix; 7 k3sRootVersion = "0.12.2"; 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k";
··· 1 { 2 + k3sVersion = "1.28.6+k3s2"; 3 + k3sCommit = "c9f49a3b06cd7ebe793f8cc1dcd0293168e743d9"; 4 + k3sRepoSha256 = "0vz5976q58v9x6g1qz6kz3xksgf8gm1f727ccckmpbyxbhw75zsa"; 5 + k3sVendorHash = "sha256-HG4x3N/F5qCFpLxGrUWPkBHHqY7WBRDWN7DNyAcJwyI="; 6 chartVersions = import ./chart-versions.nix; 7 k3sRootVersion = "0.12.2"; 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k";
+4 -4
pkgs/applications/networking/cluster/k3s/1_29/versions.nix
··· 1 { 2 - k3sVersion = "1.29.0+k3s1"; 3 - k3sCommit = "3190a5faa28d7a0d428c756d67adcab7eb11e6a5"; 4 - k3sRepoSha256 = "1g75a7kz9nnv0vagzhggkw0zqigykimdwsmibgssa8vyjpg7idda"; 5 - k3sVendorHash = "sha256-iHmPVjYR/ZLH9UZ5yNEApyuGQsEwtxVbQw7Pu7WrpaQ="; 6 chartVersions = import ./chart-versions.nix; 7 k3sRootVersion = "0.12.2"; 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k";
··· 1 { 2 + k3sVersion = "1.29.1+k3s2"; 3 + k3sCommit = "57482a1c1bb9c67b5f893418a114edca1004258e"; 4 + k3sRepoSha256 = "0pvab3dd6dzgk1zgra4jmdwba5b8xssfjr3mihwq1h0c5bxf1cza"; 5 + k3sVendorHash = "sha256-EkRbdUoYpK7M+Wbc2Cf37bOwdwPB6/xLxULO7Bkpt5c="; 6 chartVersions = import ./chart-versions.nix; 7 k3sRootVersion = "0.12.2"; 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k";
+11
pkgs/applications/networking/cluster/k3s/builder.nix
··· 30 # It is likely we will have to split out additional builders for additional 31 # versions in the future, or customize this one further. 32 { lib 33 , makeWrapper 34 , socat 35 , iptables ··· 183 184 src = k3sRepo; 185 vendorHash = k3sVendorHash; 186 187 nativeBuildInputs = [ pkg-config ]; 188 buildInputs = [ libseccomp sqlite.dev ];
··· 30 # It is likely we will have to split out additional builders for additional 31 # versions in the future, or customize this one further. 32 { lib 33 + , fetchpatch 34 , makeWrapper 35 , socat 36 , iptables ··· 184 185 src = k3sRepo; 186 vendorHash = k3sVendorHash; 187 + 188 + patches = 189 + # Disable: Add runtime checking of golang version 190 + lib.optional (lib.versionAtLeast k3sVersion "1.28") 191 + (fetchpatch { 192 + # https://github.com/k3s-io/k3s/pull/9054 193 + url = "https://github.com/k3s-io/k3s/commit/b297996b9252b02e56e9425f55f6becbf6bb7832.patch"; 194 + hash = "sha256-xBOY2jnLhT9dtVKtq26V9QUnuX1q6E/9UcO9IaU719U="; 195 + revert = true; 196 + }); 197 198 nativeBuildInputs = [ pkg-config ]; 199 buildInputs = [ libseccomp sqlite.dev ];
+1 -1
pkgs/applications/office/homebank/default.nix
··· 16 description = "Free, easy, personal accounting for everyone"; 17 homepage = "https://www.gethomebank.org"; 18 license = licenses.gpl2Plus; 19 - maintainers = with maintainers; [ pSub ]; 20 platforms = platforms.linux ++ platforms.darwin; 21 }; 22 }
··· 16 description = "Free, easy, personal accounting for everyone"; 17 homepage = "https://www.gethomebank.org"; 18 license = licenses.gpl2Plus; 19 + maintainers = with maintainers; [ pSub frlan ]; 20 platforms = platforms.linux ++ platforms.darwin; 21 }; 22 }
+2 -2
pkgs/applications/search/recoll/default.nix
··· 70 71 mkDerivation rec { 72 pname = "recoll"; 73 - version = "1.37.2"; 74 75 src = fetchurl { 76 url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz"; 77 - hash = "sha256-xLdk3pJSV1YaloSV3TuTdJhujXsxUGrDru+mu86YBTU="; 78 }; 79 80 configureFlags = [
··· 70 71 mkDerivation rec { 72 pname = "recoll"; 73 + version = "1.37.4"; 74 75 src = fetchurl { 76 url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz"; 77 + hash = "sha256-MQnXamW7L4hyMbZDmU7XAcLv5roHcfhFGzni8YbDtq0="; 78 }; 79 80 configureFlags = [
+3 -3
pkgs/applications/video/open-in-mpv/default.nix
··· 5 6 buildGoModule rec { 7 pname = "open-in-mpv"; 8 - version = "2.1.0-unstable-2023-05-13"; 9 10 src = fetchFromGitHub { 11 owner = "Baldomo"; 12 repo = "open-in-mpv"; 13 - rev = "07fc639b2882a9a68e539f0fc34b61e247c355fa"; 14 - hash = "sha256-XkoXvSh5uu96isXc1at36mxSCPylHgMLN97qSpj2cyc="; 15 }; 16 17 vendorHash = "sha256-G6GZO2+CfEAYcf7zBcqDa808A0eJjM8dq7+4VGZ+P4c=";
··· 5 6 buildGoModule rec { 7 pname = "open-in-mpv"; 8 + version = "2.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "Baldomo"; 12 repo = "open-in-mpv"; 13 + rev = "v${version}"; 14 + hash = "sha256-+sP8/wILBkT3NnhENDYZbOwqOufkFyMJFpQxquuUBEs="; 15 }; 16 17 vendorHash = "sha256-G6GZO2+CfEAYcf7zBcqDa808A0eJjM8dq7+4VGZ+P4c=";
+7 -2
pkgs/applications/window-managers/gamescope/default.nix
··· 13 , glm 14 , gbenchmark 15 , libcap 16 , SDL2 17 , pipewire 18 , pixman ··· 26 , libdisplay-info 27 , lib 28 , makeBinaryWrapper 29 , enableExecutable ? true 30 , enableWsi ? true 31 }: ··· 39 in 40 stdenv.mkDerivation (finalAttrs: { 41 pname = "gamescope"; 42 - version = "3.13.19"; 43 44 src = fetchFromGitHub { 45 owner = "ValveSoftware"; 46 repo = "gamescope"; 47 rev = "refs/tags/${finalAttrs.version}"; 48 fetchSubmodules = true; 49 - hash = "sha256-WKQgVbuHvTbZnvTU5imV35AKZ4AF0EDsdESBZwVH7+M="; 50 }; 51 52 patches = [ ··· 108 xorg.libXres 109 xorg.libXtst 110 xorg.libXxf86vm 111 libdrm 112 libliftoff 113 SDL2 ··· 130 mkdir -p $out/share/gamescope/reshade 131 cp -r ${joshShaders}/* $out/share/gamescope/reshade/ 132 ''; 133 134 meta = with lib; { 135 description = "SteamOS session compositing window manager";
··· 13 , glm 14 , gbenchmark 15 , libcap 16 + , libavif 17 , SDL2 18 , pipewire 19 , pixman ··· 27 , libdisplay-info 28 , lib 29 , makeBinaryWrapper 30 + , nix-update-script 31 , enableExecutable ? true 32 , enableWsi ? true 33 }: ··· 41 in 42 stdenv.mkDerivation (finalAttrs: { 43 pname = "gamescope"; 44 + version = "3.14.1"; 45 46 src = fetchFromGitHub { 47 owner = "ValveSoftware"; 48 repo = "gamescope"; 49 rev = "refs/tags/${finalAttrs.version}"; 50 fetchSubmodules = true; 51 + hash = "sha256-lJt6JVolorQdrhumkW9yjyItxqpw6ZtEUbkjNqzHfb8="; 52 }; 53 54 patches = [ ··· 110 xorg.libXres 111 xorg.libXtst 112 xorg.libXxf86vm 113 + libavif 114 libdrm 115 libliftoff 116 SDL2 ··· 133 mkdir -p $out/share/gamescope/reshade 134 cp -r ${joshShaders}/* $out/share/gamescope/reshade/ 135 ''; 136 + 137 + passthru.updateScript = nix-update-script {}; 138 139 meta = with lib; { 140 description = "SteamOS session compositing window manager";
+44
pkgs/by-name/co/coffeegrindsize/package.nix
···
··· 1 + { lib, python3, fetchFromGitHub }: 2 + 3 + python3.pkgs.buildPythonApplication { 4 + pname = "coffeegrindsize"; 5 + # no tags in the repo 6 + version = "0-unstable-2021-04-20"; 7 + 8 + format = "other"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "jgagneastro"; 12 + repo = "coffeegrindsize"; 13 + rev = "22661ebd21831dba4cf32bfc6ba59fe3d49f879c"; 14 + hash = "sha256-HlTw0nmr+VZL6EUX9RJzj253fnAred9LNFNgVHqoAoI="; 15 + }; 16 + 17 + propagatedBuildInputs = with python3.pkgs; [ 18 + tkinter 19 + matplotlib 20 + numpy 21 + pandas 22 + pillow 23 + ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + mkdir -p $out/bin 29 + echo "#!/usr/bin/env python" > "$out/bin/coffeegrindsize" 30 + cat coffeegrindsize.py >> "$out/bin/coffeegrindsize" 31 + chmod +x "$out/bin/coffeegrindsize" 32 + patchShebangs "$out/bin/coffeegrindsize" 33 + 34 + runHook postInstall 35 + ''; 36 + 37 + meta = with lib; { 38 + description = "Detects the individual coffee grounds in a white-background picture to determine particle size distribution"; 39 + mainProgram = "coffeegrindsize"; 40 + homepage = "https://github.com/jgagneastro/coffeegrindsize"; 41 + license = licenses.mit; 42 + maintainers = with maintainers; [ t4ccer ]; 43 + }; 44 + }
+45
pkgs/by-name/li/libnghttp2_asio/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , nghttp2 6 + , openssl 7 + , boost 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "libnghttp2_asio"; 12 + version = "unstable-2022-08-11"; 13 + 14 + outputs = [ "out" "dev" "doc" ]; 15 + 16 + src = fetchFromGitHub { 17 + owner = "nghttp2"; 18 + repo = "nghttp2-asio"; 19 + rev = "e877868abe06a83ed0a6ac6e245c07f6f20866b5"; 20 + sha256 = "sha256-XQXRHLz0kvaIQq1nbqkJnETHR51FXMB1P9F/hQeZh6A="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + ]; 26 + 27 + buildInputs = [ 28 + boost 29 + nghttp2 30 + openssl 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "High level HTTP/2 C++ library"; 35 + longDescription = '' 36 + libnghttp2_asio is C++ library built on top of libnghttp2 37 + and provides high level abstraction API to build HTTP/2 38 + applications. It depends on the Boost::ASIO library and 39 + OpenSSL. libnghttp2_asio provides both client and server APIs. 40 + ''; 41 + homepage = "https://github.com/nghttp2/nghttp2-asio"; 42 + license = with licenses; [ mit ]; 43 + maintainers = with maintainers; [ izorkin ]; 44 + }; 45 + }
+36
pkgs/by-name/sp/spooftooph/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , bluez 5 + , ncurses 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "spooftooph"; 10 + version = "0.5.2"; 11 + 12 + src = fetchurl { 13 + url = "mirror://sourceforge/project/spooftooph/spooftooph-${finalAttrs.version}/spooftooph-${finalAttrs.version}.tar.gz"; 14 + hash = "sha256-JH5+fHpe83NJV9AR5MXKnrwaTqz4s2BGAcczbddVNHw="; 15 + }; 16 + 17 + buildInputs = [ 18 + bluez 19 + ncurses 20 + ]; 21 + 22 + makeFlags = [ "BIN=$(out)/bin" ]; 23 + 24 + preInstall = '' 25 + mkdir -p $out/bin 26 + ''; 27 + 28 + meta = with lib; { 29 + homepage = "https://sourceforge.net/projects/spooftooph"; 30 + description = "Automate spoofing or clone Bluetooth device Name, Class, and Address"; 31 + mainProgram = "spooftooph"; 32 + license = licenses.gpl2Only; 33 + platforms = platforms.linux; 34 + maintainers = with maintainers; [ d3vil0p3r ]; 35 + }; 36 + })
+704 -517
pkgs/by-name/tr/treedome/Cargo.lock
··· 24 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 25 dependencies = [ 26 "crypto-common", 27 - "generic-array", 28 ] 29 30 [[package]] 31 name = "ahash" 32 - version = "0.8.3" 33 source = "registry+https://github.com/rust-lang/crates.io-index" 34 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 35 dependencies = [ 36 "cfg-if", 37 - "getrandom 0.2.10", 38 "once_cell", 39 "version_check", 40 ] 41 42 [[package]] 43 name = "aho-corasick" 44 - version = "1.0.4" 45 source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" 47 dependencies = [ 48 "memchr", 49 ] ··· 86 87 [[package]] 88 name = "anyhow" 89 - version = "1.0.75" 90 source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 92 93 [[package]] 94 name = "arrayvec" ··· 98 99 [[package]] 100 name = "async-trait" 101 - version = "0.1.73" 102 source = "registry+https://github.com/rust-lang/crates.io-index" 103 - checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 104 dependencies = [ 105 "proc-macro2", 106 "quote", 107 - "syn 2.0.29", 108 ] 109 110 [[package]] ··· 128 "glib-sys", 129 "gobject-sys", 130 "libc", 131 - "system-deps 6.1.1", 132 ] 133 134 [[package]] ··· 141 ] 142 143 [[package]] 144 name = "autocfg" 145 version = "1.1.0" 146 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 169 170 [[package]] 171 name = "base64" 172 - version = "0.21.2" 173 source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 175 176 [[package]] 177 name = "base64ct" ··· 202 203 [[package]] 204 name = "bitflags" 205 - version = "2.4.0" 206 source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 208 dependencies = [ 209 "serde", 210 ] ··· 221 source = "registry+https://github.com/rust-lang/crates.io-index" 222 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 223 dependencies = [ 224 - "generic-array", 225 ] 226 227 [[package]] 228 name = "brotli" 229 - version = "3.3.4" 230 source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 232 dependencies = [ 233 "alloc-no-stdlib", 234 "alloc-stdlib", ··· 237 238 [[package]] 239 name = "brotli-decompressor" 240 - version = "2.3.4" 241 source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 243 dependencies = [ 244 "alloc-no-stdlib", 245 "alloc-stdlib", ··· 247 248 [[package]] 249 name = "bstr" 250 - version = "1.6.0" 251 source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 253 dependencies = [ 254 "memchr", 255 "serde", ··· 257 258 [[package]] 259 name = "bumpalo" 260 - version = "3.13.0" 261 source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 263 264 [[package]] 265 name = "bytemuck" 266 - version = "1.13.1" 267 source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 269 270 [[package]] 271 name = "byteorder" 272 - version = "1.4.3" 273 source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 275 276 [[package]] 277 name = "bytes" 278 - version = "1.4.0" 279 source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 281 282 [[package]] 283 name = "cairo-rs" ··· 300 dependencies = [ 301 "glib-sys", 302 "libc", 303 - "system-deps 6.1.1", 304 ] 305 306 [[package]] ··· 310 checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 311 dependencies = [ 312 "serde", 313 - "toml 0.7.6", 314 ] 315 316 [[package]] ··· 350 351 [[package]] 352 name = "cfg-expr" 353 - version = "0.15.4" 354 source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 356 dependencies = [ 357 "smallvec", 358 "target-lexicon", ··· 390 391 [[package]] 392 name = "chrono" 393 - version = "0.4.26" 394 source = "registry+https://github.com/rust-lang/crates.io-index" 395 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 396 dependencies = [ 397 "android-tzdata", 398 "iana-time-zone", 399 "num-traits", 400 "serde", 401 - "winapi", 402 ] 403 404 [[package]] 405 name = "ciborium" 406 - version = "0.2.1" 407 source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 409 dependencies = [ 410 "ciborium-io", 411 "ciborium-ll", ··· 414 415 [[package]] 416 name = "ciborium-io" 417 - version = "0.2.1" 418 source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 420 421 [[package]] 422 name = "ciborium-ll" 423 - version = "0.2.1" 424 source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 426 dependencies = [ 427 "ciborium-io", 428 "half", ··· 457 458 [[package]] 459 name = "cocoa-foundation" 460 - version = "0.1.1" 461 source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 463 dependencies = [ 464 "bitflags 1.3.2", 465 "block", 466 "core-foundation", 467 "core-graphics-types", 468 - "foreign-types", 469 "libc", 470 "objc", 471 ] ··· 488 489 [[package]] 490 name = "const-oid" 491 - version = "0.9.5" 492 source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" 494 495 [[package]] 496 name = "convert_case" ··· 500 501 [[package]] 502 name = "core-foundation" 503 - version = "0.9.3" 504 source = "registry+https://github.com/rust-lang/crates.io-index" 505 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 506 dependencies = [ 507 "core-foundation-sys", 508 "libc", ··· 510 511 [[package]] 512 name = "core-foundation-sys" 513 - version = "0.8.4" 514 source = "registry+https://github.com/rust-lang/crates.io-index" 515 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 516 517 [[package]] 518 name = "core-graphics" ··· 529 530 [[package]] 531 name = "core-graphics-types" 532 - version = "0.1.2" 533 source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 535 dependencies = [ 536 "bitflags 1.3.2", 537 "core-foundation", ··· 540 541 [[package]] 542 name = "cpufeatures" 543 - version = "0.2.9" 544 source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 546 dependencies = [ 547 "libc", 548 ] ··· 558 559 [[package]] 560 name = "crc-catalog" 561 - version = "2.2.0" 562 source = "registry+https://github.com/rust-lang/crates.io-index" 563 - checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 564 565 [[package]] 566 name = "crc32fast" ··· 573 574 [[package]] 575 name = "crossbeam-channel" 576 - version = "0.5.8" 577 source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 579 dependencies = [ 580 - "cfg-if", 581 "crossbeam-utils", 582 ] 583 584 [[package]] 585 name = "crossbeam-deque" 586 - version = "0.8.3" 587 source = "registry+https://github.com/rust-lang/crates.io-index" 588 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 589 dependencies = [ 590 - "cfg-if", 591 "crossbeam-epoch", 592 "crossbeam-utils", 593 ] 594 595 [[package]] 596 name = "crossbeam-epoch" 597 - version = "0.9.15" 598 source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 600 dependencies = [ 601 - "autocfg", 602 - "cfg-if", 603 "crossbeam-utils", 604 - "memoffset", 605 - "scopeguard", 606 ] 607 608 [[package]] 609 name = "crossbeam-queue" 610 - version = "0.3.8" 611 source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 613 dependencies = [ 614 - "cfg-if", 615 "crossbeam-utils", 616 ] 617 618 [[package]] 619 name = "crossbeam-utils" 620 - version = "0.8.16" 621 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 623 - dependencies = [ 624 - "cfg-if", 625 - ] 626 627 [[package]] 628 name = "crypto-common" ··· 630 source = "registry+https://github.com/rust-lang/crates.io-index" 631 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 632 dependencies = [ 633 - "generic-array", 634 "rand_core 0.6.4", 635 "typenum", 636 ] ··· 659 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 660 dependencies = [ 661 "quote", 662 - "syn 2.0.29", 663 ] 664 665 [[package]] 666 name = "ctor" 667 - version = "0.1.26" 668 source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 670 dependencies = [ 671 "quote", 672 - "syn 1.0.109", 673 ] 674 675 [[package]] ··· 717 "proc-macro2", 718 "quote", 719 "strsim", 720 - "syn 2.0.29", 721 ] 722 723 [[package]] ··· 739 dependencies = [ 740 "darling_core 0.20.3", 741 "quote", 742 - "syn 2.0.29", 743 ] 744 745 [[package]] 746 name = "dashmap" 747 - version = "5.5.1" 748 source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "edd72493923899c6f10c641bdbdeddc7183d6396641d99c1a0d1597f37f92e28" 750 dependencies = [ 751 "cfg-if", 752 - "hashbrown 0.14.0", 753 "lock_api", 754 "once_cell", 755 "parking_lot_core", ··· 768 769 [[package]] 770 name = "deranged" 771 - version = "0.3.8" 772 source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 774 dependencies = [ 775 "serde", 776 ] 777 ··· 896 897 [[package]] 898 name = "embed-resource" 899 - version = "2.2.0" 900 source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "f7f1e82a60222fc67bfd50d752a9c89da5cce4c39ed39decc84a443b07bbd69a" 902 dependencies = [ 903 "cc", 904 "rustc_version", 905 - "toml 0.7.6", 906 "vswhom", 907 "winreg", 908 ] ··· 930 931 [[package]] 932 name = "errno" 933 - version = "0.3.2" 934 source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 936 dependencies = [ 937 - "errno-dragonfly", 938 "libc", 939 - "windows-sys 0.48.0", 940 - ] 941 - 942 - [[package]] 943 - name = "errno-dragonfly" 944 - version = "0.1.2" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 947 - dependencies = [ 948 - "cc", 949 - "libc", 950 ] 951 952 [[package]] ··· 968 969 [[package]] 970 name = "execute" 971 - version = "0.2.12" 972 source = "registry+https://github.com/rust-lang/crates.io-index" 973 - checksum = "16d9a9ea4c04632c16bc5c71a2fcc63d308481f7fc67eb1a1ce6315c44a426ae" 974 dependencies = [ 975 "execute-command-macro", 976 "execute-command-tokens", 977 - "generic-array", 978 ] 979 980 [[package]] 981 name = "execute-command-macro" 982 - version = "0.1.8" 983 source = "registry+https://github.com/rust-lang/crates.io-index" 984 - checksum = "a5fbc65a0cf735106743f4c38c9a3671c1e734b5c2c20d21a3c93c696daa3157" 985 dependencies = [ 986 "execute-command-macro-impl", 987 ] 988 989 [[package]] 990 name = "execute-command-macro-impl" 991 - version = "0.1.9" 992 source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "55a9a55d1dab3b07854648d48e366f684aefe2ac78ae28cec3bf65e3cd53d9a3" 994 dependencies = [ 995 "execute-command-tokens", 996 "quote", 997 - "syn 2.0.29", 998 ] 999 1000 [[package]] 1001 name = "execute-command-tokens" 1002 - version = "0.1.6" 1003 source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "8ba569491c70ec8471e34aa7e9c0b9e82bb5d2464c0398442d17d3c4af814e5a" 1005 1006 [[package]] 1007 name = "fancy-regex" ··· 1015 1016 [[package]] 1017 name = "fastrand" 1018 - version = "2.0.0" 1019 source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 1021 1022 [[package]] 1023 name = "fdeflate" 1024 - version = "0.3.0" 1025 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1027 dependencies = [ 1028 "simd-adler32", 1029 ] ··· 1040 1041 [[package]] 1042 name = "filetime" 1043 - version = "0.2.22" 1044 source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1046 dependencies = [ 1047 "cfg-if", 1048 "libc", 1049 - "redox_syscall 0.3.5", 1050 - "windows-sys 0.48.0", 1051 ] 1052 1053 [[package]] 1054 name = "fix-path-env" 1055 version = "0.0.0" 1056 source = "git+https://github.com/tauri-apps/fix-path-env-rs?rev=a355f9da4ee628404c8f884fed5dfb2bd1876488#a355f9da4ee628404c8f884fed5dfb2bd1876488" ··· 1061 1062 [[package]] 1063 name = "flate2" 1064 - version = "1.0.27" 1065 source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 1067 dependencies = [ 1068 "crc32fast", 1069 "miniz_oxide", ··· 1071 1072 [[package]] 1073 name = "flume" 1074 - version = "0.10.14" 1075 source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1077 dependencies = [ 1078 "futures-core", 1079 "futures-sink", 1080 - "pin-project", 1081 "spin 0.9.8", 1082 ] 1083 ··· 1104 1105 [[package]] 1106 name = "form_urlencoded" 1107 - version = "1.2.0" 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1110 dependencies = [ 1111 "percent-encoding", 1112 ] ··· 1123 1124 [[package]] 1125 name = "futures" 1126 - version = "0.3.28" 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 1128 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1129 dependencies = [ 1130 "futures-channel", 1131 "futures-core", ··· 1138 1139 [[package]] 1140 name = "futures-channel" 1141 - version = "0.3.28" 1142 source = "registry+https://github.com/rust-lang/crates.io-index" 1143 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1144 dependencies = [ 1145 "futures-core", 1146 "futures-sink", ··· 1148 1149 [[package]] 1150 name = "futures-core" 1151 - version = "0.3.28" 1152 source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1154 1155 [[package]] 1156 name = "futures-executor" 1157 - version = "0.3.28" 1158 source = "registry+https://github.com/rust-lang/crates.io-index" 1159 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1160 dependencies = [ 1161 "futures-core", 1162 "futures-task", ··· 1176 1177 [[package]] 1178 name = "futures-io" 1179 - version = "0.3.28" 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1181 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1182 1183 [[package]] 1184 name = "futures-macro" 1185 - version = "0.3.28" 1186 source = "registry+https://github.com/rust-lang/crates.io-index" 1187 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1188 dependencies = [ 1189 "proc-macro2", 1190 "quote", 1191 - "syn 2.0.29", 1192 ] 1193 1194 [[package]] 1195 name = "futures-sink" 1196 - version = "0.3.28" 1197 source = "registry+https://github.com/rust-lang/crates.io-index" 1198 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1199 1200 [[package]] 1201 name = "futures-task" 1202 - version = "0.3.28" 1203 source = "registry+https://github.com/rust-lang/crates.io-index" 1204 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1205 1206 [[package]] 1207 name = "futures-util" 1208 - version = "0.3.28" 1209 source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1211 dependencies = [ 1212 "futures-channel", 1213 "futures-core", ··· 1269 "glib-sys", 1270 "gobject-sys", 1271 "libc", 1272 - "system-deps 6.1.1", 1273 ] 1274 1275 [[package]] ··· 1286 "libc", 1287 "pango-sys", 1288 "pkg-config", 1289 - "system-deps 6.1.1", 1290 ] 1291 1292 [[package]] ··· 1300 "gobject-sys", 1301 "libc", 1302 "pkg-config", 1303 - "system-deps 6.1.1", 1304 ] 1305 1306 [[package]] ··· 1312 "gdk-sys", 1313 "glib-sys", 1314 "libc", 1315 - "system-deps 6.1.1", 1316 "x11", 1317 ] 1318 ··· 1340 ] 1341 1342 [[package]] 1343 name = "getrandom" 1344 version = "0.1.16" 1345 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1352 1353 [[package]] 1354 name = "getrandom" 1355 - version = "0.2.10" 1356 source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1358 dependencies = [ 1359 "cfg-if", 1360 "libc", ··· 1363 1364 [[package]] 1365 name = "gimli" 1366 - version = "0.28.0" 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1369 1370 [[package]] 1371 name = "gio" ··· 1393 "glib-sys", 1394 "gobject-sys", 1395 "libc", 1396 - "system-deps 6.1.1", 1397 "winapi", 1398 ] 1399 ··· 1439 checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1440 dependencies = [ 1441 "libc", 1442 - "system-deps 6.1.1", 1443 ] 1444 1445 [[package]] ··· 1450 1451 [[package]] 1452 name = "globset" 1453 - version = "0.4.13" 1454 source = "registry+https://github.com/rust-lang/crates.io-index" 1455 - checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 1456 dependencies = [ 1457 "aho-corasick", 1458 "bstr", 1459 - "fnv", 1460 "log", 1461 - "regex", 1462 ] 1463 1464 [[package]] ··· 1469 dependencies = [ 1470 "glib-sys", 1471 "libc", 1472 - "system-deps 6.1.1", 1473 ] 1474 1475 [[package]] ··· 1510 "gobject-sys", 1511 "libc", 1512 "pango-sys", 1513 - "system-deps 6.1.1", 1514 ] 1515 1516 [[package]] ··· 1529 1530 [[package]] 1531 name = "half" 1532 - version = "1.8.2" 1533 source = "registry+https://github.com/rust-lang/crates.io-index" 1534 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1535 1536 [[package]] 1537 name = "hashbrown" ··· 1541 1542 [[package]] 1543 name = "hashbrown" 1544 - version = "0.14.0" 1545 source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1547 dependencies = [ 1548 "ahash", 1549 "allocator-api2", ··· 1551 1552 [[package]] 1553 name = "hashlink" 1554 - version = "0.8.3" 1555 source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" 1557 dependencies = [ 1558 - "hashbrown 0.14.0", 1559 ] 1560 1561 [[package]] ··· 1578 1579 [[package]] 1580 name = "hermit-abi" 1581 - version = "0.3.2" 1582 source = "registry+https://github.com/rust-lang/crates.io-index" 1583 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1584 1585 [[package]] 1586 name = "hex" ··· 1590 1591 [[package]] 1592 name = "hkdf" 1593 - version = "0.12.3" 1594 source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 1596 dependencies = [ 1597 "hmac", 1598 ] ··· 1608 1609 [[package]] 1610 name = "home" 1611 - version = "0.5.5" 1612 source = "registry+https://github.com/rust-lang/crates.io-index" 1613 - checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1614 dependencies = [ 1615 - "windows-sys 0.48.0", 1616 ] 1617 1618 [[package]] 1619 name = "html5ever" 1620 - version = "0.25.2" 1621 source = "registry+https://github.com/rust-lang/crates.io-index" 1622 - checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1623 dependencies = [ 1624 "log", 1625 "mac", ··· 1631 1632 [[package]] 1633 name = "http" 1634 - version = "0.2.9" 1635 source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1637 dependencies = [ 1638 "bytes", 1639 "fnv", 1640 - "itoa 1.0.9", 1641 ] 1642 1643 [[package]] ··· 1648 1649 [[package]] 1650 name = "iana-time-zone" 1651 - version = "0.1.57" 1652 source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 1654 dependencies = [ 1655 "android_system_properties", 1656 "core-foundation-sys", 1657 "iana-time-zone-haiku", 1658 "js-sys", 1659 "wasm-bindgen", 1660 - "windows 0.48.0", 1661 ] 1662 1663 [[package]] ··· 1687 1688 [[package]] 1689 name = "idna" 1690 - version = "0.4.0" 1691 source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1693 dependencies = [ 1694 "unicode-bidi", 1695 "unicode-normalization", ··· 1697 1698 [[package]] 1699 name = "ignore" 1700 - version = "0.4.20" 1701 source = "registry+https://github.com/rust-lang/crates.io-index" 1702 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 1703 dependencies = [ 1704 "globset", 1705 - "lazy_static", 1706 "log", 1707 "memchr", 1708 - "regex", 1709 "same-file", 1710 - "thread_local", 1711 "walkdir", 1712 "winapi-util", 1713 ] 1714 1715 [[package]] 1716 name = "image" 1717 - version = "0.24.7" 1718 source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1720 dependencies = [ 1721 "bytemuck", 1722 "byteorder", 1723 "color_quant", 1724 - "num-rational", 1725 "num-traits", 1726 ] 1727 ··· 1738 1739 [[package]] 1740 name = "indexmap" 1741 - version = "2.0.0" 1742 source = "registry+https://github.com/rust-lang/crates.io-index" 1743 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 1744 dependencies = [ 1745 "equivalent", 1746 - "hashbrown 0.14.0", 1747 "serde", 1748 ] 1749 1750 [[package]] 1751 name = "infer" 1752 - version = "0.12.0" 1753 source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 1755 dependencies = [ 1756 "cfb", 1757 ] ··· 1762 source = "registry+https://github.com/rust-lang/crates.io-index" 1763 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1764 dependencies = [ 1765 - "generic-array", 1766 ] 1767 1768 [[package]] ··· 1784 ] 1785 1786 [[package]] 1787 name = "itoa" 1788 version = "0.4.8" 1789 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1791 1792 [[package]] 1793 name = "itoa" 1794 - version = "1.0.9" 1795 source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1797 1798 [[package]] 1799 name = "javascriptcore-rs" ··· 1840 1841 [[package]] 1842 name = "js-sys" 1843 - version = "0.3.64" 1844 source = "registry+https://github.com/rust-lang/crates.io-index" 1845 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1846 dependencies = [ 1847 "wasm-bindgen", 1848 ] 1849 1850 [[package]] 1851 name = "json-patch" 1852 - version = "1.0.0" 1853 source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658" 1855 dependencies = [ 1856 "serde", 1857 "serde_json", ··· 1860 ] 1861 1862 [[package]] 1863 - name = "kuchiki" 1864 - version = "0.8.1" 1865 source = "registry+https://github.com/rust-lang/crates.io-index" 1866 - checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1867 dependencies = [ 1868 "cssparser", 1869 "html5ever", 1870 "matches", 1871 "selectors", 1872 ] ··· 1882 1883 [[package]] 1884 name = "libc" 1885 - version = "0.2.147" 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1887 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1888 1889 [[package]] 1890 name = "libm" 1891 - version = "0.2.7" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 1894 1895 [[package]] 1896 name = "libsqlite3-sys" 1897 - version = "0.26.0" 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1899 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 1900 dependencies = [ 1901 "cc", 1902 "pkg-config", ··· 1914 1915 [[package]] 1916 name = "linux-raw-sys" 1917 - version = "0.4.5" 1918 source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1920 1921 [[package]] 1922 name = "lock_api" 1923 - version = "0.4.10" 1924 source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1926 dependencies = [ 1927 "autocfg", 1928 "scopeguard", ··· 1966 1967 [[package]] 1968 name = "markup5ever" 1969 - version = "0.10.1" 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 - checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1972 dependencies = [ 1973 "log", 1974 - "phf 0.8.0", 1975 - "phf_codegen", 1976 "string_cache", 1977 "string_cache_codegen", 1978 "tendril", ··· 1995 1996 [[package]] 1997 name = "md-5" 1998 - version = "0.10.5" 1999 source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 2001 dependencies = [ 2002 "digest", 2003 ] 2004 2005 [[package]] 2006 name = "memchr" 2007 - version = "2.5.0" 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 2009 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2010 2011 [[package]] 2012 name = "memoffset" ··· 2035 2036 [[package]] 2037 name = "mio" 2038 - version = "0.8.8" 2039 source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2041 dependencies = [ 2042 "libc", 2043 "wasi 0.11.0+wasi-snapshot-preview1", ··· 2077 version = "1.0.4" 2078 source = "registry+https://github.com/rust-lang/crates.io-index" 2079 checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2080 2081 [[package]] 2082 name = "nodrop" ··· 2143 ] 2144 2145 [[package]] 2146 - name = "num-rational" 2147 - version = "0.4.1" 2148 - source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2150 - dependencies = [ 2151 - "autocfg", 2152 - "num-integer", 2153 - "num-traits", 2154 - ] 2155 - 2156 - [[package]] 2157 name = "num-traits" 2158 - version = "0.2.16" 2159 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 2161 dependencies = [ 2162 "autocfg", 2163 "libm", ··· 2235 2236 [[package]] 2237 name = "object" 2238 - version = "0.32.0" 2239 source = "registry+https://github.com/rust-lang/crates.io-index" 2240 - checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" 2241 dependencies = [ 2242 "memchr", 2243 ] 2244 2245 [[package]] 2246 name = "once_cell" 2247 - version = "1.18.0" 2248 source = "registry+https://github.com/rust-lang/crates.io-index" 2249 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2250 2251 [[package]] 2252 name = "opaque-debug" ··· 2303 "glib-sys", 2304 "gobject-sys", 2305 "libc", 2306 - "system-deps 6.1.1", 2307 ] 2308 2309 [[package]] ··· 2318 2319 [[package]] 2320 name = "parking_lot_core" 2321 - version = "0.9.8" 2322 source = "registry+https://github.com/rust-lang/crates.io-index" 2323 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 2324 dependencies = [ 2325 "cfg-if", 2326 "libc", 2327 - "redox_syscall 0.3.5", 2328 "smallvec", 2329 "windows-targets 0.48.5", 2330 ] ··· 2373 2374 [[package]] 2375 name = "percent-encoding" 2376 - version = "2.3.0" 2377 source = "registry+https://github.com/rust-lang/crates.io-index" 2378 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2379 2380 [[package]] 2381 name = "phf" ··· 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2396 dependencies = [ 2397 - "phf_macros 0.10.0", 2398 "phf_shared 0.10.0", 2399 - "proc-macro-hack", 2400 ] 2401 2402 [[package]] ··· 2407 dependencies = [ 2408 "phf_generator 0.8.0", 2409 "phf_shared 0.8.0", 2410 ] 2411 2412 [[package]] ··· 2430 ] 2431 2432 [[package]] 2433 name = "phf_macros" 2434 version = "0.8.0" 2435 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2445 2446 [[package]] 2447 name = "phf_macros" 2448 - version = "0.10.0" 2449 source = "registry+https://github.com/rust-lang/crates.io-index" 2450 - checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 2451 dependencies = [ 2452 - "phf_generator 0.10.0", 2453 - "phf_shared 0.10.0", 2454 - "proc-macro-hack", 2455 "proc-macro2", 2456 "quote", 2457 - "syn 1.0.109", 2458 ] 2459 2460 [[package]] ··· 2476 ] 2477 2478 [[package]] 2479 - name = "pin-project" 2480 - version = "1.1.3" 2481 source = "registry+https://github.com/rust-lang/crates.io-index" 2482 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 2483 dependencies = [ 2484 - "pin-project-internal", 2485 - ] 2486 - 2487 - [[package]] 2488 - name = "pin-project-internal" 2489 - version = "1.1.3" 2490 - source = "registry+https://github.com/rust-lang/crates.io-index" 2491 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 2492 - dependencies = [ 2493 - "proc-macro2", 2494 - "quote", 2495 - "syn 2.0.29", 2496 ] 2497 2498 [[package]] 2499 name = "pin-project-lite" 2500 - version = "0.2.12" 2501 source = "registry+https://github.com/rust-lang/crates.io-index" 2502 - checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 2503 2504 [[package]] 2505 name = "pin-utils" ··· 2530 2531 [[package]] 2532 name = "pkg-config" 2533 - version = "0.3.27" 2534 source = "registry+https://github.com/rust-lang/crates.io-index" 2535 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2536 2537 [[package]] 2538 name = "plist" 2539 - version = "1.5.0" 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 2542 dependencies = [ 2543 - "base64 0.21.2", 2544 - "indexmap 1.9.3", 2545 "line-wrap", 2546 "quick-xml", 2547 "serde", ··· 2550 2551 [[package]] 2552 name = "png" 2553 - version = "0.17.10" 2554 source = "registry+https://github.com/rust-lang/crates.io-index" 2555 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 2556 dependencies = [ 2557 "bitflags 1.3.2", 2558 "crc32fast", ··· 2573 ] 2574 2575 [[package]] 2576 name = "ppv-lite86" 2577 version = "0.2.17" 2578 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2591 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2592 dependencies = [ 2593 "once_cell", 2594 - "toml_edit", 2595 ] 2596 2597 [[package]] ··· 2626 2627 [[package]] 2628 name = "proc-macro2" 2629 - version = "1.0.66" 2630 source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 2632 dependencies = [ 2633 "unicode-ident", 2634 ] ··· 2641 2642 [[package]] 2643 name = "quick-xml" 2644 - version = "0.29.0" 2645 source = "registry+https://github.com/rust-lang/crates.io-index" 2646 - checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51" 2647 dependencies = [ 2648 "memchr", 2649 ] 2650 2651 [[package]] 2652 name = "quote" 2653 - version = "1.0.33" 2654 source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2656 dependencies = [ 2657 "proc-macro2", 2658 ] ··· 2717 source = "registry+https://github.com/rust-lang/crates.io-index" 2718 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2719 dependencies = [ 2720 - "getrandom 0.2.10", 2721 ] 2722 2723 [[package]] ··· 2746 2747 [[package]] 2748 name = "rayon" 2749 - version = "1.7.0" 2750 source = "registry+https://github.com/rust-lang/crates.io-index" 2751 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 2752 dependencies = [ 2753 "either", 2754 "rayon-core", ··· 2756 2757 [[package]] 2758 name = "rayon-core" 2759 - version = "1.11.0" 2760 source = "registry+https://github.com/rust-lang/crates.io-index" 2761 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 2762 dependencies = [ 2763 - "crossbeam-channel", 2764 "crossbeam-deque", 2765 "crossbeam-utils", 2766 - "num_cpus", 2767 ] 2768 2769 [[package]] 2770 name = "redox_syscall" 2771 - version = "0.2.16" 2772 - source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2774 - dependencies = [ 2775 - "bitflags 1.3.2", 2776 - ] 2777 - 2778 - [[package]] 2779 - name = "redox_syscall" 2780 - version = "0.3.5" 2781 source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2783 dependencies = [ 2784 "bitflags 1.3.2", 2785 ] 2786 2787 [[package]] 2788 name = "redox_users" 2789 - version = "0.4.3" 2790 source = "registry+https://github.com/rust-lang/crates.io-index" 2791 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2792 dependencies = [ 2793 - "getrandom 0.2.10", 2794 - "redox_syscall 0.2.16", 2795 "thiserror", 2796 ] 2797 2798 [[package]] 2799 name = "regex" 2800 - version = "1.9.3" 2801 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 2803 dependencies = [ 2804 "aho-corasick", 2805 "memchr", 2806 - "regex-automata 0.3.6", 2807 - "regex-syntax 0.7.4", 2808 ] 2809 2810 [[package]] ··· 2818 2819 [[package]] 2820 name = "regex-automata" 2821 - version = "0.3.6" 2822 source = "registry+https://github.com/rust-lang/crates.io-index" 2823 - checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 2824 dependencies = [ 2825 "aho-corasick", 2826 "memchr", 2827 - "regex-syntax 0.7.4", 2828 ] 2829 2830 [[package]] ··· 2835 2836 [[package]] 2837 name = "regex-syntax" 2838 - version = "0.7.4" 2839 source = "registry+https://github.com/rust-lang/crates.io-index" 2840 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 2841 2842 [[package]] 2843 name = "rfd" ··· 2865 2866 [[package]] 2867 name = "rsa" 2868 - version = "0.9.2" 2869 source = "registry+https://github.com/rust-lang/crates.io-index" 2870 - checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" 2871 dependencies = [ 2872 - "byteorder", 2873 "const-oid", 2874 "digest", 2875 "num-bigint-dig", 2876 "num-integer", 2877 - "num-iter", 2878 "num-traits", 2879 "pkcs1", 2880 "pkcs8", ··· 2902 2903 [[package]] 2904 name = "rustix" 2905 - version = "0.38.8" 2906 source = "registry+https://github.com/rust-lang/crates.io-index" 2907 - checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 2908 dependencies = [ 2909 - "bitflags 2.4.0", 2910 "errno", 2911 "libc", 2912 "linux-raw-sys", 2913 - "windows-sys 0.48.0", 2914 ] 2915 2916 [[package]] ··· 2921 2922 [[package]] 2923 name = "ryu" 2924 - version = "1.0.15" 2925 source = "registry+https://github.com/rust-lang/crates.io-index" 2926 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2927 2928 [[package]] 2929 name = "safemem" ··· 2986 "log", 2987 "matches", 2988 "phf 0.8.0", 2989 - "phf_codegen", 2990 "precomputed-hash", 2991 "servo_arc", 2992 "smallvec", ··· 2995 2996 [[package]] 2997 name = "semver" 2998 - version = "1.0.18" 2999 source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 3001 dependencies = [ 3002 "serde", 3003 ] 3004 3005 [[package]] 3006 name = "serde" 3007 - version = "1.0.186" 3008 source = "registry+https://github.com/rust-lang/crates.io-index" 3009 - checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" 3010 dependencies = [ 3011 "serde_derive", 3012 ] 3013 3014 [[package]] 3015 name = "serde_derive" 3016 - version = "1.0.186" 3017 source = "registry+https://github.com/rust-lang/crates.io-index" 3018 - checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" 3019 dependencies = [ 3020 "proc-macro2", 3021 "quote", 3022 - "syn 2.0.29", 3023 ] 3024 3025 [[package]] 3026 name = "serde_json" 3027 - version = "1.0.105" 3028 source = "registry+https://github.com/rust-lang/crates.io-index" 3029 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 3030 dependencies = [ 3031 - "itoa 1.0.9", 3032 "ryu", 3033 "serde", 3034 ] 3035 3036 [[package]] 3037 name = "serde_repr" 3038 - version = "0.1.16" 3039 source = "registry+https://github.com/rust-lang/crates.io-index" 3040 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 3041 dependencies = [ 3042 "proc-macro2", 3043 "quote", 3044 - "syn 2.0.29", 3045 ] 3046 3047 [[package]] 3048 name = "serde_spanned" 3049 - version = "0.6.3" 3050 source = "registry+https://github.com/rust-lang/crates.io-index" 3051 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 3052 dependencies = [ 3053 "serde", 3054 ] 3055 3056 [[package]] 3057 name = "serde_with" 3058 - version = "3.3.0" 3059 source = "registry+https://github.com/rust-lang/crates.io-index" 3060 - checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" 3061 dependencies = [ 3062 - "base64 0.21.2", 3063 "chrono", 3064 "hex", 3065 "indexmap 1.9.3", 3066 - "indexmap 2.0.0", 3067 "serde", 3068 "serde_json", 3069 "serde_with_macros", ··· 3072 3073 [[package]] 3074 name = "serde_with_macros" 3075 - version = "3.3.0" 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 3077 - checksum = "2e6be15c453eb305019bfa438b1593c731f36a289a7853f7707ee29e870b3b3c" 3078 dependencies = [ 3079 "darling 0.20.3", 3080 "proc-macro2", 3081 "quote", 3082 - "syn 2.0.29", 3083 ] 3084 3085 [[package]] ··· 3104 dependencies = [ 3105 "proc-macro2", 3106 "quote", 3107 - "syn 2.0.29", 3108 ] 3109 3110 [[package]] ··· 3141 3142 [[package]] 3143 name = "sha1" 3144 - version = "0.10.5" 3145 source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3147 dependencies = [ 3148 "cfg-if", 3149 "cpufeatures", ··· 3152 3153 [[package]] 3154 name = "sha2" 3155 - version = "0.10.7" 3156 source = "registry+https://github.com/rust-lang/crates.io-index" 3157 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 3158 dependencies = [ 3159 "cfg-if", 3160 "cpufeatures", ··· 3163 3164 [[package]] 3165 name = "sharded-slab" 3166 - version = "0.1.4" 3167 source = "registry+https://github.com/rust-lang/crates.io-index" 3168 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 3169 dependencies = [ 3170 "lazy_static", 3171 ] 3172 3173 [[package]] 3174 name = "signature" 3175 - version = "2.1.0" 3176 source = "registry+https://github.com/rust-lang/crates.io-index" 3177 - checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" 3178 dependencies = [ 3179 "digest", 3180 "rand_core 0.6.4", ··· 3203 3204 [[package]] 3205 name = "smallvec" 3206 - version = "1.11.0" 3207 source = "registry+https://github.com/rust-lang/crates.io-index" 3208 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 3209 3210 [[package]] 3211 name = "socket2" 3212 - version = "0.5.3" 3213 source = "registry+https://github.com/rust-lang/crates.io-index" 3214 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 3215 dependencies = [ 3216 "libc", 3217 "windows-sys 0.48.0", ··· 3262 3263 [[package]] 3264 name = "spki" 3265 - version = "0.7.2" 3266 source = "registry+https://github.com/rust-lang/crates.io-index" 3267 - checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" 3268 dependencies = [ 3269 "base64ct", 3270 "der", ··· 3272 3273 [[package]] 3274 name = "sqlformat" 3275 - version = "0.2.1" 3276 source = "registry+https://github.com/rust-lang/crates.io-index" 3277 - checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" 3278 dependencies = [ 3279 - "itertools", 3280 "nom", 3281 "unicode_categories", 3282 ] 3283 3284 [[package]] 3285 name = "sqlx" 3286 - version = "0.7.1" 3287 source = "registry+https://github.com/rust-lang/crates.io-index" 3288 - checksum = "8e58421b6bc416714d5115a2ca953718f6c621a51b68e4f4922aea5a4391a721" 3289 dependencies = [ 3290 "sqlx-core", 3291 "sqlx-macros", ··· 3296 3297 [[package]] 3298 name = "sqlx-core" 3299 - version = "0.7.1" 3300 source = "registry+https://github.com/rust-lang/crates.io-index" 3301 - checksum = "dd4cef4251aabbae751a3710927945901ee1d97ee96d757f6880ebb9a79bfd53" 3302 dependencies = [ 3303 "ahash", 3304 "atoi", ··· 3316 "futures-util", 3317 "hashlink", 3318 "hex", 3319 - "indexmap 2.0.0", 3320 "log", 3321 "memchr", 3322 "once_cell", ··· 3336 3337 [[package]] 3338 name = "sqlx-macros" 3339 - version = "0.7.1" 3340 source = "registry+https://github.com/rust-lang/crates.io-index" 3341 - checksum = "208e3165167afd7f3881b16c1ef3f2af69fa75980897aac8874a0696516d12c2" 3342 dependencies = [ 3343 "proc-macro2", 3344 "quote", ··· 3349 3350 [[package]] 3351 name = "sqlx-macros-core" 3352 - version = "0.7.1" 3353 source = "registry+https://github.com/rust-lang/crates.io-index" 3354 - checksum = "8a4a8336d278c62231d87f24e8a7a74898156e34c1c18942857be2acb29c7dfc" 3355 dependencies = [ 3356 "dotenvy", 3357 "either", 3358 "heck 0.4.1", ··· 3374 3375 [[package]] 3376 name = "sqlx-mysql" 3377 - version = "0.7.1" 3378 source = "registry+https://github.com/rust-lang/crates.io-index" 3379 - checksum = "8ca69bf415b93b60b80dc8fda3cb4ef52b2336614d8da2de5456cc942a110482" 3380 dependencies = [ 3381 "atoi", 3382 - "base64 0.21.2", 3383 - "bitflags 2.4.0", 3384 "byteorder", 3385 "bytes", 3386 "crc", ··· 3391 "futures-core", 3392 "futures-io", 3393 "futures-util", 3394 - "generic-array", 3395 "hex", 3396 "hkdf", 3397 "hmac", 3398 - "itoa 1.0.9", 3399 "log", 3400 "md-5", 3401 "memchr", ··· 3416 3417 [[package]] 3418 name = "sqlx-postgres" 3419 - version = "0.7.1" 3420 source = "registry+https://github.com/rust-lang/crates.io-index" 3421 - checksum = "a0db2df1b8731c3651e204629dd55e52adbae0462fa1bdcbed56a2302c18181e" 3422 dependencies = [ 3423 "atoi", 3424 - "base64 0.21.2", 3425 - "bitflags 2.4.0", 3426 "byteorder", 3427 "crc", 3428 "dotenvy", ··· 3435 "hkdf", 3436 "hmac", 3437 "home", 3438 - "itoa 1.0.9", 3439 "log", 3440 "md-5", 3441 "memchr", ··· 3455 3456 [[package]] 3457 name = "sqlx-sqlite" 3458 - version = "0.7.1" 3459 source = "registry+https://github.com/rust-lang/crates.io-index" 3460 - checksum = "be4c21bf34c7cae5b283efb3ac1bcc7670df7561124dc2f8bdc0b59be40f79a2" 3461 dependencies = [ 3462 "atoi", 3463 "flume", ··· 3473 "sqlx-core", 3474 "tracing", 3475 "url", 3476 ] 3477 3478 [[package]] ··· 3518 3519 [[package]] 3520 name = "stringprep" 3521 - version = "0.1.3" 3522 source = "registry+https://github.com/rust-lang/crates.io-index" 3523 - checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da" 3524 dependencies = [ 3525 "unicode-bidi", 3526 "unicode-normalization", 3527 ] ··· 3560 3561 [[package]] 3562 name = "syn" 3563 - version = "2.0.29" 3564 source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 3566 dependencies = [ 3567 "proc-macro2", 3568 "quote", ··· 3597 3598 [[package]] 3599 name = "system-deps" 3600 - version = "6.1.1" 3601 source = "registry+https://github.com/rust-lang/crates.io-index" 3602 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 3603 dependencies = [ 3604 - "cfg-expr 0.15.4", 3605 "heck 0.4.1", 3606 "pkg-config", 3607 - "toml 0.7.6", 3608 "version-compare 0.1.1", 3609 ] 3610 3611 [[package]] 3612 name = "tao" 3613 - version = "0.16.2" 3614 source = "registry+https://github.com/rust-lang/crates.io-index" 3615 - checksum = "6a6d198e01085564cea63e976ad1566c1ba2c2e4cc79578e35d9f05521505e31" 3616 dependencies = [ 3617 "bitflags 1.3.2", 3618 "cairo-rs", ··· 3679 3680 [[package]] 3681 name = "target-lexicon" 3682 - version = "0.12.11" 3683 source = "registry+https://github.com/rust-lang/crates.io-index" 3684 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 3685 3686 [[package]] 3687 name = "tauri" 3688 - version = "1.4.1" 3689 source = "registry+https://github.com/rust-lang/crates.io-index" 3690 - checksum = "7fbe522898e35407a8e60dc3870f7579fea2fc262a6a6072eccdd37ae1e1d91e" 3691 dependencies = [ 3692 "anyhow", 3693 "cocoa", ··· 3735 3736 [[package]] 3737 name = "tauri-build" 3738 - version = "1.4.0" 3739 source = "registry+https://github.com/rust-lang/crates.io-index" 3740 - checksum = "7d2edd6a259b5591c8efdeb9d5702cb53515b82a6affebd55c7fd6d3a27b7d1b" 3741 dependencies = [ 3742 "anyhow", 3743 "cargo_toml", 3744 "heck 0.4.1", 3745 "json-patch", 3746 "semver", ··· 3748 "serde_json", 3749 "tauri-utils", 3750 "tauri-winres", 3751 ] 3752 3753 [[package]] 3754 name = "tauri-codegen" 3755 - version = "1.4.0" 3756 source = "registry+https://github.com/rust-lang/crates.io-index" 3757 - checksum = "54ad2d49fdeab4a08717f5b49a163bdc72efc3b1950b6758245fcde79b645e1a" 3758 dependencies = [ 3759 - "base64 0.21.2", 3760 "brotli", 3761 "ico", 3762 "json-patch", ··· 3778 3779 [[package]] 3780 name = "tauri-macros" 3781 - version = "1.4.0" 3782 source = "registry+https://github.com/rust-lang/crates.io-index" 3783 - checksum = "8eb12a2454e747896929338d93b0642144bb51e0dddbb36e579035731f0d76b7" 3784 dependencies = [ 3785 "heck 0.4.1", 3786 "proc-macro2", ··· 3792 3793 [[package]] 3794 name = "tauri-runtime" 3795 - version = "0.14.0" 3796 source = "registry+https://github.com/rust-lang/crates.io-index" 3797 - checksum = "108683199cb18f96d2d4134187bb789964143c845d2d154848dda209191fd769" 3798 dependencies = [ 3799 "gtk", 3800 "http", ··· 3813 3814 [[package]] 3815 name = "tauri-runtime-wry" 3816 - version = "0.14.0" 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b" 3819 dependencies = [ 3820 "cocoa", 3821 "gtk", ··· 3833 3834 [[package]] 3835 name = "tauri-utils" 3836 - version = "1.4.0" 3837 source = "registry+https://github.com/rust-lang/crates.io-index" 3838 - checksum = "03fc02bb6072bb397e1d473c6f76c953cda48b4a2d0cce605df284aa74a12e84" 3839 dependencies = [ 3840 "brotli", 3841 "ctor", ··· 3845 "html5ever", 3846 "infer", 3847 "json-patch", 3848 - "kuchiki", 3849 "memchr", 3850 - "phf 0.10.1", 3851 "proc-macro2", 3852 "quote", 3853 "semver", ··· 3857 "thiserror", 3858 "url", 3859 "walkdir", 3860 - "windows 0.39.0", 3861 ] 3862 3863 [[package]] ··· 3867 checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 3868 dependencies = [ 3869 "embed-resource", 3870 - "toml 0.7.6", 3871 ] 3872 3873 [[package]] 3874 name = "tempfile" 3875 - version = "3.8.0" 3876 source = "registry+https://github.com/rust-lang/crates.io-index" 3877 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 3878 dependencies = [ 3879 "cfg-if", 3880 "fastrand", 3881 - "redox_syscall 0.3.5", 3882 "rustix", 3883 - "windows-sys 0.48.0", 3884 ] 3885 3886 [[package]] ··· 3902 3903 [[package]] 3904 name = "thiserror" 3905 - version = "1.0.47" 3906 source = "registry+https://github.com/rust-lang/crates.io-index" 3907 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 3908 dependencies = [ 3909 "thiserror-impl", 3910 ] 3911 3912 [[package]] 3913 name = "thiserror-impl" 3914 - version = "1.0.47" 3915 source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 3917 dependencies = [ 3918 "proc-macro2", 3919 "quote", 3920 - "syn 2.0.29", 3921 ] 3922 3923 [[package]] ··· 3932 3933 [[package]] 3934 name = "time" 3935 - version = "0.3.27" 3936 source = "registry+https://github.com/rust-lang/crates.io-index" 3937 - checksum = "0bb39ee79a6d8de55f48f2293a830e040392f1c5f16e336bdd1788cd0aadce07" 3938 dependencies = [ 3939 "deranged", 3940 - "itoa 1.0.9", 3941 "serde", 3942 "time-core", 3943 "time-macros", ··· 3945 3946 [[package]] 3947 name = "time-core" 3948 - version = "0.1.1" 3949 source = "registry+https://github.com/rust-lang/crates.io-index" 3950 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 3951 3952 [[package]] 3953 name = "time-macros" 3954 - version = "0.2.13" 3955 source = "registry+https://github.com/rust-lang/crates.io-index" 3956 - checksum = "733d258752e9303d392b94b75230d07b0b9c489350c69b851fc6c065fde3e8f9" 3957 dependencies = [ 3958 "time-core", 3959 ] ··· 3985 3986 [[package]] 3987 name = "tokio" 3988 - version = "1.32.0" 3989 source = "registry+https://github.com/rust-lang/crates.io-index" 3990 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 3991 dependencies = [ 3992 "backtrace", 3993 "bytes", ··· 4021 4022 [[package]] 4023 name = "toml" 4024 - version = "0.7.6" 4025 source = "registry+https://github.com/rust-lang/crates.io-index" 4026 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 4027 dependencies = [ 4028 "serde", 4029 "serde_spanned", 4030 "toml_datetime", 4031 - "toml_edit", 4032 ] 4033 4034 [[package]] 4035 name = "toml_datetime" 4036 - version = "0.6.3" 4037 source = "registry+https://github.com/rust-lang/crates.io-index" 4038 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4039 dependencies = [ 4040 "serde", 4041 ] 4042 4043 [[package]] 4044 name = "toml_edit" 4045 - version = "0.19.14" 4046 source = "registry+https://github.com/rust-lang/crates.io-index" 4047 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 4048 dependencies = [ 4049 - "indexmap 2.0.0", 4050 "serde", 4051 "serde_spanned", 4052 "toml_datetime", ··· 4055 4056 [[package]] 4057 name = "tracing" 4058 - version = "0.1.37" 4059 source = "registry+https://github.com/rust-lang/crates.io-index" 4060 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4061 dependencies = [ 4062 - "cfg-if", 4063 "log", 4064 "pin-project-lite", 4065 "tracing-attributes", ··· 4068 4069 [[package]] 4070 name = "tracing-attributes" 4071 - version = "0.1.26" 4072 source = "registry+https://github.com/rust-lang/crates.io-index" 4073 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 4074 dependencies = [ 4075 "proc-macro2", 4076 "quote", 4077 - "syn 2.0.29", 4078 ] 4079 4080 [[package]] 4081 name = "tracing-core" 4082 - version = "0.1.31" 4083 source = "registry+https://github.com/rust-lang/crates.io-index" 4084 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4085 dependencies = [ 4086 "once_cell", 4087 "valuable", ··· 4089 4090 [[package]] 4091 name = "tracing-log" 4092 - version = "0.1.3" 4093 source = "registry+https://github.com/rust-lang/crates.io-index" 4094 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4095 dependencies = [ 4096 - "lazy_static", 4097 "log", 4098 "tracing-core", 4099 ] 4100 4101 [[package]] 4102 name = "tracing-subscriber" 4103 - version = "0.3.17" 4104 source = "registry+https://github.com/rust-lang/crates.io-index" 4105 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4106 dependencies = [ 4107 "matchers", 4108 "nu-ansi-term", ··· 4154 4155 [[package]] 4156 name = "typenum" 4157 - version = "1.16.0" 4158 source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4160 4161 [[package]] 4162 name = "unicode-bidi" 4163 - version = "0.3.13" 4164 source = "registry+https://github.com/rust-lang/crates.io-index" 4165 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4166 4167 [[package]] 4168 name = "unicode-ident" 4169 - version = "1.0.11" 4170 source = "registry+https://github.com/rust-lang/crates.io-index" 4171 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 4172 4173 [[package]] 4174 name = "unicode-normalization" ··· 4203 4204 [[package]] 4205 name = "url" 4206 - version = "2.4.0" 4207 source = "registry+https://github.com/rust-lang/crates.io-index" 4208 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 4209 dependencies = [ 4210 "form_urlencoded", 4211 "idna", ··· 4214 ] 4215 4216 [[package]] 4217 name = "utf-8" 4218 version = "0.7.6" 4219 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4227 4228 [[package]] 4229 name = "uuid" 4230 - version = "1.4.1" 4231 source = "registry+https://github.com/rust-lang/crates.io-index" 4232 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 4233 dependencies = [ 4234 - "getrandom 0.2.10", 4235 ] 4236 4237 [[package]] ··· 4307 4308 [[package]] 4309 name = "walkdir" 4310 - version = "2.3.3" 4311 source = "registry+https://github.com/rust-lang/crates.io-index" 4312 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 4313 dependencies = [ 4314 "same-file", 4315 "winapi-util", ··· 4329 4330 [[package]] 4331 name = "wasm-bindgen" 4332 - version = "0.2.87" 4333 source = "registry+https://github.com/rust-lang/crates.io-index" 4334 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 4335 dependencies = [ 4336 "cfg-if", 4337 "wasm-bindgen-macro", ··· 4339 4340 [[package]] 4341 name = "wasm-bindgen-backend" 4342 - version = "0.2.87" 4343 source = "registry+https://github.com/rust-lang/crates.io-index" 4344 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 4345 dependencies = [ 4346 "bumpalo", 4347 "log", 4348 "once_cell", 4349 "proc-macro2", 4350 "quote", 4351 - "syn 2.0.29", 4352 "wasm-bindgen-shared", 4353 ] 4354 4355 [[package]] 4356 name = "wasm-bindgen-futures" 4357 - version = "0.4.37" 4358 source = "registry+https://github.com/rust-lang/crates.io-index" 4359 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 4360 dependencies = [ 4361 "cfg-if", 4362 "js-sys", ··· 4366 4367 [[package]] 4368 name = "wasm-bindgen-macro" 4369 - version = "0.2.87" 4370 source = "registry+https://github.com/rust-lang/crates.io-index" 4371 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 4372 dependencies = [ 4373 "quote", 4374 "wasm-bindgen-macro-support", ··· 4376 4377 [[package]] 4378 name = "wasm-bindgen-macro-support" 4379 - version = "0.2.87" 4380 source = "registry+https://github.com/rust-lang/crates.io-index" 4381 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 4382 dependencies = [ 4383 "proc-macro2", 4384 "quote", 4385 - "syn 2.0.29", 4386 "wasm-bindgen-backend", 4387 "wasm-bindgen-shared", 4388 ] 4389 4390 [[package]] 4391 name = "wasm-bindgen-shared" 4392 - version = "0.2.87" 4393 source = "registry+https://github.com/rust-lang/crates.io-index" 4394 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 4395 4396 [[package]] 4397 name = "web-sys" 4398 - version = "0.3.64" 4399 source = "registry+https://github.com/rust-lang/crates.io-index" 4400 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 4401 dependencies = [ 4402 "js-sys", 4403 "wasm-bindgen", ··· 4447 "pango-sys", 4448 "pkg-config", 4449 "soup2-sys", 4450 - "system-deps 6.1.1", 4451 ] 4452 4453 [[package]] ··· 4512 4513 [[package]] 4514 name = "winapi-util" 4515 - version = "0.1.5" 4516 source = "registry+https://github.com/rust-lang/crates.io-index" 4517 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4518 dependencies = [ 4519 "winapi", 4520 ] ··· 4569 dependencies = [ 4570 "windows-metadata", 4571 "windows-tokens", 4572 ] 4573 4574 [[package]] ··· 4618 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4619 dependencies = [ 4620 "windows-targets 0.48.5", 4621 ] 4622 4623 [[package]] ··· 4651 ] 4652 4653 [[package]] 4654 name = "windows-tokens" 4655 version = "0.39.0" 4656 source = "registry+https://github.com/rust-lang/crates.io-index" 4657 checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 4658 4659 [[package]] 4660 name = "windows_aarch64_gnullvm" 4661 version = "0.42.2" 4662 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4669 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4670 4671 [[package]] 4672 name = "windows_aarch64_msvc" 4673 version = "0.37.0" 4674 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4693 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4694 4695 [[package]] 4696 name = "windows_i686_gnu" 4697 version = "0.37.0" 4698 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4717 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4718 4719 [[package]] 4720 name = "windows_i686_msvc" 4721 version = "0.37.0" 4722 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4739 version = "0.48.5" 4740 source = "registry+https://github.com/rust-lang/crates.io-index" 4741 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4742 4743 [[package]] 4744 name = "windows_x86_64_gnu" ··· 4765 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4766 4767 [[package]] 4768 name = "windows_x86_64_gnullvm" 4769 version = "0.42.2" 4770 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4777 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4778 4779 [[package]] 4780 name = "windows_x86_64_msvc" 4781 version = "0.37.0" 4782 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4801 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4802 4803 [[package]] 4804 name = "winnow" 4805 - version = "0.5.14" 4806 source = "registry+https://github.com/rust-lang/crates.io-index" 4807 - checksum = "d09770118a7eb1ccaf4a594a221334119a44a814fcb0d31c5b85e83e97227a97" 4808 dependencies = [ 4809 "memchr", 4810 ] 4811 4812 [[package]] 4813 name = "winreg" 4814 - version = "0.11.0" 4815 source = "registry+https://github.com/rust-lang/crates.io-index" 4816 - checksum = "76a1a57ff50e9b408431e8f97d5456f2807f8eb2a2cd79b06068fc87f8ecf189" 4817 dependencies = [ 4818 "cfg-if", 4819 - "winapi", 4820 ] 4821 4822 [[package]] 4823 name = "wry" 4824 - version = "0.24.3" 4825 source = "registry+https://github.com/rust-lang/crates.io-index" 4826 - checksum = "33748f35413c8a98d45f7a08832d848c0c5915501803d1faade5a4ebcd258cea" 4827 dependencies = [ 4828 "base64 0.13.1", 4829 "block", ··· 4837 "gtk", 4838 "html5ever", 4839 "http", 4840 - "kuchiki", 4841 "libc", 4842 "log", 4843 "objc", ··· 4880 4881 [[package]] 4882 name = "xattr" 4883 - version = "1.0.1" 4884 source = "registry+https://github.com/rust-lang/crates.io-index" 4885 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 4886 dependencies = [ 4887 "libc", 4888 ] 4889 4890 [[package]] 4891 name = "zeroize" 4892 - version = "1.6.0" 4893 source = "registry+https://github.com/rust-lang/crates.io-index" 4894 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 4895 4896 [[package]] 4897 name = "zxcvbn" ··· 4901 dependencies = [ 4902 "derive_builder", 4903 "fancy-regex", 4904 - "itertools", 4905 "js-sys", 4906 "lazy_static", 4907 "quick-error",
··· 24 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 25 dependencies = [ 26 "crypto-common", 27 + "generic-array 0.14.7", 28 ] 29 30 [[package]] 31 name = "ahash" 32 + version = "0.8.7" 33 source = "registry+https://github.com/rust-lang/crates.io-index" 34 + checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 35 dependencies = [ 36 "cfg-if", 37 + "getrandom 0.2.12", 38 "once_cell", 39 "version_check", 40 + "zerocopy", 41 ] 42 43 [[package]] 44 name = "aho-corasick" 45 + version = "1.1.2" 46 source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 48 dependencies = [ 49 "memchr", 50 ] ··· 87 88 [[package]] 89 name = "anyhow" 90 + version = "1.0.79" 91 source = "registry+https://github.com/rust-lang/crates.io-index" 92 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 93 94 [[package]] 95 name = "arrayvec" ··· 99 100 [[package]] 101 name = "async-trait" 102 + version = "0.1.77" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 105 dependencies = [ 106 "proc-macro2", 107 "quote", 108 + "syn 2.0.48", 109 ] 110 111 [[package]] ··· 129 "glib-sys", 130 "gobject-sys", 131 "libc", 132 + "system-deps 6.2.0", 133 ] 134 135 [[package]] ··· 142 ] 143 144 [[package]] 145 + name = "atomic-write-file" 146 + version = "0.1.2" 147 + source = "registry+https://github.com/rust-lang/crates.io-index" 148 + checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436" 149 + dependencies = [ 150 + "nix", 151 + "rand 0.8.5", 152 + ] 153 + 154 + [[package]] 155 name = "autocfg" 156 version = "1.1.0" 157 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 180 181 [[package]] 182 name = "base64" 183 + version = "0.21.7" 184 source = "registry+https://github.com/rust-lang/crates.io-index" 185 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 186 187 [[package]] 188 name = "base64ct" ··· 213 214 [[package]] 215 name = "bitflags" 216 + version = "2.4.2" 217 source = "registry+https://github.com/rust-lang/crates.io-index" 218 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 219 dependencies = [ 220 "serde", 221 ] ··· 232 source = "registry+https://github.com/rust-lang/crates.io-index" 233 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 234 dependencies = [ 235 + "generic-array 0.14.7", 236 ] 237 238 [[package]] 239 name = "brotli" 240 + version = "3.4.0" 241 source = "registry+https://github.com/rust-lang/crates.io-index" 242 + checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 243 dependencies = [ 244 "alloc-no-stdlib", 245 "alloc-stdlib", ··· 248 249 [[package]] 250 name = "brotli-decompressor" 251 + version = "2.5.1" 252 source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 254 dependencies = [ 255 "alloc-no-stdlib", 256 "alloc-stdlib", ··· 258 259 [[package]] 260 name = "bstr" 261 + version = "1.9.0" 262 source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" 264 dependencies = [ 265 "memchr", 266 "serde", ··· 268 269 [[package]] 270 name = "bumpalo" 271 + version = "3.14.0" 272 source = "registry+https://github.com/rust-lang/crates.io-index" 273 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 274 275 [[package]] 276 name = "bytemuck" 277 + version = "1.14.1" 278 source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9" 280 281 [[package]] 282 name = "byteorder" 283 + version = "1.5.0" 284 source = "registry+https://github.com/rust-lang/crates.io-index" 285 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 286 287 [[package]] 288 name = "bytes" 289 + version = "1.5.0" 290 source = "registry+https://github.com/rust-lang/crates.io-index" 291 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 292 293 [[package]] 294 name = "cairo-rs" ··· 311 dependencies = [ 312 "glib-sys", 313 "libc", 314 + "system-deps 6.2.0", 315 ] 316 317 [[package]] ··· 321 checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 322 dependencies = [ 323 "serde", 324 + "toml 0.7.8", 325 ] 326 327 [[package]] ··· 361 362 [[package]] 363 name = "cfg-expr" 364 + version = "0.15.6" 365 source = "registry+https://github.com/rust-lang/crates.io-index" 366 + checksum = "6100bc57b6209840798d95cb2775684849d332f7bd788db2a8c8caf7ef82a41a" 367 dependencies = [ 368 "smallvec", 369 "target-lexicon", ··· 401 402 [[package]] 403 name = "chrono" 404 + version = "0.4.33" 405 source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "9f13690e35a5e4ace198e7beea2895d29f3a9cc55015fcebe6336bd2010af9eb" 407 dependencies = [ 408 "android-tzdata", 409 "iana-time-zone", 410 "num-traits", 411 "serde", 412 + "windows-targets 0.52.0", 413 ] 414 415 [[package]] 416 name = "ciborium" 417 + version = "0.2.2" 418 source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 420 dependencies = [ 421 "ciborium-io", 422 "ciborium-ll", ··· 425 426 [[package]] 427 name = "ciborium-io" 428 + version = "0.2.2" 429 source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 431 432 [[package]] 433 name = "ciborium-ll" 434 + version = "0.2.2" 435 source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 437 dependencies = [ 438 "ciborium-io", 439 "half", ··· 468 469 [[package]] 470 name = "cocoa-foundation" 471 + version = "0.1.2" 472 source = "registry+https://github.com/rust-lang/crates.io-index" 473 + checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 474 dependencies = [ 475 "bitflags 1.3.2", 476 "block", 477 "core-foundation", 478 "core-graphics-types", 479 "libc", 480 "objc", 481 ] ··· 498 499 [[package]] 500 name = "const-oid" 501 + version = "0.9.6" 502 source = "registry+https://github.com/rust-lang/crates.io-index" 503 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 504 505 [[package]] 506 name = "convert_case" ··· 510 511 [[package]] 512 name = "core-foundation" 513 + version = "0.9.4" 514 source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 516 dependencies = [ 517 "core-foundation-sys", 518 "libc", ··· 520 521 [[package]] 522 name = "core-foundation-sys" 523 + version = "0.8.6" 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 526 527 [[package]] 528 name = "core-graphics" ··· 539 540 [[package]] 541 name = "core-graphics-types" 542 + version = "0.1.3" 543 source = "registry+https://github.com/rust-lang/crates.io-index" 544 + checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 545 dependencies = [ 546 "bitflags 1.3.2", 547 "core-foundation", ··· 550 551 [[package]] 552 name = "cpufeatures" 553 + version = "0.2.12" 554 source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 556 dependencies = [ 557 "libc", 558 ] ··· 568 569 [[package]] 570 name = "crc-catalog" 571 + version = "2.4.0" 572 source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 574 575 [[package]] 576 name = "crc32fast" ··· 583 584 [[package]] 585 name = "crossbeam-channel" 586 + version = "0.5.11" 587 source = "registry+https://github.com/rust-lang/crates.io-index" 588 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 589 dependencies = [ 590 "crossbeam-utils", 591 ] 592 593 [[package]] 594 name = "crossbeam-deque" 595 + version = "0.8.5" 596 source = "registry+https://github.com/rust-lang/crates.io-index" 597 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 598 dependencies = [ 599 "crossbeam-epoch", 600 "crossbeam-utils", 601 ] 602 603 [[package]] 604 name = "crossbeam-epoch" 605 + version = "0.9.18" 606 source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 608 dependencies = [ 609 "crossbeam-utils", 610 ] 611 612 [[package]] 613 name = "crossbeam-queue" 614 + version = "0.3.11" 615 source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 617 dependencies = [ 618 "crossbeam-utils", 619 ] 620 621 [[package]] 622 name = "crossbeam-utils" 623 + version = "0.8.19" 624 source = "registry+https://github.com/rust-lang/crates.io-index" 625 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 626 + 627 + [[package]] 628 + name = "crunchy" 629 + version = "0.2.2" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 632 633 [[package]] 634 name = "crypto-common" ··· 636 source = "registry+https://github.com/rust-lang/crates.io-index" 637 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 638 dependencies = [ 639 + "generic-array 0.14.7", 640 "rand_core 0.6.4", 641 "typenum", 642 ] ··· 665 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 666 dependencies = [ 667 "quote", 668 + "syn 2.0.48", 669 ] 670 671 [[package]] 672 name = "ctor" 673 + version = "0.2.6" 674 source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "30d2b3721e861707777e3195b0158f950ae6dc4a27e4d02ff9f67e3eb3de199e" 676 dependencies = [ 677 "quote", 678 + "syn 2.0.48", 679 ] 680 681 [[package]] ··· 723 "proc-macro2", 724 "quote", 725 "strsim", 726 + "syn 2.0.48", 727 ] 728 729 [[package]] ··· 745 dependencies = [ 746 "darling_core 0.20.3", 747 "quote", 748 + "syn 2.0.48", 749 ] 750 751 [[package]] 752 name = "dashmap" 753 + version = "5.5.3" 754 source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 756 dependencies = [ 757 "cfg-if", 758 + "hashbrown 0.14.3", 759 "lock_api", 760 "once_cell", 761 "parking_lot_core", ··· 774 775 [[package]] 776 name = "deranged" 777 + version = "0.3.11" 778 source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 780 dependencies = [ 781 + "powerfmt", 782 "serde", 783 ] 784 ··· 903 904 [[package]] 905 name = "embed-resource" 906 + version = "2.4.1" 907 source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "3bde55e389bea6a966bd467ad1ad7da0ae14546a5bc794d16d1e55e7fca44881" 909 dependencies = [ 910 "cc", 911 + "memchr", 912 "rustc_version", 913 + "toml 0.8.8", 914 "vswhom", 915 "winreg", 916 ] ··· 938 939 [[package]] 940 name = "errno" 941 + version = "0.3.8" 942 source = "registry+https://github.com/rust-lang/crates.io-index" 943 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 944 dependencies = [ 945 "libc", 946 + "windows-sys 0.52.0", 947 ] 948 949 [[package]] ··· 965 966 [[package]] 967 name = "execute" 968 + version = "0.2.13" 969 source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "3a82608ee96ce76aeab659e9b8d3c2b787bffd223199af88c674923d861ada10" 971 dependencies = [ 972 "execute-command-macro", 973 "execute-command-tokens", 974 + "generic-array 1.0.0", 975 ] 976 977 [[package]] 978 name = "execute-command-macro" 979 + version = "0.1.9" 980 source = "registry+https://github.com/rust-lang/crates.io-index" 981 + checksum = "90dec53d547564e911dc4ff3ecb726a64cf41a6fa01a2370ebc0d95175dd08bd" 982 dependencies = [ 983 "execute-command-macro-impl", 984 ] 985 986 [[package]] 987 name = "execute-command-macro-impl" 988 + version = "0.1.10" 989 source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "ce8cd46a041ad005ab9c71263f9a0ff5b529eac0fe4cc9b4a20f4f0765d8cf4b" 991 dependencies = [ 992 "execute-command-tokens", 993 "quote", 994 + "syn 2.0.48", 995 ] 996 997 [[package]] 998 name = "execute-command-tokens" 999 + version = "0.1.7" 1000 source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "69dc321eb6be977f44674620ca3aa21703cb20ffbe560e1ae97da08401ffbcad" 1002 1003 [[package]] 1004 name = "fancy-regex" ··· 1012 1013 [[package]] 1014 name = "fastrand" 1015 + version = "2.0.1" 1016 source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1018 1019 [[package]] 1020 name = "fdeflate" 1021 + version = "0.3.4" 1022 source = "registry+https://github.com/rust-lang/crates.io-index" 1023 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1024 dependencies = [ 1025 "simd-adler32", 1026 ] ··· 1037 1038 [[package]] 1039 name = "filetime" 1040 + version = "0.2.23" 1041 source = "registry+https://github.com/rust-lang/crates.io-index" 1042 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1043 dependencies = [ 1044 "cfg-if", 1045 "libc", 1046 + "redox_syscall", 1047 + "windows-sys 0.52.0", 1048 ] 1049 1050 [[package]] 1051 + name = "finl_unicode" 1052 + version = "1.2.0" 1053 + source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 1055 + 1056 + [[package]] 1057 name = "fix-path-env" 1058 version = "0.0.0" 1059 source = "git+https://github.com/tauri-apps/fix-path-env-rs?rev=a355f9da4ee628404c8f884fed5dfb2bd1876488#a355f9da4ee628404c8f884fed5dfb2bd1876488" ··· 1064 1065 [[package]] 1066 name = "flate2" 1067 + version = "1.0.28" 1068 source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1070 dependencies = [ 1071 "crc32fast", 1072 "miniz_oxide", ··· 1074 1075 [[package]] 1076 name = "flume" 1077 + version = "0.11.0" 1078 source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1080 dependencies = [ 1081 "futures-core", 1082 "futures-sink", 1083 "spin 0.9.8", 1084 ] 1085 ··· 1106 1107 [[package]] 1108 name = "form_urlencoded" 1109 + version = "1.2.1" 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1112 dependencies = [ 1113 "percent-encoding", 1114 ] ··· 1125 1126 [[package]] 1127 name = "futures" 1128 + version = "0.3.30" 1129 source = "registry+https://github.com/rust-lang/crates.io-index" 1130 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1131 dependencies = [ 1132 "futures-channel", 1133 "futures-core", ··· 1140 1141 [[package]] 1142 name = "futures-channel" 1143 + version = "0.3.30" 1144 source = "registry+https://github.com/rust-lang/crates.io-index" 1145 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1146 dependencies = [ 1147 "futures-core", 1148 "futures-sink", ··· 1150 1151 [[package]] 1152 name = "futures-core" 1153 + version = "0.3.30" 1154 source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1156 1157 [[package]] 1158 name = "futures-executor" 1159 + version = "0.3.30" 1160 source = "registry+https://github.com/rust-lang/crates.io-index" 1161 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1162 dependencies = [ 1163 "futures-core", 1164 "futures-task", ··· 1178 1179 [[package]] 1180 name = "futures-io" 1181 + version = "0.3.30" 1182 source = "registry+https://github.com/rust-lang/crates.io-index" 1183 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1184 1185 [[package]] 1186 name = "futures-macro" 1187 + version = "0.3.30" 1188 source = "registry+https://github.com/rust-lang/crates.io-index" 1189 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1190 dependencies = [ 1191 "proc-macro2", 1192 "quote", 1193 + "syn 2.0.48", 1194 ] 1195 1196 [[package]] 1197 name = "futures-sink" 1198 + version = "0.3.30" 1199 source = "registry+https://github.com/rust-lang/crates.io-index" 1200 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1201 1202 [[package]] 1203 name = "futures-task" 1204 + version = "0.3.30" 1205 source = "registry+https://github.com/rust-lang/crates.io-index" 1206 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1207 1208 [[package]] 1209 name = "futures-util" 1210 + version = "0.3.30" 1211 source = "registry+https://github.com/rust-lang/crates.io-index" 1212 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1213 dependencies = [ 1214 "futures-channel", 1215 "futures-core", ··· 1271 "glib-sys", 1272 "gobject-sys", 1273 "libc", 1274 + "system-deps 6.2.0", 1275 ] 1276 1277 [[package]] ··· 1288 "libc", 1289 "pango-sys", 1290 "pkg-config", 1291 + "system-deps 6.2.0", 1292 ] 1293 1294 [[package]] ··· 1302 "gobject-sys", 1303 "libc", 1304 "pkg-config", 1305 + "system-deps 6.2.0", 1306 ] 1307 1308 [[package]] ··· 1314 "gdk-sys", 1315 "glib-sys", 1316 "libc", 1317 + "system-deps 6.2.0", 1318 "x11", 1319 ] 1320 ··· 1342 ] 1343 1344 [[package]] 1345 + name = "generic-array" 1346 + version = "1.0.0" 1347 + source = "registry+https://github.com/rust-lang/crates.io-index" 1348 + checksum = "fe739944a5406424e080edccb6add95685130b9f160d5407c639c7df0c5836b0" 1349 + dependencies = [ 1350 + "typenum", 1351 + ] 1352 + 1353 + [[package]] 1354 name = "getrandom" 1355 version = "0.1.16" 1356 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1363 1364 [[package]] 1365 name = "getrandom" 1366 + version = "0.2.12" 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1369 dependencies = [ 1370 "cfg-if", 1371 "libc", ··· 1374 1375 [[package]] 1376 name = "gimli" 1377 + version = "0.28.1" 1378 source = "registry+https://github.com/rust-lang/crates.io-index" 1379 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1380 1381 [[package]] 1382 name = "gio" ··· 1404 "glib-sys", 1405 "gobject-sys", 1406 "libc", 1407 + "system-deps 6.2.0", 1408 "winapi", 1409 ] 1410 ··· 1450 checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1451 dependencies = [ 1452 "libc", 1453 + "system-deps 6.2.0", 1454 ] 1455 1456 [[package]] ··· 1461 1462 [[package]] 1463 name = "globset" 1464 + version = "0.4.14" 1465 source = "registry+https://github.com/rust-lang/crates.io-index" 1466 + checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 1467 dependencies = [ 1468 "aho-corasick", 1469 "bstr", 1470 "log", 1471 + "regex-automata 0.4.5", 1472 + "regex-syntax 0.8.2", 1473 ] 1474 1475 [[package]] ··· 1480 dependencies = [ 1481 "glib-sys", 1482 "libc", 1483 + "system-deps 6.2.0", 1484 ] 1485 1486 [[package]] ··· 1521 "gobject-sys", 1522 "libc", 1523 "pango-sys", 1524 + "system-deps 6.2.0", 1525 ] 1526 1527 [[package]] ··· 1540 1541 [[package]] 1542 name = "half" 1543 + version = "2.3.1" 1544 source = "registry+https://github.com/rust-lang/crates.io-index" 1545 + checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 1546 + dependencies = [ 1547 + "cfg-if", 1548 + "crunchy", 1549 + ] 1550 1551 [[package]] 1552 name = "hashbrown" ··· 1556 1557 [[package]] 1558 name = "hashbrown" 1559 + version = "0.14.3" 1560 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1562 dependencies = [ 1563 "ahash", 1564 "allocator-api2", ··· 1566 1567 [[package]] 1568 name = "hashlink" 1569 + version = "0.8.4" 1570 source = "registry+https://github.com/rust-lang/crates.io-index" 1571 + checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1572 dependencies = [ 1573 + "hashbrown 0.14.3", 1574 ] 1575 1576 [[package]] ··· 1593 1594 [[package]] 1595 name = "hermit-abi" 1596 + version = "0.3.4" 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 + checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 1599 1600 [[package]] 1601 name = "hex" ··· 1605 1606 [[package]] 1607 name = "hkdf" 1608 + version = "0.12.4" 1609 source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1611 dependencies = [ 1612 "hmac", 1613 ] ··· 1623 1624 [[package]] 1625 name = "home" 1626 + version = "0.5.9" 1627 source = "registry+https://github.com/rust-lang/crates.io-index" 1628 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1629 dependencies = [ 1630 + "windows-sys 0.52.0", 1631 ] 1632 1633 [[package]] 1634 name = "html5ever" 1635 + version = "0.26.0" 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1637 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1638 dependencies = [ 1639 "log", 1640 "mac", ··· 1646 1647 [[package]] 1648 name = "http" 1649 + version = "0.2.11" 1650 source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1652 dependencies = [ 1653 "bytes", 1654 "fnv", 1655 + "itoa 1.0.10", 1656 ] 1657 1658 [[package]] ··· 1663 1664 [[package]] 1665 name = "iana-time-zone" 1666 + version = "0.1.59" 1667 source = "registry+https://github.com/rust-lang/crates.io-index" 1668 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 1669 dependencies = [ 1670 "android_system_properties", 1671 "core-foundation-sys", 1672 "iana-time-zone-haiku", 1673 "js-sys", 1674 "wasm-bindgen", 1675 + "windows-core", 1676 ] 1677 1678 [[package]] ··· 1702 1703 [[package]] 1704 name = "idna" 1705 + version = "0.5.0" 1706 source = "registry+https://github.com/rust-lang/crates.io-index" 1707 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1708 dependencies = [ 1709 "unicode-bidi", 1710 "unicode-normalization", ··· 1712 1713 [[package]] 1714 name = "ignore" 1715 + version = "0.4.22" 1716 source = "registry+https://github.com/rust-lang/crates.io-index" 1717 + checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 1718 dependencies = [ 1719 + "crossbeam-deque", 1720 "globset", 1721 "log", 1722 "memchr", 1723 + "regex-automata 0.4.5", 1724 "same-file", 1725 "walkdir", 1726 "winapi-util", 1727 ] 1728 1729 [[package]] 1730 name = "image" 1731 + version = "0.24.8" 1732 source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" 1734 dependencies = [ 1735 "bytemuck", 1736 "byteorder", 1737 "color_quant", 1738 "num-traits", 1739 ] 1740 ··· 1751 1752 [[package]] 1753 name = "indexmap" 1754 + version = "2.1.0" 1755 source = "registry+https://github.com/rust-lang/crates.io-index" 1756 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1757 dependencies = [ 1758 "equivalent", 1759 + "hashbrown 0.14.3", 1760 "serde", 1761 ] 1762 1763 [[package]] 1764 name = "infer" 1765 + version = "0.13.0" 1766 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 + checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc" 1768 dependencies = [ 1769 "cfb", 1770 ] ··· 1775 source = "registry+https://github.com/rust-lang/crates.io-index" 1776 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1777 dependencies = [ 1778 + "generic-array 0.14.7", 1779 ] 1780 1781 [[package]] ··· 1797 ] 1798 1799 [[package]] 1800 + name = "itertools" 1801 + version = "0.12.0" 1802 + source = "registry+https://github.com/rust-lang/crates.io-index" 1803 + checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" 1804 + dependencies = [ 1805 + "either", 1806 + ] 1807 + 1808 + [[package]] 1809 name = "itoa" 1810 version = "0.4.8" 1811 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1813 1814 [[package]] 1815 name = "itoa" 1816 + version = "1.0.10" 1817 source = "registry+https://github.com/rust-lang/crates.io-index" 1818 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1819 1820 [[package]] 1821 name = "javascriptcore-rs" ··· 1862 1863 [[package]] 1864 name = "js-sys" 1865 + version = "0.3.67" 1866 source = "registry+https://github.com/rust-lang/crates.io-index" 1867 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1868 dependencies = [ 1869 "wasm-bindgen", 1870 ] 1871 1872 [[package]] 1873 name = "json-patch" 1874 + version = "1.2.0" 1875 source = "registry+https://github.com/rust-lang/crates.io-index" 1876 + checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6" 1877 dependencies = [ 1878 "serde", 1879 "serde_json", ··· 1882 ] 1883 1884 [[package]] 1885 + name = "kuchikiki" 1886 + version = "0.8.2" 1887 source = "registry+https://github.com/rust-lang/crates.io-index" 1888 + checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 1889 dependencies = [ 1890 "cssparser", 1891 "html5ever", 1892 + "indexmap 1.9.3", 1893 "matches", 1894 "selectors", 1895 ] ··· 1905 1906 [[package]] 1907 name = "libc" 1908 + version = "0.2.152" 1909 source = "registry+https://github.com/rust-lang/crates.io-index" 1910 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 1911 1912 [[package]] 1913 name = "libm" 1914 + version = "0.2.8" 1915 + source = "registry+https://github.com/rust-lang/crates.io-index" 1916 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 1917 + 1918 + [[package]] 1919 + name = "libredox" 1920 + version = "0.0.1" 1921 source = "registry+https://github.com/rust-lang/crates.io-index" 1922 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1923 + dependencies = [ 1924 + "bitflags 2.4.2", 1925 + "libc", 1926 + "redox_syscall", 1927 + ] 1928 1929 [[package]] 1930 name = "libsqlite3-sys" 1931 + version = "0.27.0" 1932 source = "registry+https://github.com/rust-lang/crates.io-index" 1933 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 1934 dependencies = [ 1935 "cc", 1936 "pkg-config", ··· 1948 1949 [[package]] 1950 name = "linux-raw-sys" 1951 + version = "0.4.13" 1952 source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1954 1955 [[package]] 1956 name = "lock_api" 1957 + version = "0.4.11" 1958 source = "registry+https://github.com/rust-lang/crates.io-index" 1959 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1960 dependencies = [ 1961 "autocfg", 1962 "scopeguard", ··· 2000 2001 [[package]] 2002 name = "markup5ever" 2003 + version = "0.11.0" 2004 source = "registry+https://github.com/rust-lang/crates.io-index" 2005 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2006 dependencies = [ 2007 "log", 2008 + "phf 0.10.1", 2009 + "phf_codegen 0.10.0", 2010 "string_cache", 2011 "string_cache_codegen", 2012 "tendril", ··· 2029 2030 [[package]] 2031 name = "md-5" 2032 + version = "0.10.6" 2033 source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2035 dependencies = [ 2036 + "cfg-if", 2037 "digest", 2038 ] 2039 2040 [[package]] 2041 name = "memchr" 2042 + version = "2.7.1" 2043 source = "registry+https://github.com/rust-lang/crates.io-index" 2044 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 2045 2046 [[package]] 2047 name = "memoffset" ··· 2070 2071 [[package]] 2072 name = "mio" 2073 + version = "0.8.10" 2074 source = "registry+https://github.com/rust-lang/crates.io-index" 2075 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2076 dependencies = [ 2077 "libc", 2078 "wasi 0.11.0+wasi-snapshot-preview1", ··· 2112 version = "1.0.4" 2113 source = "registry+https://github.com/rust-lang/crates.io-index" 2114 checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2115 + 2116 + [[package]] 2117 + name = "nix" 2118 + version = "0.27.1" 2119 + source = "registry+https://github.com/rust-lang/crates.io-index" 2120 + checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2121 + dependencies = [ 2122 + "bitflags 2.4.2", 2123 + "cfg-if", 2124 + "libc", 2125 + ] 2126 2127 [[package]] 2128 name = "nodrop" ··· 2189 ] 2190 2191 [[package]] 2192 name = "num-traits" 2193 + version = "0.2.17" 2194 source = "registry+https://github.com/rust-lang/crates.io-index" 2195 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 2196 dependencies = [ 2197 "autocfg", 2198 "libm", ··· 2270 2271 [[package]] 2272 name = "object" 2273 + version = "0.32.2" 2274 source = "registry+https://github.com/rust-lang/crates.io-index" 2275 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2276 dependencies = [ 2277 "memchr", 2278 ] 2279 2280 [[package]] 2281 name = "once_cell" 2282 + version = "1.19.0" 2283 source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2285 2286 [[package]] 2287 name = "opaque-debug" ··· 2338 "glib-sys", 2339 "gobject-sys", 2340 "libc", 2341 + "system-deps 6.2.0", 2342 ] 2343 2344 [[package]] ··· 2353 2354 [[package]] 2355 name = "parking_lot_core" 2356 + version = "0.9.9" 2357 source = "registry+https://github.com/rust-lang/crates.io-index" 2358 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2359 dependencies = [ 2360 "cfg-if", 2361 "libc", 2362 + "redox_syscall", 2363 "smallvec", 2364 "windows-targets 0.48.5", 2365 ] ··· 2408 2409 [[package]] 2410 name = "percent-encoding" 2411 + version = "2.3.1" 2412 source = "registry+https://github.com/rust-lang/crates.io-index" 2413 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2414 2415 [[package]] 2416 name = "phf" ··· 2429 source = "registry+https://github.com/rust-lang/crates.io-index" 2430 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2431 dependencies = [ 2432 "phf_shared 0.10.0", 2433 + ] 2434 + 2435 + [[package]] 2436 + name = "phf" 2437 + version = "0.11.2" 2438 + source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 2440 + dependencies = [ 2441 + "phf_macros 0.11.2", 2442 + "phf_shared 0.11.2", 2443 ] 2444 2445 [[package]] ··· 2450 dependencies = [ 2451 "phf_generator 0.8.0", 2452 "phf_shared 0.8.0", 2453 + ] 2454 + 2455 + [[package]] 2456 + name = "phf_codegen" 2457 + version = "0.10.0" 2458 + source = "registry+https://github.com/rust-lang/crates.io-index" 2459 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 2460 + dependencies = [ 2461 + "phf_generator 0.10.0", 2462 + "phf_shared 0.10.0", 2463 ] 2464 2465 [[package]] ··· 2483 ] 2484 2485 [[package]] 2486 + name = "phf_generator" 2487 + version = "0.11.2" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 2490 + dependencies = [ 2491 + "phf_shared 0.11.2", 2492 + "rand 0.8.5", 2493 + ] 2494 + 2495 + [[package]] 2496 name = "phf_macros" 2497 version = "0.8.0" 2498 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2508 2509 [[package]] 2510 name = "phf_macros" 2511 + version = "0.11.2" 2512 source = "registry+https://github.com/rust-lang/crates.io-index" 2513 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 2514 dependencies = [ 2515 + "phf_generator 0.11.2", 2516 + "phf_shared 0.11.2", 2517 "proc-macro2", 2518 "quote", 2519 + "syn 2.0.48", 2520 ] 2521 2522 [[package]] ··· 2538 ] 2539 2540 [[package]] 2541 + name = "phf_shared" 2542 + version = "0.11.2" 2543 source = "registry+https://github.com/rust-lang/crates.io-index" 2544 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 2545 dependencies = [ 2546 + "siphasher", 2547 ] 2548 2549 [[package]] 2550 name = "pin-project-lite" 2551 + version = "0.2.13" 2552 source = "registry+https://github.com/rust-lang/crates.io-index" 2553 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2554 2555 [[package]] 2556 name = "pin-utils" ··· 2581 2582 [[package]] 2583 name = "pkg-config" 2584 + version = "0.3.29" 2585 source = "registry+https://github.com/rust-lang/crates.io-index" 2586 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 2587 2588 [[package]] 2589 name = "plist" 2590 + version = "1.6.0" 2591 source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2593 dependencies = [ 2594 + "base64 0.21.7", 2595 + "indexmap 2.1.0", 2596 "line-wrap", 2597 "quick-xml", 2598 "serde", ··· 2601 2602 [[package]] 2603 name = "png" 2604 + version = "0.17.11" 2605 source = "registry+https://github.com/rust-lang/crates.io-index" 2606 + checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 2607 dependencies = [ 2608 "bitflags 1.3.2", 2609 "crc32fast", ··· 2624 ] 2625 2626 [[package]] 2627 + name = "powerfmt" 2628 + version = "0.2.0" 2629 + source = "registry+https://github.com/rust-lang/crates.io-index" 2630 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2631 + 2632 + [[package]] 2633 name = "ppv-lite86" 2634 version = "0.2.17" 2635 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2648 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2649 dependencies = [ 2650 "once_cell", 2651 + "toml_edit 0.19.15", 2652 ] 2653 2654 [[package]] ··· 2683 2684 [[package]] 2685 name = "proc-macro2" 2686 + version = "1.0.78" 2687 source = "registry+https://github.com/rust-lang/crates.io-index" 2688 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 2689 dependencies = [ 2690 "unicode-ident", 2691 ] ··· 2698 2699 [[package]] 2700 name = "quick-xml" 2701 + version = "0.31.0" 2702 source = "registry+https://github.com/rust-lang/crates.io-index" 2703 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2704 dependencies = [ 2705 "memchr", 2706 ] 2707 2708 [[package]] 2709 name = "quote" 2710 + version = "1.0.35" 2711 source = "registry+https://github.com/rust-lang/crates.io-index" 2712 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2713 dependencies = [ 2714 "proc-macro2", 2715 ] ··· 2774 source = "registry+https://github.com/rust-lang/crates.io-index" 2775 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2776 dependencies = [ 2777 + "getrandom 0.2.12", 2778 ] 2779 2780 [[package]] ··· 2803 2804 [[package]] 2805 name = "rayon" 2806 + version = "1.8.1" 2807 source = "registry+https://github.com/rust-lang/crates.io-index" 2808 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 2809 dependencies = [ 2810 "either", 2811 "rayon-core", ··· 2813 2814 [[package]] 2815 name = "rayon-core" 2816 + version = "1.12.1" 2817 source = "registry+https://github.com/rust-lang/crates.io-index" 2818 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2819 dependencies = [ 2820 "crossbeam-deque", 2821 "crossbeam-utils", 2822 ] 2823 2824 [[package]] 2825 name = "redox_syscall" 2826 + version = "0.4.1" 2827 source = "registry+https://github.com/rust-lang/crates.io-index" 2828 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2829 dependencies = [ 2830 "bitflags 1.3.2", 2831 ] 2832 2833 [[package]] 2834 name = "redox_users" 2835 + version = "0.4.4" 2836 source = "registry+https://github.com/rust-lang/crates.io-index" 2837 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 2838 dependencies = [ 2839 + "getrandom 0.2.12", 2840 + "libredox", 2841 "thiserror", 2842 ] 2843 2844 [[package]] 2845 name = "regex" 2846 + version = "1.10.3" 2847 source = "registry+https://github.com/rust-lang/crates.io-index" 2848 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2849 dependencies = [ 2850 "aho-corasick", 2851 "memchr", 2852 + "regex-automata 0.4.5", 2853 + "regex-syntax 0.8.2", 2854 ] 2855 2856 [[package]] ··· 2864 2865 [[package]] 2866 name = "regex-automata" 2867 + version = "0.4.5" 2868 source = "registry+https://github.com/rust-lang/crates.io-index" 2869 + checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 2870 dependencies = [ 2871 "aho-corasick", 2872 "memchr", 2873 + "regex-syntax 0.8.2", 2874 ] 2875 2876 [[package]] ··· 2881 2882 [[package]] 2883 name = "regex-syntax" 2884 + version = "0.8.2" 2885 source = "registry+https://github.com/rust-lang/crates.io-index" 2886 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2887 2888 [[package]] 2889 name = "rfd" ··· 2911 2912 [[package]] 2913 name = "rsa" 2914 + version = "0.9.6" 2915 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 + checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 2917 dependencies = [ 2918 "const-oid", 2919 "digest", 2920 "num-bigint-dig", 2921 "num-integer", 2922 "num-traits", 2923 "pkcs1", 2924 "pkcs8", ··· 2946 2947 [[package]] 2948 name = "rustix" 2949 + version = "0.38.30" 2950 source = "registry+https://github.com/rust-lang/crates.io-index" 2951 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 2952 dependencies = [ 2953 + "bitflags 2.4.2", 2954 "errno", 2955 "libc", 2956 "linux-raw-sys", 2957 + "windows-sys 0.52.0", 2958 ] 2959 2960 [[package]] ··· 2965 2966 [[package]] 2967 name = "ryu" 2968 + version = "1.0.16" 2969 source = "registry+https://github.com/rust-lang/crates.io-index" 2970 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 2971 2972 [[package]] 2973 name = "safemem" ··· 3030 "log", 3031 "matches", 3032 "phf 0.8.0", 3033 + "phf_codegen 0.8.0", 3034 "precomputed-hash", 3035 "servo_arc", 3036 "smallvec", ··· 3039 3040 [[package]] 3041 name = "semver" 3042 + version = "1.0.21" 3043 source = "registry+https://github.com/rust-lang/crates.io-index" 3044 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 3045 dependencies = [ 3046 "serde", 3047 ] 3048 3049 [[package]] 3050 name = "serde" 3051 + version = "1.0.196" 3052 source = "registry+https://github.com/rust-lang/crates.io-index" 3053 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 3054 dependencies = [ 3055 "serde_derive", 3056 ] 3057 3058 [[package]] 3059 name = "serde_derive" 3060 + version = "1.0.196" 3061 source = "registry+https://github.com/rust-lang/crates.io-index" 3062 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 3063 dependencies = [ 3064 "proc-macro2", 3065 "quote", 3066 + "syn 2.0.48", 3067 ] 3068 3069 [[package]] 3070 name = "serde_json" 3071 + version = "1.0.112" 3072 source = "registry+https://github.com/rust-lang/crates.io-index" 3073 + checksum = "4d1bd37ce2324cf3bf85e5a25f96eb4baf0d5aa6eba43e7ae8958870c4ec48ed" 3074 dependencies = [ 3075 + "itoa 1.0.10", 3076 "ryu", 3077 "serde", 3078 ] 3079 3080 [[package]] 3081 name = "serde_repr" 3082 + version = "0.1.18" 3083 source = "registry+https://github.com/rust-lang/crates.io-index" 3084 + checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 3085 dependencies = [ 3086 "proc-macro2", 3087 "quote", 3088 + "syn 2.0.48", 3089 ] 3090 3091 [[package]] 3092 name = "serde_spanned" 3093 + version = "0.6.5" 3094 source = "registry+https://github.com/rust-lang/crates.io-index" 3095 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 3096 dependencies = [ 3097 "serde", 3098 ] 3099 3100 [[package]] 3101 name = "serde_with" 3102 + version = "3.5.1" 3103 source = "registry+https://github.com/rust-lang/crates.io-index" 3104 + checksum = "f5c9fdb6b00a489875b22efd4b78fe2b363b72265cc5f6eb2e2b9ee270e6140c" 3105 dependencies = [ 3106 + "base64 0.21.7", 3107 "chrono", 3108 "hex", 3109 "indexmap 1.9.3", 3110 + "indexmap 2.1.0", 3111 "serde", 3112 "serde_json", 3113 "serde_with_macros", ··· 3116 3117 [[package]] 3118 name = "serde_with_macros" 3119 + version = "3.5.1" 3120 source = "registry+https://github.com/rust-lang/crates.io-index" 3121 + checksum = "dbff351eb4b33600a2e138dfa0b10b65a238ea8ff8fb2387c422c5022a3e8298" 3122 dependencies = [ 3123 "darling 0.20.3", 3124 "proc-macro2", 3125 "quote", 3126 + "syn 2.0.48", 3127 ] 3128 3129 [[package]] ··· 3148 dependencies = [ 3149 "proc-macro2", 3150 "quote", 3151 + "syn 2.0.48", 3152 ] 3153 3154 [[package]] ··· 3185 3186 [[package]] 3187 name = "sha1" 3188 + version = "0.10.6" 3189 source = "registry+https://github.com/rust-lang/crates.io-index" 3190 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3191 dependencies = [ 3192 "cfg-if", 3193 "cpufeatures", ··· 3196 3197 [[package]] 3198 name = "sha2" 3199 + version = "0.10.8" 3200 source = "registry+https://github.com/rust-lang/crates.io-index" 3201 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3202 dependencies = [ 3203 "cfg-if", 3204 "cpufeatures", ··· 3207 3208 [[package]] 3209 name = "sharded-slab" 3210 + version = "0.1.7" 3211 source = "registry+https://github.com/rust-lang/crates.io-index" 3212 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3213 dependencies = [ 3214 "lazy_static", 3215 ] 3216 3217 [[package]] 3218 name = "signature" 3219 + version = "2.2.0" 3220 source = "registry+https://github.com/rust-lang/crates.io-index" 3221 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 3222 dependencies = [ 3223 "digest", 3224 "rand_core 0.6.4", ··· 3247 3248 [[package]] 3249 name = "smallvec" 3250 + version = "1.13.1" 3251 source = "registry+https://github.com/rust-lang/crates.io-index" 3252 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 3253 3254 [[package]] 3255 name = "socket2" 3256 + version = "0.5.5" 3257 source = "registry+https://github.com/rust-lang/crates.io-index" 3258 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 3259 dependencies = [ 3260 "libc", 3261 "windows-sys 0.48.0", ··· 3306 3307 [[package]] 3308 name = "spki" 3309 + version = "0.7.3" 3310 source = "registry+https://github.com/rust-lang/crates.io-index" 3311 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 3312 dependencies = [ 3313 "base64ct", 3314 "der", ··· 3316 3317 [[package]] 3318 name = "sqlformat" 3319 + version = "0.2.3" 3320 source = "registry+https://github.com/rust-lang/crates.io-index" 3321 + checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" 3322 dependencies = [ 3323 + "itertools 0.12.0", 3324 "nom", 3325 "unicode_categories", 3326 ] 3327 3328 [[package]] 3329 name = "sqlx" 3330 + version = "0.7.3" 3331 source = "registry+https://github.com/rust-lang/crates.io-index" 3332 + checksum = "dba03c279da73694ef99763320dea58b51095dfe87d001b1d4b5fe78ba8763cf" 3333 dependencies = [ 3334 "sqlx-core", 3335 "sqlx-macros", ··· 3340 3341 [[package]] 3342 name = "sqlx-core" 3343 + version = "0.7.3" 3344 source = "registry+https://github.com/rust-lang/crates.io-index" 3345 + checksum = "d84b0a3c3739e220d94b3239fd69fb1f74bc36e16643423bd99de3b43c21bfbd" 3346 dependencies = [ 3347 "ahash", 3348 "atoi", ··· 3360 "futures-util", 3361 "hashlink", 3362 "hex", 3363 + "indexmap 2.1.0", 3364 "log", 3365 "memchr", 3366 "once_cell", ··· 3380 3381 [[package]] 3382 name = "sqlx-macros" 3383 + version = "0.7.3" 3384 source = "registry+https://github.com/rust-lang/crates.io-index" 3385 + checksum = "89961c00dc4d7dffb7aee214964b065072bff69e36ddb9e2c107541f75e4f2a5" 3386 dependencies = [ 3387 "proc-macro2", 3388 "quote", ··· 3393 3394 [[package]] 3395 name = "sqlx-macros-core" 3396 + version = "0.7.3" 3397 source = "registry+https://github.com/rust-lang/crates.io-index" 3398 + checksum = "d0bd4519486723648186a08785143599760f7cc81c52334a55d6a83ea1e20841" 3399 dependencies = [ 3400 + "atomic-write-file", 3401 "dotenvy", 3402 "either", 3403 "heck 0.4.1", ··· 3419 3420 [[package]] 3421 name = "sqlx-mysql" 3422 + version = "0.7.3" 3423 source = "registry+https://github.com/rust-lang/crates.io-index" 3424 + checksum = "e37195395df71fd068f6e2082247891bc11e3289624bbc776a0cdfa1ca7f1ea4" 3425 dependencies = [ 3426 "atoi", 3427 + "base64 0.21.7", 3428 + "bitflags 2.4.2", 3429 "byteorder", 3430 "bytes", 3431 "crc", ··· 3436 "futures-core", 3437 "futures-io", 3438 "futures-util", 3439 + "generic-array 0.14.7", 3440 "hex", 3441 "hkdf", 3442 "hmac", 3443 + "itoa 1.0.10", 3444 "log", 3445 "md-5", 3446 "memchr", ··· 3461 3462 [[package]] 3463 name = "sqlx-postgres" 3464 + version = "0.7.3" 3465 source = "registry+https://github.com/rust-lang/crates.io-index" 3466 + checksum = "d6ac0ac3b7ccd10cc96c7ab29791a7dd236bd94021f31eec7ba3d46a74aa1c24" 3467 dependencies = [ 3468 "atoi", 3469 + "base64 0.21.7", 3470 + "bitflags 2.4.2", 3471 "byteorder", 3472 "crc", 3473 "dotenvy", ··· 3480 "hkdf", 3481 "hmac", 3482 "home", 3483 + "itoa 1.0.10", 3484 "log", 3485 "md-5", 3486 "memchr", ··· 3500 3501 [[package]] 3502 name = "sqlx-sqlite" 3503 + version = "0.7.3" 3504 source = "registry+https://github.com/rust-lang/crates.io-index" 3505 + checksum = "210976b7d948c7ba9fced8ca835b11cbb2d677c59c79de41ac0d397e14547490" 3506 dependencies = [ 3507 "atoi", 3508 "flume", ··· 3518 "sqlx-core", 3519 "tracing", 3520 "url", 3521 + "urlencoding", 3522 ] 3523 3524 [[package]] ··· 3564 3565 [[package]] 3566 name = "stringprep" 3567 + version = "0.1.4" 3568 source = "registry+https://github.com/rust-lang/crates.io-index" 3569 + checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" 3570 dependencies = [ 3571 + "finl_unicode", 3572 "unicode-bidi", 3573 "unicode-normalization", 3574 ] ··· 3607 3608 [[package]] 3609 name = "syn" 3610 + version = "2.0.48" 3611 source = "registry+https://github.com/rust-lang/crates.io-index" 3612 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 3613 dependencies = [ 3614 "proc-macro2", 3615 "quote", ··· 3644 3645 [[package]] 3646 name = "system-deps" 3647 + version = "6.2.0" 3648 source = "registry+https://github.com/rust-lang/crates.io-index" 3649 + checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 3650 dependencies = [ 3651 + "cfg-expr 0.15.6", 3652 "heck 0.4.1", 3653 "pkg-config", 3654 + "toml 0.8.8", 3655 "version-compare 0.1.1", 3656 ] 3657 3658 [[package]] 3659 name = "tao" 3660 + version = "0.16.7" 3661 source = "registry+https://github.com/rust-lang/crates.io-index" 3662 + checksum = "d22205b267a679ca1c590b9f178488d50981fc3e48a1b91641ae31593db875ce" 3663 dependencies = [ 3664 "bitflags 1.3.2", 3665 "cairo-rs", ··· 3726 3727 [[package]] 3728 name = "target-lexicon" 3729 + version = "0.12.13" 3730 source = "registry+https://github.com/rust-lang/crates.io-index" 3731 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 3732 3733 [[package]] 3734 name = "tauri" 3735 + version = "1.5.4" 3736 source = "registry+https://github.com/rust-lang/crates.io-index" 3737 + checksum = "fd27c04b9543776a972c86ccf70660b517ecabbeced9fb58d8b961a13ad129af" 3738 dependencies = [ 3739 "anyhow", 3740 "cocoa", ··· 3782 3783 [[package]] 3784 name = "tauri-build" 3785 + version = "1.5.1" 3786 source = "registry+https://github.com/rust-lang/crates.io-index" 3787 + checksum = "e9914a4715e0b75d9f387a285c7e26b5bbfeb1249ad9f842675a82481565c532" 3788 dependencies = [ 3789 "anyhow", 3790 "cargo_toml", 3791 + "dirs-next", 3792 "heck 0.4.1", 3793 "json-patch", 3794 "semver", ··· 3796 "serde_json", 3797 "tauri-utils", 3798 "tauri-winres", 3799 + "walkdir", 3800 ] 3801 3802 [[package]] 3803 name = "tauri-codegen" 3804 + version = "1.4.2" 3805 source = "registry+https://github.com/rust-lang/crates.io-index" 3806 + checksum = "a1554c5857f65dbc377cefb6b97c8ac77b1cb2a90d30d3448114d5d6b48a77fc" 3807 dependencies = [ 3808 + "base64 0.21.7", 3809 "brotli", 3810 "ico", 3811 "json-patch", ··· 3827 3828 [[package]] 3829 name = "tauri-macros" 3830 + version = "1.4.3" 3831 source = "registry+https://github.com/rust-lang/crates.io-index" 3832 + checksum = "277abf361a3a6993ec16bcbb179de0d6518009b851090a01adfea12ac89fa875" 3833 dependencies = [ 3834 "heck 0.4.1", 3835 "proc-macro2", ··· 3841 3842 [[package]] 3843 name = "tauri-runtime" 3844 + version = "0.14.2" 3845 source = "registry+https://github.com/rust-lang/crates.io-index" 3846 + checksum = "cf2d0652aa2891ff3e9caa2401405257ea29ab8372cce01f186a5825f1bd0e76" 3847 dependencies = [ 3848 "gtk", 3849 "http", ··· 3862 3863 [[package]] 3864 name = "tauri-runtime-wry" 3865 + version = "0.14.3" 3866 source = "registry+https://github.com/rust-lang/crates.io-index" 3867 + checksum = "6cae61fbc731f690a4899681c9052dde6d05b159b44563ace8186fc1bfb7d158" 3868 dependencies = [ 3869 "cocoa", 3870 "gtk", ··· 3882 3883 [[package]] 3884 name = "tauri-utils" 3885 + version = "1.5.2" 3886 source = "registry+https://github.com/rust-lang/crates.io-index" 3887 + checksum = "ece74810b1d3d44f29f732a7ae09a63183d63949bbdd59c61f8ed2a1b70150db" 3888 dependencies = [ 3889 "brotli", 3890 "ctor", ··· 3894 "html5ever", 3895 "infer", 3896 "json-patch", 3897 + "kuchikiki", 3898 + "log", 3899 "memchr", 3900 + "phf 0.11.2", 3901 "proc-macro2", 3902 "quote", 3903 "semver", ··· 3907 "thiserror", 3908 "url", 3909 "walkdir", 3910 + "windows-version", 3911 ] 3912 3913 [[package]] ··· 3917 checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 3918 dependencies = [ 3919 "embed-resource", 3920 + "toml 0.7.8", 3921 ] 3922 3923 [[package]] 3924 name = "tempfile" 3925 + version = "3.9.0" 3926 source = "registry+https://github.com/rust-lang/crates.io-index" 3927 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 3928 dependencies = [ 3929 "cfg-if", 3930 "fastrand", 3931 + "redox_syscall", 3932 "rustix", 3933 + "windows-sys 0.52.0", 3934 ] 3935 3936 [[package]] ··· 3952 3953 [[package]] 3954 name = "thiserror" 3955 + version = "1.0.56" 3956 source = "registry+https://github.com/rust-lang/crates.io-index" 3957 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 3958 dependencies = [ 3959 "thiserror-impl", 3960 ] 3961 3962 [[package]] 3963 name = "thiserror-impl" 3964 + version = "1.0.56" 3965 source = "registry+https://github.com/rust-lang/crates.io-index" 3966 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 3967 dependencies = [ 3968 "proc-macro2", 3969 "quote", 3970 + "syn 2.0.48", 3971 ] 3972 3973 [[package]] ··· 3982 3983 [[package]] 3984 name = "time" 3985 + version = "0.3.31" 3986 source = "registry+https://github.com/rust-lang/crates.io-index" 3987 + checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 3988 dependencies = [ 3989 "deranged", 3990 + "itoa 1.0.10", 3991 + "powerfmt", 3992 "serde", 3993 "time-core", 3994 "time-macros", ··· 3996 3997 [[package]] 3998 name = "time-core" 3999 + version = "0.1.2" 4000 source = "registry+https://github.com/rust-lang/crates.io-index" 4001 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4002 4003 [[package]] 4004 name = "time-macros" 4005 + version = "0.2.16" 4006 source = "registry+https://github.com/rust-lang/crates.io-index" 4007 + checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 4008 dependencies = [ 4009 "time-core", 4010 ] ··· 4036 4037 [[package]] 4038 name = "tokio" 4039 + version = "1.35.1" 4040 source = "registry+https://github.com/rust-lang/crates.io-index" 4041 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 4042 dependencies = [ 4043 "backtrace", 4044 "bytes", ··· 4072 4073 [[package]] 4074 name = "toml" 4075 + version = "0.7.8" 4076 + source = "registry+https://github.com/rust-lang/crates.io-index" 4077 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 4078 + dependencies = [ 4079 + "serde", 4080 + "serde_spanned", 4081 + "toml_datetime", 4082 + "toml_edit 0.19.15", 4083 + ] 4084 + 4085 + [[package]] 4086 + name = "toml" 4087 + version = "0.8.8" 4088 source = "registry+https://github.com/rust-lang/crates.io-index" 4089 + checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 4090 dependencies = [ 4091 "serde", 4092 "serde_spanned", 4093 "toml_datetime", 4094 + "toml_edit 0.21.0", 4095 ] 4096 4097 [[package]] 4098 name = "toml_datetime" 4099 + version = "0.6.5" 4100 source = "registry+https://github.com/rust-lang/crates.io-index" 4101 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 4102 dependencies = [ 4103 "serde", 4104 ] 4105 4106 [[package]] 4107 name = "toml_edit" 4108 + version = "0.19.15" 4109 + source = "registry+https://github.com/rust-lang/crates.io-index" 4110 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4111 + dependencies = [ 4112 + "indexmap 2.1.0", 4113 + "serde", 4114 + "serde_spanned", 4115 + "toml_datetime", 4116 + "winnow", 4117 + ] 4118 + 4119 + [[package]] 4120 + name = "toml_edit" 4121 + version = "0.21.0" 4122 source = "registry+https://github.com/rust-lang/crates.io-index" 4123 + checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 4124 dependencies = [ 4125 + "indexmap 2.1.0", 4126 "serde", 4127 "serde_spanned", 4128 "toml_datetime", ··· 4131 4132 [[package]] 4133 name = "tracing" 4134 + version = "0.1.40" 4135 source = "registry+https://github.com/rust-lang/crates.io-index" 4136 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4137 dependencies = [ 4138 "log", 4139 "pin-project-lite", 4140 "tracing-attributes", ··· 4143 4144 [[package]] 4145 name = "tracing-attributes" 4146 + version = "0.1.27" 4147 source = "registry+https://github.com/rust-lang/crates.io-index" 4148 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4149 dependencies = [ 4150 "proc-macro2", 4151 "quote", 4152 + "syn 2.0.48", 4153 ] 4154 4155 [[package]] 4156 name = "tracing-core" 4157 + version = "0.1.32" 4158 source = "registry+https://github.com/rust-lang/crates.io-index" 4159 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4160 dependencies = [ 4161 "once_cell", 4162 "valuable", ··· 4164 4165 [[package]] 4166 name = "tracing-log" 4167 + version = "0.2.0" 4168 source = "registry+https://github.com/rust-lang/crates.io-index" 4169 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 4170 dependencies = [ 4171 "log", 4172 + "once_cell", 4173 "tracing-core", 4174 ] 4175 4176 [[package]] 4177 name = "tracing-subscriber" 4178 + version = "0.3.18" 4179 source = "registry+https://github.com/rust-lang/crates.io-index" 4180 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 4181 dependencies = [ 4182 "matchers", 4183 "nu-ansi-term", ··· 4229 4230 [[package]] 4231 name = "typenum" 4232 + version = "1.17.0" 4233 source = "registry+https://github.com/rust-lang/crates.io-index" 4234 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4235 4236 [[package]] 4237 name = "unicode-bidi" 4238 + version = "0.3.15" 4239 source = "registry+https://github.com/rust-lang/crates.io-index" 4240 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 4241 4242 [[package]] 4243 name = "unicode-ident" 4244 + version = "1.0.12" 4245 source = "registry+https://github.com/rust-lang/crates.io-index" 4246 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 4247 4248 [[package]] 4249 name = "unicode-normalization" ··· 4278 4279 [[package]] 4280 name = "url" 4281 + version = "2.5.0" 4282 source = "registry+https://github.com/rust-lang/crates.io-index" 4283 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4284 dependencies = [ 4285 "form_urlencoded", 4286 "idna", ··· 4289 ] 4290 4291 [[package]] 4292 + name = "urlencoding" 4293 + version = "2.1.3" 4294 + source = "registry+https://github.com/rust-lang/crates.io-index" 4295 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 4296 + 4297 + [[package]] 4298 name = "utf-8" 4299 version = "0.7.6" 4300 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4308 4309 [[package]] 4310 name = "uuid" 4311 + version = "1.7.0" 4312 source = "registry+https://github.com/rust-lang/crates.io-index" 4313 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 4314 dependencies = [ 4315 + "getrandom 0.2.12", 4316 ] 4317 4318 [[package]] ··· 4388 4389 [[package]] 4390 name = "walkdir" 4391 + version = "2.4.0" 4392 source = "registry+https://github.com/rust-lang/crates.io-index" 4393 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4394 dependencies = [ 4395 "same-file", 4396 "winapi-util", ··· 4410 4411 [[package]] 4412 name = "wasm-bindgen" 4413 + version = "0.2.90" 4414 source = "registry+https://github.com/rust-lang/crates.io-index" 4415 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 4416 dependencies = [ 4417 "cfg-if", 4418 "wasm-bindgen-macro", ··· 4420 4421 [[package]] 4422 name = "wasm-bindgen-backend" 4423 + version = "0.2.90" 4424 source = "registry+https://github.com/rust-lang/crates.io-index" 4425 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 4426 dependencies = [ 4427 "bumpalo", 4428 "log", 4429 "once_cell", 4430 "proc-macro2", 4431 "quote", 4432 + "syn 2.0.48", 4433 "wasm-bindgen-shared", 4434 ] 4435 4436 [[package]] 4437 name = "wasm-bindgen-futures" 4438 + version = "0.4.40" 4439 source = "registry+https://github.com/rust-lang/crates.io-index" 4440 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 4441 dependencies = [ 4442 "cfg-if", 4443 "js-sys", ··· 4447 4448 [[package]] 4449 name = "wasm-bindgen-macro" 4450 + version = "0.2.90" 4451 source = "registry+https://github.com/rust-lang/crates.io-index" 4452 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 4453 dependencies = [ 4454 "quote", 4455 "wasm-bindgen-macro-support", ··· 4457 4458 [[package]] 4459 name = "wasm-bindgen-macro-support" 4460 + version = "0.2.90" 4461 source = "registry+https://github.com/rust-lang/crates.io-index" 4462 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 4463 dependencies = [ 4464 "proc-macro2", 4465 "quote", 4466 + "syn 2.0.48", 4467 "wasm-bindgen-backend", 4468 "wasm-bindgen-shared", 4469 ] 4470 4471 [[package]] 4472 name = "wasm-bindgen-shared" 4473 + version = "0.2.90" 4474 source = "registry+https://github.com/rust-lang/crates.io-index" 4475 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 4476 4477 [[package]] 4478 name = "web-sys" 4479 + version = "0.3.67" 4480 source = "registry+https://github.com/rust-lang/crates.io-index" 4481 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 4482 dependencies = [ 4483 "js-sys", 4484 "wasm-bindgen", ··· 4528 "pango-sys", 4529 "pkg-config", 4530 "soup2-sys", 4531 + "system-deps 6.2.0", 4532 ] 4533 4534 [[package]] ··· 4593 4594 [[package]] 4595 name = "winapi-util" 4596 + version = "0.1.6" 4597 source = "registry+https://github.com/rust-lang/crates.io-index" 4598 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4599 dependencies = [ 4600 "winapi", 4601 ] ··· 4650 dependencies = [ 4651 "windows-metadata", 4652 "windows-tokens", 4653 + ] 4654 + 4655 + [[package]] 4656 + name = "windows-core" 4657 + version = "0.52.0" 4658 + source = "registry+https://github.com/rust-lang/crates.io-index" 4659 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4660 + dependencies = [ 4661 + "windows-targets 0.52.0", 4662 ] 4663 4664 [[package]] ··· 4708 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4709 dependencies = [ 4710 "windows-targets 0.48.5", 4711 + ] 4712 + 4713 + [[package]] 4714 + name = "windows-sys" 4715 + version = "0.52.0" 4716 + source = "registry+https://github.com/rust-lang/crates.io-index" 4717 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4718 + dependencies = [ 4719 + "windows-targets 0.52.0", 4720 ] 4721 4722 [[package]] ··· 4750 ] 4751 4752 [[package]] 4753 + name = "windows-targets" 4754 + version = "0.52.0" 4755 + source = "registry+https://github.com/rust-lang/crates.io-index" 4756 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 4757 + dependencies = [ 4758 + "windows_aarch64_gnullvm 0.52.0", 4759 + "windows_aarch64_msvc 0.52.0", 4760 + "windows_i686_gnu 0.52.0", 4761 + "windows_i686_msvc 0.52.0", 4762 + "windows_x86_64_gnu 0.52.0", 4763 + "windows_x86_64_gnullvm 0.52.0", 4764 + "windows_x86_64_msvc 0.52.0", 4765 + ] 4766 + 4767 + [[package]] 4768 name = "windows-tokens" 4769 version = "0.39.0" 4770 source = "registry+https://github.com/rust-lang/crates.io-index" 4771 checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 4772 4773 [[package]] 4774 + name = "windows-version" 4775 + version = "0.1.0" 4776 + source = "registry+https://github.com/rust-lang/crates.io-index" 4777 + checksum = "75aa004c988e080ad34aff5739c39d0312f4684699d6d71fc8a198d057b8b9b4" 4778 + dependencies = [ 4779 + "windows-targets 0.52.0", 4780 + ] 4781 + 4782 + [[package]] 4783 name = "windows_aarch64_gnullvm" 4784 version = "0.42.2" 4785 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4792 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4793 4794 [[package]] 4795 + name = "windows_aarch64_gnullvm" 4796 + version = "0.52.0" 4797 + source = "registry+https://github.com/rust-lang/crates.io-index" 4798 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 4799 + 4800 + [[package]] 4801 name = "windows_aarch64_msvc" 4802 version = "0.37.0" 4803 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4822 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4823 4824 [[package]] 4825 + name = "windows_aarch64_msvc" 4826 + version = "0.52.0" 4827 + source = "registry+https://github.com/rust-lang/crates.io-index" 4828 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 4829 + 4830 + [[package]] 4831 name = "windows_i686_gnu" 4832 version = "0.37.0" 4833 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4852 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4853 4854 [[package]] 4855 + name = "windows_i686_gnu" 4856 + version = "0.52.0" 4857 + source = "registry+https://github.com/rust-lang/crates.io-index" 4858 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 4859 + 4860 + [[package]] 4861 name = "windows_i686_msvc" 4862 version = "0.37.0" 4863 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4880 version = "0.48.5" 4881 source = "registry+https://github.com/rust-lang/crates.io-index" 4882 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4883 + 4884 + [[package]] 4885 + name = "windows_i686_msvc" 4886 + version = "0.52.0" 4887 + source = "registry+https://github.com/rust-lang/crates.io-index" 4888 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4889 4890 [[package]] 4891 name = "windows_x86_64_gnu" ··· 4912 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4913 4914 [[package]] 4915 + name = "windows_x86_64_gnu" 4916 + version = "0.52.0" 4917 + source = "registry+https://github.com/rust-lang/crates.io-index" 4918 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4919 + 4920 + [[package]] 4921 name = "windows_x86_64_gnullvm" 4922 version = "0.42.2" 4923 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4930 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4931 4932 [[package]] 4933 + name = "windows_x86_64_gnullvm" 4934 + version = "0.52.0" 4935 + source = "registry+https://github.com/rust-lang/crates.io-index" 4936 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4937 + 4938 + [[package]] 4939 name = "windows_x86_64_msvc" 4940 version = "0.37.0" 4941 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4960 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4961 4962 [[package]] 4963 + name = "windows_x86_64_msvc" 4964 + version = "0.52.0" 4965 + source = "registry+https://github.com/rust-lang/crates.io-index" 4966 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4967 + 4968 + [[package]] 4969 name = "winnow" 4970 + version = "0.5.35" 4971 source = "registry+https://github.com/rust-lang/crates.io-index" 4972 + checksum = "1931d78a9c73861da0134f453bb1f790ce49b2e30eba8410b4b79bac72b46a2d" 4973 dependencies = [ 4974 "memchr", 4975 ] 4976 4977 [[package]] 4978 name = "winreg" 4979 + version = "0.51.0" 4980 source = "registry+https://github.com/rust-lang/crates.io-index" 4981 + checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" 4982 dependencies = [ 4983 "cfg-if", 4984 + "windows-sys 0.48.0", 4985 ] 4986 4987 [[package]] 4988 name = "wry" 4989 + version = "0.24.7" 4990 source = "registry+https://github.com/rust-lang/crates.io-index" 4991 + checksum = "6ad85d0e067359e409fcb88903c3eac817c392e5d638258abfb3da5ad8ba6fc4" 4992 dependencies = [ 4993 "base64 0.13.1", 4994 "block", ··· 5002 "gtk", 5003 "html5ever", 5004 "http", 5005 + "kuchikiki", 5006 "libc", 5007 "log", 5008 "objc", ··· 5045 5046 [[package]] 5047 name = "xattr" 5048 + version = "1.3.1" 5049 source = "registry+https://github.com/rust-lang/crates.io-index" 5050 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 5051 dependencies = [ 5052 "libc", 5053 + "linux-raw-sys", 5054 + "rustix", 5055 + ] 5056 + 5057 + [[package]] 5058 + name = "zerocopy" 5059 + version = "0.7.32" 5060 + source = "registry+https://github.com/rust-lang/crates.io-index" 5061 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 5062 + dependencies = [ 5063 + "zerocopy-derive", 5064 + ] 5065 + 5066 + [[package]] 5067 + name = "zerocopy-derive" 5068 + version = "0.7.32" 5069 + source = "registry+https://github.com/rust-lang/crates.io-index" 5070 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 5071 + dependencies = [ 5072 + "proc-macro2", 5073 + "quote", 5074 + "syn 2.0.48", 5075 ] 5076 5077 [[package]] 5078 name = "zeroize" 5079 + version = "1.7.0" 5080 source = "registry+https://github.com/rust-lang/crates.io-index" 5081 + checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" 5082 5083 [[package]] 5084 name = "zxcvbn" ··· 5088 dependencies = [ 5089 "derive_builder", 5090 "fancy-regex", 5091 + "itertools 0.10.5", 5092 "js-sys", 5093 "lazy_static", 5094 "quick-error",
+8 -7
pkgs/by-name/tr/treedome/package.json
··· 21 "@fontsource/noto-sans": "^5.0.8", 22 "@fontsource/noto-sans-mono": "^5.0.8", 23 "@leeoniya/ufuzzy": "^1.0.8", 24 - "@mantine/core": "^6.0.16", 25 - "@mantine/form": "^6.0.16", 26 - "@mantine/hooks": "^6.0.16", 27 - "@mantine/modals": "^6.0.16", 28 - "@mantine/notifications": "^6.0.16", 29 - "@mantine/spotlight": "^6.0.17", 30 - "@mantine/tiptap": "^6.0.16", 31 "@minoru/react-dnd-treeview": "^3.4.4", 32 "@mui/icons-material": "^5.14.0", 33 "@mui/material": "^5.14.0", ··· 41 "@tiptap/extension-subscript": "^2.0.4", 42 "@tiptap/extension-superscript": "^2.0.4", 43 "@tiptap/extension-text-align": "^2.0.4", 44 "@tiptap/extension-underline": "^2.0.4", 45 "@tiptap/pm": "^2.0.4", 46 "@tiptap/react": "^2.0.4",
··· 21 "@fontsource/noto-sans": "^5.0.8", 22 "@fontsource/noto-sans-mono": "^5.0.8", 23 "@leeoniya/ufuzzy": "^1.0.8", 24 + "@mantine/core": "^7.5.0", 25 + "@mantine/form": "^7.5.0", 26 + "@mantine/hooks": "^7.5.0", 27 + "@mantine/modals": "^7.5.0", 28 + "@mantine/notifications": "^7.5.0", 29 + "@mantine/spotlight": "^7.5.0", 30 + "@mantine/tiptap": "^7.5.0", 31 "@minoru/react-dnd-treeview": "^3.4.4", 32 "@mui/icons-material": "^5.14.0", 33 "@mui/material": "^5.14.0", ··· 41 "@tiptap/extension-subscript": "^2.0.4", 42 "@tiptap/extension-superscript": "^2.0.4", 43 "@tiptap/extension-text-align": "^2.0.4", 44 + "@tiptap/extension-typography": "^2.2.3", 45 "@tiptap/extension-underline": "^2.0.4", 46 "@tiptap/pm": "^2.0.4", 47 "@tiptap/react": "^2.0.4",
+11 -9
pkgs/by-name/tr/treedome/package.nix
··· 2 , cargo-tauri 3 , cmake 4 , dbus 5 - , fetchFromGitea 6 , fetchYarnDeps 7 , freetype 8 , gsettings-desktop-schemas ··· 19 20 let 21 pname = "treedome"; 22 - version = "0.3.3"; 23 24 - src = fetchFromGitea { 25 - domain = "codeberg.org"; 26 - owner = "solver-orgz"; 27 - repo = "treedome"; 28 rev = version; 29 - sha256 = "sha256-492EAKCXyc4s9FvkpqppZ/GllYuYe0YsXgbRl/oQBgE="; 30 }; 31 32 frontend-build = mkYarnPackage { ··· 35 36 offlineCache = fetchYarnDeps { 37 yarnLock = "${src}/yarn.lock"; 38 - sha256 = "sha256-rV5jKKnbMutaG5o8gRKgs/uoKwbIkxAPIcx6VWG7mm4="; 39 }; 40 41 packageJSON = ./package.json; 42 43 configurePhase = '' 44 ln -s $node_modules node_modules 45 ''; 46 47 buildPhase = '' ··· 136 meta = with lib; { 137 description = "A local-first, encrypted, note taking application with tree-like structures, all written and saved in markdown"; 138 homepage = " https://codeberg.org/solver-orgz/treedome"; 139 - license = licenses.gpl3Plus; 140 platforms = [ "x86_64-linux" ]; 141 mainProgram = "treedome"; 142 maintainers = with maintainers; [ tengkuizdihar ]; 143 }; 144 }
··· 2 , cargo-tauri 3 , cmake 4 , dbus 5 + , fetchgit 6 , fetchYarnDeps 7 , freetype 8 , gsettings-desktop-schemas ··· 19 20 let 21 pname = "treedome"; 22 + version = "0.4"; 23 24 + src = fetchgit { 25 + url = "https://codeberg.org/solver-orgz/treedome"; 26 rev = version; 27 + hash = "sha256-HzpfctEeiPj5fO1LCiQDvWRuXCPJIX7RsYYr/Y/sahA="; 28 + fetchLFS = true; 29 }; 30 31 frontend-build = mkYarnPackage { ··· 34 35 offlineCache = fetchYarnDeps { 36 yarnLock = "${src}/yarn.lock"; 37 + hash = "sha256-SU020NgQY2TXbAsGzrXa0gLEt0hllsgD82S5L2lEtKU="; 38 }; 39 40 packageJSON = ./package.json; 41 42 configurePhase = '' 43 + runHook preConfigure 44 ln -s $node_modules node_modules 45 + runHook postConfigure 46 ''; 47 48 buildPhase = '' ··· 137 meta = with lib; { 138 description = "A local-first, encrypted, note taking application with tree-like structures, all written and saved in markdown"; 139 homepage = " https://codeberg.org/solver-orgz/treedome"; 140 + license = licenses.agpl3; 141 platforms = [ "x86_64-linux" ]; 142 mainProgram = "treedome"; 143 maintainers = with maintainers; [ tengkuizdihar ]; 144 + changelog = "https://codeberg.org/solver-orgz/treedome/releases/tag/${version}"; 145 }; 146 }
+2 -2
pkgs/development/libraries/openvr/default.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "openvr"; 14 - version = "1.26.7"; 15 16 src = fetchFromGitHub { 17 owner = "ValveSoftware"; 18 repo = "openvr"; 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-verVIRyDdpF8lIjjjG8GllDJG7nhqByIfs/8O5TMOyc="; 21 }; 22 23 patches = [
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "openvr"; 14 + version = "2.2.3"; 15 16 src = fetchFromGitHub { 17 owner = "ValveSoftware"; 18 repo = "openvr"; 19 rev = "v${finalAttrs.version}"; 20 + hash = "sha256-Dpl88Te+EoVasoCtwERGrYt3xK8o03h15r8IVxxPPCw="; 21 }; 22 23 patches = [
+2 -2
pkgs/development/libraries/protobuf/25.nix
··· 1 { callPackage, ... } @ args: 2 3 callPackage ./generic.nix ({ 4 - version = "25.2"; 5 - hash = "sha256-Bw7xOgcGLshFppH4qD8E48D8v21ZJRaRkK19LPSATMg="; 6 } // args)
··· 1 { callPackage, ... } @ args: 2 3 callPackage ./generic.nix ({ 4 + version = "25.3"; 5 + hash = "sha256-N/mO9a6NyC0GwxY3/u1fbFbkfH7NTkyuIti6L3bc+7k="; 6 } // args)
+10 -5
pkgs/development/python-modules/aiowebostv/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 , websockets 6 }: 7 8 buildPythonPackage rec { 9 pname = "aiowebostv"; 10 - version = "0.3.3"; 11 - format = "setuptools"; 12 13 - disabled = pythonOlder "3.8"; 14 15 src = fetchFromGitHub { 16 owner = "home-assistant-libs"; 17 - repo = pname; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-djcfYpHkhXhjQwJzHP3mNflKrcP6Yj3/z62qeXg67ss="; 20 }; 21 22 propagatedBuildInputs = [ 23 websockets
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 + , setuptools 6 , websockets 7 }: 8 9 buildPythonPackage rec { 10 pname = "aiowebostv"; 11 + version = "0.4.0"; 12 + pyproject = true; 13 14 + disabled = pythonOlder "3.9"; 15 16 src = fetchFromGitHub { 17 owner = "home-assistant-libs"; 18 + repo = "aiowebostv"; 19 rev = "refs/tags/v${version}"; 20 + hash = "sha256-VUznW+rMCZF1LbrQmEaOgdcX3YCm6Tf7yWlB8KNrjxU="; 21 }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 27 propagatedBuildInputs = [ 28 websockets
+5 -6
pkgs/development/python-modules/cachier/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "cachier"; 19 - version = "2.2.2"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "python-cachier"; 26 repo = "cachier"; 27 rev = "v${version}"; 28 - hash = "sha256-zUZqT4SIwZRqhRS/wHIzIYVULnp5aYcytCQd17T0D/4="; 29 }; 30 31 pythonRemoveDeps = [ "setuptools" ]; ··· 41 ]; 42 43 preCheck = '' 44 - substituteInPlace pytest.ini \ 45 --replace \ 46 - "--cov" \ 47 - "#--cov" 48 ''; 49 50 nativeCheckInputs = [ ··· 77 78 pythonImportsCheck = [ 79 "cachier" 80 - "cachier.scripts" 81 ]; 82 83 meta = {
··· 16 17 buildPythonPackage rec { 18 pname = "cachier"; 19 + version = "2.3.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "python-cachier"; 26 repo = "cachier"; 27 rev = "v${version}"; 28 + hash = "sha256-pgDv0ApFgaNR0amqJNwkTSPlqczOClk9D1uVzZW1B7g="; 29 }; 30 31 pythonRemoveDeps = [ "setuptools" ]; ··· 41 ]; 42 43 preCheck = '' 44 + substituteInPlace pyproject.toml \ 45 --replace \ 46 + '"--cov' \ 47 + '#"--cov' 48 ''; 49 50 nativeCheckInputs = [ ··· 77 78 pythonImportsCheck = [ 79 "cachier" 80 ]; 81 82 meta = {
+4 -4
pkgs/development/python-modules/hahomematic/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "hahomematic"; 21 - version = "2024.2.3"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.11"; ··· 27 owner = "danielperna84"; 28 repo = "hahomematic"; 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-T2318TnVzvteRADOjoTP7ulIhTyeTbCFX1/KpwWXjlI="; 31 }; 32 33 __darwinAllowLocalNetworking = true; 34 35 postPatch = '' 36 substituteInPlace pyproject.toml \ 37 - --replace "setuptools~=68.2" "setuptools" \ 38 - --replace "wheel~=0.41.2" "wheel" 39 ''; 40 41 nativeBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "hahomematic"; 21 + version = "2024.2.4"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.11"; ··· 27 owner = "danielperna84"; 28 repo = "hahomematic"; 29 rev = "refs/tags/${version}"; 30 + hash = "sha256-p1LUF57wH8zWCwPo4pYeOGRBEYCNUv8CnYBGNYzKCgE="; 31 }; 32 33 __darwinAllowLocalNetworking = true; 34 35 postPatch = '' 36 substituteInPlace pyproject.toml \ 37 + --replace-fail "setuptools~=69.1.0" "setuptools" \ 38 + --replace-fail "wheel~=0.42.0" "wheel" 39 ''; 40 41 nativeBuildInputs = [
+3
pkgs/development/python-modules/protobuf/default.nix
··· 115 homepage = "https://developers.google.com/protocol-buffers/"; 116 license = licenses.bsd3; 117 maintainers = with maintainers; [ knedlsepp ]; 118 }; 119 }
··· 115 homepage = "https://developers.google.com/protocol-buffers/"; 116 license = licenses.bsd3; 117 maintainers = with maintainers; [ knedlsepp ]; 118 + # Tests are currently failing because backend is unavailable and causes tests to fail 119 + # Progress tracked in https://github.com/NixOS/nixpkgs/pull/264902 120 + broken = lib.versionAtLeast protobuf.version "25"; 121 }; 122 }
+4 -4
pkgs/development/python-modules/requests-cache/default.nix
··· 31 32 buildPythonPackage rec { 33 pname = "requests-cache"; 34 - version = "1.1.1"; 35 - format = "pyproject"; 36 37 - disabled = pythonOlder "3.7"; 38 39 src = fetchFromGitHub { 40 owner = "requests-cache"; 41 repo = "requests-cache"; 42 rev = "refs/tags/v${version}"; 43 - hash = "sha256-0KBx6nplD/l8GZfMbyUtgHj2e4/vH9EAgdyNFm+kPyM="; 44 }; 45 46 nativeBuildInputs = [
··· 31 32 buildPythonPackage rec { 33 pname = "requests-cache"; 34 + version = "1.2.0"; 35 + pyproject = true; 36 37 + disabled = pythonOlder "3.8"; 38 39 src = fetchFromGitHub { 40 owner = "requests-cache"; 41 repo = "requests-cache"; 42 rev = "refs/tags/v${version}"; 43 + hash = "sha256-w1ptKi/MH3kGZxLMUNq/Gs6btGx+n2fG4nfQUXCXmiY="; 44 }; 45 46 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/types-redis/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "types-redis"; 10 - version = "4.6.0.20240106"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - hash = "sha256-Ky+jp4+EVZYWJC0j+G3l9BMN/Ww7g/stjOMynlA/dW4="; 16 }; 17 18 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "types-redis"; 10 + version = "4.6.0.20240218"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + hash = "sha256-UQPX5pDlx0yXShYTF7LVmsIwPPi+8kF1sEwqTDSGyzk="; 16 }; 17 18 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/types-requests/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "types-requests"; 11 - version = "2.31.0.20240125"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-A6KM4dfNVBmRSOBDsgec3e0i1nldGaLCpnkaSyteLrU="; 17 }; 18 19 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "types-requests"; 11 + version = "2.31.0.20240218"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-8XIduoOFlY9QSlOGJAuS3kc04EegikB1HBZU0awzScU="; 17 }; 18 19 nativeBuildInputs = [
+3 -3
pkgs/development/tools/build-managers/bloop/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "bloop"; 13 - version = "1.5.13"; 14 15 platform = 16 if stdenv.isLinux && stdenv.isx86_64 then "x86_64-pc-linux" ··· 35 bloop-binary = fetchurl rec { 36 url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; 37 sha256 = 38 - if stdenv.isLinux && stdenv.isx86_64 then "sha256-OgOkkQ2uv1/mutlajfnbKe9YUtWCilaiWef6fZ7m0Qk=" 39 - else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-Xp0FF8/5NQG14OhZgQ7PZTyDC5hNG9q5Qq5q3JlQxA0=" 40 else throw "unsupported platform"; 41 }; 42
··· 10 11 stdenv.mkDerivation rec { 12 pname = "bloop"; 13 + version = "1.5.15"; 14 15 platform = 16 if stdenv.isLinux && stdenv.isx86_64 then "x86_64-pc-linux" ··· 35 bloop-binary = fetchurl rec { 36 url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; 37 sha256 = 38 + if stdenv.isLinux && stdenv.isx86_64 then "sha256-bC43GBIGxelSx++I1ElPd8twrr5nDaZHC2G0OCsx5xQ=" 39 + else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-lgWXdhDjE8lIzbUkWFJV3k+muUZaSpsc9n6PuuXv1hc=" 40 else throw "unsupported platform"; 41 }; 42
+2 -2
pkgs/games/endless-sky/default.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "endless-sky"; 16 - version = "0.10.4"; 17 18 src = fetchFromGitHub { 19 owner = "endless-sky"; 20 repo = "endless-sky"; 21 rev = "v${version}"; 22 - sha256 = "sha256-VTg8H6umq9yMMP274StIJfEZZvUFDILiMKhioam58QE="; 23 }; 24 25 patches = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "endless-sky"; 16 + version = "0.10.6"; 17 18 src = fetchFromGitHub { 19 owner = "endless-sky"; 20 repo = "endless-sky"; 21 rev = "v${version}"; 22 + sha256 = "sha256-3mprmW6K8pYs7J2q71fohsh9fZEP2RZjN1rSWUAwbhg="; 23 }; 24 25 patches = [
+4 -4
pkgs/os-specific/linux/kernel/zen-kernels.nix
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 - version = "6.7.4"; #zen 8 suffix = "zen1"; #zen 9 - sha256 = "1vk2xfvqx4kplngw8n2c4xxqwxjyiij0dvbynm2y35nf04l6p9bx"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 - version = "6.7.4"; #lqx 15 suffix = "lqx1"; #lqx 16 - sha256 = "1p8vgz3qsrpv1fbil2nkdlfzq4mfmjy9kvh264ckmwn4iay0kxmw"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // {
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 + version = "6.7.5"; #zen 8 suffix = "zen1"; #zen 9 + sha256 = "1f7czivsmqzhcbckcyi058lqwa4qds03fmylqa1wa4sybrq4diri"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 + version = "6.7.5"; #lqx 15 suffix = "lqx1"; #lqx 16 + sha256 = "1vkcl0ll7m60mmd1hbdqi9sj7gq513cadfxaamxzb9isq2c1wa03"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // {
+3 -3
pkgs/servers/minio/default.nix
··· 21 in 22 buildGoModule rec { 23 pname = "minio"; 24 - version = "2024-02-14T21-36-02Z"; 25 26 src = fetchFromGitHub { 27 owner = "minio"; 28 repo = "minio"; 29 rev = "RELEASE.${version}"; 30 - hash = "sha256-tXLdK5+akZ1ChUqs8i7Qb32E7ZoMfHk1kgDS+8RiRH4="; 31 }; 32 33 - vendorHash = "sha256-4/fW2mKzgwcRHigksAsk7bXS0Leak8rZdzoQ6mK2ksA="; 34 35 doCheck = false; 36
··· 21 in 22 buildGoModule rec { 23 pname = "minio"; 24 + version = "2024-02-17T01-15-57Z"; 25 26 src = fetchFromGitHub { 27 owner = "minio"; 28 repo = "minio"; 29 rev = "RELEASE.${version}"; 30 + hash = "sha256-lgNQamHw5sI6rGy8TP62Vb5esUOivPkyWj15EOPsjkM="; 31 }; 32 33 + vendorHash = "sha256-0EymK7jQhr+NJDg1zgWpcniV5zZ33Av6zpq0IDuWw7M="; 34 35 doCheck = false; 36
+2 -2
pkgs/tools/admin/wander/default.nix
··· 2 3 buildGoModule rec { 4 pname = "wander"; 5 - version = "1.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "robinovitch61"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-7/5NcrS5VR3APhv5LEpd4U0+E4PwM9cU9bb1q6UDfoI="; 12 }; 13 14 vendorHash = "sha256-0S8tzP5yNUrH6fp+v7nbUPTMWzYXyGw+ZNcXkSN+tWY=";
··· 2 3 buildGoModule rec { 4 pname = "wander"; 5 + version = "1.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "robinovitch61"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-1+bKdIAWdg/+5FBDbtvjDV0xpZ5jot3y6F+KuLO9WVk="; 12 }; 13 14 vendorHash = "sha256-0S8tzP5yNUrH6fp+v7nbUPTMWzYXyGw+ZNcXkSN+tWY=";
+2 -2
pkgs/tools/misc/cloc/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }: 2 3 - let version = "1.98"; 4 in stdenv.mkDerivation { 5 pname = "cloc"; 6 inherit version; ··· 9 owner = "AlDanial"; 10 repo = "cloc"; 11 rev = "v${version}"; 12 - sha256 = "sha256-OTzIzLgE9sdbHZUSARSbVrxD95dW8gPiM8tvMvqm1Bg="; 13 }; 14 15 setSourceRoot = ''
··· 1 { lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }: 2 3 + let version = "2.00"; 4 in stdenv.mkDerivation { 5 pname = "cloc"; 6 inherit version; ··· 9 owner = "AlDanial"; 10 repo = "cloc"; 11 rev = "v${version}"; 12 + sha256 = "sha256-GZvrsVuPLg09yOlDmdHNZ0QLXoftgSYMFkn6PLf1/Pw="; 13 }; 14 15 setSourceRoot = ''
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2024-02-14"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-yNfshjwsLAM6P8vCyia/h1oXg6Asg7sKkBCcGtQNGHo="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2024-02-17"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-rOhNN/kdwAtSq27P1vpTG/nLSyID/OKrPbDQOxdbgIw="; 16 }; 17 18 nativeBuildInputs = [
+1 -3
pkgs/top-level/all-packages.nix
··· 24427 24428 protobuf = protobuf_24; 24429 24430 - protobuf_25 = callPackage ../development/libraries/protobuf/25.nix { 24431 - abseil-cpp = abseil-cpp_202308; 24432 - }; 24433 protobuf_24 = callPackage ../development/libraries/protobuf/24.nix { }; 24434 protobuf_23 = callPackage ../development/libraries/protobuf/23.nix { }; 24435 protobuf_21 = callPackage ../development/libraries/protobuf/21.nix {
··· 24427 24428 protobuf = protobuf_24; 24429 24430 + protobuf_25 = callPackage ../development/libraries/protobuf/25.nix { }; 24431 protobuf_24 = callPackage ../development/libraries/protobuf/24.nix { }; 24432 protobuf_23 = callPackage ../development/libraries/protobuf/23.nix { }; 24433 protobuf_21 = callPackage ../development/libraries/protobuf/21.nix {