lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
4fe3cac6 0ae697ba

+2050 -1016
+1 -1
nixos/modules/services/admin/pgadmin.nix
··· 168 168 echo "$PW" 169 169 # Retype password: 170 170 echo "$PW" 171 - ) | ${cfg.package}/bin/pgadmin4-setup 171 + ) | ${cfg.package}/bin/pgadmin4-cli setup-db 172 172 ''; 173 173 174 174 restartTriggers = [
+5
nixos/tests/pgadmin4.nix
··· 55 55 machine.wait_until_succeeds("curl -sS localhost:5051/login | grep \"<title>pgAdmin 4</title>\" > /dev/null") 56 56 # check for missing support files (css, js etc). Should catch not-generated files during build. See e.g. https://github.com/NixOS/nixpkgs/pull/229184 57 57 machine.succeed("wget -nv --level=1 --spider --recursive localhost:5051/login") 58 + # test idempotenceny 59 + machine.systemctl("restart pgadmin.service") 60 + machine.wait_for_unit("pgadmin") 61 + machine.wait_until_succeeds("curl -sS localhost:5051") 62 + machine.wait_until_succeeds("curl -sS localhost:5051/login | grep \"<title>pgAdmin 4</title>\" > /dev/null") 58 63 59 64 # pgadmin4 module saves the configuration to /etc/pgadmin/config_system.py 60 65 # pgadmin4-desktopmode tries to read that as well. This normally fails with a PermissionError, as the config file
+3 -3
pkgs/applications/editors/vscode/extensions/default.nix
··· 2306 2306 }; 2307 2307 }; 2308 2308 2309 - # Keep pkgs/tools/typesetting/typst-preview/default.nix in sync with this 2309 + # Keep pkgs/by-name/ty/typst-preview/package.nix in sync with this 2310 2310 # extension 2311 2311 mgt19937.typst-preview = buildVscodeMarketplaceExtension { 2312 2312 mktplcRef = { 2313 2313 name = "typst-preview"; 2314 2314 publisher = "mgt19937"; 2315 - version = "0.9.2"; 2316 - sha256 = "sha256-/2ZD5LOQ1vTIKab2qX+5AqNqaRs90MNz1jUMDaV1wUY="; 2315 + version = "0.10.5"; 2316 + sha256 = "sha256-cR5Pyokzmf8dNlsUkcwwfPx3jtJCQHRwTpYk78ovgrM="; 2317 2317 }; 2318 2318 2319 2319 buildInputs = [
+4 -2
pkgs/applications/emulators/vice/default.nix
··· 4 4 , bison 5 5 , flex 6 6 , perl 7 + , curl 7 8 , libpng 8 9 , giflib 9 10 , alsa-lib ··· 25 26 26 27 stdenv.mkDerivation rec { 27 28 pname = "vice"; 28 - version = "3.7.1"; 29 + version = "3.8"; 29 30 30 31 src = fetchurl { 31 32 url = "mirror://sourceforge/vice-emu/vice-${version}.tar.gz"; 32 - sha256 = "sha256-fjgR5gJNsGmL+8MhuzJFckRriFPQG0Bz8JhllXsMq5g="; 33 + sha256 = "sha256-HX3E0PK7zCqHG7lU/0pd9jBI3qnBb18em8gmD6QaEAQ="; 33 34 }; 34 35 35 36 nativeBuildInputs = [ ··· 43 44 44 45 buildInputs = [ 45 46 alsa-lib 47 + curl 46 48 giflib 47 49 gtk3 48 50 glew
+4 -5
pkgs/applications/misc/prevo/data.nix pkgs/by-name/pr/prevo-data/package.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, prevo-tools }: 2 2 3 - stdenv.mkDerivation rec { 3 + stdenv.mkDerivation { 4 4 pname = "prevo-data"; 5 5 version = "2020-03-08"; 6 6 ··· 24 24 cp prevo.db $out/share/prevo/ 25 25 ''; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 description = 29 29 "data for offline version of the Esperanto dictionary Reta Vortaro"; 30 30 longDescription = '' ··· 34 34 This package provides the ReVo database for the prevo command line application. 35 35 ''; 36 36 homepage = "https://github.com/bpeel/revo"; 37 - license = licenses.gpl2Only; 38 - maintainers = [ maintainers.das-g ]; 39 - platforms = platforms.linux; 37 + license = lib.licenses.gpl2Only; 38 + maintainers = with lib.maintainers; [ das-g ehmry ]; 40 39 }; 41 40 }
+8 -6
pkgs/applications/misc/prevo/default.nix pkgs/by-name/pr/prevo/package.nix
··· 1 - { lib, symlinkJoin, prevo-tools, prevo-data, makeWrapper }: 1 + { lib, symlinkJoin, man, prevo-tools, prevo-data, makeWrapper }: 2 2 3 3 symlinkJoin rec { 4 4 name = "prevo-${version}"; ··· 10 10 11 11 postBuild = '' 12 12 wrapProgram $out/bin/prevo \ 13 - --prefix XDG_DATA_DIRS : "${prevo-data}/share" 13 + --prefix PATH ":" "${lib.makeBinPath [ man ]}" \ 14 + --suffix XDG_DATA_DIRS : "${prevo-data}/share" \ 15 + 14 16 ''; 15 17 16 - meta = with lib; { 18 + meta = { 17 19 description = "offline version of the Esperanto dictionary Reta Vortaro"; 18 20 longDescription = '' 19 21 PReVo is the "portable" ReVo, i.e., the offline version 20 22 of the Esperanto dictionary Reta Vortaro. 21 23 ''; 22 24 homepage = "https://github.com/bpeel/prevodb"; 23 - license = licenses.gpl2Only; 24 - maintainers = [ maintainers.das-g ]; 25 - platforms = platforms.linux; 25 + license = lib.licenses.gpl2Only; 26 + mainProgram = "prevo"; 27 + maintainers = with lib.maintainers; [ das-g ehmry ]; 26 28 }; 27 29 }
+5 -4
pkgs/applications/misc/prevo/tools.nix pkgs/by-name/pr/prevo-tools/package.nix
··· 19 19 installShellCompletion --bash src/prevo-completion 20 20 ''; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = 24 24 "CLI tools for the offline version of the Esperanto dictionary Reta Vortaro"; 25 25 longDescription = '' ··· 31 31 database for this application or for the Android app of the same name. 32 32 ''; 33 33 homepage = "https://github.com/bpeel/prevodb"; 34 - license = licenses.gpl2Only; 35 - maintainers = [ maintainers.das-g ]; 36 - platforms = platforms.linux; 34 + license = lib.licenses.gpl2Only; 35 + mainProgram = "prevo"; 36 + maintainers = with lib.maintainers; [ das-g ehmry ]; 37 + platforms = lib.platforms.unix; 37 38 }; 38 39 }
+2 -2
pkgs/applications/misc/tilemaker/default.nix
··· 3 3 4 4 stdenv.mkDerivation (finalAttrs: { 5 5 pname = "tilemaker"; 6 - version = "2.4.0"; 6 + version = "3.0.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "systemed"; 10 10 repo = "tilemaker"; 11 11 rev = "v${finalAttrs.version}"; 12 - hash = "sha256-xpOF/0qFuvTUWQ1I8x/gy5qSLKzSgcQahS47PG+bTRA="; 12 + hash = "sha256-rB5oP03yaIzklwkGsIeS9ELbHOY9AObwjRrK9HBQFI4="; 13 13 }; 14 14 15 15 postPatch = ''
+4 -5
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub 1 + { lib, ocaml, buildDunePackage, fetchFromGitHub 2 2 , extlib, ocamlfuse, gapi-ocaml, ocaml_sqlite3 3 3 , tiny_httpd 4 4 , ounit2 ··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "google-drive-ocamlfuse"; 9 - version = "0.7.30"; 10 - duneVersion = "3"; 9 + version = "0.7.31"; 11 10 12 11 src = fetchFromGitHub { 13 12 owner = "astrada"; 14 13 repo = "google-drive-ocamlfuse"; 15 14 rev = "v${version}"; 16 - sha256 = "sha256-DWG0nBiqeVHaYQfGzU43gGwL4m8X61x5/RT5jD4AwYA="; 15 + hash = "sha256-4Fs4e4rXSeumaMDXRqGLpPuFs6DC8dmkywGaBqR5sFA="; 17 16 }; 18 17 19 - doCheck = true; 18 + doCheck = lib.versionOlder ocaml.version "5.0"; 20 19 checkInputs = [ ounit2 ]; 21 20 22 21 buildInputs = [ extlib ocamlfuse gapi-ocaml ocaml_sqlite3 tiny_httpd ];
+3 -3
pkgs/applications/version-management/ungit/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "ungit"; 8 - version = "1.5.24"; 8 + version = "1.5.25"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "FredrikNoren"; 12 12 repo = "ungit"; 13 13 rev = "v${version}"; 14 - hash = "sha256-4hDg153CVZidmnIGUwxfzL45Yt+GlMyepfMLJbcjdqo="; 14 + hash = "sha256-mVBE8HW5dhi00BbVX00rgvc4JtyrTsbina18EzSUcuM="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-Z/vPqJ70NqjABKKa8r24t0sWoPYRVwxH02BNr1yCVNQ="; 17 + npmDepsHash = "sha256-DftAovQPKi4hLeqAGCVN8u/9eC4mkTxTJ2WxxOHbkgM="; 18 18 19 19 env = { 20 20 ELECTRON_SKIP_BINARY_DOWNLOAD = true;
+2 -2
pkgs/applications/virtualization/crun/default.nix
··· 39 39 in 40 40 stdenv.mkDerivation rec { 41 41 pname = "crun"; 42 - version = "1.12"; 42 + version = "1.13"; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "containers"; 46 46 repo = pname; 47 47 rev = version; 48 - hash = "sha256-61E/71axlN5H1KpAkWFm7jOETlmmy2qh7R+JrVZlMIQ="; 48 + hash = "sha256-doGZ1rHHXDRClrTEXYJcU6AqlBTanpNpV6EIbxQgcXY="; 49 49 fetchSubmodules = true; 50 50 }; 51 51
+8 -7
pkgs/applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , meson 5 - , ninja 4 + , cmake 6 5 , pkg-config 7 6 , wayland-scanner 8 7 , makeWrapper 9 8 , wrapQtAppsHook 10 9 , hyprland-protocols 10 + , hyprlang 11 11 , libdrm 12 12 , mesa 13 13 , pipewire ··· 19 19 , wayland 20 20 , wayland-protocols 21 21 , hyprland 22 + , hyprpicker 22 23 , slurp 23 24 }: 24 25 stdenv.mkDerivation (self: { 25 26 pname = "xdg-desktop-portal-hyprland"; 26 - version = "1.2.6"; 27 + version = "1.3.1"; 27 28 28 29 src = fetchFromGitHub { 29 30 owner = "hyprwm"; 30 31 repo = "xdg-desktop-portal-hyprland"; 31 32 rev = "v${self.version}"; 32 - hash = "sha256-VRr5Xc4S/VPr/gU3fiOD3vSIL2+GJ+LUrmFTWTwnTz4="; 33 + hash = "sha256-wP611tGIWBA4IXShWbah7TxqdbvhfcfT2vnXalX/qzk="; 33 34 }; 34 35 35 36 nativeBuildInputs = [ 36 - meson 37 - ninja 37 + cmake 38 38 pkg-config 39 39 wayland-scanner 40 40 makeWrapper ··· 43 43 44 44 buildInputs = [ 45 45 hyprland-protocols 46 + hyprlang 46 47 libdrm 47 48 mesa 48 49 pipewire ··· 63 64 --prefix PATH ":" ${lib.makeBinPath [slurp hyprland]} 64 65 65 66 wrapProgramShell $out/libexec/xdg-desktop-portal-hyprland \ 66 - --prefix PATH ":" ${lib.makeBinPath [(placeholder "out")]} 67 + --prefix PATH ":" ${lib.makeBinPath [(placeholder "out") hyprpicker]} 67 68 ''; 68 69 69 70 meta = with lib; {
+45
pkgs/by-name/fo/formatjson5/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "formatjson5"; 10 + version = "0.2.6"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "google"; 14 + repo = "json5format"; 15 + # Not tagged, see Cargo.toml. 16 + rev = "056829990bab4ddc78c65a0b45215708c91b8628"; 17 + hash = "sha256-Lredw/Fez+2U2++ShZcKTFCv8Qpai9YUvqvpGjG5W0o="; 18 + }; 19 + 20 + cargoHash = "sha256-zPgaZPDyNVPmBXz6QwOYnmh/sbJ8aPST8znLMfIWejk="; 21 + 22 + buildInputs = lib.optionals stdenv.isDarwin [ 23 + darwin.apple_sdk.frameworks.Security 24 + ]; 25 + 26 + cargoBuildFlags = [ 27 + "--example formatjson5" 28 + ]; 29 + 30 + postInstall = 31 + let 32 + cargoTarget = rustPlatform.cargoInstallHook.targetSubdirectory; 33 + in 34 + '' 35 + install -D target/${cargoTarget}/release/examples/formatjson5 $out/bin/formatjson5 36 + ''; 37 + 38 + meta = { 39 + description = "A JSON5 formatter"; 40 + homepage = "https://github.com/google/json5format"; 41 + license = lib.licenses.bsd3; 42 + mainProgram = "formatjson5"; 43 + maintainers = with lib.maintainers; [ katexochen ]; 44 + }; 45 + }
+30
pkgs/by-name/hy/hyprlang/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + }: 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "hyprlang"; 9 + version = "0.2.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "hyprwm"; 13 + repo = "hyprlang"; 14 + rev = "v${finalAttrs.version}"; 15 + hash = "sha256-KjAYC3sMyfipCHpkj0XSPw/C9KdCNlWtguQW5rEUiqo="; 16 + }; 17 + 18 + nativeBuildInputs = [cmake]; 19 + 20 + outputs = ["out" "dev"]; 21 + 22 + doCheck = true; 23 + 24 + meta = with lib; { 25 + homepage = "https://github.com/hyprwm/hyprlang"; 26 + description = "The official implementation library for the hypr config language"; 27 + license = licenses.gpl3Plus; 28 + platforms = platforms.linux; 29 + }; 30 + })
+56
pkgs/by-name/sc/scalpel/package.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , stdenv 4 + , autoconf 5 + , automake 6 + , libtool 7 + , tre 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "scalpel"; 12 + version = "2.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "sleuthkit"; 16 + repo = "scalpel"; 17 + rev = "35e1367ef2232c0f4883c92ec2839273c821dd39"; 18 + hash = "sha256-0lqU1CAcWXNw9WFa29BXla1mvABlzWV+hcozZyfR0oE="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + autoconf 23 + automake 24 + libtool 25 + tre 26 + ]; 27 + 28 + postPatch = '' 29 + sed -i \ 30 + -e 's|#define\s*SCALPEL_DEFAULT_CONFIG_FILE\s.*"scalpel.conf"|#define SCALPEL_DEFAULT_CONFIG_FILE "${placeholder "out"}/share/scalpel/scalpel.conf"|' \ 31 + src/scalpel.h 32 + ''; 33 + 34 + env.CXXFLAGS = "-std=c++14" + lib.optionalString stdenv.cc.isClang " -Wno-error=reserved-user-defined-literal"; 35 + 36 + preConfigure = '' 37 + ./bootstrap 38 + ''; 39 + 40 + configureFlags = [ 41 + "--with-pic" 42 + ]; 43 + 44 + postInstall = '' 45 + install -Dm644 scalpel.conf -t $out/share/scalpel/ 46 + ''; 47 + 48 + meta = with lib; { 49 + homepage = "https://github.com/sleuthkit/scalpel"; 50 + description = "Recover files based on their headers, footers and internal data structures, based on Foremost"; 51 + mainProgram = "scalpel"; 52 + maintainers = with maintainers; [ shard7 ]; 53 + platforms = platforms.unix; 54 + license = with licenses; [ asl20 ]; 55 + }; 56 + })
+583 -558
pkgs/by-name/ty/typst-preview/Cargo.lock
··· 54 54 55 55 [[package]] 56 56 name = "anstream" 57 - version = "0.6.4" 57 + version = "0.6.7" 58 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 59 + checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" 60 60 dependencies = [ 61 61 "anstyle", 62 62 "anstyle-parse", ··· 74 74 75 75 [[package]] 76 76 name = "anstyle-parse" 77 - version = "0.2.2" 77 + version = "0.2.3" 78 78 source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" 79 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 80 80 dependencies = [ 81 81 "utf8parse", 82 82 ] 83 83 84 84 [[package]] 85 85 name = "anstyle-query" 86 - version = "1.0.0" 86 + version = "1.0.2" 87 87 source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 88 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 89 89 dependencies = [ 90 - "windows-sys", 90 + "windows-sys 0.52.0", 91 91 ] 92 92 93 93 [[package]] 94 94 name = "anstyle-wincon" 95 - version = "3.0.1" 95 + version = "3.0.2" 96 96 source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 97 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 98 98 dependencies = [ 99 99 "anstyle", 100 - "windows-sys", 100 + "windows-sys 0.52.0", 101 101 ] 102 102 103 103 [[package]] 104 104 name = "anyhow" 105 - version = "1.0.75" 105 + version = "1.0.79" 106 106 source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 107 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 108 108 109 109 [[package]] 110 110 name = "append-only-vec" ··· 162 162 163 163 [[package]] 164 164 name = "base64" 165 - version = "0.21.5" 165 + version = "0.21.7" 166 166 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 167 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 168 168 169 169 [[package]] 170 170 name = "base64-serde" ··· 178 178 179 179 [[package]] 180 180 name = "biblatex" 181 - version = "0.8.1" 181 + version = "0.9.1" 182 182 source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "2e41df82f0d1c4919d946bb0c7c3d179b6071246243d308a1bdee6cfecee3bc7" 183 + checksum = "1a3638fc10f65e552d53318e042cefa542418633451163228fcbfb1a58a0ca85" 184 184 dependencies = [ 185 185 "numerals", 186 186 "paste", ··· 313 313 314 314 [[package]] 315 315 name = "chinese-number" 316 - version = "0.7.3" 316 + version = "0.7.7" 317 317 source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "d9cec9efb10b00914876c7e7b1fdaec572b888443b4046cd11ba91eb8c5a1ccb" 318 + checksum = "49fccaef6346f6d6a741908d3b79fe97c2debe2fbb5eb3a7d00ff5981b52bb6c" 319 319 dependencies = [ 320 320 "chinese-variant", 321 321 "enum-ordinalize", ··· 325 325 326 326 [[package]] 327 327 name = "chinese-variant" 328 - version = "1.0.9" 328 + version = "1.1.3" 329 329 source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "aeea139b89efab957972956e5d3e4efb66a6c261f726abf6911040cc8ef700f7" 330 + checksum = "7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b" 331 331 332 332 [[package]] 333 333 name = "chrono" ··· 339 339 "iana-time-zone", 340 340 "num-traits", 341 341 "serde", 342 - "windows-targets", 342 + "windows-targets 0.48.5", 343 343 ] 344 344 345 345 [[package]] ··· 371 371 372 372 [[package]] 373 373 name = "citationberg" 374 - version = "0.1.0" 374 + version = "0.1.1" 375 375 source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "4c857faf24e89710f105b623c174508070a9e11e056a749f251ca4c56f59ad88" 376 + checksum = "c15a0bf8014b266d11f20451dc9202d8d26180ffd8b094d73ecbe74d821f01fb" 377 377 dependencies = [ 378 378 "quick-xml 0.28.2", 379 379 "serde", ··· 381 381 382 382 [[package]] 383 383 name = "clap" 384 - version = "4.4.7" 384 + version = "4.4.16" 385 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" 386 + checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445" 387 387 dependencies = [ 388 388 "clap_builder", 389 389 "clap_derive", ··· 391 391 392 392 [[package]] 393 393 name = "clap_builder" 394 - version = "4.4.7" 394 + version = "4.4.16" 395 395 source = "registry+https://github.com/rust-lang/crates.io-index" 396 - checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" 396 + checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb" 397 397 dependencies = [ 398 398 "anstream", 399 399 "anstyle", ··· 403 403 404 404 [[package]] 405 405 name = "clap_complete" 406 - version = "4.4.4" 406 + version = "4.4.6" 407 407 source = "registry+https://github.com/rust-lang/crates.io-index" 408 - checksum = "bffe91f06a11b4b9420f62103854e90867812cd5d01557f853c5ee8e791b12ae" 408 + checksum = "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd" 409 409 dependencies = [ 410 410 "clap", 411 411 ] ··· 419 419 "heck", 420 420 "proc-macro2", 421 421 "quote", 422 - "syn 2.0.38", 422 + "syn 2.0.48", 423 423 ] 424 424 425 425 [[package]] ··· 430 430 431 431 [[package]] 432 432 name = "clap_mangen" 433 - version = "0.2.15" 433 + version = "0.2.17" 434 434 source = "registry+https://github.com/rust-lang/crates.io-index" 435 - checksum = "d3be86020147691e1d2ef58f75346a3d4d94807bfc473e377d52f09f0f7d77f7" 435 + checksum = "4a7c2b01e5e779c19f46a94bbd398f33ae63b0f78c07108351fb4536845bb7fd" 436 436 dependencies = [ 437 437 "clap", 438 438 "roff", ··· 468 468 469 469 [[package]] 470 470 name = "comemo" 471 - version = "0.3.0" 471 + version = "0.3.1" 472 472 source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "28a097f142aeb5b03af73595536cd55f5d649fca4d656379aac86b3af133cf92" 473 + checksum = "bf5705468fa80602ee6a5f9318306e6c428bffd53e43209a78bc05e6e667c6f4" 474 474 dependencies = [ 475 475 "comemo-macros", 476 - "siphasher", 476 + "siphasher 1.0.0", 477 477 ] 478 478 479 479 [[package]] 480 480 name = "comemo-macros" 481 - version = "0.3.0" 481 + version = "0.3.1" 482 482 source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "168cc09917f6a014a4cf6ed166d1b541a20a768c60f9cc348f25203ee8312940" 483 + checksum = "54af6ac68ada2d161fa9cc1ab52676228e340866d094d6542107e74b82acc095" 484 484 dependencies = [ 485 485 "proc-macro2", 486 486 "quote", 487 - "syn 1.0.109", 487 + "syn 2.0.48", 488 488 ] 489 489 490 490 [[package]] 491 491 name = "core-foundation" 492 - version = "0.9.3" 492 + version = "0.9.4" 493 493 source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 494 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 495 495 dependencies = [ 496 496 "core-foundation-sys", 497 497 "libc", ··· 499 499 500 500 [[package]] 501 501 name = "core-foundation-sys" 502 - version = "0.8.4" 502 + version = "0.8.6" 503 503 source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 504 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 505 505 506 506 [[package]] 507 507 name = "core_maths" ··· 514 514 515 515 [[package]] 516 516 name = "cpufeatures" 517 - version = "0.2.11" 517 + version = "0.2.12" 518 518 source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 519 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 520 520 dependencies = [ 521 521 "libc", 522 522 ] ··· 532 532 533 533 [[package]] 534 534 name = "crossbeam-channel" 535 - version = "0.5.8" 535 + version = "0.5.11" 536 + source = "registry+https://github.com/rust-lang/crates.io-index" 537 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 538 + dependencies = [ 539 + "crossbeam-utils", 540 + ] 541 + 542 + [[package]] 543 + name = "crossbeam-deque" 544 + version = "0.8.5" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 547 + dependencies = [ 548 + "crossbeam-epoch", 549 + "crossbeam-utils", 550 + ] 551 + 552 + [[package]] 553 + name = "crossbeam-epoch" 554 + version = "0.9.18" 536 555 source = "registry+https://github.com/rust-lang/crates.io-index" 537 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 556 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 538 557 dependencies = [ 539 - "cfg-if", 540 558 "crossbeam-utils", 541 559 ] 542 560 543 561 [[package]] 544 - name = "crossbeam-utils" 545 - version = "0.8.16" 562 + name = "crossbeam-queue" 563 + version = "0.3.11" 546 564 source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 565 + checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 548 566 dependencies = [ 549 - "cfg-if", 567 + "crossbeam-utils", 550 568 ] 569 + 570 + [[package]] 571 + name = "crossbeam-utils" 572 + version = "0.8.19" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 551 575 552 576 [[package]] 553 577 name = "crypto-common" ··· 601 625 "proc-macro2", 602 626 "quote", 603 627 "strsim", 604 - "syn 2.0.38", 628 + "syn 2.0.48", 605 629 ] 606 630 607 631 [[package]] ··· 612 636 dependencies = [ 613 637 "darling_core", 614 638 "quote", 615 - "syn 2.0.38", 639 + "syn 2.0.48", 616 640 ] 617 641 618 642 [[package]] 619 643 name = "data-encoding" 620 - version = "2.4.0" 644 + version = "2.5.0" 621 645 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 646 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 623 647 624 648 [[package]] 625 649 name = "data-url" 626 - version = "0.3.0" 650 + version = "0.3.1" 627 651 source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f" 652 + checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" 629 653 630 654 [[package]] 631 655 name = "deranged" 632 - version = "0.3.9" 656 + version = "0.3.11" 633 657 source = "registry+https://github.com/rust-lang/crates.io-index" 634 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 658 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 635 659 dependencies = [ 636 660 "powerfmt", 637 661 "serde", ··· 665 689 "libc", 666 690 "option-ext", 667 691 "redox_users", 668 - "windows-sys", 692 + "windows-sys 0.48.0", 669 693 ] 670 694 671 695 [[package]] ··· 676 700 dependencies = [ 677 701 "proc-macro2", 678 702 "quote", 679 - "syn 2.0.38", 703 + "syn 2.0.48", 680 704 ] 681 705 682 706 [[package]] ··· 701 725 ] 702 726 703 727 [[package]] 704 - name = "elsa" 728 + name = "either" 705 729 version = "1.9.0" 706 730 source = "registry+https://github.com/rust-lang/crates.io-index" 707 - checksum = "714f766f3556b44e7e4776ad133fcc3445a489517c25c704ace411bb14790194" 731 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 732 + 733 + [[package]] 734 + name = "elsa" 735 + version = "1.10.0" 736 + source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "d98e71ae4df57d214182a2e5cb90230c0192c6ddfcaa05c36453d46a54713e10" 708 738 dependencies = [ 709 739 "stable_deref_trait", 710 740 ] ··· 726 756 727 757 [[package]] 728 758 name = "enum-ordinalize" 729 - version = "3.1.15" 759 + version = "4.3.0" 730 760 source = "registry+https://github.com/rust-lang/crates.io-index" 731 - checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee" 761 + checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" 732 762 dependencies = [ 733 - "num-bigint", 734 - "num-traits", 763 + "enum-ordinalize-derive", 764 + ] 765 + 766 + [[package]] 767 + name = "enum-ordinalize-derive" 768 + version = "4.3.1" 769 + source = "registry+https://github.com/rust-lang/crates.io-index" 770 + checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" 771 + dependencies = [ 735 772 "proc-macro2", 736 773 "quote", 737 - "syn 2.0.38", 774 + "syn 2.0.48", 738 775 ] 739 776 740 777 [[package]] 741 778 name = "env_logger" 742 - version = "0.10.0" 779 + version = "0.10.1" 743 780 source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 781 + checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 745 782 dependencies = [ 746 783 "humantime", 747 784 "is-terminal", ··· 758 795 759 796 [[package]] 760 797 name = "errno" 761 - version = "0.3.5" 798 + version = "0.3.8" 762 799 source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 800 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 764 801 dependencies = [ 765 802 "libc", 766 - "windows-sys", 803 + "windows-sys 0.52.0", 767 804 ] 768 805 769 806 [[package]] ··· 790 827 791 828 [[package]] 792 829 name = "fdeflate" 793 - version = "0.3.0" 830 + version = "0.3.3" 794 831 source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 832 + checksum = "209098dd6dfc4445aa6111f0e98653ac323eaa4dfd212c9ca3931bf9955c31bd" 796 833 dependencies = [ 797 834 "simd-adler32", 798 835 ] 799 836 800 837 [[package]] 801 838 name = "filetime" 802 - version = "0.2.22" 839 + version = "0.2.23" 803 840 source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 841 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 805 842 dependencies = [ 806 843 "cfg-if", 807 844 "libc", 808 - "redox_syscall 0.3.5", 809 - "windows-sys", 845 + "redox_syscall", 846 + "windows-sys 0.52.0", 810 847 ] 811 848 812 849 [[package]] ··· 832 869 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 833 870 834 871 [[package]] 872 + name = "fontconfig-parser" 873 + version = "0.5.3" 874 + source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4" 876 + dependencies = [ 877 + "roxmltree", 878 + ] 879 + 880 + [[package]] 835 881 name = "fontdb" 836 882 version = "0.15.0" 837 883 source = "registry+https://github.com/rust-lang/crates.io-index" 838 884 checksum = "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38" 839 885 dependencies = [ 886 + "fontconfig-parser", 840 887 "log", 888 + "memmap2 0.8.0", 841 889 "slotmap", 842 890 "tinyvec", 843 891 "ttf-parser", ··· 860 908 861 909 [[package]] 862 910 name = "form_urlencoded" 863 - version = "1.2.0" 911 + version = "1.2.1" 864 912 source = "registry+https://github.com/rust-lang/crates.io-index" 865 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 913 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 866 914 dependencies = [ 867 915 "percent-encoding", 868 916 ] ··· 890 938 891 939 [[package]] 892 940 name = "futures" 893 - version = "0.3.29" 941 + version = "0.3.30" 894 942 source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 943 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 896 944 dependencies = [ 897 945 "futures-channel", 898 946 "futures-core", ··· 905 953 906 954 [[package]] 907 955 name = "futures-channel" 908 - version = "0.3.29" 956 + version = "0.3.30" 909 957 source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 958 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 911 959 dependencies = [ 912 960 "futures-core", 913 961 "futures-sink", ··· 915 963 916 964 [[package]] 917 965 name = "futures-core" 918 - version = "0.3.29" 966 + version = "0.3.30" 919 967 source = "registry+https://github.com/rust-lang/crates.io-index" 920 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 968 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 921 969 922 970 [[package]] 923 971 name = "futures-executor" 924 - version = "0.3.29" 972 + version = "0.3.30" 925 973 source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 974 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 927 975 dependencies = [ 928 976 "futures-core", 929 977 "futures-task", ··· 932 980 933 981 [[package]] 934 982 name = "futures-io" 935 - version = "0.3.29" 983 + version = "0.3.30" 936 984 source = "registry+https://github.com/rust-lang/crates.io-index" 937 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 985 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 938 986 939 987 [[package]] 940 988 name = "futures-macro" 941 - version = "0.3.29" 989 + version = "0.3.30" 942 990 source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 991 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 944 992 dependencies = [ 945 993 "proc-macro2", 946 994 "quote", 947 - "syn 2.0.38", 995 + "syn 2.0.48", 948 996 ] 949 997 950 998 [[package]] 951 999 name = "futures-sink" 952 - version = "0.3.29" 1000 + version = "0.3.30" 953 1001 source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1002 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 955 1003 956 1004 [[package]] 957 1005 name = "futures-task" 958 - version = "0.3.29" 1006 + version = "0.3.30" 959 1007 source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1008 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 961 1009 962 1010 [[package]] 963 1011 name = "futures-util" 964 - version = "0.3.29" 1012 + version = "0.3.30" 965 1013 source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1014 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 967 1015 dependencies = [ 968 1016 "futures-channel", 969 1017 "futures-core", ··· 998 1046 999 1047 [[package]] 1000 1048 name = "getrandom" 1001 - version = "0.2.10" 1049 + version = "0.2.12" 1002 1050 source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1051 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1004 1052 dependencies = [ 1005 1053 "cfg-if", 1006 1054 "libc", ··· 1019 1067 1020 1068 [[package]] 1021 1069 name = "gimli" 1022 - version = "0.28.0" 1070 + version = "0.28.1" 1023 1071 source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1072 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1025 1073 1026 1074 [[package]] 1027 1075 name = "git2" ··· 1038 1086 1039 1087 [[package]] 1040 1088 name = "h2" 1041 - version = "0.3.21" 1089 + version = "0.3.23" 1042 1090 source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 1091 + checksum = "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7" 1044 1092 dependencies = [ 1045 1093 "bytes", 1046 1094 "fnv", ··· 1048 1096 "futures-sink", 1049 1097 "futures-util", 1050 1098 "http", 1051 - "indexmap 1.9.3", 1099 + "indexmap 2.1.0", 1052 1100 "slab", 1053 1101 "tokio", 1054 1102 "tokio-util", ··· 1072 1120 1073 1121 [[package]] 1074 1122 name = "hashbrown" 1075 - version = "0.14.2" 1123 + version = "0.14.3" 1076 1124 source = "registry+https://github.com/rust-lang/crates.io-index" 1077 - checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 1125 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1078 1126 1079 1127 [[package]] 1080 1128 name = "hayagriva" 1081 - version = "0.4.0" 1082 - source = "git+https://github.com/Myriad-Dreamin/hayagriva.git?branch=typst.ts-v0.9.0#567dcc691ddaf0f30644c53db3f50072250fbd93" 1129 + version = "0.5.1" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "f9f97c07366b7f686741521ca63cc14baf18cea53c39b0c09873cd1d4a1b2b8c" 1083 1132 dependencies = [ 1084 1133 "biblatex", 1085 1134 "ciborium", 1086 1135 "citationberg", 1087 - "indexmap 2.0.2", 1136 + "indexmap 2.1.0", 1088 1137 "numerals", 1089 1138 "paste", 1090 - "rkyv", 1091 1139 "serde", 1092 1140 "serde_yaml", 1093 1141 "thiserror", ··· 1117 1165 1118 1166 [[package]] 1119 1167 name = "http" 1120 - version = "0.2.9" 1168 + version = "0.2.11" 1121 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1170 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1123 1171 dependencies = [ 1124 1172 "bytes", 1125 1173 "fnv", ··· 1128 1176 1129 1177 [[package]] 1130 1178 name = "http-body" 1131 - version = "0.4.5" 1179 + version = "0.4.6" 1132 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1181 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1134 1182 dependencies = [ 1135 1183 "bytes", 1136 1184 "http", ··· 1157 1205 1158 1206 [[package]] 1159 1207 name = "hyper" 1160 - version = "0.14.27" 1208 + version = "0.14.28" 1161 1209 source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1210 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1163 1211 dependencies = [ 1164 1212 "bytes", 1165 1213 "futures-channel", ··· 1172 1220 "httpdate", 1173 1221 "itoa", 1174 1222 "pin-project-lite", 1175 - "socket2 0.4.10", 1223 + "socket2", 1176 1224 "tokio", 1177 1225 "tower-service", 1178 1226 "tracing", ··· 1214 1262 1215 1263 [[package]] 1216 1264 name = "iana-time-zone" 1217 - version = "0.1.58" 1265 + version = "0.1.59" 1218 1266 source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1267 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 1220 1268 dependencies = [ 1221 1269 "android_system_properties", 1222 1270 "core-foundation-sys", ··· 1237 1285 1238 1286 [[package]] 1239 1287 name = "icu_collections" 1240 - version = "1.3.2" 1288 + version = "1.4.0" 1241 1289 source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "3907b2246e8dd5a29ead8a965e7c0c8a90e9b928e614a4279257d45c5e553e91" 1290 + checksum = "137d96353afc8544d437e8a99eceb10ab291352699573b0de5b08bda38c78c60" 1243 1291 dependencies = [ 1244 1292 "displaydoc", 1245 1293 "serde", ··· 1250 1298 1251 1299 [[package]] 1252 1300 name = "icu_locid" 1253 - version = "1.3.2" 1301 + version = "1.4.0" 1254 1302 source = "registry+https://github.com/rust-lang/crates.io-index" 1255 - checksum = "f284eb342dc49d3e9d9f3b188489d76b5d22dfb1d1a5e0d1941811253bac625c" 1303 + checksum = "5c0aa2536adc14c07e2a521e95512b75ed8ef832f0fdf9299d4a0a45d2be2a9d" 1256 1304 dependencies = [ 1257 1305 "displaydoc", 1258 1306 "litemap", ··· 1263 1311 1264 1312 [[package]] 1265 1313 name = "icu_locid_transform" 1266 - version = "1.3.2" 1314 + version = "1.4.0" 1267 1315 source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "6551daf80882d8e68eee186cc19e132d8bde1b1f059a79b93384a5ca0e8fc5e7" 1316 + checksum = "57c17d8f6524fdca4471101dd71f0a132eb6382b5d6d7f2970441cb25f6f435a" 1269 1317 dependencies = [ 1270 1318 "displaydoc", 1271 1319 "icu_locid", ··· 1277 1325 1278 1326 [[package]] 1279 1327 name = "icu_locid_transform_data" 1280 - version = "1.3.2" 1328 + version = "1.4.0" 1281 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1282 - checksum = "2a741eba5431f75eb2f1f9022d3cffabcadda6771e54fb4e77c8ba8653e4da44" 1330 + checksum = "545c6c3e8bf9580e2dafee8de6f9ec14826aaf359787789c7724f1f85f47d3dc" 1283 1331 1284 1332 [[package]] 1285 1333 name = "icu_properties" 1286 - version = "1.3.2" 1334 + version = "1.4.0" 1287 1335 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "3477ae70f8ca8dc08ff7574b5398ed0a2f2e4e6b66bdff2558a92ed67e262be1" 1336 + checksum = "976e296217453af983efa25f287a4c1da04b9a63bf1ed63719455068e4453eb5" 1289 1337 dependencies = [ 1290 1338 "displaydoc", 1291 1339 "icu_collections", ··· 1299 1347 1300 1348 [[package]] 1301 1349 name = "icu_properties_data" 1302 - version = "1.3.4" 1350 + version = "1.4.0" 1303 1351 source = "registry+https://github.com/rust-lang/crates.io-index" 1304 - checksum = "98507b488098f45eb95ef495612a2012e4d8ad6095dda86cb2f1728aa2204a60" 1352 + checksum = "f6a86c0e384532b06b6c104814f9c1b13bcd5b64409001c0d05713a1f3529d99" 1305 1353 1306 1354 [[package]] 1307 1355 name = "icu_provider" 1308 - version = "1.3.2" 1356 + version = "1.4.0" 1309 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "68acdef80034b5e35d8524e9817479d389a4f9774f3f0cbe1bf3884d80fd5934" 1358 + checksum = "ba58e782287eb6950247abbf11719f83f5d4e4a5c1f2cd490d30a334bc47c2f4" 1311 1359 dependencies = [ 1312 1360 "displaydoc", 1313 1361 "icu_locid", ··· 1324 1372 1325 1373 [[package]] 1326 1374 name = "icu_provider_adapters" 1327 - version = "1.3.2" 1375 + version = "1.4.0" 1328 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1329 - checksum = "36b380ef2d3d93b015cd0563d7e0d005cc07f82a5503716dbc191798d0079e1d" 1377 + checksum = "a229f978260da7c3aabb68cb7dc7316589936680570fe55e50fdd3f97711a4dd" 1330 1378 dependencies = [ 1331 1379 "icu_locid", 1332 1380 "icu_locid_transform", ··· 1337 1385 1338 1386 [[package]] 1339 1387 name = "icu_provider_blob" 1340 - version = "1.3.2" 1388 + version = "1.4.0" 1341 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "c31326d28c7f95a964a4f0ee86c24002da5f6db907e3bcb079949b4ff103b6a9" 1390 + checksum = "4a7202cddda672db167c6352719959e9b01cb1ca576d32fa79103f61b5a73601" 1343 1391 dependencies = [ 1344 1392 "icu_provider", 1345 1393 "postcard", 1346 1394 "serde", 1347 1395 "writeable", 1396 + "zerotrie", 1348 1397 "zerovec", 1349 1398 ] 1350 1399 1351 1400 [[package]] 1352 1401 name = "icu_provider_macros" 1353 - version = "1.3.2" 1402 + version = "1.4.0" 1354 1403 source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "2060258edfcfe32ca7058849bf0f146cb5c59aadbedf480333c0d0002f97bc99" 1404 + checksum = "d2abdd3a62551e8337af119c5899e600ca0c88ec8f23a46c60ba216c803dcf1a" 1356 1405 dependencies = [ 1357 1406 "proc-macro2", 1358 1407 "quote", 1359 - "syn 2.0.38", 1408 + "syn 2.0.48", 1360 1409 ] 1361 1410 1362 1411 [[package]] 1363 1412 name = "icu_segmenter" 1364 - version = "1.3.2" 1413 + version = "1.4.0" 1365 1414 source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "bcb3c1981ce2187a745f391a741cb14e77453325acb3b2e014b05da51c0a39f2" 1415 + checksum = "b2dc1e8f4ba33a6a4956770ac5c08570f255d6605519fb3a859a0c0a270a2f8f" 1367 1416 dependencies = [ 1368 1417 "core_maths", 1369 1418 "displaydoc", ··· 1378 1427 1379 1428 [[package]] 1380 1429 name = "icu_segmenter_data" 1381 - version = "1.3.2" 1430 + version = "1.4.0" 1382 1431 source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "9703f6713044d1c0a1335a6d78ffece4c9380582416ace6feeb608e84d279fc7" 1432 + checksum = "3673d6698dcffce08cfe8fc5da3c11c3f2c663d5d6137fd58ab2cbf44235ab46" 1384 1433 1385 1434 [[package]] 1386 1435 name = "ident_case" ··· 1390 1439 1391 1440 [[package]] 1392 1441 name = "idna" 1393 - version = "0.4.0" 1442 + version = "0.5.0" 1394 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1395 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1444 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1396 1445 dependencies = [ 1397 1446 "unicode-bidi", 1398 1447 "unicode-normalization", ··· 1433 1482 1434 1483 [[package]] 1435 1484 name = "indexmap" 1436 - version = "2.0.2" 1485 + version = "2.1.0" 1437 1486 source = "registry+https://github.com/rust-lang/crates.io-index" 1438 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 1487 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1439 1488 dependencies = [ 1440 1489 "equivalent", 1441 - "hashbrown 0.14.2", 1490 + "hashbrown 0.14.3", 1442 1491 "serde", 1443 1492 ] 1444 1493 ··· 1497 1546 1498 1547 [[package]] 1499 1548 name = "is-terminal" 1500 - version = "0.4.9" 1549 + version = "0.4.10" 1501 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1502 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1551 + checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 1503 1552 dependencies = [ 1504 1553 "hermit-abi", 1505 1554 "rustix", 1506 - "windows-sys", 1555 + "windows-sys 0.52.0", 1507 1556 ] 1508 1557 1509 1558 [[package]] ··· 1518 1567 1519 1568 [[package]] 1520 1569 name = "itoa" 1521 - version = "1.0.9" 1570 + version = "1.0.10" 1522 1571 source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1572 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1524 1573 1525 1574 [[package]] 1526 1575 name = "jobserver" ··· 1539 1588 1540 1589 [[package]] 1541 1590 name = "js-sys" 1542 - version = "0.3.64" 1591 + version = "0.3.67" 1543 1592 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1593 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1545 1594 dependencies = [ 1546 1595 "wasm-bindgen", 1547 1596 ] ··· 1583 1632 1584 1633 [[package]] 1585 1634 name = "libc" 1586 - version = "0.2.149" 1635 + version = "0.2.152" 1587 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 1637 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 1589 1638 1590 1639 [[package]] 1591 1640 name = "libgit2-sys" ··· 1606 1655 checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 1607 1656 1608 1657 [[package]] 1658 + name = "libredox" 1659 + version = "0.0.1" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1662 + dependencies = [ 1663 + "bitflags 2.4.1", 1664 + "libc", 1665 + "redox_syscall", 1666 + ] 1667 + 1668 + [[package]] 1609 1669 name = "libz-sys" 1610 - version = "1.1.12" 1670 + version = "1.1.14" 1611 1671 source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 1672 + checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050" 1613 1673 dependencies = [ 1614 1674 "cc", 1615 1675 "libc", ··· 1634 1694 1635 1695 [[package]] 1636 1696 name = "linux-raw-sys" 1637 - version = "0.4.10" 1697 + version = "0.4.12" 1638 1698 source = "registry+https://github.com/rust-lang/crates.io-index" 1639 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 1699 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1640 1700 1641 1701 [[package]] 1642 1702 name = "lipsum" ··· 1650 1710 1651 1711 [[package]] 1652 1712 name = "litemap" 1653 - version = "0.7.1" 1713 + version = "0.7.2" 1654 1714 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "77a1a2647d5b7134127971a6de0d533c49de2159167e7f259c427195f87168a1" 1715 + checksum = "f9d642685b028806386b2b6e75685faadd3eb65a85fff7df711ce18446a422da" 1716 + dependencies = [ 1717 + "serde", 1718 + ] 1656 1719 1657 1720 [[package]] 1658 1721 name = "lock_api" ··· 1661 1724 checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1662 1725 dependencies = [ 1663 1726 "autocfg", 1727 + "owning_ref", 1664 1728 "scopeguard", 1665 1729 ] 1666 1730 ··· 1672 1736 1673 1737 [[package]] 1674 1738 name = "memchr" 1675 - version = "2.6.4" 1739 + version = "2.7.1" 1676 1740 source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1741 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1678 1742 1679 1743 [[package]] 1680 1744 name = "memmap2" ··· 1687 1751 1688 1752 [[package]] 1689 1753 name = "memmap2" 1690 - version = "0.9.0" 1754 + version = "0.8.0" 1691 1755 source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "deaba38d7abf1d4cca21cc89e932e542ba2b9258664d2a9ef0e61512039c9375" 1756 + checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" 1693 1757 dependencies = [ 1694 1758 "libc", 1695 1759 ] ··· 1722 1786 1723 1787 [[package]] 1724 1788 name = "mio" 1725 - version = "0.8.9" 1789 + version = "0.8.10" 1726 1790 source = "registry+https://github.com/rust-lang/crates.io-index" 1727 - checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 1791 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 1728 1792 dependencies = [ 1729 1793 "libc", 1730 1794 "log", 1731 1795 "wasi", 1732 - "windows-sys", 1796 + "windows-sys 0.48.0", 1733 1797 ] 1734 1798 1735 1799 [[package]] ··· 1772 1836 "log", 1773 1837 "mio", 1774 1838 "walkdir", 1775 - "windows-sys", 1839 + "windows-sys 0.48.0", 1776 1840 ] 1777 1841 1778 1842 [[package]] ··· 1843 1907 1844 1908 [[package]] 1845 1909 name = "object" 1846 - version = "0.32.1" 1910 + version = "0.32.2" 1847 1911 source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1912 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1849 1913 dependencies = [ 1850 1914 "memchr", 1851 1915 ] 1852 1916 1853 1917 [[package]] 1854 1918 name = "once_cell" 1855 - version = "1.18.0" 1919 + version = "1.19.0" 1856 1920 source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1921 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1858 1922 1859 1923 [[package]] 1860 1924 name = "open" 1861 - version = "5.0.0" 1925 + version = "5.0.1" 1862 1926 source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "cfabf1927dce4d6fdf563d63328a0a506101ced3ec780ca2135747336c98cef8" 1927 + checksum = "90878fb664448b54c4e592455ad02831e23a3f7e157374a8b95654731aac7349" 1864 1928 dependencies = [ 1865 1929 "is-wsl", 1866 1930 "libc", ··· 1869 1933 1870 1934 [[package]] 1871 1935 name = "openssl" 1872 - version = "0.10.57" 1936 + version = "0.10.62" 1873 1937 source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 1938 + checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" 1875 1939 dependencies = [ 1876 1940 "bitflags 2.4.1", 1877 1941 "cfg-if", ··· 1890 1954 dependencies = [ 1891 1955 "proc-macro2", 1892 1956 "quote", 1893 - "syn 2.0.38", 1957 + "syn 2.0.48", 1894 1958 ] 1895 1959 1896 1960 [[package]] ··· 1901 1965 1902 1966 [[package]] 1903 1967 name = "openssl-sys" 1904 - version = "0.9.93" 1968 + version = "0.9.98" 1905 1969 source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 1970 + checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" 1907 1971 dependencies = [ 1908 1972 "cc", 1909 1973 "libc", ··· 1918 1982 checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1919 1983 1920 1984 [[package]] 1985 + name = "owning_ref" 1986 + version = "0.4.1" 1987 + source = "registry+https://github.com/rust-lang/crates.io-index" 1988 + checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" 1989 + dependencies = [ 1990 + "stable_deref_trait", 1991 + ] 1992 + 1993 + [[package]] 1921 1994 name = "palette" 1922 1995 version = "0.7.3" 1923 1996 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1937 2010 dependencies = [ 1938 2011 "proc-macro2", 1939 2012 "quote", 1940 - "syn 2.0.38", 2013 + "syn 2.0.48", 1941 2014 ] 1942 2015 1943 2016 [[package]] ··· 1958 2031 dependencies = [ 1959 2032 "cfg-if", 1960 2033 "libc", 1961 - "redox_syscall 0.4.1", 2034 + "redox_syscall", 1962 2035 "smallvec", 1963 - "windows-targets", 2036 + "windows-targets 0.48.5", 1964 2037 ] 1965 2038 1966 2039 [[package]] ··· 1982 2055 checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1983 2056 1984 2057 [[package]] 1985 - name = "pdf-writer" 1986 - version = "0.9.1" 1987 - source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "690874e8cf95d36ddffbdbdaad6ef8714c88bf8085996b673559389a04e38a02" 1989 - dependencies = [ 1990 - "bitflags 1.3.2", 1991 - "itoa", 1992 - "memchr", 1993 - "ryu", 1994 - ] 1995 - 1996 - [[package]] 1997 2058 name = "percent-encoding" 1998 - version = "2.3.0" 2059 + version = "2.3.1" 1999 2060 source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2061 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2001 2062 2002 2063 [[package]] 2003 2064 name = "pico-args" ··· 2018 2079 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2019 2080 2020 2081 [[package]] 2021 - name = "pixglyph" 2022 - version = "0.2.0" 2023 - source = "registry+https://github.com/rust-lang/crates.io-index" 2024 - checksum = "f67591f21f6668e63c1cd85adab066ac8a92bc7b962668dd8042197a6e4b8f8f" 2025 - dependencies = [ 2026 - "ttf-parser", 2027 - ] 2028 - 2029 - [[package]] 2030 2082 name = "pkg-config" 2031 - version = "0.3.27" 2083 + version = "0.3.28" 2032 2084 source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2085 + checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" 2034 2086 2035 2087 [[package]] 2036 2088 name = "plist" 2037 - version = "1.5.1" 2089 + version = "1.6.0" 2038 2090 source = "registry+https://github.com/rust-lang/crates.io-index" 2039 - checksum = "9a4a0cfc5fb21a09dc6af4bf834cf10d4a32fccd9e2ea468c4b1751a097487aa" 2091 + checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2040 2092 dependencies = [ 2041 2093 "base64", 2042 - "indexmap 1.9.3", 2094 + "indexmap 2.1.0", 2043 2095 "line-wrap", 2044 - "quick-xml 0.30.0", 2096 + "quick-xml 0.31.0", 2045 2097 "serde", 2046 2098 "time", 2047 2099 ] ··· 2084 2136 2085 2137 [[package]] 2086 2138 name = "proc-macro2" 2087 - version = "1.0.69" 2139 + version = "1.0.76" 2088 2140 source = "registry+https://github.com/rust-lang/crates.io-index" 2089 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 2141 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 2090 2142 dependencies = [ 2091 2143 "unicode-ident", 2092 2144 ] ··· 2132 2184 2133 2185 [[package]] 2134 2186 name = "quick-xml" 2135 - version = "0.30.0" 2187 + version = "0.31.0" 2136 2188 source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 2189 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2138 2190 dependencies = [ 2139 2191 "memchr", 2140 2192 ] 2141 2193 2142 2194 [[package]] 2143 2195 name = "quote" 2144 - version = "1.0.33" 2196 + version = "1.0.35" 2145 2197 source = "registry+https://github.com/rust-lang/crates.io-index" 2146 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2198 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2147 2199 dependencies = [ 2148 2200 "proc-macro2", 2149 2201 ] ··· 2185 2237 ] 2186 2238 2187 2239 [[package]] 2188 - name = "rctree" 2189 - version = "0.5.0" 2240 + name = "rayon" 2241 + version = "1.8.0" 2190 2242 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" 2243 + checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 2244 + dependencies = [ 2245 + "either", 2246 + "rayon-core", 2247 + ] 2192 2248 2193 2249 [[package]] 2194 - name = "redox_syscall" 2195 - version = "0.2.16" 2250 + name = "rayon-core" 2251 + version = "1.12.0" 2196 2252 source = "registry+https://github.com/rust-lang/crates.io-index" 2197 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2253 + checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 2198 2254 dependencies = [ 2199 - "bitflags 1.3.2", 2255 + "crossbeam-deque", 2256 + "crossbeam-utils", 2200 2257 ] 2201 2258 2202 2259 [[package]] 2203 - name = "redox_syscall" 2204 - version = "0.3.5" 2260 + name = "rctree" 2261 + version = "0.5.0" 2205 2262 source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2207 - dependencies = [ 2208 - "bitflags 1.3.2", 2209 - ] 2263 + checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" 2210 2264 2211 2265 [[package]] 2212 2266 name = "redox_syscall" ··· 2219 2273 2220 2274 [[package]] 2221 2275 name = "redox_users" 2222 - version = "0.4.3" 2276 + version = "0.4.4" 2223 2277 source = "registry+https://github.com/rust-lang/crates.io-index" 2224 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2278 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 2225 2279 dependencies = [ 2226 2280 "getrandom", 2227 - "redox_syscall 0.2.16", 2281 + "libredox", 2228 2282 "thiserror", 2229 2283 ] 2230 2284 ··· 2274 2328 2275 2329 [[package]] 2276 2330 name = "reqwest" 2277 - version = "0.11.22" 2331 + version = "0.11.23" 2278 2332 source = "registry+https://github.com/rust-lang/crates.io-index" 2279 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 2333 + checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 2280 2334 dependencies = [ 2281 2335 "base64", 2282 2336 "bytes", ··· 2317 2371 ] 2318 2372 2319 2373 [[package]] 2320 - name = "resvg" 2321 - version = "0.36.0" 2322 - source = "registry+https://github.com/rust-lang/crates.io-index" 2323 - checksum = "cc7980f653f9a7db31acff916a262c3b78c562919263edea29bf41a056e20497" 2324 - dependencies = [ 2325 - "gif", 2326 - "jpeg-decoder", 2327 - "log", 2328 - "pico-args", 2329 - "png", 2330 - "rgb", 2331 - "svgtypes", 2332 - "tiny-skia 0.11.2", 2333 - "usvg", 2334 - ] 2335 - 2336 - [[package]] 2337 - name = "rgb" 2338 - version = "0.8.37" 2339 - source = "registry+https://github.com/rust-lang/crates.io-index" 2340 - checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 2341 - dependencies = [ 2342 - "bytemuck", 2343 - ] 2344 - 2345 - [[package]] 2346 2374 name = "ring" 2347 - version = "0.17.5" 2375 + version = "0.17.7" 2348 2376 source = "registry+https://github.com/rust-lang/crates.io-index" 2349 - checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 2377 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 2350 2378 dependencies = [ 2351 2379 "cc", 2352 2380 "getrandom", 2353 2381 "libc", 2354 2382 "spin", 2355 2383 "untrusted", 2356 - "windows-sys", 2384 + "windows-sys 0.48.0", 2357 2385 ] 2358 2386 2359 2387 [[package]] 2360 2388 name = "rkyv" 2361 - version = "0.7.42" 2389 + version = "0.7.43" 2362 2390 source = "registry+https://github.com/rust-lang/crates.io-index" 2363 - checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" 2391 + checksum = "527a97cdfef66f65998b5f3b637c26f5a5ec09cc52a3f9932313ac645f4190f5" 2364 2392 dependencies = [ 2365 2393 "bitvec", 2366 2394 "bytecheck", 2395 + "bytes", 2367 2396 "hashbrown 0.12.3", 2368 2397 "ptr_meta", 2369 2398 "rend", ··· 2375 2404 2376 2405 [[package]] 2377 2406 name = "rkyv_derive" 2378 - version = "0.7.42" 2407 + version = "0.7.43" 2379 2408 source = "registry+https://github.com/rust-lang/crates.io-index" 2380 - checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" 2409 + checksum = "b5c462a1328c8e67e4d6dbad1eb0355dd43e8ab432c6e227a43657f16ade5033" 2381 2410 dependencies = [ 2382 2411 "proc-macro2", 2383 2412 "quote", ··· 2422 2451 2423 2452 [[package]] 2424 2453 name = "rustix" 2425 - version = "0.38.21" 2454 + version = "0.38.30" 2426 2455 source = "registry+https://github.com/rust-lang/crates.io-index" 2427 - checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 2456 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 2428 2457 dependencies = [ 2429 2458 "bitflags 2.4.1", 2430 2459 "errno", 2431 2460 "libc", 2432 2461 "linux-raw-sys", 2433 - "windows-sys", 2462 + "windows-sys 0.52.0", 2434 2463 ] 2435 2464 2436 2465 [[package]] 2437 2466 name = "rustls" 2438 - version = "0.21.8" 2467 + version = "0.21.10" 2439 2468 source = "registry+https://github.com/rust-lang/crates.io-index" 2440 - checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" 2469 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 2441 2470 dependencies = [ 2442 2471 "log", 2443 2472 "ring", ··· 2447 2476 2448 2477 [[package]] 2449 2478 name = "rustls-pemfile" 2450 - version = "1.0.3" 2479 + version = "1.0.4" 2451 2480 source = "registry+https://github.com/rust-lang/crates.io-index" 2452 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 2481 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2453 2482 dependencies = [ 2454 2483 "base64", 2455 2484 ] ··· 2488 2517 2489 2518 [[package]] 2490 2519 name = "ryu" 2491 - version = "1.0.15" 2520 + version = "1.0.16" 2492 2521 source = "registry+https://github.com/rust-lang/crates.io-index" 2493 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2522 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 2494 2523 2495 2524 [[package]] 2496 2525 name = "safemem" ··· 2509 2538 2510 2539 [[package]] 2511 2540 name = "schannel" 2512 - version = "0.1.22" 2541 + version = "0.1.23" 2513 2542 source = "registry+https://github.com/rust-lang/crates.io-index" 2514 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 2543 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2515 2544 dependencies = [ 2516 - "windows-sys", 2545 + "windows-sys 0.52.0", 2517 2546 ] 2518 2547 2519 2548 [[package]] ··· 2563 2592 2564 2593 [[package]] 2565 2594 name = "semver" 2566 - version = "1.0.20" 2595 + version = "1.0.21" 2567 2596 source = "registry+https://github.com/rust-lang/crates.io-index" 2568 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 2597 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 2569 2598 2570 2599 [[package]] 2571 2600 name = "serde" 2572 - version = "1.0.190" 2601 + version = "1.0.195" 2573 2602 source = "registry+https://github.com/rust-lang/crates.io-index" 2574 - checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" 2603 + checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" 2575 2604 dependencies = [ 2576 2605 "serde_derive", 2577 2606 ] 2578 2607 2579 2608 [[package]] 2580 2609 name = "serde_derive" 2581 - version = "1.0.190" 2610 + version = "1.0.195" 2582 2611 source = "registry+https://github.com/rust-lang/crates.io-index" 2583 - checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" 2612 + checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" 2584 2613 dependencies = [ 2585 2614 "proc-macro2", 2586 2615 "quote", 2587 - "syn 2.0.38", 2616 + "syn 2.0.48", 2588 2617 ] 2589 2618 2590 2619 [[package]] 2591 2620 name = "serde_json" 2592 - version = "1.0.108" 2621 + version = "1.0.111" 2593 2622 source = "registry+https://github.com/rust-lang/crates.io-index" 2594 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 2623 + checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" 2595 2624 dependencies = [ 2596 2625 "itoa", 2597 2626 "ryu", ··· 2600 2629 2601 2630 [[package]] 2602 2631 name = "serde_spanned" 2603 - version = "0.6.4" 2632 + version = "0.6.5" 2604 2633 source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" 2634 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 2606 2635 dependencies = [ 2607 2636 "serde", 2608 2637 ] ··· 2629 2658 "chrono", 2630 2659 "hex", 2631 2660 "indexmap 1.9.3", 2632 - "indexmap 2.0.2", 2661 + "indexmap 2.1.0", 2633 2662 "serde", 2634 2663 "serde_json", 2635 2664 "serde_with_macros", ··· 2645 2674 "darling", 2646 2675 "proc-macro2", 2647 2676 "quote", 2648 - "syn 2.0.38", 2677 + "syn 2.0.48", 2649 2678 ] 2650 2679 2651 2680 [[package]] 2652 2681 name = "serde_yaml" 2653 - version = "0.9.27" 2682 + version = "0.9.30" 2654 2683 source = "registry+https://github.com/rust-lang/crates.io-index" 2655 - checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 2684 + checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" 2656 2685 dependencies = [ 2657 - "indexmap 2.0.2", 2686 + "indexmap 2.1.0", 2658 2687 "itoa", 2659 2688 "ryu", 2660 2689 "serde", ··· 2720 2749 checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2721 2750 2722 2751 [[package]] 2752 + name = "siphasher" 2753 + version = "1.0.0" 2754 + source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" 2756 + 2757 + [[package]] 2723 2758 name = "slab" 2724 2759 version = "0.4.9" 2725 2760 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2730 2765 2731 2766 [[package]] 2732 2767 name = "slotmap" 2733 - version = "1.0.6" 2768 + version = "1.0.7" 2734 2769 source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" 2770 + checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 2736 2771 dependencies = [ 2737 2772 "version_check", 2738 2773 ] 2739 2774 2740 2775 [[package]] 2741 2776 name = "smallvec" 2742 - version = "1.11.1" 2743 - source = "registry+https://github.com/rust-lang/crates.io-index" 2744 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 2745 - 2746 - [[package]] 2747 - name = "socket2" 2748 - version = "0.4.10" 2777 + version = "1.11.2" 2749 2778 source = "registry+https://github.com/rust-lang/crates.io-index" 2750 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2751 - dependencies = [ 2752 - "libc", 2753 - "winapi", 2754 - ] 2779 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2755 2780 2756 2781 [[package]] 2757 2782 name = "socket2" ··· 2760 2785 checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 2761 2786 dependencies = [ 2762 2787 "libc", 2763 - "windows-sys", 2788 + "windows-sys 0.48.0", 2764 2789 ] 2765 2790 2766 2791 [[package]] ··· 2805 2830 2806 2831 [[package]] 2807 2832 name = "strum" 2808 - version = "0.24.1" 2833 + version = "0.25.0" 2809 2834 source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 2835 + checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 2811 2836 dependencies = [ 2812 2837 "strum_macros", 2813 2838 ] 2814 2839 2815 2840 [[package]] 2816 2841 name = "strum_macros" 2817 - version = "0.24.3" 2842 + version = "0.25.3" 2818 2843 source = "registry+https://github.com/rust-lang/crates.io-index" 2819 - checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 2844 + checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 2820 2845 dependencies = [ 2821 2846 "heck", 2822 2847 "proc-macro2", 2823 2848 "quote", 2824 2849 "rustversion", 2825 - "syn 1.0.109", 2826 - ] 2827 - 2828 - [[package]] 2829 - name = "subsetter" 2830 - version = "0.1.1" 2831 - source = "registry+https://github.com/rust-lang/crates.io-index" 2832 - checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9" 2833 - 2834 - [[package]] 2835 - name = "svg2pdf" 2836 - version = "0.9.0" 2837 - source = "registry+https://github.com/rust-lang/crates.io-index" 2838 - checksum = "363c5346967da04bf3ebb3d8bafa7f52c53c810167047904df1960eac3fc08b7" 2839 - dependencies = [ 2840 - "image", 2841 - "miniz_oxide", 2842 - "pdf-writer", 2843 - "usvg", 2850 + "syn 2.0.48", 2844 2851 ] 2845 2852 2846 2853 [[package]] ··· 2850 2857 checksum = "d71499ff2d42f59d26edb21369a308ede691421f79ebc0f001e2b1fd3a7c9e52" 2851 2858 dependencies = [ 2852 2859 "kurbo", 2853 - "siphasher", 2860 + "siphasher 0.3.11", 2854 2861 ] 2855 2862 2856 2863 [[package]] ··· 2866 2873 2867 2874 [[package]] 2868 2875 name = "syn" 2869 - version = "2.0.38" 2876 + version = "2.0.48" 2870 2877 source = "registry+https://github.com/rust-lang/crates.io-index" 2871 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 2878 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 2872 2879 dependencies = [ 2873 2880 "proc-macro2", 2874 2881 "quote", ··· 2883 2890 dependencies = [ 2884 2891 "proc-macro2", 2885 2892 "quote", 2886 - "syn 2.0.38", 2893 + "syn 2.0.48", 2887 2894 "unicode-xid", 2888 2895 ] 2889 2896 ··· 2948 2955 2949 2956 [[package]] 2950 2957 name = "tempfile" 2951 - version = "3.8.1" 2958 + version = "3.9.0" 2952 2959 source = "registry+https://github.com/rust-lang/crates.io-index" 2953 - checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2960 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 2954 2961 dependencies = [ 2955 2962 "cfg-if", 2956 2963 "fastrand", 2957 - "redox_syscall 0.4.1", 2964 + "redox_syscall", 2958 2965 "rustix", 2959 - "windows-sys", 2966 + "windows-sys 0.52.0", 2960 2967 ] 2961 2968 2962 2969 [[package]] 2963 2970 name = "termcolor" 2964 - version = "1.3.0" 2971 + version = "1.4.1" 2965 2972 source = "registry+https://github.com/rust-lang/crates.io-index" 2966 - checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" 2973 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2967 2974 dependencies = [ 2968 2975 "winapi-util", 2969 2976 ] 2970 2977 2971 2978 [[package]] 2972 2979 name = "thiserror" 2973 - version = "1.0.50" 2980 + version = "1.0.56" 2974 2981 source = "registry+https://github.com/rust-lang/crates.io-index" 2975 - checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 2982 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 2976 2983 dependencies = [ 2977 2984 "thiserror-impl", 2978 2985 ] 2979 2986 2980 2987 [[package]] 2981 2988 name = "thiserror-impl" 2982 - version = "1.0.50" 2989 + version = "1.0.56" 2983 2990 source = "registry+https://github.com/rust-lang/crates.io-index" 2984 - checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 2991 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 2985 2992 dependencies = [ 2986 2993 "proc-macro2", 2987 2994 "quote", 2988 - "syn 2.0.38", 2995 + "syn 2.0.48", 2989 2996 ] 2990 2997 2991 2998 [[package]] 2992 2999 name = "time" 2993 - version = "0.3.30" 3000 + version = "0.3.31" 2994 3001 source = "registry+https://github.com/rust-lang/crates.io-index" 2995 - checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 3002 + checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 2996 3003 dependencies = [ 2997 3004 "deranged", 2998 3005 "itoa", ··· 3012 3019 3013 3020 [[package]] 3014 3021 name = "time-macros" 3015 - version = "0.2.15" 3022 + version = "0.2.16" 3016 3023 source = "registry+https://github.com/rust-lang/crates.io-index" 3017 - checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 3024 + checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 3018 3025 dependencies = [ 3019 3026 "time-core", 3020 3027 ] 3021 3028 3022 3029 [[package]] 3023 3030 name = "tiny-skia" 3024 - version = "0.10.0" 3025 - source = "registry+https://github.com/rust-lang/crates.io-index" 3026 - checksum = "7db11798945fa5c3e5490c794ccca7c6de86d3afdd54b4eb324109939c6f37bc" 3027 - dependencies = [ 3028 - "arrayref", 3029 - "arrayvec", 3030 - "bytemuck", 3031 - "cfg-if", 3032 - "log", 3033 - "png", 3034 - "tiny-skia-path 0.10.0", 3035 - ] 3036 - 3037 - [[package]] 3038 - name = "tiny-skia" 3039 - version = "0.11.2" 3031 + version = "0.11.3" 3040 3032 source = "registry+https://github.com/rust-lang/crates.io-index" 3041 - checksum = "3b72a92a05db376db09fe6d50b7948d106011761c05a6a45e23e17ee9b556222" 3033 + checksum = "b6a067b809476893fce6a254cf285850ff69c847e6cfbade6a20b655b6c7e80d" 3042 3034 dependencies = [ 3043 3035 "arrayref", 3044 3036 "arrayvec", ··· 3046 3038 "cfg-if", 3047 3039 "log", 3048 3040 "png", 3049 - "tiny-skia-path 0.11.2", 3041 + "tiny-skia-path", 3050 3042 ] 3051 3043 3052 3044 [[package]] 3053 3045 name = "tiny-skia-path" 3054 - version = "0.10.0" 3046 + version = "0.11.3" 3055 3047 source = "registry+https://github.com/rust-lang/crates.io-index" 3056 - checksum = "2f60aa35c89ac2687ace1a2556eaaea68e8c0d47408a2e3e7f5c98a489e7281c" 3057 - dependencies = [ 3058 - "arrayref", 3059 - "bytemuck", 3060 - "strict-num", 3061 - ] 3062 - 3063 - [[package]] 3064 - name = "tiny-skia-path" 3065 - version = "0.11.2" 3066 - source = "registry+https://github.com/rust-lang/crates.io-index" 3067 - checksum = "6ac3865b9708fc7e1961a65c3a4fa55e984272f33092d3c859929f887fceb647" 3048 + checksum = "5de35e8a90052baaaf61f171680ac2f8e925a1e43ea9d2e3a00514772250e541" 3068 3049 dependencies = [ 3069 3050 "arrayref", 3070 3051 "bytemuck", ··· 3073 3054 3074 3055 [[package]] 3075 3056 name = "tinystr" 3076 - version = "0.7.4" 3057 + version = "0.7.5" 3077 3058 source = "registry+https://github.com/rust-lang/crates.io-index" 3078 - checksum = "d5d0e245e80bdc9b4e5356fc45a72184abbc3861992603f515270e9340f5a219" 3059 + checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece" 3079 3060 dependencies = [ 3080 3061 "displaydoc", 3081 3062 "serde", ··· 3099 3080 3100 3081 [[package]] 3101 3082 name = "tokio" 3102 - version = "1.33.0" 3083 + version = "1.35.1" 3103 3084 source = "registry+https://github.com/rust-lang/crates.io-index" 3104 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 3085 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 3105 3086 dependencies = [ 3106 3087 "backtrace", 3107 3088 "bytes", ··· 3111 3092 "parking_lot", 3112 3093 "pin-project-lite", 3113 3094 "signal-hook-registry", 3114 - "socket2 0.5.5", 3095 + "socket2", 3115 3096 "tokio-macros", 3116 - "windows-sys", 3097 + "windows-sys 0.48.0", 3117 3098 ] 3118 3099 3119 3100 [[package]] 3120 3101 name = "tokio-macros" 3121 - version = "2.1.0" 3102 + version = "2.2.0" 3122 3103 source = "registry+https://github.com/rust-lang/crates.io-index" 3123 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 3104 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3124 3105 dependencies = [ 3125 3106 "proc-macro2", 3126 3107 "quote", 3127 - "syn 2.0.38", 3108 + "syn 2.0.48", 3128 3109 ] 3129 3110 3130 3111 [[package]] ··· 3175 3156 3176 3157 [[package]] 3177 3158 name = "toml" 3178 - version = "0.8.6" 3159 + version = "0.8.8" 3179 3160 source = "registry+https://github.com/rust-lang/crates.io-index" 3180 - checksum = "8ff9e3abce27ee2c9a37f9ad37238c1bdd4e789c84ba37df76aa4d528f5072cc" 3161 + checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 3181 3162 dependencies = [ 3182 3163 "serde", 3183 3164 "serde_spanned", ··· 3196 3177 3197 3178 [[package]] 3198 3179 name = "toml_edit" 3199 - version = "0.20.7" 3180 + version = "0.21.0" 3200 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 3201 - checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 3182 + checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 3202 3183 dependencies = [ 3203 - "indexmap 2.0.2", 3184 + "indexmap 2.1.0", 3204 3185 "serde", 3205 3186 "serde_spanned", 3206 3187 "toml_datetime", ··· 3232 3213 dependencies = [ 3233 3214 "proc-macro2", 3234 3215 "quote", 3235 - "syn 2.0.38", 3216 + "syn 2.0.48", 3236 3217 ] 3237 3218 3238 3219 [[package]] ··· 3246 3227 3247 3228 [[package]] 3248 3229 name = "try-lock" 3249 - version = "0.2.4" 3230 + version = "0.2.5" 3250 3231 source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3232 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3252 3233 3253 3234 [[package]] 3254 3235 name = "ttf-parser" ··· 3289 3270 3290 3271 [[package]] 3291 3272 name = "typst" 3292 - version = "0.9.0" 3293 - source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.9.0#1e987a9ebad28c4f425d7fb02ca1c98aeea28ee2" 3273 + version = "0.10.0" 3274 + source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.10.0-half#cce5dc159ff7275573765143767b705ec2eb8616" 3294 3275 dependencies = [ 3295 - "base64", 3276 + "az", 3296 3277 "bitflags 2.4.1", 3297 - "bytemuck", 3298 - "comemo", 3299 - "ecow", 3300 - "flate2", 3301 - "fontdb", 3302 - "image", 3303 - "indexmap 2.0.2", 3304 - "kurbo", 3305 - "log", 3306 - "miniz_oxide", 3307 - "once_cell", 3308 - "palette", 3309 - "pdf-writer", 3310 - "pixglyph", 3311 - "regex", 3312 - "resvg", 3313 - "roxmltree", 3314 - "rustybuzz", 3315 - "serde", 3316 - "siphasher", 3317 - "stacker", 3318 - "subsetter", 3319 - "svg2pdf", 3320 - "time", 3321 - "tiny-skia 0.11.2", 3322 - "toml", 3323 - "tracing", 3324 - "ttf-parser", 3325 - "typst-macros", 3326 - "typst-syntax", 3327 - "unicode-ident", 3328 - "unicode-math-class", 3329 - "unicode-properties", 3330 - "unicode-segmentation", 3331 - "unscanny", 3332 - "usvg", 3333 - "wasmi", 3334 - "xmlparser", 3335 - "xmlwriter", 3336 - "xmp-writer", 3337 - ] 3338 - 3339 - [[package]] 3340 - name = "typst-library" 3341 - version = "0.9.0" 3342 - source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.9.0#1e987a9ebad28c4f425d7fb02ca1c98aeea28ee2" 3343 - dependencies = [ 3344 - "az", 3345 3278 "chinese-number", 3346 3279 "ciborium", 3347 3280 "comemo", 3348 3281 "csv", 3349 3282 "ecow", 3283 + "fontdb", 3350 3284 "hayagriva", 3351 3285 "hypher", 3352 3286 "icu_properties", ··· 3354 3288 "icu_provider_adapters", 3355 3289 "icu_provider_blob", 3356 3290 "icu_segmenter", 3357 - "indexmap 2.0.2", 3291 + "image", 3292 + "indexmap 2.1.0", 3358 3293 "kurbo", 3359 3294 "lipsum", 3360 3295 "log", 3361 3296 "once_cell", 3297 + "palette", 3298 + "rayon", 3299 + "regex", 3362 3300 "roxmltree", 3363 3301 "rustybuzz", 3302 + "serde", 3364 3303 "serde_json", 3365 3304 "serde_yaml", 3305 + "siphasher 1.0.0", 3366 3306 "smallvec", 3307 + "stacker", 3367 3308 "syntect", 3368 3309 "time", 3369 3310 "toml", 3370 3311 "tracing", 3371 3312 "ttf-parser", 3372 3313 "typed-arena", 3373 - "typst", 3314 + "typst-macros", 3315 + "typst-syntax", 3374 3316 "unicode-bidi", 3375 3317 "unicode-math-class", 3376 3318 "unicode-script", 3377 3319 "unicode-segmentation", 3320 + "usvg", 3321 + "wasmi", 3378 3322 ] 3379 3323 3380 3324 [[package]] 3381 3325 name = "typst-macros" 3382 - version = "0.9.0" 3383 - source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.9.0#1e987a9ebad28c4f425d7fb02ca1c98aeea28ee2" 3326 + version = "0.10.0" 3327 + source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.10.0-half#cce5dc159ff7275573765143767b705ec2eb8616" 3384 3328 dependencies = [ 3385 3329 "heck", 3386 3330 "proc-macro2", 3387 3331 "quote", 3388 - "syn 2.0.38", 3332 + "syn 2.0.48", 3389 3333 ] 3390 3334 3391 3335 [[package]] 3392 3336 name = "typst-preview" 3393 - version = "0.9.2" 3337 + version = "0.10.5" 3394 3338 dependencies = [ 3395 3339 "anyhow", 3396 3340 "chrono", ··· 3412 3356 "same-file", 3413 3357 "serde", 3414 3358 "serde_json", 3415 - "siphasher", 3416 - "tiny-skia 0.10.0", 3359 + "siphasher 1.0.0", 3360 + "tiny-skia", 3417 3361 "tokio", 3418 3362 "tokio-tungstenite", 3419 3363 "typst", 3420 - "typst-library", 3421 3364 "typst-ts-compiler", 3422 3365 "typst-ts-core", 3423 3366 "typst-ts-svg-exporter", ··· 3427 3370 3428 3371 [[package]] 3429 3372 name = "typst-syntax" 3430 - version = "0.9.0" 3431 - source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.9.0#1e987a9ebad28c4f425d7fb02ca1c98aeea28ee2" 3373 + version = "0.10.0" 3374 + source = "git+https://github.com/Myriad-Dreamin/typst.git?branch=typst.ts-v0.10.0-half#cce5dc159ff7275573765143767b705ec2eb8616" 3432 3375 dependencies = [ 3433 3376 "comemo", 3434 3377 "ecow", ··· 3437 3380 "tracing", 3438 3381 "unicode-ident", 3439 3382 "unicode-math-class", 3383 + "unicode-script", 3440 3384 "unicode-segmentation", 3441 3385 "unscanny", 3442 3386 ] 3443 3387 3444 3388 [[package]] 3445 3389 name = "typst-ts-compiler" 3446 - version = "0.4.0-rc9" 3447 - source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=7871cb8e7135351951d8fe5e63eccb1883e8342e#7871cb8e7135351951d8fe5e63eccb1883e8342e" 3390 + version = "0.4.2-rc5" 3391 + source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=54471328e55df43479ff56dc44920f803ccf1fe4#54471328e55df43479ff56dc44920f803ccf1fe4" 3448 3392 dependencies = [ 3449 3393 "append-only-vec", 3450 3394 "base64", ··· 3453 3397 "comemo", 3454 3398 "dirs", 3455 3399 "dissimilar", 3456 - "ecow", 3457 3400 "flate2", 3401 + "fontdb", 3458 3402 "fst", 3459 3403 "hex", 3460 - "indexmap 2.0.2", 3404 + "indexmap 2.1.0", 3461 3405 "instant", 3462 3406 "log", 3463 - "memmap2 0.9.0", 3464 3407 "nohash-hasher", 3465 3408 "notify", 3466 3409 "once_cell", ··· 3471 3414 "serde", 3472 3415 "serde_json", 3473 3416 "sha2", 3417 + "strum", 3474 3418 "tar", 3475 3419 "tokio", 3476 3420 "typst", 3477 - "typst-library", 3478 3421 "typst-ts-core", 3479 3422 "typst-ts-svg-exporter", 3480 3423 "walkdir", ··· 3482 3425 3483 3426 [[package]] 3484 3427 name = "typst-ts-core" 3485 - version = "0.4.0-rc9" 3486 - source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=7871cb8e7135351951d8fe5e63eccb1883e8342e#7871cb8e7135351951d8fe5e63eccb1883e8342e" 3428 + version = "0.4.2-rc5" 3429 + source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=54471328e55df43479ff56dc44920f803ccf1fe4#54471328e55df43479ff56dc44920f803ccf1fe4" 3487 3430 dependencies = [ 3488 3431 "base64", 3489 3432 "base64-serde", 3433 + "bitvec", 3490 3434 "byteorder", 3491 3435 "comemo", 3436 + "crossbeam-queue", 3492 3437 "ecow", 3438 + "elsa", 3493 3439 "flate2", 3494 3440 "fxhash", 3495 3441 "hex", 3496 3442 "log", 3497 3443 "once_cell", 3444 + "owning_ref", 3445 + "parking_lot", 3498 3446 "path-clean", 3447 + "rayon", 3499 3448 "rkyv", 3500 3449 "rustc-hash", 3501 3450 "serde", 3502 3451 "serde_json", 3503 3452 "serde_with", 3504 3453 "sha2", 3505 - "siphasher", 3454 + "siphasher 1.0.0", 3506 3455 "svgtypes", 3507 - "tiny-skia 0.11.2", 3508 - "tiny-skia-path 0.11.2", 3456 + "tiny-skia", 3457 + "tiny-skia-path", 3509 3458 "ttf-parser", 3510 3459 "typst", 3511 3460 "xmlparser", ··· 3513 3462 3514 3463 [[package]] 3515 3464 name = "typst-ts-svg-exporter" 3516 - version = "0.4.0-rc9" 3517 - source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=7871cb8e7135351951d8fe5e63eccb1883e8342e#7871cb8e7135351951d8fe5e63eccb1883e8342e" 3465 + version = "0.4.2-rc5" 3466 + source = "git+https://github.com/Myriad-Dreamin/typst.ts?rev=54471328e55df43479ff56dc44920f803ccf1fe4#54471328e55df43479ff56dc44920f803ccf1fe4" 3518 3467 dependencies = [ 3519 3468 "base64", 3520 3469 "comemo", 3521 3470 "log", 3522 - "siphasher", 3523 - "tiny-skia 0.11.2", 3471 + "once_cell", 3472 + "rayon", 3473 + "siphasher 1.0.0", 3474 + "tiny-skia", 3524 3475 "typst", 3525 3476 "typst-ts-core", 3526 3477 ] 3527 3478 3528 3479 [[package]] 3529 3480 name = "unic-langid" 3530 - version = "0.9.1" 3481 + version = "0.9.4" 3531 3482 source = "registry+https://github.com/rust-lang/crates.io-index" 3532 - checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 3483 + checksum = "238722e6d794ed130f91f4ea33e01fcff4f188d92337a21297892521c72df516" 3533 3484 dependencies = [ 3534 3485 "unic-langid-impl", 3535 3486 ] 3536 3487 3537 3488 [[package]] 3538 3489 name = "unic-langid-impl" 3539 - version = "0.9.1" 3490 + version = "0.9.4" 3540 3491 source = "registry+https://github.com/rust-lang/crates.io-index" 3541 - checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 3492 + checksum = "4bd55a2063fdea4ef1f8633243a7b0524cbeef1905ae04c31a1c9b9775c55bc6" 3542 3493 dependencies = [ 3543 3494 "serde", 3544 3495 "tinystr", ··· 3555 3506 3556 3507 [[package]] 3557 3508 name = "unicode-bidi" 3558 - version = "0.3.13" 3509 + version = "0.3.14" 3559 3510 source = "registry+https://github.com/rust-lang/crates.io-index" 3560 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3511 + checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 3561 3512 3562 3513 [[package]] 3563 3514 name = "unicode-bidi-mirroring" ··· 3630 3581 3631 3582 [[package]] 3632 3583 name = "unsafe-libyaml" 3633 - version = "0.2.9" 3584 + version = "0.2.10" 3634 3585 source = "registry+https://github.com/rust-lang/crates.io-index" 3635 - checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 3586 + checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" 3636 3587 3637 3588 [[package]] 3638 3589 name = "unscanny" ··· 3648 3599 3649 3600 [[package]] 3650 3601 name = "url" 3651 - version = "2.4.1" 3602 + version = "2.5.0" 3652 3603 source = "registry+https://github.com/rust-lang/crates.io-index" 3653 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 3604 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3654 3605 dependencies = [ 3655 3606 "form_urlencoded", 3656 3607 "idna", ··· 3686 3637 "log", 3687 3638 "roxmltree", 3688 3639 "simplecss", 3689 - "siphasher", 3640 + "siphasher 0.3.11", 3690 3641 "svgtypes", 3691 3642 "usvg-tree", 3692 3643 ] ··· 3716 3667 "rctree", 3717 3668 "strict-num", 3718 3669 "svgtypes", 3719 - "tiny-skia-path 0.11.2", 3670 + "tiny-skia-path", 3720 3671 ] 3721 3672 3722 3673 [[package]] ··· 3727 3678 3728 3679 [[package]] 3729 3680 name = "utf8_iter" 3730 - version = "1.0.3" 3681 + version = "1.0.4" 3731 3682 source = "registry+https://github.com/rust-lang/crates.io-index" 3732 - checksum = "64a8922555b9500e3d865caed19330172cd67cbf82203f1a3311d8c305cc9f33" 3683 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3733 3684 3734 3685 [[package]] 3735 3686 name = "utf8parse" ··· 3739 3690 3740 3691 [[package]] 3741 3692 name = "uuid" 3742 - version = "1.5.0" 3693 + version = "1.6.1" 3743 3694 source = "registry+https://github.com/rust-lang/crates.io-index" 3744 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 3695 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 3745 3696 3746 3697 [[package]] 3747 3698 name = "vcpkg" ··· 3751 3702 3752 3703 [[package]] 3753 3704 name = "vergen" 3754 - version = "8.2.5" 3705 + version = "8.2.7" 3755 3706 source = "registry+https://github.com/rust-lang/crates.io-index" 3756 - checksum = "85e7dc29b3c54a2ea67ef4f953d5ec0c4085035c0ae2d325be1c0d2144bd9f16" 3707 + checksum = "f2066fbfd3bfbadab28cab8bae840c9e74917bc6deeef2ed0781f2eb2fdfafdb" 3757 3708 dependencies = [ 3758 3709 "anyhow", 3759 3710 "git2", ··· 3795 3746 3796 3747 [[package]] 3797 3748 name = "wasm-bindgen" 3798 - version = "0.2.87" 3749 + version = "0.2.90" 3799 3750 source = "registry+https://github.com/rust-lang/crates.io-index" 3800 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 3751 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 3801 3752 dependencies = [ 3802 3753 "cfg-if", 3803 3754 "wasm-bindgen-macro", ··· 3805 3756 3806 3757 [[package]] 3807 3758 name = "wasm-bindgen-backend" 3808 - version = "0.2.87" 3759 + version = "0.2.90" 3809 3760 source = "registry+https://github.com/rust-lang/crates.io-index" 3810 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 3761 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 3811 3762 dependencies = [ 3812 3763 "bumpalo", 3813 3764 "log", 3814 3765 "once_cell", 3815 3766 "proc-macro2", 3816 3767 "quote", 3817 - "syn 2.0.38", 3768 + "syn 2.0.48", 3818 3769 "wasm-bindgen-shared", 3819 3770 ] 3820 3771 3821 3772 [[package]] 3822 3773 name = "wasm-bindgen-futures" 3823 - version = "0.4.37" 3774 + version = "0.4.40" 3824 3775 source = "registry+https://github.com/rust-lang/crates.io-index" 3825 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 3776 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 3826 3777 dependencies = [ 3827 3778 "cfg-if", 3828 3779 "js-sys", ··· 3832 3783 3833 3784 [[package]] 3834 3785 name = "wasm-bindgen-macro" 3835 - version = "0.2.87" 3786 + version = "0.2.90" 3836 3787 source = "registry+https://github.com/rust-lang/crates.io-index" 3837 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 3788 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 3838 3789 dependencies = [ 3839 3790 "quote", 3840 3791 "wasm-bindgen-macro-support", ··· 3842 3793 3843 3794 [[package]] 3844 3795 name = "wasm-bindgen-macro-support" 3845 - version = "0.2.87" 3796 + version = "0.2.90" 3846 3797 source = "registry+https://github.com/rust-lang/crates.io-index" 3847 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 3798 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 3848 3799 dependencies = [ 3849 3800 "proc-macro2", 3850 3801 "quote", 3851 - "syn 2.0.38", 3802 + "syn 2.0.48", 3852 3803 "wasm-bindgen-backend", 3853 3804 "wasm-bindgen-shared", 3854 3805 ] 3855 3806 3856 3807 [[package]] 3857 3808 name = "wasm-bindgen-shared" 3858 - version = "0.2.87" 3809 + version = "0.2.90" 3859 3810 source = "registry+https://github.com/rust-lang/crates.io-index" 3860 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 3811 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 3861 3812 3862 3813 [[package]] 3863 3814 name = "wasmi" 3864 - version = "0.31.0" 3815 + version = "0.31.1" 3865 3816 source = "registry+https://github.com/rust-lang/crates.io-index" 3866 - checksum = "1f341edb80021141d4ae6468cbeefc50798716a347d4085c3811900049ea8945" 3817 + checksum = "acfc1e384a36ca532d070a315925887247f3c7e23567e23e0ac9b1c5d6b8bf76" 3867 3818 dependencies = [ 3868 3819 "smallvec", 3869 3820 "spin", ··· 3901 3852 3902 3853 [[package]] 3903 3854 name = "web-sys" 3904 - version = "0.3.64" 3855 + version = "0.3.67" 3905 3856 source = "registry+https://github.com/rust-lang/crates.io-index" 3906 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 3857 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 3907 3858 dependencies = [ 3908 3859 "js-sys", 3909 3860 "wasm-bindgen", ··· 3911 3862 3912 3863 [[package]] 3913 3864 name = "webpki-roots" 3914 - version = "0.25.2" 3865 + version = "0.25.3" 3915 3866 source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 3867 + checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 3917 3868 3918 3869 [[package]] 3919 3870 name = "weezl" ··· 3954 3905 3955 3906 [[package]] 3956 3907 name = "windows-core" 3957 - version = "0.51.1" 3908 + version = "0.52.0" 3958 3909 source = "registry+https://github.com/rust-lang/crates.io-index" 3959 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 3910 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 3960 3911 dependencies = [ 3961 - "windows-targets", 3912 + "windows-targets 0.52.0", 3962 3913 ] 3963 3914 3964 3915 [[package]] ··· 3967 3918 source = "registry+https://github.com/rust-lang/crates.io-index" 3968 3919 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3969 3920 dependencies = [ 3970 - "windows-targets", 3921 + "windows-targets 0.48.5", 3922 + ] 3923 + 3924 + [[package]] 3925 + name = "windows-sys" 3926 + version = "0.52.0" 3927 + source = "registry+https://github.com/rust-lang/crates.io-index" 3928 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3929 + dependencies = [ 3930 + "windows-targets 0.52.0", 3971 3931 ] 3972 3932 3973 3933 [[package]] ··· 3976 3936 source = "registry+https://github.com/rust-lang/crates.io-index" 3977 3937 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3978 3938 dependencies = [ 3979 - "windows_aarch64_gnullvm", 3980 - "windows_aarch64_msvc", 3981 - "windows_i686_gnu", 3982 - "windows_i686_msvc", 3983 - "windows_x86_64_gnu", 3984 - "windows_x86_64_gnullvm", 3985 - "windows_x86_64_msvc", 3939 + "windows_aarch64_gnullvm 0.48.5", 3940 + "windows_aarch64_msvc 0.48.5", 3941 + "windows_i686_gnu 0.48.5", 3942 + "windows_i686_msvc 0.48.5", 3943 + "windows_x86_64_gnu 0.48.5", 3944 + "windows_x86_64_gnullvm 0.48.5", 3945 + "windows_x86_64_msvc 0.48.5", 3946 + ] 3947 + 3948 + [[package]] 3949 + name = "windows-targets" 3950 + version = "0.52.0" 3951 + source = "registry+https://github.com/rust-lang/crates.io-index" 3952 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 3953 + dependencies = [ 3954 + "windows_aarch64_gnullvm 0.52.0", 3955 + "windows_aarch64_msvc 0.52.0", 3956 + "windows_i686_gnu 0.52.0", 3957 + "windows_i686_msvc 0.52.0", 3958 + "windows_x86_64_gnu 0.52.0", 3959 + "windows_x86_64_gnullvm 0.52.0", 3960 + "windows_x86_64_msvc 0.52.0", 3986 3961 ] 3987 3962 3988 3963 [[package]] ··· 3992 3967 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3993 3968 3994 3969 [[package]] 3970 + name = "windows_aarch64_gnullvm" 3971 + version = "0.52.0" 3972 + source = "registry+https://github.com/rust-lang/crates.io-index" 3973 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 3974 + 3975 + [[package]] 3995 3976 name = "windows_aarch64_msvc" 3996 3977 version = "0.48.5" 3997 3978 source = "registry+https://github.com/rust-lang/crates.io-index" 3998 3979 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3999 3980 4000 3981 [[package]] 3982 + name = "windows_aarch64_msvc" 3983 + version = "0.52.0" 3984 + source = "registry+https://github.com/rust-lang/crates.io-index" 3985 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 3986 + 3987 + [[package]] 4001 3988 name = "windows_i686_gnu" 4002 3989 version = "0.48.5" 4003 3990 source = "registry+https://github.com/rust-lang/crates.io-index" 4004 3991 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4005 3992 4006 3993 [[package]] 3994 + name = "windows_i686_gnu" 3995 + version = "0.52.0" 3996 + source = "registry+https://github.com/rust-lang/crates.io-index" 3997 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 3998 + 3999 + [[package]] 4007 4000 name = "windows_i686_msvc" 4008 4001 version = "0.48.5" 4009 4002 source = "registry+https://github.com/rust-lang/crates.io-index" 4010 4003 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4011 4004 4012 4005 [[package]] 4006 + name = "windows_i686_msvc" 4007 + version = "0.52.0" 4008 + source = "registry+https://github.com/rust-lang/crates.io-index" 4009 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4010 + 4011 + [[package]] 4013 4012 name = "windows_x86_64_gnu" 4014 4013 version = "0.48.5" 4015 4014 source = "registry+https://github.com/rust-lang/crates.io-index" 4016 4015 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4017 4016 4018 4017 [[package]] 4018 + name = "windows_x86_64_gnu" 4019 + version = "0.52.0" 4020 + source = "registry+https://github.com/rust-lang/crates.io-index" 4021 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4022 + 4023 + [[package]] 4019 4024 name = "windows_x86_64_gnullvm" 4020 4025 version = "0.48.5" 4021 4026 source = "registry+https://github.com/rust-lang/crates.io-index" 4022 4027 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4028 + 4029 + [[package]] 4030 + name = "windows_x86_64_gnullvm" 4031 + version = "0.52.0" 4032 + source = "registry+https://github.com/rust-lang/crates.io-index" 4033 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4023 4034 4024 4035 [[package]] 4025 4036 name = "windows_x86_64_msvc" ··· 4028 4039 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4029 4040 4030 4041 [[package]] 4042 + name = "windows_x86_64_msvc" 4043 + version = "0.52.0" 4044 + source = "registry+https://github.com/rust-lang/crates.io-index" 4045 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4046 + 4047 + [[package]] 4031 4048 name = "winnow" 4032 - version = "0.5.18" 4049 + version = "0.5.34" 4033 4050 source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "176b6138793677221d420fd2f0aeeced263f197688b36484660da767bca2fa32" 4051 + checksum = "b7cf47b659b318dccbd69cc4797a39ae128f533dce7902a1096044d1967b9c16" 4035 4052 dependencies = [ 4036 4053 "memchr", 4037 4054 ] ··· 4043 4060 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4044 4061 dependencies = [ 4045 4062 "cfg-if", 4046 - "windows-sys", 4063 + "windows-sys 0.48.0", 4047 4064 ] 4048 4065 4049 4066 [[package]] 4050 4067 name = "writeable" 4051 - version = "0.5.3" 4068 + version = "0.5.4" 4052 4069 source = "registry+https://github.com/rust-lang/crates.io-index" 4053 - checksum = "c0af0c3d13faebf8dda0b5256fa7096a2d5ccb662f7b9f54a40fe201077ab1c2" 4070 + checksum = "dad7bb64b8ef9c0aa27b6da38b452b0ee9fd82beaf276a87dd796fb55cbae14e" 4054 4071 4055 4072 [[package]] 4056 4073 name = "wyz" ··· 4063 4080 4064 4081 [[package]] 4065 4082 name = "xattr" 4066 - version = "1.0.1" 4083 + version = "1.2.0" 4067 4084 source = "registry+https://github.com/rust-lang/crates.io-index" 4068 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 4085 + checksum = "914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1" 4069 4086 dependencies = [ 4070 4087 "libc", 4088 + "linux-raw-sys", 4089 + "rustix", 4071 4090 ] 4072 4091 4073 4092 [[package]] ··· 4083 4102 checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" 4084 4103 4085 4104 [[package]] 4086 - name = "xmp-writer" 4087 - version = "0.2.0" 4088 - source = "registry+https://github.com/rust-lang/crates.io-index" 4089 - checksum = "4543ba138f64a94b19e1e9c66c165bca7e03d470e1c066cb76ea279d9d0e1989" 4090 - 4091 - [[package]] 4092 4105 name = "yaml-rust" 4093 4106 version = "0.4.5" 4094 4107 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4099 4112 4100 4113 [[package]] 4101 4114 name = "yoke" 4102 - version = "0.7.2" 4115 + version = "0.7.3" 4103 4116 source = "registry+https://github.com/rust-lang/crates.io-index" 4104 - checksum = "61e38c508604d6bbbd292dadb3c02559aa7fff6b654a078a36217cad871636e4" 4117 + checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" 4105 4118 dependencies = [ 4106 4119 "serde", 4107 4120 "stable_deref_trait", ··· 4111 4124 4112 4125 [[package]] 4113 4126 name = "yoke-derive" 4114 - version = "0.7.2" 4127 + version = "0.7.3" 4115 4128 source = "registry+https://github.com/rust-lang/crates.io-index" 4116 - checksum = "d5e19fb6ed40002bab5403ffa37e53e0e56f914a4450c8765f533018db1db35f" 4129 + checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" 4117 4130 dependencies = [ 4118 4131 "proc-macro2", 4119 4132 "quote", 4120 - "syn 2.0.38", 4133 + "syn 2.0.48", 4121 4134 "synstructure", 4122 4135 ] 4123 4136 ··· 4138 4151 dependencies = [ 4139 4152 "proc-macro2", 4140 4153 "quote", 4141 - "syn 2.0.38", 4154 + "syn 2.0.48", 4142 4155 "synstructure", 4143 4156 ] 4144 4157 4145 4158 [[package]] 4159 + name = "zerotrie" 4160 + version = "0.1.2" 4161 + source = "registry+https://github.com/rust-lang/crates.io-index" 4162 + checksum = "d0594125a0574fb93059c92c588ab209cc036a23d1baeb3410fa9181bea551a0" 4163 + dependencies = [ 4164 + "displaydoc", 4165 + "litemap", 4166 + "serde", 4167 + "zerovec", 4168 + ] 4169 + 4170 + [[package]] 4146 4171 name = "zerovec" 4147 - version = "0.10.0" 4172 + version = "0.10.1" 4148 4173 source = "registry+https://github.com/rust-lang/crates.io-index" 4149 - checksum = "1194130c5b155bf8ae50ab16c86ab758cd695cf9ad176d2f870b744cbdbb572e" 4174 + checksum = "eff4439ae91fb5c72b8abc12f3f2dbf51bd27e6eadb9f8a5bc8898dddb0e27ea" 4150 4175 dependencies = [ 4151 4176 "serde", 4152 4177 "yoke", ··· 4156 4181 4157 4182 [[package]] 4158 4183 name = "zerovec-derive" 4159 - version = "0.10.0" 4184 + version = "0.10.1" 4160 4185 source = "registry+https://github.com/rust-lang/crates.io-index" 4161 - checksum = "acabf549809064225ff8878baedc4ce3732ac3b07e7c7ce6e5c2ccdbc485c324" 4186 + checksum = "7b4e5997cbf58990550ef1f0e5124a05e47e1ebd33a84af25739be6031a62c20" 4162 4187 dependencies = [ 4163 4188 "proc-macro2", 4164 4189 "quote", 4165 - "syn 2.0.38", 4190 + "syn 2.0.48", 4166 4191 ]
+31
pkgs/by-name/ty/typst-preview/dom.json
··· 1 + { 2 + "name": "typst-dom", 3 + "private": true, 4 + "version": "0.0.0", 5 + "type": "module", 6 + "scripts": { 7 + "dev": "vite", 8 + "build": "vite build && tsc", 9 + "preview": "vite preview", 10 + "test": "vitest", 11 + "coverage": "vitest run --coverage", 12 + "link:local": "yarn link @myriaddreamin/typst.ts @myriaddreamin/typst-ts-renderer" 13 + }, 14 + "peerDependencies": { 15 + "@myriaddreamin/typst-ts-renderer": "0.4.2-rc5", 16 + "@myriaddreamin/typst.ts": "0.4.2-rc5" 17 + }, 18 + "devDependencies": { 19 + "@myriaddreamin/typst-ts-renderer": "0.4.2-rc5", 20 + "@myriaddreamin/typst.ts": "0.4.2-rc5", 21 + "typescript": "^5.0.2", 22 + "vite": "^4.3.9", 23 + "vite-plugin-singlefile": "^0.13.5", 24 + "vite-plugin-wasm": "^3.2.2", 25 + "vitest": "^0.32.2" 26 + }, 27 + "exports": { 28 + ".": "./dist/esm/index.mjs", 29 + "./*": "./dist/esm/*" 30 + } 31 + }
+3 -2
pkgs/by-name/ty/typst-preview/package.json pkgs/by-name/ty/typst-preview/frontend.json
··· 12 12 "link:local": "yarn link @myriaddreamin/typst.ts @myriaddreamin/typst-ts-renderer" 13 13 }, 14 14 "dependencies": { 15 - "@myriaddreamin/typst-ts-renderer": "0.4.0-rc11", 16 - "@myriaddreamin/typst.ts": "0.4.0-rc11", 15 + "@myriaddreamin/typst-ts-renderer": "0.4.2-rc5", 16 + "@myriaddreamin/typst.ts": "0.4.2-rc5", 17 + "typst-dom": "file:../typst-dom", 17 18 "rxjs": "^7.8.1" 18 19 }, 19 20 "devDependencies": {
+38 -7
pkgs/by-name/ty/typst-preview/package.nix
··· 14 14 let 15 15 # Keep the vscode "mgt19937.typst-preview" extension in sync when updating 16 16 # this package at pkgs/applications/editors/vscode/extensions/default.nix 17 - version = "0.9.2"; 17 + version = "0.10.5"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "Enter-tainer"; 21 21 repo = "typst-preview"; 22 22 rev = "v${version}"; 23 - hash = "sha256-P11Nkn9Md5xsB9Z7v9O+CRvP18vPEC0Y973Or7i0y/4="; 23 + hash = "sha256-BebOwlY2hm/SGYCtmsQICbo1V8sbUMYVWSM773Qmh04="; 24 + fetchSubmodules = true; 24 25 }; 25 26 26 27 frontendSrc = "${src}/addons/frontend"; 28 + domSrc = "${src}/addons/typst-dom"; 29 + 30 + typst-dom = mkYarnPackage { 31 + inherit version; 32 + pname = "typst-dom"; 33 + src = domSrc; 34 + packageJSON = ./dom.json; 35 + 36 + offlineCache = fetchYarnDeps { 37 + yarnLock = "${domSrc}/yarn.lock"; 38 + hash = "sha256-SxOQ/RABUkiqE7dLaDS0kETGiir4SMWJ2w7i7zMEl7U="; 39 + }; 40 + 41 + buildPhase = '' 42 + runHook preBuild 43 + yarn --offline build 44 + runHook postBuild 45 + ''; 46 + 47 + installPhase = '' 48 + runHook preInstall 49 + cp -R deps/typst-dom $out 50 + runHook postInstall 51 + ''; 52 + 53 + doDist = false; 54 + }; 27 55 28 56 frontend = mkYarnPackage { 29 57 inherit version; 30 58 pname = "typst-preview-frontend"; 31 59 src = frontendSrc; 32 - packageJSON = ./package.json; 60 + packageJSON = ./frontend.json; 33 61 34 62 offlineCache = fetchYarnDeps { 35 63 yarnLock = "${frontendSrc}/yarn.lock"; 36 - hash = "sha256-7a7/UOfau84nLIAKj6Tn9rTUmeBJ7rYDFAdr55ZDLgA="; 64 + hash = "sha256-6e3UNd8gIBnTtllpo/1AC1XzeZ88rdUiechoQfo5V1Y="; 37 65 }; 66 + 67 + packageResolutions = { inherit typst-dom; }; 38 68 39 69 buildPhase = '' 40 70 runHook preBuild ··· 50 80 51 81 doDist = false; 52 82 }; 83 + 53 84 in 54 85 rustPlatform.buildRustPackage { 55 86 pname = "typst-preview"; ··· 58 89 cargoLock = { 59 90 lockFile = ./Cargo.lock; 60 91 outputHashes = { 61 - "hayagriva-0.4.0" = "sha256-377lXL3+TO8U91OopMYEI0NrWWwzy6+O7B65bLhP+X4="; 62 - "typst-0.9.0" = "sha256-+rnsUSGi3QZlbC4i8racsM4U6+l8oA9YjjUOtQAIWOk="; 63 - "typst-ts-compiler-0.4.0-rc9" = "sha256-NVmbAodDRJBJlGGDRjaEcTHGoCeN4hNjIynIDKqvNbM="; 92 + "typst-0.10.0" = "sha256-/Oy4KigXu1E/S9myd+eigqlNvk5x+Ld9gTL9dtpoyqk="; 93 + "typst-ts-compiler-0.4.2-rc5" = 94 + "sha256-fhwTaAK19Nb7AKNJ9QBZgK1MO7g7s5AdSDqaBjLxT3w="; 64 95 }; 65 96 }; 66 97
+14 -1
pkgs/development/libraries/reproc/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, cmake 1 + { stdenv, lib, fetchFromGitHub, cmake, fetchpatch 2 2 }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 rev = "v${version}"; 12 12 sha256 = "sha256-LWzBeKhE7cSiZsK8xWzoTdrOcPiU/zEkmi40WiFytic="; 13 13 }; 14 + 15 + patches = [ 16 + (fetchpatch{ 17 + name = "reproc-gcc-13-2.patch"; 18 + url = "https://github.com/DaanDeMeyer/reproc/commit/0b23d88894ccedde04537fa23ea55cb2f8365342.patch"; 19 + sha256 = "sha256-QyC0UcKAWCKSvSvyZTLI2eF/TuuqbGGH6cOQrS2DiCE="; 20 + }) 21 + (fetchpatch{ 22 + name = "reproc-gcc-13-1.patch"; 23 + url = "https://github.com/DaanDeMeyer/reproc/commit/9f399675b821e175f85ac3ee6e3fd2e6056573eb.patch"; 24 + sha256 = "sha256-h/gnDFPWPpUFkys10YXjjEPibgRT1atHSVwbO0kId+U="; 25 + }) 26 + ]; 14 27 15 28 nativeBuildInputs = [ cmake ]; 16 29
+2 -2
pkgs/development/ocaml-modules/cmarkit/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "cmarkit"; 17 - version = "0.2.0"; 17 + version = "0.3.0"; 18 18 19 19 src = fetchurl { 20 20 url = "https://erratique.ch/software/cmarkit/releases/cmarkit-${version}.tbz"; 21 - hash = "sha256-86RuGB5pLbw/ThPGz9+qLaZRH7xvxbYrZWFLLIkc5Mk="; 21 + hash = "sha256-RouM5iU7VeTT0+4yhBgdEmxROeP/X31iqDjd1VI7z5c="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
-2
pkgs/development/ocaml-modules/eliom/default.nix
··· 12 12 , js_of_ocaml-lwt 13 13 , js_of_ocaml-tyxml 14 14 , lwt_ppx 15 - , ocamlnet 16 15 , ocsipersist 17 16 }: 18 17 ··· 33 32 buildInputs = [ 34 33 js_of_ocaml-ocamlbuild 35 34 js_of_ocaml-ppx_deriving_json 36 - ocamlnet 37 35 ppx_optcomp 38 36 ]; 39 37
+6 -5
pkgs/development/ocaml-modules/gapi-ocaml/default.nix
··· 1 1 { lib, fetchFromGitHub, buildDunePackage, ocaml 2 - , cryptokit, ocamlnet, ocurl, yojson 2 + , camlp-streams, cppo, cryptokit, ocurl, yojson 3 3 , ounit2 4 4 }: 5 5 6 6 buildDunePackage rec { 7 7 pname = "gapi-ocaml"; 8 - version = "0.4.4"; 9 - duneVersion = "3"; 8 + version = "0.4.5"; 10 9 11 10 minimalOCamlVersion = "4.08"; 12 11 ··· 14 13 owner = "astrada"; 15 14 repo = pname; 16 15 rev = "v${version}"; 17 - hash = "sha256-+UNFW5tmIh5dVyTDEOfOmy1j+gV4P28jlnBTdpQNAjE="; 16 + hash = "sha256-qlQEE8l/H22bb1VcK9YehR+9L5XepMu8JY7OLw1OIXg="; 18 17 }; 19 18 20 - propagatedBuildInputs = [ cryptokit ocamlnet ocurl yojson ]; 19 + nativeBuildInputs = [ cppo ]; 20 + 21 + propagatedBuildInputs = [ camlp-streams cryptokit ocurl yojson ]; 21 22 22 23 doCheck = true; 23 24 checkInputs = [ ounit2 ];
+3 -4
pkgs/development/ocaml-modules/ocsigen-start/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocsigen-toolkit, pgocaml_ppx, safepass, yojson 2 2 , cohttp-lwt-unix, eliom 3 3 , resource-pooling 4 - , ocamlnet 5 4 , ocsigen-ppx-rpc 6 5 }: 7 6 8 7 stdenv.mkDerivation rec { 9 8 pname = "ocaml${ocaml.version}-ocsigen-start"; 10 - version = "6.1.0"; 9 + version = "6.1.2"; 11 10 12 11 nativeBuildInputs = [ ocaml findlib eliom ]; 13 12 buildInputs = [ ocsigen-ppx-rpc ]; 14 - propagatedBuildInputs = [ pgocaml_ppx safepass ocsigen-toolkit yojson resource-pooling cohttp-lwt-unix ocamlnet ]; 13 + propagatedBuildInputs = [ pgocaml_ppx safepass ocsigen-toolkit yojson resource-pooling cohttp-lwt-unix ]; 15 14 16 15 strictDeps = true; 17 16 ··· 21 20 owner = "ocsigen"; 22 21 repo = "ocsigen-start"; 23 22 rev = version; 24 - hash = "sha256-gHFPutoPYKTDsFninwBTc2WOIFd3+ghRYW2hi1y5MUs="; 23 + hash = "sha256-GhuH3rNdauJztEhygct6jCf+EmAtbSeyYP45stMzGFU="; 25 24 }; 26 25 27 26 preInstall = ''
+3 -9
pkgs/development/ocaml-modules/ocsigen-toolkit/default.nix
··· 5 5 stdenv.mkDerivation rec { 6 6 pname = "ocsigen-toolkit"; 7 7 name = "ocaml${ocaml.version}-${pname}-${version}"; 8 - version = "3.2.0"; 8 + version = "3.3.4"; 9 9 10 10 propagatedBuildInputs = [ calendar js_of_ocaml-ppx_deriving_json eliom ]; 11 11 nativeBuildInputs = [ ocaml findlib opaline eliom ]; 12 12 13 - # Remove widgets not compatible with jsoo 4.1.0 14 - # https://github.com/ocsigen/ocsigen-toolkit/issues/221 15 - preConfigure = '' 16 - rm src/widgets/ot_{carousel,drawer,swipe,tongue}.eliom{,i} 17 - ''; 18 - 19 - strictDeps = true; 13 + strictDeps = true; 20 14 21 15 installPhase = '' 22 16 runHook preInstall ··· 31 25 owner = "ocsigen"; 32 26 repo = pname; 33 27 rev = version; 34 - sha256 = "sha256:13n0y8a80bl94la4lnp9dr2x7b8plhm17g9zgf0l6x42g3886pw7"; 28 + hash = "sha256-6ccu8WJxUwpR5YyB4j1jQPWba8GhQDxuw+IDHswQpSA="; 35 29 }; 36 30 37 31 meta = {
+2 -2
pkgs/development/ocaml-modules/uucd/default.nix
··· 6 6 in 7 7 stdenv.mkDerivation rec { 8 8 name = "ocaml-${pname}-${version}"; 9 - version = "15.0.0"; 9 + version = "15.1.0"; 10 10 11 11 src = fetchurl { 12 12 url = "${webpage}/releases/${pname}-${version}.tbz"; 13 - sha256 = "sha256-DksDi6Dfe/fNGBmeubwxv9dScTHPJRuaPrlX7M8QRrw="; 13 + hash = "sha256-HIANZ5SDJcytlpw/W9Ae2eFTutrutJj2PgJCfByobfI="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
+5 -5
pkgs/development/ocaml-modules/uucp/default.nix
··· 2 2 3 3 let 4 4 pname = "uucp"; 5 - version = "15.0.0"; 5 + version = "15.1.0"; 6 6 webpage = "https://erratique.ch/software/${pname}"; 7 - minimumOCamlVersion = "4.03"; 7 + minimalOCamlVersion = "4.03"; 8 8 doCheck = true; 9 9 in 10 10 11 - if lib.versionOlder ocaml.version minimumOCamlVersion 12 - then builtins.throw "${pname} needs at least OCaml ${minimumOCamlVersion}" 11 + if lib.versionOlder ocaml.version minimalOCamlVersion 12 + then builtins.throw "${pname} needs at least OCaml ${minimalOCamlVersion}" 13 13 else 14 14 15 15 stdenv.mkDerivation { ··· 18 18 19 19 src = fetchurl { 20 20 url = "${webpage}/releases/${pname}-${version}.tbz"; 21 - sha256 = "sha256-rEeU9AWpCzuAtAOe7hJHBmJjP97BZsQsPFQQ8uZLUzA="; 21 + hash = "sha256-qR5LiAZHt4oD3ak0x17GqbYXNaJmJxFk/WGoxT+yWYc="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
+11 -3
pkgs/development/python-modules/flask-security-too/default.nix
··· 3 3 , fetchPypi 4 4 , pythonOlder 5 5 , setuptools 6 - , pydantic 6 + , fetchpatch 7 7 8 8 # extras: babel 9 9 , babel ··· 58 58 inherit version; 59 59 hash = "sha256-we2TquU28qP/ir4eE67J0Nlft/8IL8w7Ny3ypSE5cNk="; 60 60 }; 61 + 62 + patches = [ 63 + # https://github.com/Flask-Middleware/flask-security/pull/901 64 + (fetchpatch { 65 + name = "fixes-for-py_webauthn-2.0.patch"; 66 + url = "https://github.com/Flask-Middleware/flask-security/commit/5725f7021343567ec0b25c890e859f4e84c93ba6.patch"; 67 + hash = "sha256-4EgwT4zRj0mh4ZaoZFz7H5KeiZ9zs+BY4siYm8DwMfU="; 68 + excludes = [ "CHANGES.rst" ]; 69 + }) 70 + ]; 61 71 62 72 nativeBuildInputs = [ 63 73 setuptools ··· 128 138 description = "Simple security for Flask apps (fork)"; 129 139 license = licenses.mit; 130 140 maintainers = with maintainers; [ gador ]; 131 - # https://github.com/Flask-Middleware/flask-security/pull/851 132 - broken = versionAtLeast pydantic.version "2"; 133 141 }; 134 142 }
+9
pkgs/development/python-modules/icalevents/default.nix
··· 4 4 , pythonOlder 5 5 , pytestCheckHook 6 6 , poetry-core 7 + , pythonRelaxDepsHook 7 8 , datetime 8 9 , httplib2 9 10 , icalendar ··· 27 28 28 29 nativeBuildInputs = [ 29 30 poetry-core 31 + pythonRelaxDepsHook 30 32 ]; 31 33 32 34 propagatedBuildInputs = [ ··· 35 37 icalendar 36 38 python-dateutil 37 39 pytz 40 + ]; 41 + 42 + pythonRelaxDeps = [ 43 + "datetime" 44 + "httplib2" 45 + "icalendar" 46 + "pytz" 38 47 ]; 39 48 40 49 nativeCheckInputs = [
+5 -2
pkgs/development/python-modules/pyatag/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pyatag"; 11 - version = "3.5.1"; 11 + version = "0.3.7.1"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "MatsNl"; 18 18 repo = "pyatag"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-hyGos0LFVKv63jf1ODPFfk+R47oyHea+8MGvxeKpop8="; 20 + hash = "sha256-3h9mpopTbEULCx7rcEt/I/ZnUA0L/fJ7Y3L5h/6EuC4="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 35 35 "pyatag" 36 36 "pyatag.discovery" 37 37 ]; 38 + 39 + # it would use the erroneous tag 3.5.1 40 + passthru.skipBulkUpdate = true; 38 41 39 42 meta = with lib; { 40 43 description = "Python module to talk to Atag One";
+9 -4
pkgs/development/python-modules/securetar/default.nix
··· 4 4 , fetchFromGitHub 5 5 , pytestCheckHook 6 6 , pythonOlder 7 + , setuptools 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "securetar"; 11 - version = "2023.3.0"; 12 - format = "setuptools"; 12 + version = "2023.12.0"; 13 + pyproject = true; 13 14 14 15 disabled = pythonOlder "3.9"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "pvizeli"; 18 - repo = pname; 19 + repo = "securetar"; 19 20 rev = "refs/tags/${version}"; 20 - hash = "sha256-3bDboggvKbpWyjpUOrUmtJx3Nj/6Uvut2nEQLYJubDA="; 21 + hash = "sha256-P8aq1RRlEmXhJ4n0TSLVjYx4dvkckuz2aDGkAvp7bfo="; 21 22 }; 23 + 24 + nativeBuildInputs = [ 25 + setuptools 26 + ]; 22 27 23 28 propagatedBuildInputs = [ 24 29 cryptography
+2 -2
pkgs/development/python-modules/syncedlyrics/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "syncedlyrics"; 14 - version = "0.7.0"; 14 + version = "0.8.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "rtcq"; 21 21 repo = "syncedlyrics"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-qZVUptmLouFFBCWiRviYFO0sQKlyz65GjWMg/b1idXY="; 23 + hash = "sha256-ro9HzI8N7Ry4xh91mO1Vyy3CScEi3FifweOO01/Ti0w="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "twilio"; 21 - version = "8.11.0"; 21 + version = "8.11.1"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "twilio"; 28 28 repo = "twilio-python"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-yz1jFEjbnG5hqC5wqvxcP3pNLI3GalXWbREToCwf9BU="; 30 + hash = "sha256-cByrE0/sKZ0dWnuQS1KOOCHbSYF6YJchqGrdkmVp9DM="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+3 -5
pkgs/development/python-modules/webauthn/default.nix
··· 4 4 , asn1crypto 5 5 , cbor2 6 6 , pythonOlder 7 - , pydantic 8 7 , pyopenssl 9 8 , pytestCheckHook 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "webauthn"; 14 - version = "1.11.1"; 13 + version = "2.0.0"; 15 14 format = "setuptools"; 16 15 17 - disabled = pythonOlder "3.7"; 16 + disabled = pythonOlder "3.8"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "duo-labs"; 21 20 repo = "py_webauthn"; 22 21 rev = "refs/tags/v${version}"; 23 - hash = "sha256-+pp21rtwavtjj6ahG091xsJpsYOH3zpqU3xH2/YFXqY="; 22 + hash = "sha256-StqoSrzErV13/OUpSWbI+6N5tSFPEpvnmQcDiZMaXPI="; 24 23 }; 25 24 26 25 propagatedBuildInputs = [ 27 26 asn1crypto 28 27 cbor2 29 - pydantic 30 28 pyopenssl 31 29 ]; 32 30
+3 -3
pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "tflint-ruleset-google"; 8 - version = "0.24.0"; 8 + version = "0.26.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "terraform-linters"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-1eF/uzOYP/gi+ooHN8OfCR2nz+/z98theO0Lr/BBhWM="; 14 + hash = "sha256-VQm7pvZCfkZR54UeaPuKogEqhQOy5BAV7WkfwCW3C7c="; 15 15 }; 16 16 17 - vendorHash = "sha256-owpNcsxuP+sG27vv9V7ArMK1NLBNbnw11KpdpVyWAD0="; 17 + vendorHash = "sha256-C52b11cJE2Bu785SNlTsbgNR6Wt/YeY8l1U/9anXrMo="; 18 18 19 19 # upstream Makefile also does a go test $(go list ./... | grep -v integration) 20 20 preCheck = ''
+2 -2
pkgs/development/tools/build-managers/rake/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - rake (13.0.6) 4 + rake (13.1.0) 5 5 6 6 PLATFORMS 7 7 ruby ··· 10 10 rake 11 11 12 12 BUNDLED WITH 13 - 2.4.6 13 + 2.5.3
+2 -2
pkgs/development/tools/build-managers/rake/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w"; 7 + sha256 = "1ilr853hawi09626axx0mps4rkkmxcs54mapz9jnqvpnlwd3wsmy"; 8 8 type = "gem"; 9 9 }; 10 - version = "13.0.6"; 10 + version = "13.1.0"; 11 11 }; 12 12 }
+3 -3
pkgs/games/cutemaze/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "cutemaze"; 14 - version = "1.3.2"; 14 + version = "1.3.3"; 15 15 16 16 src = fetchurl { 17 - url = "https://gottcode.org/cutemaze/${pname}-${version}.tar.bz2"; 18 - hash = "sha256-hjDlY18O+VDJR68vwrIZwsQAa40xU+V3bCAA4GFHJEQ="; 17 + url = "https://gottcode.org/cutemaze/cutemaze-${version}.tar.bz2"; 18 + hash = "sha256-WvbeA1zgaGx5Hw5JeYrYX72MJw3Ou1VnAbB6R6Y0Rpw="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+1 -1
pkgs/misc/tmux-plugins/default.nix
··· 243 243 }; 244 244 245 245 fingers = mkTmuxPlugin rec { 246 - pluginName = "fingers"; 246 + pluginName = "tmux-fingers"; 247 247 rtpFilePath = "load-config.tmux"; 248 248 version = "2.1.1"; 249 249 src = fetchFromGitHub {
+1
pkgs/os-specific/linux/systemd/default.nix
··· 208 208 ./0017-core-don-t-taint-on-unmerged-usr.patch 209 209 ./0018-tpm2_context_init-fix-driver-name-checking.patch 210 210 ./0019-systemctl-edit-suggest-systemdctl-edit-runtime-on-sy.patch 211 + ] ++ lib.optional (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isGnu) [ 211 212 ./0020-timesyncd-disable-NSCD-when-DNSSEC-validation-is-dis.patch 212 213 ] ++ lib.optional stdenv.hostPlatform.isMusl ( 213 214 let
+3 -3
pkgs/servers/matrix-synapse/default.nix
··· 17 17 in 18 18 python3.pkgs.buildPythonApplication rec { 19 19 pname = "matrix-synapse"; 20 - version = "1.98.0"; 20 + version = "1.99.0"; 21 21 format = "pyproject"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "element-hq"; 25 25 repo = "synapse"; 26 26 rev = "v${version}"; 27 - hash = "sha256-irPExb8rwQjkPp0b3x5hJG4Ay6OnITWIGRPxBSoP/Dk="; 27 + hash = "sha256-NS0in7zUkIS+fI5gQEua9y1UXspEHWNCntyZHZCtfPg="; 28 28 }; 29 29 30 30 cargoDeps = rustPlatform.fetchCargoTarball { 31 31 inherit src; 32 32 name = "${pname}-${version}"; 33 - hash = "sha256-DHKhEFXquWfHfk54mTehjchg3KsB4CfzElXMt5Mp+Vg="; 33 + hash = "sha256-FQhHpbp8Rkkqp6Ngly/HP8iWGlWh5CDaztgAwKB/afI="; 34 34 }; 35 35 36 36 postPatch = ''
+3 -3
pkgs/servers/nosql/surrealdb/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "surrealdb"; 16 - version = "1.0.2"; 16 + version = "1.1.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "surrealdb"; 20 20 repo = "surrealdb"; 21 21 rev = "v${version}"; 22 - hash = "sha256-/+GAnACNzGxMDSO1BGc9dA13hZnNKDia0KBlyujEe04="; 22 + hash = "sha256-3xH0trwTs2Cr07/PtA4K808PUwaT6WmrIr2+11L7t6A="; 23 23 }; 24 24 25 - cargoHash = "sha256-9wvgj00GAWRP9sWOgugelizB6xbPNs0h13bGGxWtA+s="; 25 + cargoHash = "sha256-dNn2HMZ7c/q/EhfMUHqWV79+3gMA9URqEozdEixkV/0="; 26 26 27 27 # error: linker `aarch64-linux-gnu-gcc` not found 28 28 postPatch = ''
+1026 -246
pkgs/servers/search/meilisearch/Cargo.lock
··· 46 46 "actix-tls", 47 47 "actix-utils", 48 48 "ahash 0.8.3", 49 - "base64 0.21.2", 49 + "base64 0.21.5", 50 50 "bitflags 1.3.2", 51 51 "brotli", 52 52 "bytes", ··· 56 56 "flate2", 57 57 "futures-core", 58 58 "h2", 59 - "http", 59 + "http 0.2.9", 60 60 "httparse", 61 61 "httpdate", 62 62 "itoa", ··· 90 90 checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799" 91 91 dependencies = [ 92 92 "bytestring", 93 - "http", 93 + "http 0.2.9", 94 94 "regex", 95 95 "serde", 96 96 "tracing", ··· 120 120 "futures-util", 121 121 "mio", 122 122 "num_cpus", 123 - "socket2", 123 + "socket2 0.4.9", 124 124 "tokio", 125 125 "tracing", 126 126 ] ··· 189 189 "encoding_rs", 190 190 "futures-core", 191 191 "futures-util", 192 - "http", 192 + "http 0.2.9", 193 193 "itoa", 194 194 "language-tags", 195 195 "log", ··· 201 201 "serde_json", 202 202 "serde_urlencoded", 203 203 "smallvec", 204 - "socket2", 204 + "socket2 0.4.9", 205 205 "time", 206 206 "url", 207 207 ] ··· 280 280 281 281 [[package]] 282 282 name = "aho-corasick" 283 - version = "1.0.2" 283 + version = "1.1.2" 284 284 source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 285 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 286 286 dependencies = [ 287 287 "memchr", 288 288 ] ··· 310 310 311 311 [[package]] 312 312 name = "anstream" 313 - version = "0.3.2" 313 + version = "0.6.4" 314 314 source = "registry+https://github.com/rust-lang/crates.io-index" 315 - checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 315 + checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 316 316 dependencies = [ 317 317 "anstyle", 318 318 "anstyle-parse", 319 319 "anstyle-query", 320 320 "anstyle-wincon", 321 321 "colorchoice", 322 - "is-terminal", 323 322 "utf8parse", 324 323 ] 325 324 ··· 349 348 350 349 [[package]] 351 350 name = "anstyle-wincon" 352 - version = "1.0.1" 351 + version = "3.0.1" 353 352 source = "registry+https://github.com/rust-lang/crates.io-index" 354 - checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 353 + checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 355 354 dependencies = [ 356 355 "anstyle", 357 356 "windows-sys 0.48.0", ··· 367 366 ] 368 367 369 368 [[package]] 369 + name = "anymap2" 370 + version = "0.13.0" 371 + source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" 373 + 374 + [[package]] 370 375 name = "arbitrary" 371 376 version = "1.3.0" 372 377 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 376 381 ] 377 382 378 383 [[package]] 384 + name = "arroy" 385 + version = "0.1.0" 386 + source = "git+https://github.com/meilisearch/arroy.git#d372648212e561a4845077cdb9239423d78655a2" 387 + dependencies = [ 388 + "bytemuck", 389 + "byteorder", 390 + "heed", 391 + "log", 392 + "memmap2 0.9.0", 393 + "ordered-float 4.2.0", 394 + "rand", 395 + "rayon", 396 + "roaring", 397 + "tempfile", 398 + "thiserror", 399 + ] 400 + 401 + [[package]] 379 402 name = "assert-json-diff" 380 403 version = "2.0.2" 381 404 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 456 479 457 480 [[package]] 458 481 name = "base64" 459 - version = "0.21.2" 482 + version = "0.21.5" 460 483 source = "registry+https://github.com/rust-lang/crates.io-index" 461 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 484 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 462 485 463 486 [[package]] 464 487 name = "base64ct" ··· 468 491 469 492 [[package]] 470 493 name = "benchmarks" 471 - version = "1.5.0" 494 + version = "1.6.0" 472 495 dependencies = [ 473 496 "anyhow", 474 497 "bytes", ··· 510 533 ] 511 534 512 535 [[package]] 536 + name = "bit-set" 537 + version = "0.5.3" 538 + source = "registry+https://github.com/rust-lang/crates.io-index" 539 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 540 + dependencies = [ 541 + "bit-vec", 542 + ] 543 + 544 + [[package]] 545 + name = "bit-vec" 546 + version = "0.6.3" 547 + source = "registry+https://github.com/rust-lang/crates.io-index" 548 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 549 + 550 + [[package]] 513 551 name = "bitflags" 514 552 version = "1.3.2" 515 553 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 517 555 518 556 [[package]] 519 557 name = "bitflags" 520 - version = "2.3.3" 558 + version = "2.4.1" 521 559 source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 560 + checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 561 + dependencies = [ 562 + "serde", 563 + ] 523 564 524 565 [[package]] 525 566 name = "block-buffer" ··· 553 594 554 595 [[package]] 555 596 name = "bstr" 556 - version = "1.6.0" 597 + version = "1.8.0" 557 598 source = "registry+https://github.com/rust-lang/crates.io-index" 558 - checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 599 + checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c" 559 600 dependencies = [ 560 601 "memchr", 561 - "regex-automata 0.3.6", 602 + "regex-automata 0.4.3", 562 603 "serde", 563 604 ] 564 605 ··· 586 627 587 628 [[package]] 588 629 name = "bytemuck" 589 - version = "1.13.1" 630 + version = "1.14.0" 590 631 source = "registry+https://github.com/rust-lang/crates.io-index" 591 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 632 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 592 633 dependencies = [ 593 634 "bytemuck_derive", 594 635 ] ··· 606 647 607 648 [[package]] 608 649 name = "byteorder" 609 - version = "1.4.3" 650 + version = "1.5.0" 610 651 source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 652 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 612 653 613 654 [[package]] 614 655 name = "bytes" ··· 657 698 ] 658 699 659 700 [[package]] 701 + name = "candle-core" 702 + version = "0.3.1" 703 + source = "git+https://github.com/huggingface/candle.git#f4fcf6090045ac44122fd5f0a7e46db6e3e16528" 704 + dependencies = [ 705 + "byteorder", 706 + "gemm", 707 + "half 2.3.1", 708 + "memmap2 0.7.1", 709 + "num-traits", 710 + "num_cpus", 711 + "rand", 712 + "rand_distr", 713 + "rayon", 714 + "safetensors", 715 + "thiserror", 716 + "yoke", 717 + "zip", 718 + ] 719 + 720 + [[package]] 721 + name = "candle-nn" 722 + version = "0.3.1" 723 + source = "git+https://github.com/huggingface/candle.git#f4fcf6090045ac44122fd5f0a7e46db6e3e16528" 724 + dependencies = [ 725 + "candle-core", 726 + "half 2.3.1", 727 + "num-traits", 728 + "rayon", 729 + "safetensors", 730 + "serde", 731 + "thiserror", 732 + ] 733 + 734 + [[package]] 735 + name = "candle-transformers" 736 + version = "0.3.1" 737 + source = "git+https://github.com/huggingface/candle.git#f4fcf6090045ac44122fd5f0a7e46db6e3e16528" 738 + dependencies = [ 739 + "byteorder", 740 + "candle-core", 741 + "candle-nn", 742 + "num-traits", 743 + "rand", 744 + "rayon", 745 + "serde", 746 + "serde_json", 747 + "serde_plain", 748 + "tracing", 749 + "wav", 750 + ] 751 + 752 + [[package]] 660 753 name = "cargo_toml" 661 754 version = "0.15.3" 662 755 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 762 855 checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 763 856 dependencies = [ 764 857 "ciborium-io", 765 - "half", 858 + "half 1.8.2", 766 859 ] 767 860 768 861 [[package]] ··· 777 870 778 871 [[package]] 779 872 name = "clap" 780 - version = "4.3.21" 873 + version = "4.4.8" 781 874 source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" 875 + checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" 783 876 dependencies = [ 784 877 "clap_builder", 785 878 "clap_derive", 786 - "once_cell", 787 879 ] 788 880 789 881 [[package]] 790 882 name = "clap_builder" 791 - version = "4.3.21" 883 + version = "4.4.8" 792 884 source = "registry+https://github.com/rust-lang/crates.io-index" 793 - checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" 885 + checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" 794 886 dependencies = [ 795 887 "anstream", 796 888 "anstyle", ··· 800 892 801 893 [[package]] 802 894 name = "clap_derive" 803 - version = "4.3.12" 895 + version = "4.4.7" 804 896 source = "registry+https://github.com/rust-lang/crates.io-index" 805 - checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" 897 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 806 898 dependencies = [ 807 899 "heck", 808 900 "proc-macro2", ··· 812 904 813 905 [[package]] 814 906 name = "clap_lex" 815 - version = "0.5.0" 907 + version = "0.6.0" 816 908 source = "registry+https://github.com/rust-lang/crates.io-index" 817 - checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 909 + checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 818 910 819 911 [[package]] 820 912 name = "cobs" ··· 848 940 "encode_unicode", 849 941 "lazy_static", 850 942 "libc", 943 + "unicode-width", 851 944 "windows-sys 0.45.0", 852 945 ] 853 946 ··· 887 980 "percent-encoding", 888 981 "time", 889 982 "version_check", 983 + ] 984 + 985 + [[package]] 986 + name = "core-foundation" 987 + version = "0.9.3" 988 + source = "registry+https://github.com/rust-lang/crates.io-index" 989 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 990 + dependencies = [ 991 + "core-foundation-sys", 992 + "libc", 890 993 ] 891 994 892 995 [[package]] ··· 1036 1139 dependencies = [ 1037 1140 "cfg-if", 1038 1141 ] 1142 + 1143 + [[package]] 1144 + name = "crunchy" 1145 + version = "0.2.2" 1146 + source = "registry+https://github.com/rust-lang/crates.io-index" 1147 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1039 1148 1040 1149 [[package]] 1041 1150 name = "crypto-common" ··· 1224 1333 ] 1225 1334 1226 1335 [[package]] 1336 + name = "dirs" 1337 + version = "5.0.1" 1338 + source = "registry+https://github.com/rust-lang/crates.io-index" 1339 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 1340 + dependencies = [ 1341 + "dirs-sys", 1342 + ] 1343 + 1344 + [[package]] 1227 1345 name = "dirs-next" 1228 1346 version = "1.0.2" 1229 1347 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1234 1352 ] 1235 1353 1236 1354 [[package]] 1355 + name = "dirs-sys" 1356 + version = "0.4.1" 1357 + source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 1359 + dependencies = [ 1360 + "libc", 1361 + "option-ext", 1362 + "redox_users", 1363 + "windows-sys 0.48.0", 1364 + ] 1365 + 1366 + [[package]] 1237 1367 name = "dirs-sys-next" 1238 1368 version = "0.1.2" 1239 1369 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1256 1386 ] 1257 1387 1258 1388 [[package]] 1389 + name = "doc-comment" 1390 + version = "0.3.3" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1393 + 1394 + [[package]] 1395 + name = "doxygen-rs" 1396 + version = "0.2.2" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "bff670ea0c9bbb8414e7efa6e23ebde2b8f520a7eef78273a3918cf1903e7505" 1399 + dependencies = [ 1400 + "phf", 1401 + ] 1402 + 1403 + [[package]] 1259 1404 name = "dump" 1260 - version = "1.5.0" 1405 + version = "1.6.0" 1261 1406 dependencies = [ 1262 1407 "anyhow", 1263 1408 "big_s", 1264 1409 "flate2", 1265 - "http", 1410 + "http 0.2.9", 1266 1411 "log", 1267 1412 "maplit", 1268 1413 "meili-snap", ··· 1278 1423 "thiserror", 1279 1424 "time", 1280 1425 "uuid 1.5.0", 1426 + ] 1427 + 1428 + [[package]] 1429 + name = "dyn-stack" 1430 + version = "0.10.0" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "56e53799688f5632f364f8fb387488dd05db9fe45db7011be066fc20e7027f8b" 1433 + dependencies = [ 1434 + "bytemuck", 1435 + "reborrow", 1281 1436 ] 1282 1437 1283 1438 [[package]] ··· 1424 1579 1425 1580 [[package]] 1426 1581 name = "errno" 1427 - version = "0.3.2" 1582 + version = "0.3.8" 1428 1583 source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1584 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1430 1585 dependencies = [ 1431 - "errno-dragonfly", 1432 1586 "libc", 1433 - "windows-sys 0.48.0", 1587 + "windows-sys 0.52.0", 1434 1588 ] 1435 1589 1436 1590 [[package]] 1437 - name = "errno-dragonfly" 1438 - version = "0.1.2" 1591 + name = "esaxx-rs" 1592 + version = "0.1.10" 1593 + source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6" 1595 + 1596 + [[package]] 1597 + name = "fancy-regex" 1598 + version = "0.11.0" 1439 1599 source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1600 + checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 1441 1601 dependencies = [ 1442 - "cc", 1443 - "libc", 1602 + "bit-set", 1603 + "regex", 1444 1604 ] 1445 1605 1446 1606 [[package]] ··· 1474 1634 1475 1635 [[package]] 1476 1636 name = "file-store" 1477 - version = "1.5.0" 1637 + version = "1.6.0" 1478 1638 dependencies = [ 1479 1639 "faux", 1480 1640 "tempfile", ··· 1496 1656 1497 1657 [[package]] 1498 1658 name = "filter-parser" 1499 - version = "1.5.0" 1659 + version = "1.6.0" 1500 1660 dependencies = [ 1501 1661 "insta", 1502 1662 "nom", ··· 1517 1677 1518 1678 [[package]] 1519 1679 name = "flate2" 1520 - version = "1.0.26" 1680 + version = "1.0.28" 1521 1681 source = "registry+https://github.com/rust-lang/crates.io-index" 1522 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 1682 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1523 1683 dependencies = [ 1524 1684 "crc32fast", 1525 1685 "miniz_oxide", ··· 1527 1687 1528 1688 [[package]] 1529 1689 name = "flatten-serde-json" 1530 - version = "1.5.0" 1690 + version = "1.6.0" 1531 1691 dependencies = [ 1532 1692 "criterion", 1533 1693 "serde_json", ··· 1541 1701 1542 1702 [[package]] 1543 1703 name = "form_urlencoded" 1544 - version = "1.2.0" 1704 + version = "1.2.1" 1545 1705 source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1706 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1547 1707 dependencies = [ 1548 1708 "percent-encoding", 1549 1709 ] ··· 1556 1716 1557 1717 [[package]] 1558 1718 name = "futures" 1559 - version = "0.3.28" 1719 + version = "0.3.29" 1560 1720 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1721 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1562 1722 dependencies = [ 1563 1723 "futures-channel", 1564 1724 "futures-core", ··· 1571 1731 1572 1732 [[package]] 1573 1733 name = "futures-channel" 1574 - version = "0.3.28" 1734 + version = "0.3.29" 1575 1735 source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1736 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1577 1737 dependencies = [ 1578 1738 "futures-core", 1579 1739 "futures-sink", ··· 1581 1741 1582 1742 [[package]] 1583 1743 name = "futures-core" 1584 - version = "0.3.28" 1744 + version = "0.3.29" 1585 1745 source = "registry+https://github.com/rust-lang/crates.io-index" 1586 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1746 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1587 1747 1588 1748 [[package]] 1589 1749 name = "futures-executor" 1590 - version = "0.3.28" 1750 + version = "0.3.29" 1591 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1752 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1593 1753 dependencies = [ 1594 1754 "futures-core", 1595 1755 "futures-task", ··· 1598 1758 1599 1759 [[package]] 1600 1760 name = "futures-io" 1601 - version = "0.3.28" 1761 + version = "0.3.29" 1602 1762 source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1763 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1604 1764 1605 1765 [[package]] 1606 1766 name = "futures-macro" 1607 - version = "0.3.28" 1767 + version = "0.3.29" 1608 1768 source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1769 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1610 1770 dependencies = [ 1611 1771 "proc-macro2", 1612 1772 "quote", ··· 1615 1775 1616 1776 [[package]] 1617 1777 name = "futures-sink" 1618 - version = "0.3.28" 1778 + version = "0.3.29" 1619 1779 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1780 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1621 1781 1622 1782 [[package]] 1623 1783 name = "futures-task" 1624 - version = "0.3.28" 1784 + version = "0.3.29" 1625 1785 source = "registry+https://github.com/rust-lang/crates.io-index" 1626 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1786 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1627 1787 1628 1788 [[package]] 1629 1789 name = "futures-util" 1630 - version = "0.3.28" 1790 + version = "0.3.29" 1631 1791 source = "registry+https://github.com/rust-lang/crates.io-index" 1632 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1792 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1633 1793 dependencies = [ 1634 1794 "futures-channel", 1635 1795 "futures-core", ··· 1645 1805 1646 1806 [[package]] 1647 1807 name = "fuzzers" 1648 - version = "1.5.0" 1808 + version = "1.6.0" 1649 1809 dependencies = [ 1650 1810 "arbitrary", 1651 1811 "clap", ··· 1666 1826 ] 1667 1827 1668 1828 [[package]] 1829 + name = "gemm" 1830 + version = "0.16.15" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "5b3afa707040531a7527477fd63a81ea4f6f3d26037a2f96776e57fb843b258e" 1833 + dependencies = [ 1834 + "dyn-stack", 1835 + "gemm-c32", 1836 + "gemm-c64", 1837 + "gemm-common", 1838 + "gemm-f16", 1839 + "gemm-f32", 1840 + "gemm-f64", 1841 + "num-complex", 1842 + "num-traits", 1843 + "paste", 1844 + "raw-cpuid", 1845 + "seq-macro", 1846 + ] 1847 + 1848 + [[package]] 1849 + name = "gemm-c32" 1850 + version = "0.16.15" 1851 + source = "registry+https://github.com/rust-lang/crates.io-index" 1852 + checksum = "1cc3973a4c30c73f26a099113953d0c772bb17ee2e07976c0a06b8fe1f38a57d" 1853 + dependencies = [ 1854 + "dyn-stack", 1855 + "gemm-common", 1856 + "num-complex", 1857 + "num-traits", 1858 + "paste", 1859 + "raw-cpuid", 1860 + "seq-macro", 1861 + ] 1862 + 1863 + [[package]] 1864 + name = "gemm-c64" 1865 + version = "0.16.15" 1866 + source = "registry+https://github.com/rust-lang/crates.io-index" 1867 + checksum = "30362894b93dada374442cb2edf4512ddf19513c9bec88e06a445bcb6b22e64f" 1868 + dependencies = [ 1869 + "dyn-stack", 1870 + "gemm-common", 1871 + "num-complex", 1872 + "num-traits", 1873 + "paste", 1874 + "raw-cpuid", 1875 + "seq-macro", 1876 + ] 1877 + 1878 + [[package]] 1879 + name = "gemm-common" 1880 + version = "0.16.15" 1881 + source = "registry+https://github.com/rust-lang/crates.io-index" 1882 + checksum = "988499faa80566b046b4fee2c5f15af55b5a20c1fe8486b112ebb34efa045ad6" 1883 + dependencies = [ 1884 + "bytemuck", 1885 + "dyn-stack", 1886 + "half 2.3.1", 1887 + "num-complex", 1888 + "num-traits", 1889 + "once_cell", 1890 + "paste", 1891 + "pulp", 1892 + "raw-cpuid", 1893 + "rayon", 1894 + "seq-macro", 1895 + ] 1896 + 1897 + [[package]] 1898 + name = "gemm-f16" 1899 + version = "0.16.15" 1900 + source = "registry+https://github.com/rust-lang/crates.io-index" 1901 + checksum = "d6cf2854a12371684c38d9a865063a27661812a3ff5803454c5742e8f5a388ce" 1902 + dependencies = [ 1903 + "dyn-stack", 1904 + "gemm-common", 1905 + "gemm-f32", 1906 + "half 2.3.1", 1907 + "num-complex", 1908 + "num-traits", 1909 + "paste", 1910 + "raw-cpuid", 1911 + "rayon", 1912 + "seq-macro", 1913 + ] 1914 + 1915 + [[package]] 1916 + name = "gemm-f32" 1917 + version = "0.16.15" 1918 + source = "registry+https://github.com/rust-lang/crates.io-index" 1919 + checksum = "0bc84003cf6d950a7c7ca714ad6db281b6cef5c7d462f5cd9ad90ea2409c7227" 1920 + dependencies = [ 1921 + "dyn-stack", 1922 + "gemm-common", 1923 + "num-complex", 1924 + "num-traits", 1925 + "paste", 1926 + "raw-cpuid", 1927 + "seq-macro", 1928 + ] 1929 + 1930 + [[package]] 1931 + name = "gemm-f64" 1932 + version = "0.16.15" 1933 + source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "35187ef101a71eed0ecd26fb4a6255b4192a12f1c5335f3a795698f2d9b6cf33" 1935 + dependencies = [ 1936 + "dyn-stack", 1937 + "gemm-common", 1938 + "num-complex", 1939 + "num-traits", 1940 + "paste", 1941 + "raw-cpuid", 1942 + "seq-macro", 1943 + ] 1944 + 1945 + [[package]] 1669 1946 name = "generic-array" 1670 1947 version = "0.14.7" 1671 1948 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1731 2008 1732 2009 [[package]] 1733 2010 name = "grenad" 1734 - version = "0.4.4" 2011 + version = "0.4.5" 1735 2012 source = "registry+https://github.com/rust-lang/crates.io-index" 1736 - checksum = "5232b2d157b7bf63d7abe1b12177039e58db2f29e377517c0cdee1578cca4c93" 2013 + checksum = "6a007932af5475ebb5c63bef8812bb1c36f317983bb4ca663e9d6dd58d6a0f8c" 1737 2014 dependencies = [ 1738 2015 "bytemuck", 1739 2016 "byteorder", 2017 + "rayon", 1740 2018 "tempfile", 1741 2019 ] 1742 2020 ··· 1751 2029 "futures-core", 1752 2030 "futures-sink", 1753 2031 "futures-util", 1754 - "http", 2032 + "http 0.2.9", 1755 2033 "indexmap 1.9.3", 1756 2034 "slab", 1757 2035 "tokio", ··· 1766 2044 checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1767 2045 1768 2046 [[package]] 2047 + name = "half" 2048 + version = "2.3.1" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 2051 + dependencies = [ 2052 + "bytemuck", 2053 + "cfg-if", 2054 + "crunchy", 2055 + "num-traits", 2056 + "rand", 2057 + "rand_distr", 2058 + ] 2059 + 2060 + [[package]] 1769 2061 name = "hash32" 1770 2062 version = "0.2.1" 1771 2063 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1810 2102 1811 2103 [[package]] 1812 2104 name = "heed" 1813 - version = "0.12.7" 1814 - source = "git+https://github.com/meilisearch/heed?tag=v0.12.7#061a5276b1f336f5f3302bee291e336041d88632" 2105 + version = "0.20.0-alpha.9" 2106 + source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "9648a50991c86df7d00c56c268c27754fcf4c80be2ba57fc4a00dc928c6fe934" 1815 2108 dependencies = [ 2109 + "bitflags 2.4.1", 2110 + "bytemuck", 1816 2111 "byteorder", 1817 2112 "heed-traits", 1818 2113 "heed-types", 1819 2114 "libc", 1820 - "lmdb-rkv-sys", 2115 + "lmdb-master-sys", 1821 2116 "once_cell", 1822 - "page_size 0.4.2", 2117 + "page_size 0.6.0", 1823 2118 "synchronoise", 1824 2119 "url", 1825 - "zerocopy", 1826 2120 ] 1827 2121 1828 2122 [[package]] 1829 2123 name = "heed-traits" 1830 - version = "0.7.0" 1831 - source = "git+https://github.com/meilisearch/heed?tag=v0.12.7#061a5276b1f336f5f3302bee291e336041d88632" 2124 + version = "0.20.0-alpha.9" 2125 + source = "registry+https://github.com/rust-lang/crates.io-index" 2126 + checksum = "5ab0b7d9cde969ad36dde692e487dc89d97f7168bf6a7bd3b894ad4bf7278298" 1832 2127 1833 2128 [[package]] 1834 2129 name = "heed-types" 1835 - version = "0.7.2" 1836 - source = "git+https://github.com/meilisearch/heed?tag=v0.12.7#061a5276b1f336f5f3302bee291e336041d88632" 2130 + version = "0.20.0-alpha.9" 2131 + source = "registry+https://github.com/rust-lang/crates.io-index" 2132 + checksum = "f0cb3567a7363f28b597bf6e9897b9466397951dd0e52df2c8196dd8a71af44a" 1837 2133 dependencies = [ 1838 2134 "bincode", 2135 + "byteorder", 1839 2136 "heed-traits", 1840 2137 "serde", 1841 2138 "serde_json", 1842 - "zerocopy", 1843 2139 ] 1844 2140 1845 2141 [[package]] ··· 1855 2151 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1856 2152 1857 2153 [[package]] 2154 + name = "hf-hub" 2155 + version = "0.3.2" 2156 + source = "git+https://github.com/dureuill/hf-hub.git?branch=rust_tls#88d4f11cb9fa079f2912bacb96f5080b16825ce8" 2157 + dependencies = [ 2158 + "dirs", 2159 + "http 1.0.0", 2160 + "indicatif", 2161 + "log", 2162 + "rand", 2163 + "serde", 2164 + "serde_json", 2165 + "thiserror", 2166 + "ureq", 2167 + ] 2168 + 2169 + [[package]] 1858 2170 name = "hmac" 1859 2171 version = "0.12.1" 1860 2172 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1875 2187 ] 1876 2188 1877 2189 [[package]] 2190 + name = "http" 2191 + version = "1.0.0" 2192 + source = "registry+https://github.com/rust-lang/crates.io-index" 2193 + checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" 2194 + dependencies = [ 2195 + "bytes", 2196 + "fnv", 2197 + "itoa", 2198 + ] 2199 + 2200 + [[package]] 1878 2201 name = "http-body" 1879 2202 version = "0.4.5" 1880 2203 source = "registry+https://github.com/rust-lang/crates.io-index" 1881 2204 checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1882 2205 dependencies = [ 1883 2206 "bytes", 1884 - "http", 2207 + "http 0.2.9", 1885 2208 "pin-project-lite", 1886 2209 ] 1887 2210 ··· 1914 2237 "futures-core", 1915 2238 "futures-util", 1916 2239 "h2", 1917 - "http", 2240 + "http 0.2.9", 1918 2241 "http-body", 1919 2242 "httparse", 1920 2243 "httpdate", 1921 2244 "itoa", 1922 2245 "pin-project-lite", 1923 - "socket2", 2246 + "socket2 0.4.9", 1924 2247 "tokio", 1925 2248 "tower-service", 1926 2249 "tracing", ··· 1934 2257 checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 1935 2258 dependencies = [ 1936 2259 "futures-util", 1937 - "http", 2260 + "http 0.2.9", 1938 2261 "hyper", 1939 2262 "rustls 0.21.6", 1940 2263 "tokio", ··· 2430 2753 2431 2754 [[package]] 2432 2755 name = "idna" 2433 - version = "0.4.0" 2756 + version = "0.5.0" 2434 2757 source = "registry+https://github.com/rust-lang/crates.io-index" 2435 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 2758 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2436 2759 dependencies = [ 2437 2760 "unicode-bidi", 2438 2761 "unicode-normalization", ··· 2440 2763 2441 2764 [[package]] 2442 2765 name = "index-scheduler" 2443 - version = "1.5.0" 2766 + version = "1.6.0" 2444 2767 dependencies = [ 2445 2768 "anyhow", 2446 2769 "big_s", ··· 2451 2774 "dump", 2452 2775 "enum-iterator", 2453 2776 "file-store", 2777 + "flate2", 2454 2778 "insta", 2455 2779 "log", 2456 2780 "meili-snap", ··· 2466 2790 "tempfile", 2467 2791 "thiserror", 2468 2792 "time", 2793 + "ureq", 2469 2794 "uuid 1.5.0", 2470 2795 ] 2471 2796 ··· 2491 2816 ] 2492 2817 2493 2818 [[package]] 2819 + name = "indicatif" 2820 + version = "0.17.7" 2821 + source = "registry+https://github.com/rust-lang/crates.io-index" 2822 + checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" 2823 + dependencies = [ 2824 + "console", 2825 + "instant", 2826 + "number_prefix", 2827 + "portable-atomic", 2828 + "unicode-width", 2829 + ] 2830 + 2831 + [[package]] 2494 2832 name = "inout" 2495 2833 version = "0.1.3" 2496 2834 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2525 2863 ] 2526 2864 2527 2865 [[package]] 2528 - name = "instant-distance" 2529 - version = "0.6.1" 2530 - source = "registry+https://github.com/rust-lang/crates.io-index" 2531 - checksum = "8c619cdaa30bb84088963968bee12a45ea5fbbf355f2c021bcd15589f5ca494a" 2532 - dependencies = [ 2533 - "num_cpus", 2534 - "ordered-float", 2535 - "parking_lot", 2536 - "rand", 2537 - "rayon", 2538 - "serde", 2539 - "serde-big-array", 2540 - ] 2541 - 2542 - [[package]] 2543 2866 name = "io-lifetimes" 2544 2867 version = "1.0.11" 2545 2868 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2574 2897 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2575 2898 dependencies = [ 2576 2899 "hermit-abi", 2577 - "rustix 0.38.7", 2900 + "rustix 0.38.26", 2578 2901 "windows-sys 0.48.0", 2579 2902 ] 2580 2903 ··· 2637 2960 2638 2961 [[package]] 2639 2962 name = "json-depth-checker" 2640 - version = "1.5.0" 2963 + version = "1.6.0" 2641 2964 dependencies = [ 2642 2965 "criterion", 2643 2966 "serde_json", ··· 2649 2972 source = "registry+https://github.com/rust-lang/crates.io-index" 2650 2973 checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 2651 2974 dependencies = [ 2652 - "base64 0.21.2", 2975 + "base64 0.21.5", 2653 2976 "pem", 2654 2977 "ring", 2655 2978 "serde", ··· 2658 2981 ] 2659 2982 2660 2983 [[package]] 2984 + name = "kstring" 2985 + version = "2.0.0" 2986 + source = "registry+https://github.com/rust-lang/crates.io-index" 2987 + checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" 2988 + dependencies = [ 2989 + "serde", 2990 + "static_assertions", 2991 + ] 2992 + 2993 + [[package]] 2661 2994 name = "language-tags" 2662 2995 version = "0.3.2" 2663 2996 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2680 3013 2681 3014 [[package]] 2682 3015 name = "libc" 2683 - version = "0.2.147" 3016 + version = "0.2.150" 2684 3017 source = "registry+https://github.com/rust-lang/crates.io-index" 2685 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 3018 + checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 2686 3019 2687 3020 [[package]] 2688 3021 name = "libgit2-sys" ··· 2947 3280 2948 3281 [[package]] 2949 3282 name = "linux-raw-sys" 2950 - version = "0.4.5" 3283 + version = "0.4.12" 3284 + source = "registry+https://github.com/rust-lang/crates.io-index" 3285 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 3286 + 3287 + [[package]] 3288 + name = "liquid" 3289 + version = "0.26.4" 3290 + source = "registry+https://github.com/rust-lang/crates.io-index" 3291 + checksum = "69f68ae1011499ae2ef879f631891f21c78e309755f4a5e483c4a8f12e10b609" 3292 + dependencies = [ 3293 + "doc-comment", 3294 + "liquid-core", 3295 + "liquid-derive", 3296 + "liquid-lib", 3297 + "serde", 3298 + ] 3299 + 3300 + [[package]] 3301 + name = "liquid-core" 3302 + version = "0.26.4" 3303 + source = "registry+https://github.com/rust-lang/crates.io-index" 3304 + checksum = "79e0724dfcaad5cfb7965ea0f178ca0870b8d7315178f4a7179f5696f7f04d5f" 3305 + dependencies = [ 3306 + "anymap2", 3307 + "itertools 0.10.5", 3308 + "kstring", 3309 + "liquid-derive", 3310 + "num-traits", 3311 + "pest", 3312 + "pest_derive", 3313 + "regex", 3314 + "serde", 3315 + "time", 3316 + ] 3317 + 3318 + [[package]] 3319 + name = "liquid-derive" 3320 + version = "0.26.4" 3321 + source = "registry+https://github.com/rust-lang/crates.io-index" 3322 + checksum = "fc2fb41a9bb4257a3803154bdf7e2df7d45197d1941c9b1a90ad815231630721" 3323 + dependencies = [ 3324 + "proc-macro2", 3325 + "quote", 3326 + "syn 2.0.28", 3327 + ] 3328 + 3329 + [[package]] 3330 + name = "liquid-lib" 3331 + version = "0.26.4" 2951 3332 source = "registry+https://github.com/rust-lang/crates.io-index" 2952 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 3333 + checksum = "e2a17e273a6fb1fb6268f7a5867ddfd0bd4683c7e19b51084f3d567fad4348c0" 3334 + dependencies = [ 3335 + "itertools 0.10.5", 3336 + "liquid-core", 3337 + "once_cell", 3338 + "percent-encoding", 3339 + "regex", 3340 + "time", 3341 + "unicode-segmentation", 3342 + ] 2953 3343 2954 3344 [[package]] 2955 3345 name = "litemap" ··· 2967 3357 ] 2968 3358 2969 3359 [[package]] 2970 - name = "lmdb-rkv-sys" 2971 - version = "0.15.1" 2972 - source = "git+https://github.com/meilisearch/lmdb-rs#501aa34a1ab7f092e3ff54a6c22ff6c55931a2d8" 3360 + name = "lmdb-master-sys" 3361 + version = "0.1.0" 3362 + source = "registry+https://github.com/rust-lang/crates.io-index" 3363 + checksum = "629c123f5321b48fa4f8f4d3b868165b748d9ba79c7103fb58e3a94f736bcedd" 2973 3364 dependencies = [ 2974 3365 "cc", 3366 + "doxygen-rs", 2975 3367 "libc", 2976 3368 "pkg-config", 2977 3369 ] ··· 3006 3398 3007 3399 [[package]] 3008 3400 name = "log" 3009 - version = "0.4.19" 3401 + version = "0.4.20" 3010 3402 source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 3403 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 3012 3404 3013 3405 [[package]] 3014 3406 name = "logging_timer" ··· 3039 3431 checksum = "8b8c72594ac26bfd34f2d99dfced2edfaddfe8a476e3ff2ca0eb293d925c4f83" 3040 3432 3041 3433 [[package]] 3434 + name = "macro_rules_attribute" 3435 + version = "0.2.0" 3436 + source = "registry+https://github.com/rust-lang/crates.io-index" 3437 + checksum = "8a82271f7bc033d84bbca59a3ce3e4159938cb08a9c3aebbe54d215131518a13" 3438 + dependencies = [ 3439 + "macro_rules_attribute-proc_macro", 3440 + "paste", 3441 + ] 3442 + 3443 + [[package]] 3444 + name = "macro_rules_attribute-proc_macro" 3445 + version = "0.2.0" 3446 + source = "registry+https://github.com/rust-lang/crates.io-index" 3447 + checksum = "b8dd856d451cc0da70e2ef2ce95a18e39a93b7558bedf10201ad28503f918568" 3448 + 3449 + [[package]] 3042 3450 name = "manifest-dir-macros" 3043 3451 version = "0.1.17" 3044 3452 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3064 3472 3065 3473 [[package]] 3066 3474 name = "meili-snap" 3067 - version = "1.5.0" 3475 + version = "1.6.0" 3068 3476 dependencies = [ 3069 3477 "insta", 3070 3478 "md5", ··· 3073 3481 3074 3482 [[package]] 3075 3483 name = "meilisearch" 3076 - version = "1.5.0" 3484 + version = "1.6.0" 3077 3485 dependencies = [ 3078 3486 "actix-cors", 3079 3487 "actix-http", ··· 3102 3510 "futures", 3103 3511 "futures-util", 3104 3512 "hex", 3105 - "http", 3513 + "http 0.2.9", 3106 3514 "index-scheduler", 3107 3515 "indexmap 2.0.0", 3108 3516 "insta", ··· 3121 3529 "num_cpus", 3122 3530 "obkv", 3123 3531 "once_cell", 3124 - "ordered-float", 3532 + "ordered-float 3.7.0", 3125 3533 "parking_lot", 3126 3534 "permissive-json-pointer", 3127 3535 "pin-project-lite", ··· 3153 3561 "tokio", 3154 3562 "tokio-stream", 3155 3563 "toml", 3564 + "url", 3156 3565 "urlencoding", 3157 3566 "uuid 1.5.0", 3158 3567 "vergen", ··· 3163 3572 3164 3573 [[package]] 3165 3574 name = "meilisearch-auth" 3166 - version = "1.5.0" 3575 + version = "1.6.0" 3167 3576 dependencies = [ 3168 - "base64 0.21.2", 3577 + "base64 0.21.5", 3169 3578 "enum-iterator", 3170 3579 "hmac", 3171 3580 "maplit", ··· 3182 3591 3183 3592 [[package]] 3184 3593 name = "meilisearch-types" 3185 - version = "1.5.0" 3594 + version = "1.6.0" 3186 3595 dependencies = [ 3187 3596 "actix-web", 3188 3597 "anyhow", ··· 3196 3605 "fst", 3197 3606 "insta", 3198 3607 "meili-snap", 3199 - "memmap2", 3608 + "memmap2 0.7.1", 3200 3609 "milli", 3201 3610 "roaring", 3202 3611 "serde", ··· 3212 3621 3213 3622 [[package]] 3214 3623 name = "meilitool" 3215 - version = "1.5.0" 3624 + version = "1.6.0" 3216 3625 dependencies = [ 3217 3626 "anyhow", 3218 3627 "clap", ··· 3226 3635 3227 3636 [[package]] 3228 3637 name = "memchr" 3229 - version = "2.5.0" 3638 + version = "2.6.4" 3230 3639 source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 3640 + checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 3232 3641 3233 3642 [[package]] 3234 3643 name = "memmap2" ··· 3237 3646 checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" 3238 3647 dependencies = [ 3239 3648 "libc", 3649 + "stable_deref_trait", 3650 + ] 3651 + 3652 + [[package]] 3653 + name = "memmap2" 3654 + version = "0.9.0" 3655 + source = "registry+https://github.com/rust-lang/crates.io-index" 3656 + checksum = "deaba38d7abf1d4cca21cc89e932e542ba2b9258664d2a9ef0e61512039c9375" 3657 + dependencies = [ 3658 + "libc", 3240 3659 ] 3241 3660 3242 3661 [[package]] ··· 3250 3669 3251 3670 [[package]] 3252 3671 name = "milli" 3253 - version = "1.5.0" 3672 + version = "1.6.0" 3254 3673 dependencies = [ 3674 + "arroy", 3255 3675 "big_s", 3256 3676 "bimap", 3257 3677 "bincode", 3258 3678 "bstr", 3259 3679 "bytemuck", 3260 3680 "byteorder", 3681 + "candle-core", 3682 + "candle-nn", 3683 + "candle-transformers", 3261 3684 "charabia", 3262 3685 "concat-arrays", 3263 3686 "crossbeam-channel", ··· 3267 3690 "filter-parser", 3268 3691 "flatten-serde-json", 3269 3692 "fst", 3693 + "futures", 3270 3694 "fxhash", 3271 3695 "geoutils", 3272 3696 "grenad", 3273 3697 "heed", 3698 + "hf-hub", 3274 3699 "indexmap 2.0.0", 3275 3700 "insta", 3276 - "instant-distance", 3277 3701 "itertools 0.11.0", 3278 3702 "json-depth-checker", 3279 3703 "levenshtein_automata", 3704 + "liquid", 3280 3705 "log", 3281 3706 "logging_timer", 3282 3707 "maplit", 3283 3708 "md5", 3284 - "memmap2", 3709 + "meili-snap", 3710 + "memmap2 0.7.1", 3285 3711 "mimalloc", 3286 3712 "obkv", 3287 3713 "once_cell", 3288 - "ordered-float", 3714 + "ordered-float 3.7.0", 3289 3715 "puffin", 3290 3716 "rand", 3291 3717 "rand_pcg", 3292 3718 "rayon", 3719 + "reqwest", 3293 3720 "roaring", 3294 3721 "rstar", 3295 3722 "serde", ··· 3300 3727 "smartstring", 3301 3728 "tempfile", 3302 3729 "thiserror", 3730 + "tiktoken-rs", 3303 3731 "time", 3732 + "tokenizers", 3733 + "tokio", 3304 3734 "uuid 1.5.0", 3305 3735 ] 3306 3736 ··· 3346 3776 3347 3777 [[package]] 3348 3778 name = "mio" 3349 - version = "0.8.8" 3779 + version = "0.8.9" 3350 3780 source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 3781 + checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 3352 3782 dependencies = [ 3353 3783 "libc", 3354 3784 "log", ··· 3357 3787 ] 3358 3788 3359 3789 [[package]] 3790 + name = "monostate" 3791 + version = "0.1.9" 3792 + source = "registry+https://github.com/rust-lang/crates.io-index" 3793 + checksum = "15f370ae88093ec6b11a710dec51321a61d420fafd1bad6e30d01bd9c920e8ee" 3794 + dependencies = [ 3795 + "monostate-impl", 3796 + "serde", 3797 + ] 3798 + 3799 + [[package]] 3800 + name = "monostate-impl" 3801 + version = "0.1.9" 3802 + source = "registry+https://github.com/rust-lang/crates.io-index" 3803 + checksum = "371717c0a5543d6a800cac822eac735aa7d2d2fbb41002e9856a4089532dbdce" 3804 + dependencies = [ 3805 + "proc-macro2", 3806 + "quote", 3807 + "syn 2.0.28", 3808 + ] 3809 + 3810 + [[package]] 3360 3811 name = "nelson" 3361 3812 version = "0.1.0" 3362 3813 source = "git+https://github.com/meilisearch/nelson.git?rev=675f13885548fb415ead8fbb447e9e6d9314000a#675f13885548fb415ead8fbb447e9e6d9314000a" ··· 3403 3854 ] 3404 3855 3405 3856 [[package]] 3857 + name = "num-complex" 3858 + version = "0.4.4" 3859 + source = "registry+https://github.com/rust-lang/crates.io-index" 3860 + checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3861 + dependencies = [ 3862 + "bytemuck", 3863 + "num-traits", 3864 + ] 3865 + 3866 + [[package]] 3406 3867 name = "num-integer" 3407 3868 version = "0.1.45" 3408 3869 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3433 3894 ] 3434 3895 3435 3896 [[package]] 3897 + name = "number_prefix" 3898 + version = "0.4.0" 3899 + source = "registry+https://github.com/rust-lang/crates.io-index" 3900 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 3901 + 3902 + [[package]] 3436 3903 name = "object" 3437 3904 version = "0.31.1" 3438 3905 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3443 3910 3444 3911 [[package]] 3445 3912 name = "obkv" 3446 - version = "0.2.0" 3913 + version = "0.2.1" 3447 3914 source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "f69e48cd7c8e5bb52a1da1287fdbfd877c32673176583ce664cd63b201aba385" 3915 + checksum = "6c459142426056c639ff88d053ebaaaeca0ee1411c94362892398ef4ccd81080" 3449 3916 3450 3917 [[package]] 3451 3918 name = "once_cell" ··· 3454 3921 checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 3455 3922 3456 3923 [[package]] 3924 + name = "onig" 3925 + version = "6.4.0" 3926 + source = "registry+https://github.com/rust-lang/crates.io-index" 3927 + checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 3928 + dependencies = [ 3929 + "bitflags 1.3.2", 3930 + "libc", 3931 + "once_cell", 3932 + "onig_sys", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "onig_sys" 3937 + version = "69.8.1" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 3940 + dependencies = [ 3941 + "cc", 3942 + "pkg-config", 3943 + ] 3944 + 3945 + [[package]] 3457 3946 name = "oorandom" 3458 3947 version = "11.1.3" 3459 3948 source = "registry+https://github.com/rust-lang/crates.io-index" 3460 3949 checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 3461 3950 3462 3951 [[package]] 3952 + name = "option-ext" 3953 + version = "0.2.0" 3954 + source = "registry+https://github.com/rust-lang/crates.io-index" 3955 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3956 + 3957 + [[package]] 3463 3958 name = "ordered-float" 3464 3959 version = "3.7.0" 3465 3960 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3469 3964 ] 3470 3965 3471 3966 [[package]] 3967 + name = "ordered-float" 3968 + version = "4.2.0" 3969 + source = "registry+https://github.com/rust-lang/crates.io-index" 3970 + checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" 3971 + dependencies = [ 3972 + "num-traits", 3973 + ] 3974 + 3975 + [[package]] 3472 3976 name = "page_size" 3473 - version = "0.4.2" 3977 + version = "0.5.0" 3474 3978 source = "registry+https://github.com/rust-lang/crates.io-index" 3475 - checksum = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd" 3979 + checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561" 3476 3980 dependencies = [ 3477 3981 "libc", 3478 3982 "winapi", ··· 3480 3984 3481 3985 [[package]] 3482 3986 name = "page_size" 3483 - version = "0.5.0" 3987 + version = "0.6.0" 3484 3988 source = "registry+https://github.com/rust-lang/crates.io-index" 3485 - checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561" 3989 + checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" 3486 3990 dependencies = [ 3487 3991 "libc", 3488 3992 "winapi", ··· 3566 4070 3567 4071 [[package]] 3568 4072 name = "percent-encoding" 3569 - version = "2.3.0" 4073 + version = "2.3.1" 3570 4074 source = "registry+https://github.com/rust-lang/crates.io-index" 3571 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 4075 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3572 4076 3573 4077 [[package]] 3574 4078 name = "permissive-json-pointer" 3575 - version = "1.5.0" 4079 + version = "1.6.0" 3576 4080 dependencies = [ 3577 4081 "big_s", 3578 4082 "serde_json", ··· 3628 4132 source = "registry+https://github.com/rust-lang/crates.io-index" 3629 4133 checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 3630 4134 dependencies = [ 4135 + "phf_macros", 3631 4136 "phf_shared", 3632 4137 ] 3633 4138 ··· 3652 4157 ] 3653 4158 3654 4159 [[package]] 4160 + name = "phf_macros" 4161 + version = "0.11.2" 4162 + source = "registry+https://github.com/rust-lang/crates.io-index" 4163 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 4164 + dependencies = [ 4165 + "phf_generator", 4166 + "phf_shared", 4167 + "proc-macro2", 4168 + "quote", 4169 + "syn 2.0.28", 4170 + ] 4171 + 4172 + [[package]] 3655 4173 name = "phf_shared" 3656 4174 version = "0.11.2" 3657 4175 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3720 4238 dependencies = [ 3721 4239 "plotters-backend", 3722 4240 ] 4241 + 4242 + [[package]] 4243 + name = "portable-atomic" 4244 + version = "1.5.1" 4245 + source = "registry+https://github.com/rust-lang/crates.io-index" 4246 + checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" 3723 4247 3724 4248 [[package]] 3725 4249 name = "postcard" ··· 3831 4355 ] 3832 4356 3833 4357 [[package]] 4358 + name = "pulp" 4359 + version = "0.18.4" 4360 + source = "registry+https://github.com/rust-lang/crates.io-index" 4361 + checksum = "7057c1435edb390ebfc51743abad043377f1f698ce8e649a9b52a4b378be5e4d" 4362 + dependencies = [ 4363 + "bytemuck", 4364 + "libm", 4365 + "num-complex", 4366 + "reborrow", 4367 + ] 4368 + 4369 + [[package]] 3834 4370 name = "quote" 3835 4371 version = "1.0.32" 3836 4372 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3870 4406 ] 3871 4407 3872 4408 [[package]] 4409 + name = "rand_distr" 4410 + version = "0.4.3" 4411 + source = "registry+https://github.com/rust-lang/crates.io-index" 4412 + checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 4413 + dependencies = [ 4414 + "num-traits", 4415 + "rand", 4416 + ] 4417 + 4418 + [[package]] 3873 4419 name = "rand_pcg" 3874 4420 version = "0.3.1" 3875 4421 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3877 4423 dependencies = [ 3878 4424 "rand_core", 3879 4425 "serde", 4426 + ] 4427 + 4428 + [[package]] 4429 + name = "raw-cpuid" 4430 + version = "10.7.0" 4431 + source = "registry+https://github.com/rust-lang/crates.io-index" 4432 + checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 4433 + dependencies = [ 4434 + "bitflags 1.3.2", 3880 4435 ] 3881 4436 3882 4437 [[package]] 3883 4438 name = "rayon" 3884 - version = "1.7.0" 4439 + version = "1.8.0" 3885 4440 source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 4441 + checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3887 4442 dependencies = [ 3888 4443 "either", 3889 4444 "rayon-core", 3890 4445 ] 3891 4446 3892 4447 [[package]] 4448 + name = "rayon-cond" 4449 + version = "0.3.0" 4450 + source = "registry+https://github.com/rust-lang/crates.io-index" 4451 + checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9" 4452 + dependencies = [ 4453 + "either", 4454 + "itertools 0.11.0", 4455 + "rayon", 4456 + ] 4457 + 4458 + [[package]] 3893 4459 name = "rayon-core" 3894 - version = "1.11.0" 4460 + version = "1.12.0" 3895 4461 source = "registry+https://github.com/rust-lang/crates.io-index" 3896 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 4462 + checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3897 4463 dependencies = [ 3898 - "crossbeam-channel", 3899 4464 "crossbeam-deque", 3900 4465 "crossbeam-utils", 3901 - "num_cpus", 3902 4466 ] 4467 + 4468 + [[package]] 4469 + name = "reborrow" 4470 + version = "0.5.5" 4471 + source = "registry+https://github.com/rust-lang/crates.io-index" 4472 + checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430" 3903 4473 3904 4474 [[package]] 3905 4475 name = "redox_syscall" ··· 3920 4490 ] 3921 4491 3922 4492 [[package]] 4493 + name = "redox_syscall" 4494 + version = "0.4.1" 4495 + source = "registry+https://github.com/rust-lang/crates.io-index" 4496 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 4497 + dependencies = [ 4498 + "bitflags 1.3.2", 4499 + ] 4500 + 4501 + [[package]] 3923 4502 name = "redox_users" 3924 4503 version = "0.4.3" 3925 4504 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3963 4542 ] 3964 4543 3965 4544 [[package]] 4545 + name = "regex-automata" 4546 + version = "0.4.3" 4547 + source = "registry+https://github.com/rust-lang/crates.io-index" 4548 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 4549 + 4550 + [[package]] 3966 4551 name = "regex-syntax" 3967 4552 version = "0.7.4" 3968 4553 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3970 4555 3971 4556 [[package]] 3972 4557 name = "reqwest" 3973 - version = "0.11.18" 4558 + version = "0.11.22" 3974 4559 source = "registry+https://github.com/rust-lang/crates.io-index" 3975 - checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 4560 + checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 3976 4561 dependencies = [ 3977 - "base64 0.21.2", 4562 + "base64 0.21.5", 3978 4563 "bytes", 3979 4564 "encoding_rs", 3980 4565 "futures-core", 3981 4566 "futures-util", 3982 4567 "h2", 3983 - "http", 4568 + "http 0.2.9", 3984 4569 "http-body", 3985 4570 "hyper", 3986 4571 "hyper-rustls", ··· 3996 4581 "serde", 3997 4582 "serde_json", 3998 4583 "serde_urlencoded", 4584 + "system-configuration", 3999 4585 "tokio", 4000 4586 "tokio-rustls 0.24.1", 4001 4587 "tower-service", ··· 4003 4589 "wasm-bindgen", 4004 4590 "wasm-bindgen-futures", 4005 4591 "web-sys", 4006 - "webpki-roots 0.22.6", 4592 + "webpki-roots 0.25.3", 4007 4593 "winreg", 4008 4594 ] 4009 4595 ··· 4012 4598 version = "0.1.7" 4013 4599 source = "registry+https://github.com/rust-lang/crates.io-index" 4014 4600 checksum = "8c31b5c4033f8fdde8700e4657be2c497e7288f01515be52168c631e2e4d4086" 4601 + 4602 + [[package]] 4603 + name = "riff" 4604 + version = "1.0.1" 4605 + source = "registry+https://github.com/rust-lang/crates.io-index" 4606 + checksum = "b9b1a3d5f46d53f4a3478e2be4a5a5ce5108ea58b100dcd139830eae7f79a3a1" 4015 4607 4016 4608 [[package]] 4017 4609 name = "ring" ··· 4059 4651 checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 4060 4652 4061 4653 [[package]] 4654 + name = "rustc-hash" 4655 + version = "1.1.0" 4656 + source = "registry+https://github.com/rust-lang/crates.io-index" 4657 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 4658 + 4659 + [[package]] 4062 4660 name = "rustc_version" 4063 4661 version = "0.4.0" 4064 4662 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4083 4681 4084 4682 [[package]] 4085 4683 name = "rustix" 4086 - version = "0.38.7" 4684 + version = "0.38.26" 4087 4685 source = "registry+https://github.com/rust-lang/crates.io-index" 4088 - checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399" 4686 + checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" 4089 4687 dependencies = [ 4090 - "bitflags 2.3.3", 4688 + "bitflags 2.4.1", 4091 4689 "errno", 4092 4690 "libc", 4093 - "linux-raw-sys 0.4.5", 4094 - "windows-sys 0.48.0", 4691 + "linux-raw-sys 0.4.12", 4692 + "windows-sys 0.52.0", 4095 4693 ] 4096 4694 4097 4695 [[package]] ··· 4114 4712 dependencies = [ 4115 4713 "log", 4116 4714 "ring", 4117 - "rustls-webpki 0.101.3", 4715 + "rustls-webpki", 4118 4716 "sct", 4119 4717 ] 4120 4718 ··· 4124 4722 source = "registry+https://github.com/rust-lang/crates.io-index" 4125 4723 checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 4126 4724 dependencies = [ 4127 - "base64 0.21.2", 4128 - ] 4129 - 4130 - [[package]] 4131 - name = "rustls-webpki" 4132 - version = "0.100.2" 4133 - source = "registry+https://github.com/rust-lang/crates.io-index" 4134 - checksum = "e98ff011474fa39949b7e5c0428f9b4937eda7da7848bbb947786b7be0b27dab" 4135 - dependencies = [ 4136 - "ring", 4137 - "untrusted", 4725 + "base64 0.21.5", 4138 4726 ] 4139 4727 4140 4728 [[package]] ··· 4160 4748 checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 4161 4749 4162 4750 [[package]] 4751 + name = "safetensors" 4752 + version = "0.3.3" 4753 + source = "registry+https://github.com/rust-lang/crates.io-index" 4754 + checksum = "d93279b86b3de76f820a8854dd06cbc33cfa57a417b19c47f6a25280112fb1df" 4755 + dependencies = [ 4756 + "serde", 4757 + "serde_json", 4758 + ] 4759 + 4760 + [[package]] 4163 4761 name = "same-file" 4164 4762 version = "1.0.6" 4165 4763 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4205 4803 checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 4206 4804 4207 4805 [[package]] 4806 + name = "seq-macro" 4807 + version = "0.3.5" 4808 + source = "registry+https://github.com/rust-lang/crates.io-index" 4809 + checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 4810 + 4811 + [[package]] 4208 4812 name = "serde" 4209 4813 version = "1.0.190" 4210 4814 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4214 4818 ] 4215 4819 4216 4820 [[package]] 4217 - name = "serde-big-array" 4218 - version = "0.5.1" 4219 - source = "registry+https://github.com/rust-lang/crates.io-index" 4220 - checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f" 4221 - dependencies = [ 4222 - "serde", 4223 - ] 4224 - 4225 - [[package]] 4226 4821 name = "serde-cs" 4227 4822 version = "0.2.4" 4228 4823 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4251 4846 "indexmap 2.0.0", 4252 4847 "itoa", 4253 4848 "ryu", 4849 + "serde", 4850 + ] 4851 + 4852 + [[package]] 4853 + name = "serde_plain" 4854 + version = "1.0.2" 4855 + source = "registry+https://github.com/rust-lang/crates.io-index" 4856 + checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 4857 + dependencies = [ 4254 4858 "serde", 4255 4859 ] 4256 4860 ··· 4397 5001 ] 4398 5002 4399 5003 [[package]] 5004 + name = "socket2" 5005 + version = "0.5.5" 5006 + source = "registry+https://github.com/rust-lang/crates.io-index" 5007 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 5008 + dependencies = [ 5009 + "libc", 5010 + "windows-sys 0.48.0", 5011 + ] 5012 + 5013 + [[package]] 5014 + name = "socks" 5015 + version = "0.3.4" 5016 + source = "registry+https://github.com/rust-lang/crates.io-index" 5017 + checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b" 5018 + dependencies = [ 5019 + "byteorder", 5020 + "libc", 5021 + "winapi", 5022 + ] 5023 + 5024 + [[package]] 4400 5025 name = "spin" 4401 5026 version = "0.5.2" 4402 5027 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4412 5037 ] 4413 5038 4414 5039 [[package]] 5040 + name = "spm_precompiled" 5041 + version = "0.1.4" 5042 + source = "registry+https://github.com/rust-lang/crates.io-index" 5043 + checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326" 5044 + dependencies = [ 5045 + "base64 0.13.1", 5046 + "nom", 5047 + "serde", 5048 + "unicode-segmentation", 5049 + ] 5050 + 5051 + [[package]] 4415 5052 name = "stable_deref_trait" 4416 5053 version = "1.2.0" 4417 5054 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4479 5116 4480 5117 [[package]] 4481 5118 name = "synstructure" 4482 - version = "0.12.6" 4483 - source = "registry+https://github.com/rust-lang/crates.io-index" 4484 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 4485 - dependencies = [ 4486 - "proc-macro2", 4487 - "quote", 4488 - "syn 1.0.109", 4489 - "unicode-xid", 4490 - ] 4491 - 4492 - [[package]] 4493 - name = "synstructure" 4494 5119 version = "0.13.0" 4495 5120 source = "registry+https://github.com/rust-lang/crates.io-index" 4496 5121 checksum = "285ba80e733fac80aa4270fbcdf83772a79b80aa35c97075320abfee4a915b06" ··· 4514 5139 "once_cell", 4515 5140 "rayon", 4516 5141 "winapi", 5142 + ] 5143 + 5144 + [[package]] 5145 + name = "system-configuration" 5146 + version = "0.5.1" 5147 + source = "registry+https://github.com/rust-lang/crates.io-index" 5148 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 5149 + dependencies = [ 5150 + "bitflags 1.3.2", 5151 + "core-foundation", 5152 + "system-configuration-sys", 5153 + ] 5154 + 5155 + [[package]] 5156 + name = "system-configuration-sys" 5157 + version = "0.5.0" 5158 + source = "registry+https://github.com/rust-lang/crates.io-index" 5159 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 5160 + dependencies = [ 5161 + "core-foundation-sys", 5162 + "libc", 4517 5163 ] 4518 5164 4519 5165 [[package]] ··· 4538 5184 4539 5185 [[package]] 4540 5186 name = "tempfile" 4541 - version = "3.7.1" 5187 + version = "3.8.1" 4542 5188 source = "registry+https://github.com/rust-lang/crates.io-index" 4543 - checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 5189 + checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 4544 5190 dependencies = [ 4545 5191 "cfg-if", 4546 5192 "fastrand", 4547 - "redox_syscall 0.3.5", 4548 - "rustix 0.38.7", 5193 + "redox_syscall 0.4.1", 5194 + "rustix 0.38.26", 4549 5195 "windows-sys 0.48.0", 4550 5196 ] 4551 5197 ··· 4560 5206 4561 5207 [[package]] 4562 5208 name = "thiserror" 4563 - version = "1.0.44" 5209 + version = "1.0.50" 4564 5210 source = "registry+https://github.com/rust-lang/crates.io-index" 4565 - checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 5211 + checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 4566 5212 dependencies = [ 4567 5213 "thiserror-impl", 4568 5214 ] 4569 5215 4570 5216 [[package]] 4571 5217 name = "thiserror-impl" 4572 - version = "1.0.44" 5218 + version = "1.0.50" 4573 5219 source = "registry+https://github.com/rust-lang/crates.io-index" 4574 - checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 5220 + checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 4575 5221 dependencies = [ 4576 5222 "proc-macro2", 4577 5223 "quote", 4578 5224 "syn 2.0.28", 5225 + ] 5226 + 5227 + [[package]] 5228 + name = "tiktoken-rs" 5229 + version = "0.5.7" 5230 + source = "registry+https://github.com/rust-lang/crates.io-index" 5231 + checksum = "a4427b6b1c6b38215b92dd47a83a0ecc6735573d0a5a4c14acc0ac5b33b28adb" 5232 + dependencies = [ 5233 + "anyhow", 5234 + "base64 0.21.5", 5235 + "bstr", 5236 + "fancy-regex", 5237 + "lazy_static", 5238 + "parking_lot", 5239 + "rustc-hash", 4579 5240 ] 4580 5241 4581 5242 [[package]] ··· 4644 5305 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4645 5306 4646 5307 [[package]] 5308 + name = "tokenizers" 5309 + version = "0.14.1" 5310 + source = "git+https://github.com/huggingface/tokenizers.git?tag=v0.14.1#6357206cdcce4d78ffb1e0372feb456caea09375" 5311 + dependencies = [ 5312 + "aho-corasick", 5313 + "derive_builder", 5314 + "esaxx-rs", 5315 + "getrandom", 5316 + "itertools 0.11.0", 5317 + "lazy_static", 5318 + "log", 5319 + "macro_rules_attribute", 5320 + "monostate", 5321 + "onig", 5322 + "paste", 5323 + "rand", 5324 + "rayon", 5325 + "rayon-cond", 5326 + "regex", 5327 + "regex-syntax", 5328 + "serde", 5329 + "serde_json", 5330 + "spm_precompiled", 5331 + "thiserror", 5332 + "unicode-normalization-alignments", 5333 + "unicode-segmentation", 5334 + "unicode_categories", 5335 + ] 5336 + 5337 + [[package]] 4647 5338 name = "tokio" 4648 - version = "1.29.1" 5339 + version = "1.34.0" 4649 5340 source = "registry+https://github.com/rust-lang/crates.io-index" 4650 - checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 5341 + checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 4651 5342 dependencies = [ 4652 - "autocfg", 4653 5343 "backtrace", 4654 5344 "bytes", 4655 5345 "libc", ··· 4658 5348 "parking_lot", 4659 5349 "pin-project-lite", 4660 5350 "signal-hook-registry", 4661 - "socket2", 5351 + "socket2 0.5.5", 4662 5352 "tokio-macros", 4663 5353 "windows-sys 0.48.0", 4664 5354 ] 4665 5355 4666 5356 [[package]] 4667 5357 name = "tokio-macros" 4668 - version = "2.1.0" 5358 + version = "2.2.0" 4669 5359 source = "registry+https://github.com/rust-lang/crates.io-index" 4670 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 5360 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4671 5361 dependencies = [ 4672 5362 "proc-macro2", 4673 5363 "quote", ··· 4769 5459 "cfg-if", 4770 5460 "log", 4771 5461 "pin-project-lite", 5462 + "tracing-attributes", 4772 5463 "tracing-core", 4773 5464 ] 4774 5465 4775 5466 [[package]] 5467 + name = "tracing-attributes" 5468 + version = "0.1.27" 5469 + source = "registry+https://github.com/rust-lang/crates.io-index" 5470 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 5471 + dependencies = [ 5472 + "proc-macro2", 5473 + "quote", 5474 + "syn 2.0.28", 5475 + ] 5476 + 5477 + [[package]] 4776 5478 name = "tracing-core" 4777 5479 version = "0.1.31" 4778 5480 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4839 5541 ] 4840 5542 4841 5543 [[package]] 5544 + name = "unicode-normalization-alignments" 5545 + version = "0.1.12" 5546 + source = "registry+https://github.com/rust-lang/crates.io-index" 5547 + checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de" 5548 + dependencies = [ 5549 + "smallvec", 5550 + ] 5551 + 5552 + [[package]] 4842 5553 name = "unicode-segmentation" 4843 5554 version = "1.10.1" 4844 5555 source = "registry+https://github.com/rust-lang/crates.io-index" 4845 5556 checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 4846 5557 4847 5558 [[package]] 5559 + name = "unicode-width" 5560 + version = "0.1.11" 5561 + source = "registry+https://github.com/rust-lang/crates.io-index" 5562 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 5563 + 5564 + [[package]] 4848 5565 name = "unicode-xid" 4849 5566 version = "0.2.4" 4850 5567 source = "registry+https://github.com/rust-lang/crates.io-index" 4851 5568 checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 4852 5569 4853 5570 [[package]] 5571 + name = "unicode_categories" 5572 + version = "0.1.1" 5573 + source = "registry+https://github.com/rust-lang/crates.io-index" 5574 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 5575 + 5576 + [[package]] 4854 5577 name = "untrusted" 4855 5578 version = "0.7.1" 4856 5579 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4858 5581 4859 5582 [[package]] 4860 5583 name = "ureq" 4861 - version = "2.7.1" 5584 + version = "2.9.1" 4862 5585 source = "registry+https://github.com/rust-lang/crates.io-index" 4863 - checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9" 5586 + checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97" 4864 5587 dependencies = [ 4865 - "base64 0.21.2", 5588 + "base64 0.21.5", 5589 + "flate2", 4866 5590 "log", 4867 5591 "once_cell", 4868 5592 "rustls 0.21.6", 4869 - "rustls-webpki 0.100.2", 5593 + "rustls-webpki", 5594 + "serde", 5595 + "serde_json", 5596 + "socks", 4870 5597 "url", 4871 - "webpki-roots 0.23.1", 5598 + "webpki-roots 0.25.3", 4872 5599 ] 4873 5600 4874 5601 [[package]] 4875 5602 name = "url" 4876 - version = "2.4.0" 5603 + version = "2.5.0" 4877 5604 source = "registry+https://github.com/rust-lang/crates.io-index" 4878 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 5605 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4879 5606 dependencies = [ 4880 5607 "form_urlencoded", 4881 5608 "idna", 4882 5609 "percent-encoding", 5610 + "serde", 4883 5611 ] 4884 5612 4885 5613 [[package]] ··· 5062 5790 checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5063 5791 5064 5792 [[package]] 5793 + name = "wav" 5794 + version = "1.0.0" 5795 + source = "registry+https://github.com/rust-lang/crates.io-index" 5796 + checksum = "a65e199c799848b4f997072aa4d673c034f80f40191f97fe2f0a23f410be1609" 5797 + dependencies = [ 5798 + "riff", 5799 + ] 5800 + 5801 + [[package]] 5065 5802 name = "web-sys" 5066 5803 version = "0.3.64" 5067 5804 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5092 5829 5093 5830 [[package]] 5094 5831 name = "webpki-roots" 5095 - version = "0.23.1" 5832 + version = "0.25.3" 5096 5833 source = "registry+https://github.com/rust-lang/crates.io-index" 5097 - checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" 5098 - dependencies = [ 5099 - "rustls-webpki 0.100.2", 5100 - ] 5834 + checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 5101 5835 5102 5836 [[package]] 5103 5837 name = "whatlang" ··· 5159 5893 ] 5160 5894 5161 5895 [[package]] 5896 + name = "windows-sys" 5897 + version = "0.52.0" 5898 + source = "registry+https://github.com/rust-lang/crates.io-index" 5899 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5900 + dependencies = [ 5901 + "windows-targets 0.52.0", 5902 + ] 5903 + 5904 + [[package]] 5162 5905 name = "windows-targets" 5163 5906 version = "0.42.2" 5164 5907 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5189 5932 ] 5190 5933 5191 5934 [[package]] 5935 + name = "windows-targets" 5936 + version = "0.52.0" 5937 + source = "registry+https://github.com/rust-lang/crates.io-index" 5938 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 5939 + dependencies = [ 5940 + "windows_aarch64_gnullvm 0.52.0", 5941 + "windows_aarch64_msvc 0.52.0", 5942 + "windows_i686_gnu 0.52.0", 5943 + "windows_i686_msvc 0.52.0", 5944 + "windows_x86_64_gnu 0.52.0", 5945 + "windows_x86_64_gnullvm 0.52.0", 5946 + "windows_x86_64_msvc 0.52.0", 5947 + ] 5948 + 5949 + [[package]] 5192 5950 name = "windows_aarch64_gnullvm" 5193 5951 version = "0.42.2" 5194 5952 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5201 5959 checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 5202 5960 5203 5961 [[package]] 5962 + name = "windows_aarch64_gnullvm" 5963 + version = "0.52.0" 5964 + source = "registry+https://github.com/rust-lang/crates.io-index" 5965 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 5966 + 5967 + [[package]] 5204 5968 name = "windows_aarch64_msvc" 5205 5969 version = "0.42.2" 5206 5970 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5213 5977 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 5214 5978 5215 5979 [[package]] 5980 + name = "windows_aarch64_msvc" 5981 + version = "0.52.0" 5982 + source = "registry+https://github.com/rust-lang/crates.io-index" 5983 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 5984 + 5985 + [[package]] 5216 5986 name = "windows_i686_gnu" 5217 5987 version = "0.42.2" 5218 5988 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5225 5995 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 5226 5996 5227 5997 [[package]] 5998 + name = "windows_i686_gnu" 5999 + version = "0.52.0" 6000 + source = "registry+https://github.com/rust-lang/crates.io-index" 6001 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 6002 + 6003 + [[package]] 5228 6004 name = "windows_i686_msvc" 5229 6005 version = "0.42.2" 5230 6006 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5237 6013 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 5238 6014 5239 6015 [[package]] 6016 + name = "windows_i686_msvc" 6017 + version = "0.52.0" 6018 + source = "registry+https://github.com/rust-lang/crates.io-index" 6019 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 6020 + 6021 + [[package]] 5240 6022 name = "windows_x86_64_gnu" 5241 6023 version = "0.42.2" 5242 6024 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5249 6031 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 5250 6032 5251 6033 [[package]] 6034 + name = "windows_x86_64_gnu" 6035 + version = "0.52.0" 6036 + source = "registry+https://github.com/rust-lang/crates.io-index" 6037 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 6038 + 6039 + [[package]] 5252 6040 name = "windows_x86_64_gnullvm" 5253 6041 version = "0.42.2" 5254 6042 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5261 6049 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 5262 6050 5263 6051 [[package]] 6052 + name = "windows_x86_64_gnullvm" 6053 + version = "0.52.0" 6054 + source = "registry+https://github.com/rust-lang/crates.io-index" 6055 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 6056 + 6057 + [[package]] 5264 6058 name = "windows_x86_64_msvc" 5265 6059 version = "0.42.2" 5266 6060 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5271 6065 version = "0.48.0" 5272 6066 source = "registry+https://github.com/rust-lang/crates.io-index" 5273 6067 checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 6068 + 6069 + [[package]] 6070 + name = "windows_x86_64_msvc" 6071 + version = "0.52.0" 6072 + source = "registry+https://github.com/rust-lang/crates.io-index" 6073 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 5274 6074 5275 6075 [[package]] 5276 6076 name = "winnow" ··· 5283 6083 5284 6084 [[package]] 5285 6085 name = "winreg" 5286 - version = "0.10.1" 6086 + version = "0.50.0" 5287 6087 source = "registry+https://github.com/rust-lang/crates.io-index" 5288 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 6088 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5289 6089 dependencies = [ 5290 - "winapi", 6090 + "cfg-if", 6091 + "windows-sys 0.48.0", 5291 6092 ] 5292 6093 5293 6094 [[package]] ··· 5357 6158 "proc-macro2", 5358 6159 "quote", 5359 6160 "syn 2.0.28", 5360 - "synstructure 0.13.0", 5361 - ] 5362 - 5363 - [[package]] 5364 - name = "zerocopy" 5365 - version = "0.3.0" 5366 - source = "registry+https://github.com/rust-lang/crates.io-index" 5367 - checksum = "6580539ad917b7c026220c4b3f2c08d52ce54d6ce0dc491e66002e35388fab46" 5368 - dependencies = [ 5369 - "byteorder", 5370 - "zerocopy-derive", 5371 - ] 5372 - 5373 - [[package]] 5374 - name = "zerocopy-derive" 5375 - version = "0.2.0" 5376 - source = "registry+https://github.com/rust-lang/crates.io-index" 5377 - checksum = "d498dbd1fd7beb83c86709ae1c33ca50942889473473d287d56ce4770a18edfb" 5378 - dependencies = [ 5379 - "proc-macro2", 5380 - "syn 1.0.109", 5381 - "synstructure 0.12.6", 6161 + "synstructure", 5382 6162 ] 5383 6163 5384 6164 [[package]] ··· 5399 6179 "proc-macro2", 5400 6180 "quote", 5401 6181 "syn 2.0.28", 5402 - "synstructure 0.13.0", 6182 + "synstructure", 5403 6183 ] 5404 6184 5405 6185 [[package]]
+6 -4
pkgs/servers/search/meilisearch/default.nix
··· 7 7 , nix-update-script 8 8 }: 9 9 10 - let version = "1.5.0"; 10 + let version = "1.6.0"; 11 11 in 12 12 rustPlatform.buildRustPackage { 13 13 pname = "meilisearch"; ··· 17 17 owner = "meilisearch"; 18 18 repo = "MeiliSearch"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-UP5i89hXmbATbHwN4wu42L6zX2fnd/hF4NEGK5VwmiM="; 20 + hash = "sha256-B1psJeGWG0E5oPu+OVAxkdJNblqaBzB/CurpLxdESB8="; 21 21 }; 22 22 23 23 cargoBuildFlags = [ ··· 28 28 lockFile = ./Cargo.lock; 29 29 outputHashes = { 30 30 "actix-web-static-files-3.0.5" = "sha256-2BN0RzLhdykvN3ceRLkaKwSZtel2DBqZ+uz4Qut+nII="; 31 - "heed-0.12.7" = "sha256-mthHMaTqmNae8gpe4ZnozABKBrgFQdn9KWCvIzJJ+u4="; 32 - "lmdb-rkv-sys-0.15.1" = "sha256-zLHTprwF7aa+2jaD7dGYmOZpJYFijMTb4I3ODflNUII="; 31 + "arroy-0.1.0" = "sha256-ybKdB0eP8AdxLMNM7Si9onWITNc2SPNTXMgKdWdy34E="; 32 + "candle-core-0.3.1" = "sha256-KlkjTUcbnP+uZoA0fDZlEPT5qKC2ogMAuR8X14xRFgA="; 33 + "hf-hub-0.3.2" = "sha256-tsn76b+/HRvPnZ7cWd8SBcEdnMPtjUEIRJipOJUbz54="; 33 34 "nelson-0.1.0" = "sha256-eF672quU576wmZSisk7oDR7QiDafuKlSg0BTQkXnzqY="; 35 + "tokenizers-0.14.1" = "sha256-cq7dQLttNkV5UUhXujxKKMuzhD7hz+zTTKxUKlvz1s0="; 34 36 }; 35 37 }; 36 38
+3 -3
pkgs/servers/web-apps/livebook/default.nix
··· 1 1 { lib, beamPackages, makeWrapper, rebar3, elixir, erlang, fetchFromGitHub, nixosTests }: 2 2 beamPackages.mixRelease rec { 3 3 pname = "livebook"; 4 - version = "0.12.0"; 4 + version = "0.12.1"; 5 5 6 6 inherit elixir; 7 7 ··· 13 13 owner = "livebook-dev"; 14 14 repo = "livebook"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ONNl88ZUjeAjYV8kdk4Tf6noQ7YSp/UN9OHEJHk7+5s="; 16 + hash = "sha256-Q4c0AelZZDPxE/rtoHIRQi3INMLHeiZ72TWgy183f4Q="; 17 17 }; 18 18 19 19 mixFodDeps = beamPackages.fetchMixDeps { 20 20 pname = "mix-deps-${pname}"; 21 21 inherit src version; 22 - hash = "sha256-JA0890hGShavn60khnevt4L0qEWKZnTmafImU4dkCr8="; 22 + hash = "sha256-dyKhrbb7vazBV6LFERtGHLQXEx29vTgn074mY4fsHy4="; 23 23 }; 24 24 25 25 installPhase = ''
+31 -15
pkgs/test/nixpkgs-check-by-name/default.nix
··· 6 6 clippy, 7 7 mkShell, 8 8 makeWrapper, 9 + runCommand, 9 10 }: 10 11 let 11 12 runtimeExprPath = ./src/eval.nix; 12 13 nixpkgsLibPath = ../../../lib; 14 + 15 + # Needed to make Nix evaluation work inside nix builds 16 + initNix = '' 17 + export TEST_ROOT=$(pwd)/test-tmp 18 + export NIX_CONF_DIR=$TEST_ROOT/etc 19 + export NIX_LOCALSTATE_DIR=$TEST_ROOT/var 20 + export NIX_LOG_DIR=$TEST_ROOT/var/log/nix 21 + export NIX_STATE_DIR=$TEST_ROOT/var/nix 22 + export NIX_STORE_DIR=$TEST_ROOT/store 23 + 24 + # Ensure that even if tests run in parallel, we don't get an error 25 + # We'd run into https://github.com/NixOS/nix/issues/2706 unless the store is initialised first 26 + nix-store --init 27 + ''; 28 + 13 29 package = 14 30 rustPlatform.buildRustPackage { 15 31 name = "nixpkgs-check-by-name"; ··· 22 38 makeWrapper 23 39 ]; 24 40 env.NIX_CHECK_BY_NAME_EXPR_PATH = "${runtimeExprPath}"; 25 - # Needed to make Nix evaluation work inside the nix build 26 - preCheck = '' 27 - export TEST_ROOT=$(pwd)/test-tmp 28 - export NIX_CONF_DIR=$TEST_ROOT/etc 29 - export NIX_LOCALSTATE_DIR=$TEST_ROOT/var 30 - export NIX_LOG_DIR=$TEST_ROOT/var/log/nix 31 - export NIX_STATE_DIR=$TEST_ROOT/var/nix 32 - export NIX_STORE_DIR=$TEST_ROOT/store 33 - 34 - export NIXPKGS_LIB_PATH=${nixpkgsLibPath} 35 - 36 - # Ensure that even if tests run in parallel, we don't get an error 37 - # We'd run into https://github.com/NixOS/nix/issues/2706 unless the store is initialised first 38 - nix-store --init 39 - ''; 41 + env.NIXPKGS_LIB_PATH = "${nixpkgsLibPath}"; 42 + preCheck = initNix; 40 43 postCheck = '' 41 44 cargo fmt --check 42 45 cargo clippy -- -D warnings ··· 50 53 env.NIXPKGS_LIB_PATH = toString nixpkgsLibPath; 51 54 inputsFrom = [ package ]; 52 55 }; 56 + 57 + # Tests the tool on the current Nixpkgs tree, this is a good sanity check 58 + passthru.tests.nixpkgs = runCommand "test-nixpkgs-check-by-name" { 59 + nativeBuildInputs = [ 60 + package 61 + nix 62 + ]; 63 + nixpkgsPath = lib.cleanSource ../../..; 64 + } '' 65 + ${initNix} 66 + nixpkgs-check-by-name --base "$nixpkgsPath" "$nixpkgsPath" 67 + touch $out 68 + ''; 53 69 }; 54 70 in 55 71 package
+13 -4
pkgs/test/nixpkgs-check-by-name/src/eval.rs
··· 168 168 // so the UsesByName ratchet is already as tight as it can be 169 169 NonAttributeSet => Success(Tight), 170 170 NonCallPackage => Success(Tight), 171 - // This is an odd case when _internalCallByNamePackageFile is used to define a package. 171 + // This is the case when the `pkgs/by-name`-internal _internalCallByNamePackageFile 172 + // is used for a package outside `pkgs/by-name` 172 173 CallPackage(CallPackageInfo { 173 174 call_package_variant: Auto, 174 175 .. 175 - }) => NixpkgsProblem::InternalCallPackageUsed { 176 - attr_name: attribute_name.clone(), 176 + }) => { 177 + // With the current detection mechanism, this also triggers for aliases 178 + // to pkgs/by-name packages, and there's no good method of 179 + // distinguishing alias vs non-alias. 180 + // Using `config.allowAliases = false` at least currently doesn't work 181 + // because there's nothing preventing people from defining aliases that 182 + // are present even with that disabled. 183 + // In the future we could kind of abuse this behavior to have better 184 + // enforcement of conditional aliases, but for now we just need to not 185 + // give an error. 186 + Success(Tight) 177 187 } 178 - .into(), 179 188 // Only derivations can be in pkgs/by-name, 180 189 // so this attribute doesn't qualify 181 190 CallPackage(CallPackageInfo {
-8
pkgs/test/nixpkgs-check-by-name/src/nixpkgs_problem.rs
··· 88 88 text: String, 89 89 io_error: io::Error, 90 90 }, 91 - InternalCallPackageUsed { 92 - attr_name: String, 93 - }, 94 91 MovedOutOfByName { 95 92 package_name: String, 96 93 call_package_path: Option<PathBuf>, ··· 226 223 relative_package_dir.display(), 227 224 subpath.display(), 228 225 text, 229 - ), 230 - NixpkgsProblem::InternalCallPackageUsed { attr_name } => 231 - write!( 232 - f, 233 - "pkgs.{attr_name}: This attribute is defined using `_internalCallByNamePackageFile`, which is an internal function not intended for manual use.", 234 226 ), 235 227 NixpkgsProblem::MovedOutOfByName { package_name, call_package_path, empty_arg } => { 236 228 let call_package_arg =
+3
pkgs/test/nixpkgs-check-by-name/tests/aliases/aliases.nix
··· 1 + self: super: { 2 + baz = self.foo; 3 + }
+3
pkgs/test/nixpkgs-check-by-name/tests/aliases/all-packages.nix
··· 1 + self: super: { 2 + bar = self.foo; 3 + }
+1
pkgs/test/nixpkgs-check-by-name/tests/aliases/default.nix
··· 1 + import <test-nixpkgs> { root = ./.; }
+1
pkgs/test/nixpkgs-check-by-name/tests/aliases/pkgs/by-name/fo/foo/package.nix
··· 1 + { someDrv }: someDrv
-1
pkgs/test/nixpkgs-check-by-name/tests/internalCallPackage/expected
··· 1 - pkgs.foo: This attribute is defined using `_internalCallByNamePackageFile`, which is an internal function not intended for manual use.
+9
pkgs/test/nixpkgs-check-by-name/tests/mock-nixpkgs.nix
··· 77 77 else 78 78 [ ]; 79 79 80 + # A list optionally containing the `aliases.nix` file from the test case as an overlay 81 + # But only if config.allowAliases is not false 82 + optionalAliasesOverlay = 83 + if (config.allowAliases or true) && builtins.pathExists (root + "/aliases.nix") then 84 + [ (import (root + "/aliases.nix")) ] 85 + else 86 + [ ]; 87 + 80 88 # All the overlays in the right order, including the user-supplied ones 81 89 allOverlays = 82 90 [ 83 91 autoCalledPackages 84 92 ] 85 93 ++ optionalAllPackagesOverlay 94 + ++ optionalAliasesOverlay 86 95 ++ overlays; 87 96 88 97 # Apply all the overlays in order to the base fixed-point function pkgsFun
+5 -3
pkgs/tools/admin/pgadmin/default.nix
··· 14 14 15 15 let 16 16 pname = "pgadmin"; 17 - version = "8.1"; 18 - yarnHash = "sha256-KAiY5TX2O8mxP7PjIJstYEzCBbqDgT+CpEhreuAGW/U="; 17 + version = "8.2"; 18 + yarnHash = "sha256-uMSgpkYoLD32VYDAkjywC9bZjm7UKA0hhwVNc/toEbA="; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "pgadmin-org"; 22 22 repo = "pgadmin4"; 23 23 rev = "REL-${lib.versions.major version}_${lib.versions.minor version}"; 24 - hash = "sha256-zzS/fydNOXpIWdyLtWQhY+hVpneca+3wD88DmZEkS8s="; 24 + hash = "sha256-RfpZXy265kwpMsWUBDVfbL/0eX0By79I4VNkG8zwVOs="; 25 25 }; 26 26 27 27 # keep the scope, as it is used throughout the derivation and tests ··· 181 181 google-auth-oauthlib 182 182 google-api-python-client 183 183 keyring 184 + typer 185 + rich 184 186 ]; 185 187 186 188 passthru.tests = {
+7 -55
pkgs/tools/admin/pgadmin/expose-setup.py.patch
··· 1 - pkg/pip/setup_pip.py | 5 ++++- 2 - web/setup.py | 14 ++++++++------ 3 - 2 files changed, 12 insertions(+), 7 deletions(-) 4 - 5 1 diff --git a/pkg/pip/setup_pip.py b/pkg/pip/setup_pip.py 6 - index 5592d1b04..131eaa1ed 100644 2 + index c65795b10..e56b6a6f3 100644 7 3 --- a/pkg/pip/setup_pip.py 8 4 +++ b/pkg/pip/setup_pip.py 9 - @@ -95,7 +95,10 @@ setup( 10 - }, 11 - 5 + @@ -101,7 +101,7 @@ setup( 6 + 12 7 entry_points={ 13 - - 'console_scripts': ['pgadmin4=pgadmin4.pgAdmin4:main'], 14 - + 'console_scripts': [ 15 - + 'pgadmin4=pgadmin4.pgAdmin4:main', 16 - + 'pgadmin4-setup=pgadmin4.setup:main' 17 - + ], 8 + 'console_scripts': ['pgadmin4=pgadmin4.pgAdmin4:main', 9 + - 'pgadmin4-cli=pgadmin4.setup:main'], 10 + + 'pgadmin4-cli=pgadmin4.setup:app'], 18 11 }, 19 - 20 - ) 21 - diff --git a/web/setup.py b/web/setup.py 22 - index 2204ffb..d5fda9f 100644 23 - --- a/web/setup.py 24 - +++ b/web/setup.py 25 - @@ -14,7 +14,6 @@ import argparse 26 - import os 27 - import sys 28 - import builtins 29 - -import config 30 12 31 - # Grab the SERVER_MODE if it's been set by the runtime 32 - if 'SERVER_MODE' in globals(): 33 - @@ -91,6 +90,9 @@ def load_servers(args): 34 - def setup_db(app): 35 - """Setup the configuration database.""" 36 - 37 - + # here we need an additional import, since the call to setup_db changed 38 - + # https://redmine.postgresql.org/projects/pgadmin4/repository/2/revisions/3a69d50458f57d19948b867aec55c55d635a36e5/diff/web/setup.py 39 - + import config 40 - create_app_data_directory(config) 41 - 42 - print("pgAdmin 4 - Application Initialisation") 43 - @@ -139,8 +141,9 @@ def clear_servers(): 44 - clear_database_servers(load_user, True) 45 - 46 - 47 - -if __name__ == '__main__': 48 - +def main(): 49 - # Configuration settings 50 - + import config 51 - parser = argparse.ArgumentParser(description='Setup the pgAdmin config DB') 52 - 53 - exp_group = parser.add_argument_group('Dump server config') 54 - @@ -191,3 +194,6 @@ if __name__ == '__main__': 55 - else: 56 - app = create_app() 57 - setup_db(app) 58 - + 59 - +if __name__ == '__main__': 60 - + main() 61 - 13 + ) 62 14 diff --git a/web/pgadmin/model/__init__.py b/web/pgadmin/model/__init__.py 63 15 index 4c36dd1..a492365 100644 64 16 --- a/web/pgadmin/model/__init__.py
+5
pkgs/tools/admin/pgadmin/yarn.lock
··· 12716 12716 resolved "https://github.com/pgadmin-org/react-data-grid.git#200d2f5e02de694e3e9ffbe177c279bc40240fb8" 12717 12717 dependencies: 12718 12718 "clsx" "^1.1.1" 12719 + "react-data-grid@https://github.com/pgadmin-org/react-data-grid.git#200d2f5e02de694e3e9ffbe177c279bc40240fb8": 12720 + version "7.0.0-beta.14" 12721 + resolved "https://github.com/pgadmin-org/react-data-grid.git#200d2f5e02de694e3e9ffbe177c279bc40240fb8" 12722 + dependencies: 12723 + "clsx" "^1.1.1"
+3
pkgs/tools/package-management/poetry/unwrapped.nix
··· 37 37 , pytest-mock 38 38 , pytest-xdist 39 39 , pythonAtLeast 40 + , darwin 40 41 }: 41 42 42 43 buildPythonPackage rec { ··· 110 111 httpretty 111 112 pytest-mock 112 113 pytest-xdist 114 + ] ++ lib.optionals stdenv.isDarwin [ 115 + darwin.ps 113 116 ]; 114 117 115 118 preCheck = (''
+5 -5
pkgs/top-level/all-packages.nix
··· 5701 5701 5702 5702 hyprland-protocols = callPackage ../applications/window-managers/hyprwm/hyprland-protocols { }; 5703 5703 5704 + hyprlang = callPackage ../by-name/hy/hyprlang/package.nix { 5705 + stdenv = gcc13Stdenv; 5706 + }; 5707 + 5704 5708 hyprnome = callPackage ../applications/misc/hyprnome { }; 5705 5709 5706 5710 hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { }; ··· 31713 31717 31714 31718 gomuks = callPackage ../applications/networking/instant-messengers/gomuks { }; 31715 31719 31716 - inherit (ocaml-ng.ocamlPackages_4_12) google-drive-ocamlfuse; 31720 + inherit (ocamlPackages) google-drive-ocamlfuse; 31717 31721 31718 31722 googler = callPackage ../applications/misc/googler { 31719 31723 python = python3; ··· 34109 34113 portfolio = callPackage ../applications/office/portfolio { 34110 34114 jre = openjdk17; 34111 34115 }; 34112 - 34113 - prevo = callPackage ../applications/misc/prevo { }; 34114 - prevo-data = callPackage ../applications/misc/prevo/data.nix { }; 34115 - prevo-tools = callPackage ../applications/misc/prevo/tools.nix { }; 34116 34116 34117 34117 psi-notify = callPackage ../applications/misc/psi-notify { }; 34118 34118