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

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

K900 2ab7280f 89446266

+2871 -9615
+6 -4
doc/languages-frameworks/gnome.section.md
··· 155 155 156 156 Package is missing some GSettings schemas. You can find out the package containing the schema with `nix-locate org.gnome.foo.gschema.xml` and let the hooks handle the wrapping as [above](#ssec-gnome-common-issues-no-schemas). 157 157 158 - ### When using `wrapGApps*` hook with special derivers you can end up with double wrapped binaries. {#ssec-gnome-common-issues-double-wrapped} 158 + ### When using `wrapGApps*` hook with special derivers or hooks you can end up with double wrapped binaries. {#ssec-gnome-common-issues-double-wrapped} 159 159 160 - This is because derivers like `python.pkgs.buildPythonApplication` or `qt5.mkDerivation` have setup-hooks automatically added that produce wrappers with makeWrapper. The simplest way to workaround that is to disable the `wrapGApps*` hook automatic wrapping with `dontWrapGApps = true;` and pass the arguments it intended to pass to makeWrapper to another. 160 + This is because some setup hooks like `qt6.wrapQtAppsHook` also wrap programs using `makeWrapper`. Likewise, some derivers (e.g. `python.pkgs.buildPythonApplication`) automatically pull in their own setup hooks that produce wrappers. 161 + 162 + The simplest workaround is to disable the `wrapGApps*` hook's automatic wrapping using `dontWrapGApps = true;` while passing its `makeWrapper` arguments to another wrapper. 161 163 162 164 In the case of a Python application it could look like: 163 165 ··· 184 186 And for a QT app like: 185 187 186 188 ```nix 187 - mkDerivation { 189 + stdenv.mkDerivation { 188 190 pname = "calibre"; 189 191 version = "3.47.0"; 190 192 191 193 nativeBuildInputs = [ 192 194 wrapGAppsHook3 195 + qt6.wrapQtAppsHook 193 196 qmake 194 197 # ... 195 198 ]; 196 199 197 200 dontWrapGApps = true; 198 201 199 - # Arguments to be passed to `makeWrapper`, only used by qt5’s mkDerivation 200 202 preFixup = '' 201 203 qtWrapperArgs+=("''${gappsWrapperArgs[@]}") 202 204 '';
+12
maintainers/maintainer-list.nix
··· 2328 2328 githubId = 18467667; 2329 2329 name = "Alexander Bantyev"; 2330 2330 }; 2331 + balssh = { 2332 + email = "george.bals25@gmail.com"; 2333 + github = "balssh"; 2334 + githubId = 82440615; 2335 + name = "George Bals"; 2336 + }; 2331 2337 bananad3v = { 2332 2338 email = "banana@banana.is-cool.dev"; 2333 2339 github = "BANanaD3V"; ··· 16186 16192 github = "avaunit02"; 16187 16193 githubId = 10776658; 16188 16194 name = "Patrick Gordon"; 16195 + }; 16196 + paepcke = { 16197 + email = "git@paepcke.de"; 16198 + github = "paepckehh"; 16199 + githubId = 120342602; 16200 + name = "Michael Paepcke"; 16189 16201 }; 16190 16202 paholg = { 16191 16203 email = "paho@paholg.com";
-1
nixos/modules/services/monitoring/netdata.nix
··· 218 218 ps.psycopg2 219 219 ps.python-ldap 220 220 ps.netdata-pandas 221 - ps.changefinder 222 221 ]); 223 222 224 223 services.netdata.configDir.".opt-out-from-anonymous-statistics" = mkIf (!cfg.enableAnalyticsReporting) (pkgs.writeText ".opt-out-from-anonymous-statistics" "");
+28 -40
nixos/tests/keymap.nix
··· 11 11 12 12 testReader = pkgs.writeScript "test-input-reader" '' 13 13 rm -f ${resultFile} ${resultFile}.tmp 14 - logger "testReader: START: Waiting for $1 characters, expecting '$2'." 14 + logger "testReader: START: expecting '$1'." 15 15 touch ${readyFile} 16 - read -r -N $1 chars 16 + read -r -N ''${#1} -t 60 chars 17 17 rm -f ${readyFile} 18 18 19 - if [ "$chars" == "$2" ]; then 20 - logger -s "testReader: PASS: Got '$2' as expected." 2>${resultFile}.tmp 19 + if [ "$chars" == "$1" ]; then 20 + logger -s "testReader: PASS: Got '$1' as expected." 2>${resultFile}.tmp 21 21 else 22 - logger -s "testReader: FAIL: Expected '$2' but got '$chars'." 2>${resultFile}.tmp 22 + logger -s "testReader: FAIL: Expected '$1' but got '$chars'." 2>${resultFile}.tmp 23 23 fi 24 24 # rename after the file is written to prevent a race condition 25 25 mv ${resultFile}.tmp ${resultFile} ··· 39 39 import shlex 40 40 41 41 42 - def run_test_case(cmd, xorg_keymap, test_case_name, inputs, expected): 43 - with subtest(test_case_name): 44 - assert len(inputs) == len(expected) 45 - machine.execute("rm -f ${readyFile} ${resultFile}") 42 + def run_test_case(cmd, inputs, expected): 43 + assert len(inputs) == len(expected) 44 + machine.execute("rm -f ${readyFile} ${resultFile}") 46 45 47 - # set up process that expects all the keys to be entered 48 - machine.succeed( 49 - "{} {} {} {} >&2 &".format( 50 - cmd, 51 - "${testReader}", 52 - len(inputs), 53 - shlex.quote("".join(expected)), 54 - ) 46 + # set up process that expects all the keys to be entered 47 + machine.succeed( 48 + "${pkgs.systemd}/bin/systemd-cat -t input-test-reader -- {} {} {} &".format( 49 + cmd, 50 + "${testReader}", 51 + shlex.quote("".join(expected)), 55 52 ) 56 - 57 - if xorg_keymap: 58 - # make sure the xterm window is open and has focus 59 - machine.wait_for_window("testterm") 60 - machine.wait_until_succeeds( 61 - "${pkgs.xdotool}/bin/xdotool search --sync --onlyvisible " 62 - "--class testterm windowfocus --sync" 63 - ) 53 + ) 64 54 65 - # wait for reader to be ready 66 - machine.wait_for_file("${readyFile}") 55 + # wait for reader to be ready 56 + machine.wait_for_file("${readyFile}") 67 57 68 - # send all keys 69 - for key in inputs: 70 - machine.send_key(key) 58 + # send all keys 59 + for key in inputs: 60 + machine.send_key(key) 71 61 72 - # wait for result and check 73 - machine.wait_for_file("${resultFile}") 74 - machine.succeed("grep -q 'PASS:' ${resultFile}") 62 + # wait for result and check 63 + machine.wait_for_file("${resultFile}") 64 + machine.succeed("grep -q 'PASS:' ${resultFile}") 75 65 76 66 77 67 with open("${pkgs.writeText "tests.json" (builtins.toJSON tests)}") as json_file: ··· 87 77 # fighting over the virtual terminal. This does not appear to be a problem 88 78 # when the X test runs first. 89 79 keymap_environments = { 90 - "Xorg Keymap": "DISPLAY=:0 xterm -title testterm -class testterm -fullscreen -e", 91 - "VT Keymap": "openvt -sw --", 80 + "Xorg Keymap": "env DISPLAY=:0 xterm -title testterm -class testterm -fullscreen -e", 81 + "VT Keymap": "openvt -c 2 -sw --", 92 82 } 93 83 94 84 machine.wait_for_x() 95 85 96 - for keymap_env_name, command in keymap_environments.items(): 97 - with subtest(keymap_env_name): 98 - for test_case_name, test_data in tests.items(): 86 + for test_case_name, test_data in tests.items(): 87 + for keymap_env_name, command in keymap_environments.items(): 88 + with subtest(f"{test_case_name} - {keymap_env_name}"): 99 89 run_test_case( 100 90 command, 101 - False, 102 - test_case_name, 103 91 test_data["qwerty"], 104 92 test_data["expect"], 105 93 )
-1
nixos/tests/teleport.nix
··· 9 9 let 10 10 packages = with pkgs; { 11 11 "default" = teleport; 12 - "14" = teleport_14; 13 12 "15" = teleport_15; 14 13 }; 15 14
+198 -186
pkgs/applications/editors/vim/plugins/generated.nix
··· 329 329 330 330 SchemaStore-nvim = buildVimPlugin { 331 331 pname = "SchemaStore.nvim"; 332 - version = "2024-10-15"; 332 + version = "2024-10-18"; 333 333 src = fetchFromGitHub { 334 334 owner = "b0o"; 335 335 repo = "SchemaStore.nvim"; 336 - rev = "6796194ae7db1c4c79c904e31ba2f8cfd7b0cd12"; 337 - sha256 = "04knqshjbjjqvg4drpfz6fc5w3jndsr5jb71jf5w0r3h0jyxdb55"; 336 + rev = "30eacb81f0202c0d5718fb27e3ec0b03945a03c7"; 337 + sha256 = "0q75ql3fg84nb8vhfxgi1wpmpfz7yk0wqkiw3l7zf1j5xmqskl4y"; 338 338 }; 339 339 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 340 340 }; ··· 558 558 559 559 aerial-nvim = buildVimPlugin { 560 560 pname = "aerial.nvim"; 561 - version = "2024-10-03"; 561 + version = "2024-10-16"; 562 562 src = fetchFromGitHub { 563 563 owner = "stevearc"; 564 564 repo = "aerial.nvim"; 565 - rev = "603156d4fd58963a05f221e76b1a25bc79ed55b0"; 566 - sha256 = "1qd15mv20aplnb4nj1lz0hi6in0vl7g7h4jjj7ma7w7ld7slgvnx"; 565 + rev = "60a784614acb1d7695bd9ae0fee8ada1bf7b0c28"; 566 + sha256 = "0irll73fsi0y005gxvvhjga35gfl2bjyg5q9hgdczagy42xb6hvw"; 567 567 fetchSubmodules = true; 568 568 }; 569 569 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; ··· 955 955 956 956 auto-session = buildVimPlugin { 957 957 pname = "auto-session"; 958 - version = "2024-10-05"; 958 + version = "2024-10-18"; 959 959 src = fetchFromGitHub { 960 960 owner = "rmagatti"; 961 961 repo = "auto-session"; 962 - rev = "9d02776ed42874d37869dc683396234e3724b52d"; 963 - sha256 = "126r6kwc7xm132c8v1q830gncyb1iinkh2jalnxg64iw7jdd9ksq"; 962 + rev = "3cd531ce4d46fb156268ddedf5f3e6822ef26af7"; 963 + sha256 = "0jjc2ziw4v6xma416mz4ixk9svsf25p58wc3wvr1v1zsc6nkzvfd"; 964 964 }; 965 965 meta.homepage = "https://github.com/rmagatti/auto-session/"; 966 966 }; ··· 1076 1076 1077 1077 bamboo-nvim = buildVimPlugin { 1078 1078 pname = "bamboo.nvim"; 1079 - version = "2024-09-20"; 1079 + version = "2024-10-16"; 1080 1080 src = fetchFromGitHub { 1081 1081 owner = "ribru17"; 1082 1082 repo = "bamboo.nvim"; 1083 - rev = "c245d90c490c681470389e28782b161491bec97c"; 1084 - sha256 = "1nycgf8lrvjsswr0z60kbi6s1c14fgzmichmyymm4100ywyp4k6s"; 1083 + rev = "7e5bcd10ae1f1f7cd315fa88049ea21babe11815"; 1084 + sha256 = "1srrhhiy8vh4myggwsgn98a1ig26dg9p12zl27zcls1jpd59p0d6"; 1085 1085 }; 1086 1086 meta.homepage = "https://github.com/ribru17/bamboo.nvim/"; 1087 1087 }; 1088 1088 1089 1089 barbar-nvim = buildVimPlugin { 1090 1090 pname = "barbar.nvim"; 1091 - version = "2024-09-30"; 1091 + version = "2024-10-16"; 1092 1092 src = fetchFromGitHub { 1093 1093 owner = "romgrk"; 1094 1094 repo = "barbar.nvim"; 1095 - rev = "ca1326f7d87acfd47b0cbeeb3bef98cec73a92be"; 1096 - sha256 = "0irbz0f061fl8f9y45gy7kg9fbgn4qwp51knqh1q1q2fm5nhlvwh"; 1095 + rev = "7c28de8c22f4c00ed43a78ae16c13dd6a248fe1a"; 1096 + sha256 = "0cd93xldgqbkfbkq5s2bmq6j9mzzgfq5vk8rqbff938j0y3d7ldd"; 1097 1097 }; 1098 1098 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1099 1099 }; ··· 1316 1316 1317 1317 bufexplorer = buildVimPlugin { 1318 1318 pname = "bufexplorer"; 1319 - version = "2024-08-13"; 1319 + version = "2024-10-16"; 1320 1320 src = fetchFromGitHub { 1321 1321 owner = "jlanzarotta"; 1322 1322 repo = "bufexplorer"; 1323 - rev = "fcf3a65a69020f0f54be8fa925f841874a5f3a01"; 1324 - sha256 = "0nbskarlk7byghv3w852hlsmc3rylw43x873a4n2nszywc50zahk"; 1323 + rev = "3828d24435c86bfa32847c04d1ca4e3606736d89"; 1324 + sha256 = "1rj5zgqwbcf31v8py3bixc068cbri4y59xqcj4g3hav3qnsqh08v"; 1325 1325 }; 1326 1326 meta.homepage = "https://github.com/jlanzarotta/bufexplorer/"; 1327 1327 }; ··· 2059 2059 2060 2060 cmp-rg = buildVimPlugin { 2061 2061 pname = "cmp-rg"; 2062 - version = "2023-09-01"; 2062 + version = "2024-10-17"; 2063 2063 src = fetchFromGitHub { 2064 2064 owner = "lukas-reineke"; 2065 2065 repo = "cmp-rg"; 2066 - rev = "677a7874ee8f1afc648c2e7d63a97bc21a7663c5"; 2067 - sha256 = "0cahyz5i6iyjqb4cklrkimw5pjajfnlazpmky617ysl3m1b6pwk3"; 2066 + rev = "d6cea15ad504369ec98f3de73b9631dfdd23a671"; 2067 + sha256 = "1rjhlc1rldqz79b1han5xrbwqvx514h3yvlsz7rgx58jscv6mmx9"; 2068 2068 }; 2069 2069 meta.homepage = "https://github.com/lukas-reineke/cmp-rg/"; 2070 2070 }; ··· 2647 2647 2648 2648 conform-nvim = buildVimPlugin { 2649 2649 pname = "conform.nvim"; 2650 - version = "2024-10-04"; 2650 + version = "2024-10-16"; 2651 2651 src = fetchFromGitHub { 2652 2652 owner = "stevearc"; 2653 2653 repo = "conform.nvim"; 2654 - rev = "40d4e98fcc3e6f485f0e8924c63734bc7e305967"; 2655 - sha256 = "0w78hq284hl3c8wqvsxfkpwpcr1phby5xnnb7wmj4lqr4rak5k1w"; 2654 + rev = "f5bd8419f8a29451e20bdb1061a54fe13d5c8de3"; 2655 + sha256 = "0s8q34ibc48dx2mavz4m04gjyjh0z4al7xhbb6c9m620gmgpxvsz"; 2656 2656 fetchSubmodules = true; 2657 2657 }; 2658 2658 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 2780 2780 2781 2781 coq_nvim = buildVimPlugin { 2782 2782 pname = "coq_nvim"; 2783 - version = "2024-10-15"; 2783 + version = "2024-10-17"; 2784 2784 src = fetchFromGitHub { 2785 2785 owner = "ms-jpq"; 2786 2786 repo = "coq_nvim"; 2787 - rev = "27cca63337debdea4a8da61f758abc82a0045bfb"; 2788 - sha256 = "1f08b0p2ffqkswwlx32h6b16q4n2mafcs9q612yfzcp7hkx9ffs2"; 2787 + rev = "a23759c0d6f48f5b6b5b1504f24d2021fb87f374"; 2788 + sha256 = "0cx46c93bzss1rdxncy6ypscmanj5ywzdmzgn01cby05z44188q0"; 2789 2789 }; 2790 2790 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2791 2791 }; ··· 2924 2924 2925 2925 cyberdream-nvim = buildVimPlugin { 2926 2926 pname = "cyberdream.nvim"; 2927 - version = "2024-10-09"; 2927 + version = "2024-10-17"; 2928 2928 src = fetchFromGitHub { 2929 2929 owner = "scottmckendry"; 2930 2930 repo = "cyberdream.nvim"; 2931 - rev = "e2ff36e57bb6f75a627e282fa2c6654e658d3052"; 2932 - sha256 = "0fdhamfbvlzjjsla81a20pkyaw71ras3zkba41j1vfas9h6kjr0g"; 2931 + rev = "358f6bfdd06115c139fb5518d3b95688083b7f70"; 2932 + sha256 = "0cvsj55jv3aggqkrk611hmhb0kcvy7z6xal5p9af00bql97hqh4a"; 2933 2933 }; 2934 2934 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 2935 2935 }; ··· 3044 3044 3045 3045 ddc-vim = buildVimPlugin { 3046 3046 pname = "ddc.vim"; 3047 - version = "2024-10-14"; 3047 + version = "2024-10-16"; 3048 3048 src = fetchFromGitHub { 3049 3049 owner = "Shougo"; 3050 3050 repo = "ddc.vim"; 3051 - rev = "517a127d10b7babe46647fd571ae468cf3a2b647"; 3052 - sha256 = "1y2wm3hqikyp23msbbxa64yxkpg9nb87gfyff5ad845x9w0sl18i"; 3051 + rev = "ae43c61dd0ebcf6ce7549c7c7bfebcdfaeac7d07"; 3052 + sha256 = "0wxaziykndc6p9nzlizfm6i7pxa9fylb1yg3hymia39v67ywphf5"; 3053 3053 }; 3054 3054 meta.homepage = "https://github.com/Shougo/ddc.vim/"; 3055 3055 }; ··· 3176 3176 3177 3177 deol-nvim = buildVimPlugin { 3178 3178 pname = "deol.nvim"; 3179 - version = "2024-10-03"; 3179 + version = "2024-10-16"; 3180 3180 src = fetchFromGitHub { 3181 3181 owner = "Shougo"; 3182 3182 repo = "deol.nvim"; 3183 - rev = "f5d32c646e7d4d43ca5b376cff2c1edc67070832"; 3184 - sha256 = "0dl3ihcv6sgwylx305ays7w8lgrlw961bgnpzqwn5bq96z984ffj"; 3183 + rev = "72997a29dbc1f75b5b6df71d2392abb5ef92e6dd"; 3184 + sha256 = "1w880g2g5f3p5slk7swcgbz8psk8c2wm54klmk4khmyx79b643jn"; 3185 3185 }; 3186 3186 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 3187 3187 }; ··· 3514 3514 3515 3515 distant-nvim = buildVimPlugin { 3516 3516 pname = "distant.nvim"; 3517 - version = "2024-10-08"; 3517 + version = "2024-10-17"; 3518 3518 src = fetchFromGitHub { 3519 3519 owner = "chipsenkbeil"; 3520 3520 repo = "distant.nvim"; 3521 - rev = "cf8f00d88fac3ed52ecdd8d485e4a565ba4c660f"; 3522 - sha256 = "0677mgkp91nx9hbmjkxpagqbpzxiapylz89yiq50al34hqaqbl4w"; 3521 + rev = "67d6b066e8490725718b79f643966f4eafc7da3c"; 3522 + sha256 = "1vdcndix4rb3c8p4yjhrwach5p708qbi2bmhb7xlx2rlfph2if89"; 3523 3523 }; 3524 3524 meta.homepage = "https://github.com/chipsenkbeil/distant.nvim/"; 3525 3525 }; ··· 3550 3550 3551 3551 dracula-nvim = buildVimPlugin { 3552 3552 pname = "dracula.nvim"; 3553 - version = "2024-07-12"; 3553 + version = "2024-10-16"; 3554 3554 src = fetchFromGitHub { 3555 3555 owner = "Mofiqul"; 3556 3556 repo = "dracula.nvim"; 3557 - rev = "fdf503e52ec1c8aae07353604d891fe5a3ed5201"; 3558 - sha256 = "1f032gwhr92w57mb5bfsgr14ayi7qg93rvjq04cy5kwdniqg92ij"; 3557 + rev = "94fa7885a06a67f0a8bfa03e064619d05d1ba496"; 3558 + sha256 = "1yxkhi11a81nmll9il3jq2ii8nbh7x2mf2k5w8ql5y27bdl4wcfy"; 3559 3559 }; 3560 3560 meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 3561 3561 }; ··· 3671 3671 3672 3672 efmls-configs-nvim = buildVimPlugin { 3673 3673 pname = "efmls-configs-nvim"; 3674 - version = "2024-10-14"; 3674 + version = "2024-10-15"; 3675 3675 src = fetchFromGitHub { 3676 3676 owner = "creativenull"; 3677 3677 repo = "efmls-configs-nvim"; 3678 - rev = "6c9dd80d4c2071a0328947cf6bcb6b91cc62c7b5"; 3679 - sha256 = "1vxw7xd999iyb6lbyhy5k9d4vw0d96b54712vh4kj7m1bpbbgmjp"; 3678 + rev = "e44e39c962dc1629a341fc71cfc8feaa09cefa6f"; 3679 + sha256 = "1ca5wrkkdf1p0lzj6h34mxvk55gy416zy153ksk6rlcf2ci5hg69"; 3680 3680 }; 3681 3681 meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; 3682 3682 }; ··· 4081 4081 4082 4082 formatter-nvim = buildVimPlugin { 4083 4083 pname = "formatter.nvim"; 4084 - version = "2024-10-10"; 4084 + version = "2024-10-17"; 4085 4085 src = fetchFromGitHub { 4086 4086 owner = "mhartington"; 4087 4087 repo = "formatter.nvim"; 4088 - rev = "77979a90a80849e60c6a9249427421b65d5a9a68"; 4089 - sha256 = "139wx2bhvs2iyyc3bysgln40rj1jcm5iag5yd39hcwwdk2f6f4iz"; 4088 + rev = "04547bdfe89035731a2815a3875b87f77d43e36d"; 4089 + sha256 = "1ih28z1y6g8r20si698zispkwra5mll0g8b1lc6778cjfd4dy32j"; 4090 4090 }; 4091 4091 meta.homepage = "https://github.com/mhartington/formatter.nvim/"; 4092 4092 }; ··· 4585 4585 4586 4586 grug-far-nvim = buildVimPlugin { 4587 4587 pname = "grug-far.nvim"; 4588 - version = "2024-10-09"; 4588 + version = "2024-10-16"; 4589 4589 src = fetchFromGitHub { 4590 4590 owner = "MagicDuck"; 4591 4591 repo = "grug-far.nvim"; 4592 - rev = "f47594f05d10b0bedfc0ed78e488e7fd714d57be"; 4593 - sha256 = "14s0y1lzchqghr1rkirwmfys0q1l3rl9h1b80acik3pcmdzgr1i5"; 4592 + rev = "190c03d54e8976491e6e49acb97087bf4182b079"; 4593 + sha256 = "1awfikdwh03i0wjdfr9aa2nwzsmgmiv9dqpfq0613z8wr8dw8xn3"; 4594 4594 }; 4595 4595 meta.homepage = "https://github.com/MagicDuck/grug-far.nvim/"; 4596 4596 }; ··· 4969 4969 4970 4970 hop-nvim = buildVimPlugin { 4971 4971 pname = "hop.nvim"; 4972 - version = "2024-08-08"; 4972 + version = "2024-10-17"; 4973 4973 src = fetchFromGitHub { 4974 4974 owner = "smoka7"; 4975 4975 repo = "hop.nvim"; 4976 - rev = "8f51ef02700bb3cdcce94e92eff16170a6343c4f"; 4977 - sha256 = "07py0rhr6wx1nbq8i20a71iv0arp7ym75ffyb3d3n5icmf53inl4"; 4976 + rev = "08ddca799089ab96a6d1763db0b8adc5320bf050"; 4977 + sha256 = "07mydcm3x7xc7x6wg5l6kcx8yrrv9bwy2p44y17ajyx37c5lmwwn"; 4978 4978 }; 4979 4979 meta.homepage = "https://github.com/smoka7/hop.nvim/"; 4980 4980 }; ··· 5378 5378 5379 5379 jinja-vim = buildVimPlugin { 5380 5380 pname = "jinja.vim"; 5381 - version = "2024-09-09"; 5381 + version = "2024-10-17"; 5382 5382 src = fetchFromGitHub { 5383 5383 owner = "HiPhish"; 5384 5384 repo = "jinja.vim"; 5385 - rev = "d112541c062122969c6c0bc3df7e3cab3595c253"; 5386 - sha256 = "0xcvzjnhgwjw42mm0j5ikw2yqsm4w7ibgmkfxf61fn23npzjalf7"; 5385 + rev = "a6a6477f6f75604ce3df6d870bbfbd8dc176e196"; 5386 + sha256 = "095d32c5v8rj5zf86cdasn7xr4qbvrw65mhzh3jj1hq84229bd3k"; 5387 5387 fetchSubmodules = true; 5388 5388 }; 5389 5389 meta.homepage = "https://github.com/HiPhish/jinja.vim/"; ··· 5462 5462 meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; 5463 5463 }; 5464 5464 5465 + kdl-vim = buildVimPlugin { 5466 + pname = "kdl.vim"; 5467 + version = "2023-02-20"; 5468 + src = fetchFromGitHub { 5469 + owner = "imsnif"; 5470 + repo = "kdl.vim"; 5471 + rev = "b84d7d3a15d8d30da016cf9e98e2cfbe35cddee5"; 5472 + sha256 = "0kh0wgwpjbp2iaznk2s8xy0l2l26zvlb9s3adwxapb13a4mwma11"; 5473 + }; 5474 + meta.homepage = "https://github.com/imsnif/kdl.vim/"; 5475 + }; 5476 + 5465 5477 keymap-layer-nvim = buildVimPlugin { 5466 5478 pname = "keymap-layer.nvim"; 5467 5479 version = "2022-07-16"; ··· 5524 5536 5525 5537 kulala-nvim = buildVimPlugin { 5526 5538 pname = "kulala.nvim"; 5527 - version = "2024-10-14"; 5539 + version = "2024-10-17"; 5528 5540 src = fetchFromGitHub { 5529 5541 owner = "mistweaverco"; 5530 5542 repo = "kulala.nvim"; 5531 - rev = "c7a2c793dca8509f9792e9d35d377de016c88a5b"; 5532 - sha256 = "1w8riv2bvqbl6dvllx7kn0j8aa33mcp44j7ghczjd5kzbxqpzksr"; 5543 + rev = "c1eebbd9ee63e020ab3fdece1e2ec377ce6da096"; 5544 + sha256 = "1iz9376w1chzl98743mz654mdbynwm6v0bvqg3klmpl70pj3bp1x"; 5533 5545 }; 5534 5546 meta.homepage = "https://github.com/mistweaverco/kulala.nvim/"; 5535 5547 }; ··· 5632 5644 5633 5645 lean-nvim = buildVimPlugin { 5634 5646 pname = "lean.nvim"; 5635 - version = "2024-10-15"; 5647 + version = "2024-10-18"; 5636 5648 src = fetchFromGitHub { 5637 5649 owner = "Julian"; 5638 5650 repo = "lean.nvim"; 5639 - rev = "273749f1769f6fd5f45aba44af0b0c7ac47c3f5a"; 5640 - sha256 = "1kkvcm11sd4kj729dgnn6fclx8v8s4nq464mnd5am7igrkpjrmrv"; 5651 + rev = "e217e5eff207c2136a8c3ff65454a04a9dbc4284"; 5652 + sha256 = "06dhmy10yvxvws9dmp6r9ybpi1y9qhxcx5s4xd1k8b5h65ny7ir6"; 5641 5653 }; 5642 5654 meta.homepage = "https://github.com/Julian/lean.nvim/"; 5643 5655 }; ··· 5692 5704 5693 5705 legendary-nvim = buildVimPlugin { 5694 5706 pname = "legendary.nvim"; 5695 - version = "2024-10-12"; 5707 + version = "2024-10-18"; 5696 5708 src = fetchFromGitHub { 5697 5709 owner = "mrjones2014"; 5698 5710 repo = "legendary.nvim"; 5699 - rev = "192fbef32d1f7d70463c4c8a634c2a75adc41348"; 5700 - sha256 = "0grhj484513hrnmpr9wlvc6fa44lm3jr65cm50ymkza3qjnjnbcj"; 5711 + rev = "cf49f78dac43031e1b924a5fce2e538581c36d76"; 5712 + sha256 = "19nf2j61y3rrj9yx5mqryi59wcwvf4n2z9gsjbsg1p1nal0zl3qw"; 5701 5713 }; 5702 5714 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 5703 5715 }; ··· 6111 6123 6112 6124 lspsaga-nvim = buildVimPlugin { 6113 6125 pname = "lspsaga.nvim"; 6114 - version = "2024-10-13"; 6126 + version = "2024-10-17"; 6115 6127 src = fetchFromGitHub { 6116 6128 owner = "nvimdev"; 6117 6129 repo = "lspsaga.nvim"; 6118 - rev = "3c1af059348350b0bbb81c5ca3c1f8f573dbd64a"; 6119 - sha256 = "15y7bv8ywaihc1s0ifs5g8a6pcpdlqm4c15ahg8ygys2hnb4l5r7"; 6130 + rev = "d027f8b9c7c55e26cf4030c8657a2fc8222ed762"; 6131 + sha256 = "07lpv4swni0z8z76q7mrmis003rm5p25fj2dwy0j8gf1hpigak2g"; 6120 6132 }; 6121 6133 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 6122 6134 }; ··· 6617 6629 6618 6630 mini-deps = buildVimPlugin { 6619 6631 pname = "mini.deps"; 6620 - version = "2024-09-06"; 6632 + version = "2024-10-18"; 6621 6633 src = fetchFromGitHub { 6622 6634 owner = "echasnovski"; 6623 6635 repo = "mini.deps"; 6624 - rev = "203dd6d947e3415711c732530a82f9c3f2f046a4"; 6625 - sha256 = "1xydh3l41hifwmns6aqnrch545h1hqsq4a7mgk915wzp1g843qfs"; 6636 + rev = "bafaa69d9054fc01ef8dbff8e4f0211c285cd840"; 6637 + sha256 = "12vahms3vpvinp362x1zi3z9si7r912bps55yp6v9vlvfdjmc9gf"; 6626 6638 }; 6627 6639 meta.homepage = "https://github.com/echasnovski/mini.deps/"; 6628 6640 }; ··· 6809 6821 6810 6822 mini-nvim = buildVimPlugin { 6811 6823 pname = "mini.nvim"; 6812 - version = "2024-10-15"; 6824 + version = "2024-10-18"; 6813 6825 src = fetchFromGitHub { 6814 6826 owner = "echasnovski"; 6815 6827 repo = "mini.nvim"; 6816 - rev = "d4ce7d025f9c7bb4d55ebc4fd88987651e632893"; 6817 - sha256 = "10cls549nsv4bgmqqky5acdy8f912901084vbqzrgq7dnx7j3vzg"; 6828 + rev = "9618cf56e76cc0caab54ad60116a8d72f99d7b3b"; 6829 + sha256 = "0vqyspxincyhck5fmx4b35y0k5m33d76c6v7n9cq1a2c970grlij"; 6818 6830 }; 6819 6831 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 6820 6832 }; ··· 6857 6869 6858 6870 mini-sessions = buildVimPlugin { 6859 6871 pname = "mini.sessions"; 6860 - version = "2024-09-12"; 6872 + version = "2024-10-18"; 6861 6873 src = fetchFromGitHub { 6862 6874 owner = "echasnovski"; 6863 6875 repo = "mini.sessions"; 6864 - rev = "62f2e3823f98673fcf1b79322cc06d8a1f453d30"; 6865 - sha256 = "1js9ma0i7a4lil6h4bzbxjx6s63hj4z7qy5ixf737x34ba5d0ipr"; 6876 + rev = "c9c633f3e423885f91c49e3b9e8e6141af25429e"; 6877 + sha256 = "0ds8dx3gazmsvdmj50mlfan9xzvak87rx96cg1kpwqjw06y972pf"; 6866 6878 }; 6867 6879 meta.homepage = "https://github.com/echasnovski/mini.sessions/"; 6868 6880 }; ··· 6917 6929 6918 6930 mini-tabline = buildVimPlugin { 6919 6931 pname = "mini.tabline"; 6920 - version = "2024-09-06"; 6932 + version = "2024-10-17"; 6921 6933 src = fetchFromGitHub { 6922 6934 owner = "echasnovski"; 6923 6935 repo = "mini.tabline"; 6924 - rev = "2316dd47e1e1f4a8e9255c9060acbee89bb26e59"; 6925 - sha256 = "1lbh0qzjdhx7vkycl799byjn3a62frrfgdczyzj2xdyfxv6823h9"; 6936 + rev = "06ef4ecaeca2e362c7d31113435d86d144b3cbbe"; 6937 + sha256 = "1z808l3z7ywqxmqwfr1ab9ynyma5c1878x9ski0nrhvw4fli9rwy"; 6926 6938 }; 6927 6939 meta.homepage = "https://github.com/echasnovski/mini.tabline/"; 6928 6940 }; ··· 7385 7397 7386 7398 neoconf-nvim = buildVimPlugin { 7387 7399 pname = "neoconf.nvim"; 7388 - version = "2024-10-15"; 7400 + version = "2024-10-18"; 7389 7401 src = fetchFromGitHub { 7390 7402 owner = "folke"; 7391 7403 repo = "neoconf.nvim"; 7392 - rev = "887be0ddcf27f6684898e5f9f33297365146a5ec"; 7393 - sha256 = "0i2fafb3wdwpzs2899d9r0nmfxpq22d05vvvwrbkhpa77lwli7sm"; 7404 + rev = "125a2f5cb8689a5a452c34afea9104eaf8fa0a5e"; 7405 + sha256 = "1zbrh46qfafbvzxiqkga5ldssdnn0vnvbi2zcrs740prb7psp7wv"; 7394 7406 }; 7395 7407 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 7396 7408 }; ··· 7457 7469 7458 7470 neogit = buildVimPlugin { 7459 7471 pname = "neogit"; 7460 - version = "2024-10-14"; 7472 + version = "2024-10-18"; 7461 7473 src = fetchFromGitHub { 7462 7474 owner = "NeogitOrg"; 7463 7475 repo = "neogit"; 7464 - rev = "eda716c44d3b5a424ea8604b10756c7fd8bed93a"; 7465 - sha256 = "1mdyn40ih75pnqrmayiqc3pcwzi80h3y4s60k2yxbbgr0dp9c8rc"; 7476 + rev = "aa3a343c58c378e91d2457f19952f9f2ee3aacc3"; 7477 + sha256 = "05g62dii54b45q94hnirx7s0xqjdq743aq46y57npah6x2lz8zr0"; 7466 7478 }; 7467 7479 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 7468 7480 }; ··· 8120 8132 8121 8133 nlsp-settings-nvim = buildVimPlugin { 8122 8134 pname = "nlsp-settings.nvim"; 8123 - version = "2024-10-10"; 8135 + version = "2024-10-18"; 8124 8136 src = fetchFromGitHub { 8125 8137 owner = "tamago324"; 8126 8138 repo = "nlsp-settings.nvim"; 8127 - rev = "941dd4b9d8c9420968dfdef0675f120965f7d637"; 8128 - sha256 = "099mql8lw6xbvdvdqbg0ks2l0z1xy4k895kc8cl0bl89970r5908"; 8139 + rev = "522c89562e3ca1eeb8f29435db2d4e9e4995c55e"; 8140 + sha256 = "1zpdrw9hslybsjkqrgfqw5lvn5zszb1k4wvqb11gnaxd1xbvm426"; 8129 8141 }; 8130 8142 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 8131 8143 }; ··· 8192 8204 8193 8205 none-ls-nvim = buildVimPlugin { 8194 8206 pname = "none-ls.nvim"; 8195 - version = "2024-10-11"; 8207 + version = "2024-10-17"; 8196 8208 src = fetchFromGitHub { 8197 8209 owner = "nvimtools"; 8198 8210 repo = "none-ls.nvim"; 8199 - rev = "6bdd9b3364e12ffb346ac224db3df37de0b1429b"; 8200 - sha256 = "145jzbjsx10dl4n9ni7p0ggcnhjwbz5fs6ksyrq73h9f0h6vcfxw"; 8211 + rev = "dcc8cd4efdcb29275681a3c95786a816330dbca6"; 8212 + sha256 = "1na4w7daxsi25hiadffc2j4vz3zkxs3p0al0zgmgaazf36qywys0"; 8201 8213 }; 8202 8214 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 8203 8215 }; ··· 8288 8300 8289 8301 nvchad = buildVimPlugin { 8290 8302 pname = "nvchad"; 8291 - version = "2024-10-10"; 8303 + version = "2024-10-16"; 8292 8304 src = fetchFromGitHub { 8293 8305 owner = "nvchad"; 8294 8306 repo = "nvchad"; 8295 - rev = "f6025f0788880989484733c90deff07dff01ef02"; 8296 - sha256 = "0y7pi4czifx7di9j8msd8nicqvn6scd4vysg7zbrxpkavzzg09jy"; 8307 + rev = "8792679a08c6747ba3f5890a01561442abec6935"; 8308 + sha256 = "05f8srjvs2x4ivvg40a2y7ir0jj4z1id8qssmqky217ghqry2778"; 8297 8309 }; 8298 8310 meta.homepage = "https://github.com/nvchad/nvchad/"; 8299 8311 }; ··· 8803 8815 8804 8816 nvim-lightbulb = buildVimPlugin { 8805 8817 pname = "nvim-lightbulb"; 8806 - version = "2024-08-16"; 8818 + version = "2024-10-17"; 8807 8819 src = fetchFromGitHub { 8808 8820 owner = "kosayoda"; 8809 8821 repo = "nvim-lightbulb"; 8810 - rev = "1cae7b7153ae98dcf1b11173a443ac1b6d8e3d49"; 8811 - sha256 = "1wf5pfjpvn7hvm9p9mc7w9j7wz2rr7ppdys8cx4jcqib9ja5vy99"; 8822 + rev = "33d4c95e0e853956bc9468b70b3064c87d5abaca"; 8823 + sha256 = "1njf3f3jw1ynpac20rf688g1gais7ca71wzwzh3iijvhw2wd5x95"; 8812 8824 }; 8813 8825 meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; 8814 8826 }; ··· 8839 8851 8840 8852 nvim-lint = buildVimPlugin { 8841 8853 pname = "nvim-lint"; 8842 - version = "2024-10-10"; 8854 + version = "2024-10-17"; 8843 8855 src = fetchFromGitHub { 8844 8856 owner = "mfussenegger"; 8845 8857 repo = "nvim-lint"; 8846 - rev = "f707b3ae50417067fa63fdfe179b0bff6b380da1"; 8847 - sha256 = "0zws4m0jcprpn0d0ny2k6pvkmca917wjbqwk13g1p8rp87ia5yy1"; 8858 + rev = "16b21a7d04d06661f92f273a0744fd81fb19e09e"; 8859 + sha256 = "1krhqq16nrz3hm9h0a5yqir75lv8nrc62ii4kxjr885b4bvr9hg2"; 8848 8860 }; 8849 8861 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 8850 8862 }; ··· 8875 8887 8876 8888 nvim-lspconfig = buildVimPlugin { 8877 8889 pname = "nvim-lspconfig"; 8878 - version = "2024-10-15"; 8890 + version = "2024-10-18"; 8879 8891 src = fetchFromGitHub { 8880 8892 owner = "neovim"; 8881 8893 repo = "nvim-lspconfig"; 8882 - rev = "9b2509f17c284486497358ccea1019cc17c28af6"; 8883 - sha256 = "09g1zcpg1b98fgv6siibd683ci5yfih4papv56nc9h2vk01a9p8d"; 8894 + rev = "b55b9659de9ac17e05df4787bb023e4c7ef45329"; 8895 + sha256 = "0887n4q7z2k9faqd43ki7gpq30dn9vjk217kafj9hwymamqqfmk2"; 8884 8896 }; 8885 8897 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 8886 8898 }; ··· 9055 9067 9056 9068 nvim-paredit = buildVimPlugin { 9057 9069 pname = "nvim-paredit"; 9058 - version = "2024-10-15"; 9070 + version = "2024-10-17"; 9059 9071 src = fetchFromGitHub { 9060 9072 owner = "julienvincent"; 9061 9073 repo = "nvim-paredit"; 9062 - rev = "2f0e7fc4fc5c25cb0e8af7fc0bd1fe00f1fe131a"; 9063 - sha256 = "1qphsmankkrxgnbxac8ja366akp22139p4c9j6pa9z988ipq4bz2"; 9074 + rev = "f842d84854f3ad5231bc85f52ee94f3fb4ede326"; 9075 + sha256 = "00v0hi4xlg5aln8cl2a6gl4d4kdrx5ixnr6llfk59x48cgcvj97z"; 9064 9076 }; 9065 9077 meta.homepage = "https://github.com/julienvincent/nvim-paredit/"; 9066 9078 }; ··· 9139 9151 9140 9152 nvim-scrollbar = buildVimPlugin { 9141 9153 pname = "nvim-scrollbar"; 9142 - version = "2024-06-03"; 9154 + version = "2024-10-17"; 9143 9155 src = fetchFromGitHub { 9144 9156 owner = "petertriho"; 9145 9157 repo = "nvim-scrollbar"; 9146 - rev = "d09f14aa16c9f2748e77008f9da7b1f76e4e7b85"; 9147 - sha256 = "1zm0xaph29hk2dw4rpmpz67nxxbr39f67zfil5gwyzk3d87q56k3"; 9158 + rev = "6994eb9f73d5fdc36ee2c8717940e8c853e51a49"; 9159 + sha256 = "0h01gcaqgjkb2392zl2jwvlsh5qmz10k9sy5rhyz1kwizmw7nw7y"; 9148 9160 }; 9149 9161 meta.homepage = "https://github.com/petertriho/nvim-scrollbar/"; 9150 9162 }; 9151 9163 9152 9164 nvim-scrollview = buildVimPlugin { 9153 9165 pname = "nvim-scrollview"; 9154 - version = "2024-10-15"; 9166 + version = "2024-10-16"; 9155 9167 src = fetchFromGitHub { 9156 9168 owner = "dstein64"; 9157 9169 repo = "nvim-scrollview"; 9158 - rev = "db413e93ef6d50b4e92bbfd7a82263057a6cf28a"; 9159 - sha256 = "1jshj0qq80pnf0x6np76xrvwswawl5yyikzvxid8kan0s86gs3nf"; 9170 + rev = "c82821508e50d07fc0696af764fa8604c9f66de8"; 9171 + sha256 = "0v5v2m4akjrbi1qcqpjl5bj8wwh3g863mhkj8k8sf922flyh0mxp"; 9160 9172 }; 9161 9173 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 9162 9174 }; ··· 9295 9307 9296 9308 nvim-tree-lua = buildVimPlugin { 9297 9309 pname = "nvim-tree.lua"; 9298 - version = "2024-10-14"; 9310 + version = "2024-10-18"; 9299 9311 src = fetchFromGitHub { 9300 9312 owner = "nvim-tree"; 9301 9313 repo = "nvim-tree.lua"; 9302 - rev = "f5f67892996b280ae78b1b0a2d07c4fa29ae0905"; 9303 - sha256 = "0pqzd4yqsajr26b1bc359ylj7ywiiallc5akq7996hnakcx6r1c9"; 9314 + rev = "2a268f631da85e83b7a95291be589bcddfc785d8"; 9315 + sha256 = "0ka4y3af9lfslmn08gsr0q9saldcf5fz7ham1f5x59rw5vndnaq5"; 9304 9316 }; 9305 9317 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 9306 9318 }; 9307 9319 9308 9320 nvim-treesitter = buildVimPlugin { 9309 9321 pname = "nvim-treesitter"; 9310 - version = "2024-10-15"; 9322 + version = "2024-10-18"; 9311 9323 src = fetchFromGitHub { 9312 9324 owner = "nvim-treesitter"; 9313 9325 repo = "nvim-treesitter"; 9314 - rev = "da926103921117cc6dc8a518bc9b949c90d1c70c"; 9315 - sha256 = "006crqfchxf94x5y1v5hi9jf023m7k39xqjh8yjffwzc8whsyd4m"; 9326 + rev = "68b2bdd99d889e9705f7e90ae64d990f3ff03cf3"; 9327 + sha256 = "0mwyk0i03dy73djhni55zf3dvlxkx3y4104xhkvlbgp60nl71b1h"; 9316 9328 }; 9317 9329 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 9318 9330 }; 9319 9331 9320 9332 nvim-treesitter-context = buildVimPlugin { 9321 9333 pname = "nvim-treesitter-context"; 9322 - version = "2024-10-04"; 9334 + version = "2024-10-18"; 9323 9335 src = fetchFromGitHub { 9324 9336 owner = "nvim-treesitter"; 9325 9337 repo = "nvim-treesitter-context"; 9326 - rev = "78a81c7494e7d1a08dd1200b556933e513fd9f29"; 9327 - sha256 = "19vf1wlvi7nggwzawaqyp81jk8hp85xsg1nm9cgjzk9fvywddnpc"; 9338 + rev = "e7fdb4cdf0942cd6e63dd822110a93c0ec777fe5"; 9339 + sha256 = "1d14699z9wdgjlksbdgkib2dr6ja0kpda9ymrv3yfyc7fyia7kjw"; 9328 9340 }; 9329 9341 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 9330 9342 }; ··· 9367 9379 9368 9380 nvim-treesitter-textobjects = buildVimPlugin { 9369 9381 pname = "nvim-treesitter-textobjects"; 9370 - version = "2024-10-06"; 9382 + version = "2024-10-16"; 9371 9383 src = fetchFromGitHub { 9372 9384 owner = "nvim-treesitter"; 9373 9385 repo = "nvim-treesitter-textobjects"; 9374 - rev = "b91c98afa6c42819aea6cbc1ba38272f5456a5cf"; 9375 - sha256 = "08chzl9943657f7mp8f83k95cic14br0d8n9233nj17fng0k127v"; 9386 + rev = "0d79d169fcd45a8da464727ac893044728f121d4"; 9387 + sha256 = "0qhndwxbbaf324gp8hqd33x6a3z1vkq8jgv5aqpcb05v2i2byfzp"; 9376 9388 }; 9377 9389 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 9378 9390 }; ··· 9571 9583 9572 9584 octo-nvim = buildVimPlugin { 9573 9585 pname = "octo.nvim"; 9574 - version = "2024-10-15"; 9586 + version = "2024-10-17"; 9575 9587 src = fetchFromGitHub { 9576 9588 owner = "pwntester"; 9577 9589 repo = "octo.nvim"; 9578 - rev = "896d48b6184f69113599e9ecc46611e9d0b5fbcf"; 9579 - sha256 = "1p1618cnf1ag6nmirpm6z9hx57cwrpn5wfnhncr6rifjndjfmas1"; 9590 + rev = "a83ca8bcee6cf4a9288bbfd1b97a51ba32068c21"; 9591 + sha256 = "03pwwkb06b7dfd0m5w98b05dfggn1vnpcxk531p0vsmiy263qyyh"; 9580 9592 }; 9581 9593 meta.homepage = "https://github.com/pwntester/octo.nvim/"; 9582 9594 }; 9583 9595 9584 9596 oil-nvim = buildVimPlugin { 9585 9597 pname = "oil.nvim"; 9586 - version = "2024-10-04"; 9598 + version = "2024-10-16"; 9587 9599 src = fetchFromGitHub { 9588 9600 owner = "stevearc"; 9589 9601 repo = "oil.nvim"; 9590 - rev = "ccab9d5e09e2d0042fbbe5b6bd05e82426247067"; 9591 - sha256 = "08ywsapg9j6simfixj7bxw4b011d8dbsrvy7yiawzvfry1hpqmxx"; 9602 + rev = "39dbf875861449cf09e936fa80073f3413e9439c"; 9603 + sha256 = "1j97c6f5x6vv5rdsb92d64hi1d9p2gd84n4awl6x5bdzqnjr55pn"; 9592 9604 fetchSubmodules = true; 9593 9605 }; 9594 9606 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 9680 9692 9681 9693 onedarkpro-nvim = buildVimPlugin { 9682 9694 pname = "onedarkpro.nvim"; 9683 - version = "2024-08-22"; 9695 + version = "2024-10-17"; 9684 9696 src = fetchFromGitHub { 9685 9697 owner = "olimorris"; 9686 9698 repo = "onedarkpro.nvim"; 9687 - rev = "ada0798b1bf6d0bde1fbf239c22de778bf5efbd1"; 9688 - sha256 = "065f1cvdkaphdpqnslyaj7bk4wqkwa5rk8a2xh39j00migqw9p09"; 9699 + rev = "035d63a2fd13885d526f1b90b0aa16a949310ec1"; 9700 + sha256 = "1wpyy0kax9v7177njpc3l3sz77zd39ysglppgmgb8sjs9a4qh6bs"; 9689 9701 }; 9690 9702 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 9691 9703 }; ··· 9764 9776 9765 9777 orgmode = buildVimPlugin { 9766 9778 pname = "orgmode"; 9767 - version = "2024-10-09"; 9779 + version = "2024-10-17"; 9768 9780 src = fetchFromGitHub { 9769 9781 owner = "nvim-orgmode"; 9770 9782 repo = "orgmode"; 9771 - rev = "a5aeb14663ef08e0bb4bb847f8d79f9c253094a0"; 9772 - sha256 = "0hwplx3dj7mn95cqhj9hrc9dl2q211ib8hlz3fn4771bsadabxzh"; 9783 + rev = "05d69831e57996d09d9c6d9b135d141d6c051035"; 9784 + sha256 = "05scr3vhdhq11sk4fbqbndska8nfsw63mqpx7kllalzvkcdw31pi"; 9773 9785 }; 9774 9786 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 9775 9787 }; ··· 9812 9824 9813 9825 overseer-nvim = buildVimPlugin { 9814 9826 pname = "overseer.nvim"; 9815 - version = "2024-10-04"; 9827 + version = "2024-10-16"; 9816 9828 src = fetchFromGitHub { 9817 9829 owner = "stevearc"; 9818 9830 repo = "overseer.nvim"; 9819 - rev = "965f8159408cee5970421ad36c4523333b798502"; 9820 - sha256 = "1z6mrgkh0rkpc565r5hlfqnfqgfywcxz9hizw69zyrfhy8x8yg58"; 9831 + rev = "6f8bc37eb729a00e185cdf38b1ed3309a05bfeef"; 9832 + sha256 = "0817pw0vaa9war0d7skf9438mazdf9ip29amw77zlbjqcdzg5nbi"; 9821 9833 fetchSubmodules = true; 9822 9834 }; 9823 9835 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 9945 9957 9946 9958 persisted-nvim = buildVimPlugin { 9947 9959 pname = "persisted.nvim"; 9948 - version = "2024-09-13"; 9960 + version = "2024-10-17"; 9949 9961 src = fetchFromGitHub { 9950 9962 owner = "olimorris"; 9951 9963 repo = "persisted.nvim"; 9952 - rev = "3006e641e2892b58fe51511c31595515e1a7dc00"; 9953 - sha256 = "19zp691z8lbxyg1fisqz8lf3jgra4sww6c6qj270im8kqc4h2spp"; 9964 + rev = "e9a179271b1c7888e0a87448b3cf81652a6606c1"; 9965 + sha256 = "1d0yyl9qm0diwmz0ma44x8sj964qq82hrc0pyz9lg8qmpi9di093"; 9954 9966 }; 9955 9967 meta.homepage = "https://github.com/olimorris/persisted.nvim/"; 9956 9968 }; ··· 10498 10510 10499 10511 render-markdown-nvim = buildVimPlugin { 10500 10512 pname = "render-markdown.nvim"; 10501 - version = "2024-10-15"; 10513 + version = "2024-10-18"; 10502 10514 src = fetchFromGitHub { 10503 10515 owner = "MeanderingProgrammer"; 10504 10516 repo = "render-markdown.nvim"; 10505 - rev = "5925f48b8c00bb6911763f2a2de19ce05d375e85"; 10506 - sha256 = "1vn7nnr7h8g5i8ljqfrj11mzbqs6qamw2rwi5xrihaxmjnhbp24z"; 10517 + rev = "1871dc4ced6fd775591a63df8e4c343ebaf1a2d2"; 10518 + sha256 = "0pjhn4wrbbd7mbkxa6i7ifalf3p41srbabn6likngl8sj4bxdc2h"; 10507 10519 }; 10508 10520 meta.homepage = "https://github.com/MeanderingProgrammer/render-markdown.nvim/"; 10509 10521 }; ··· 10896 10908 10897 10909 smart-splits-nvim = buildVimPlugin { 10898 10910 pname = "smart-splits.nvim"; 10899 - version = "2024-10-12"; 10911 + version = "2024-10-18"; 10900 10912 src = fetchFromGitHub { 10901 10913 owner = "mrjones2014"; 10902 10914 repo = "smart-splits.nvim"; 10903 - rev = "70f9e4f36082bf28b8bc1d05e2ea7c3f6aeb51ff"; 10904 - sha256 = "1rkwqh6nnf9fv2s1g4fbwsqb6jydkr5zspb60sy1bs1y4maj3lv2"; 10915 + rev = "32172b6598c1c647b96aeead67896c59ca4b7aa6"; 10916 + sha256 = "14bi0qwrlfgb2f1bjp6y18ldp4j71afyqsmykby740fzvxgkmmj0"; 10905 10917 }; 10906 10918 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 10907 10919 }; ··· 11245 11257 11246 11258 statuscol-nvim = buildVimPlugin { 11247 11259 pname = "statuscol.nvim"; 11248 - version = "2024-10-01"; 11260 + version = "2024-10-16"; 11249 11261 src = fetchFromGitHub { 11250 11262 owner = "luukvbaal"; 11251 11263 repo = "statuscol.nvim"; 11252 - rev = "ecc04176e364dd7f614edfc4325e3a8521905ad6"; 11253 - sha256 = "01vb1l97n4slijbn2ljwgpdmdsk4xgp1cj7d001rvi7kc3vlvbrh"; 11264 + rev = "5998d16044159ad3779f62c45e756c555e3051f0"; 11265 + sha256 = "1irwr533hn5321wglrl08cvnk4jwdnyh1zs9433cffl0lzf86a1b"; 11254 11266 }; 11255 11267 meta.homepage = "https://github.com/luukvbaal/statuscol.nvim/"; 11256 11268 }; ··· 11487 11499 11488 11500 taboo-vim = buildVimPlugin { 11489 11501 pname = "taboo.vim"; 11490 - version = "2019-08-27"; 11502 + version = "2024-10-17"; 11491 11503 src = fetchFromGitHub { 11492 11504 owner = "gcmt"; 11493 11505 repo = "taboo.vim"; 11494 - rev = "caf948187694d3f1374913d36f947b3f9fa1c22f"; 11495 - sha256 = "06pizdnb3gr4pf5hrm3yfzkz99y9bi2vwqm85xknzgdvl1lisj99"; 11506 + rev = "937f67ab9dc2ba1861fabc40ca367e5622c30d36"; 11507 + sha256 = "0rrhakigsyvbhmiwr5ywrnq9ixh19xk906b76bqqlw783cwp5p06"; 11496 11508 }; 11497 11509 meta.homepage = "https://github.com/gcmt/taboo.vim/"; 11498 11510 }; ··· 12018 12030 12019 12031 term-edit-nvim = buildVimPlugin { 12020 12032 pname = "term-edit.nvim"; 12021 - version = "2024-09-30"; 12033 + version = "2024-10-17"; 12022 12034 src = fetchFromGitHub { 12023 12035 owner = "chomosuke"; 12024 12036 repo = "term-edit.nvim"; 12025 - rev = "b190a91178ef98beefac2ec0823db047978ea327"; 12026 - sha256 = "038aqf5bpx233w49gdvpmci56rl1m60cqkkwq2h5fkc4amxf67l8"; 12037 + rev = "29c4584c2cef44a3fdcc55860957d081b892a569"; 12038 + sha256 = "0g05gi46i4yx1k5fhqrlv9rvw2nvikdc1dpr4d5yjzjhbpx2gkmc"; 12027 12039 }; 12028 12040 meta.homepage = "https://github.com/chomosuke/term-edit.nvim/"; 12029 12041 }; ··· 12162 12174 12163 12175 tiny-inline-diagnostic-nvim = buildVimPlugin { 12164 12176 pname = "tiny-inline-diagnostic.nvim"; 12165 - version = "2024-10-15"; 12177 + version = "2024-10-16"; 12166 12178 src = fetchFromGitHub { 12167 12179 owner = "rachartier"; 12168 12180 repo = "tiny-inline-diagnostic.nvim"; 12169 - rev = "1618f75a6c1dab4e96a1c0fbf436da346bc2db18"; 12170 - sha256 = "1i58y1hz9kxxq9ca69g392hjjvlbif884vgybakd73ywcsx14bgr"; 12181 + rev = "a4f8b29eb318b507a5e5c11e6d69bea4f5bc2ab2"; 12182 + sha256 = "03q8j80ra185jrvxxbj462apvyb86xa25w049xmpf5r1in2bkqsb"; 12171 12183 }; 12172 12184 meta.homepage = "https://github.com/rachartier/tiny-inline-diagnostic.nvim/"; 12173 12185 }; ··· 12548 12560 12549 12561 unison = buildVimPlugin { 12550 12562 pname = "unison"; 12551 - version = "2024-10-10"; 12563 + version = "2024-10-17"; 12552 12564 src = fetchFromGitHub { 12553 12565 owner = "unisonweb"; 12554 12566 repo = "unison"; 12555 - rev = "e2c42cac45a77b5548ddcec57eb79b6996659d2a"; 12556 - sha256 = "1cjg9plvwq00plynk7k993rbg65zdwgmyv0jvl824wa3inh0fv7w"; 12567 + rev = "b1ac7ba1b984dc5bbabee7e136fea5674218e791"; 12568 + sha256 = "05df053ddczcv243kd5bcyz1h2p2kwivqqk8rmangs3h66dzvp98"; 12557 12569 }; 12558 12570 meta.homepage = "https://github.com/unisonweb/unison/"; 12559 12571 }; ··· 15094 15106 15095 15107 vim-just = buildVimPlugin { 15096 15108 pname = "vim-just"; 15097 - version = "2024-10-06"; 15109 + version = "2024-10-17"; 15098 15110 src = fetchFromGitHub { 15099 15111 owner = "NoahTheDuke"; 15100 15112 repo = "vim-just"; 15101 - rev = "f08fa6b29dbfc486696fa606d44af86bc88fb1e8"; 15102 - sha256 = "1sprx6dzc0lbdrjcq6m2dzbb2r1jk1wwfqapbd7a2cvypc18gqf2"; 15113 + rev = "c11e414956e748255ee56cba9a8a10ae68dff728"; 15114 + sha256 = "05cggnd8gcbyhqvyvnq4y16imiaj2f3njr6nwmcq7qi1gbgz9x1x"; 15103 15115 }; 15104 15116 meta.homepage = "https://github.com/NoahTheDuke/vim-just/"; 15105 15117 }; ··· 15491 15503 15492 15504 vim-matchup = buildVimPlugin { 15493 15505 pname = "vim-matchup"; 15494 - version = "2024-09-12"; 15506 + version = "2024-10-18"; 15495 15507 src = fetchFromGitHub { 15496 15508 owner = "andymass"; 15497 15509 repo = "vim-matchup"; 15498 - rev = "1975afe63198ab6a0dff7200919828e5cd4330b9"; 15499 - sha256 = "05gwlf5fmkvs4p92n7l397brb8g6g62pvxcd93kffv289vmx7rzk"; 15510 + rev = "57d3a4bbf4c9a0ab73f2cb90c4a9c93fef4c420f"; 15511 + sha256 = "1b0qvf0kd69b4y5r0c32ajy8gyj63c8bmknc43hycicij3dh3bsz"; 15500 15512 }; 15501 15513 meta.homepage = "https://github.com/andymass/vim-matchup/"; 15502 15514 }; ··· 15575 15587 15576 15588 vim-monokai = buildVimPlugin { 15577 15589 pname = "vim-monokai"; 15578 - version = "2024-09-30"; 15590 + version = "2024-10-16"; 15579 15591 src = fetchFromGitHub { 15580 15592 owner = "crusoexia"; 15581 15593 repo = "vim-monokai"; 15582 - rev = "9db250617c625d3265b54a500d9774debcdf4749"; 15583 - sha256 = "18fj5m39amap98g8p3qbqw3h0wrir57g8qkgp8bxv16bwlxdlj9k"; 15594 + rev = "c3efbdefa3d43d739e61294ac39af4a68806a889"; 15595 + sha256 = "1hyvp5sf807an2s3ld08xs4p3xisd9s0rnpc0w6w1kald2ffzlq0"; 15584 15596 }; 15585 15597 meta.homepage = "https://github.com/crusoexia/vim-monokai/"; 15586 15598 }; ··· 17496 17508 17497 17509 vim-vsnip-integ = buildVimPlugin { 17498 17510 pname = "vim-vsnip-integ"; 17499 - version = "2023-07-01"; 17511 + version = "2024-10-18"; 17500 17512 src = fetchFromGitHub { 17501 17513 owner = "hrsh7th"; 17502 17514 repo = "vim-vsnip-integ"; 17503 - rev = "1914e72cf3de70df7f5dde476cd299aba2440aef"; 17504 - sha256 = "0jqnzvvhlvwrqbxk70j1z7qx5hgzqjnv0hp8rzs9sfbv3wkgq12q"; 17515 + rev = "90ae474e8b05ed41e36d6f58382a9fbfb4b672c4"; 17516 + sha256 = "1n8g9knii0y5c7gnwmndbw2c2ii5xji0i90cfdcdvrkdhfacpyha"; 17505 17517 }; 17506 17518 meta.homepage = "https://github.com/hrsh7th/vim-vsnip-integ/"; 17507 17519 }; ··· 17869 17881 17870 17882 vimtex = buildVimPlugin { 17871 17883 pname = "vimtex"; 17872 - version = "2024-10-13"; 17884 + version = "2024-10-17"; 17873 17885 src = fetchFromGitHub { 17874 17886 owner = "lervag"; 17875 17887 repo = "vimtex"; 17876 - rev = "9a5ef1d4ac8e4e06071179ebe8121350fcb97861"; 17877 - sha256 = "1zp8wvys8m61sqpyil7ra33pinnq8kliadric0d7iii9d4gjqidd"; 17888 + rev = "4dd3be5cc4e8f6ee7401e303a8211efb4d91bcf6"; 17889 + sha256 = "11a84xcm0rm4mv8521pi5a9dgiv8lys11nrda5kwh5vlrzxdwdwx"; 17878 17890 }; 17879 17891 meta.homepage = "https://github.com/lervag/vimtex/"; 17880 17892 }; ··· 18242 18254 18243 18255 yazi-nvim = buildVimPlugin { 18244 18256 pname = "yazi.nvim"; 18245 - version = "2024-10-14"; 18257 + version = "2024-10-18"; 18246 18258 src = fetchFromGitHub { 18247 18259 owner = "mikavilpas"; 18248 18260 repo = "yazi.nvim"; 18249 - rev = "519940019913a5e742e2dd2f04712d9ff8869a10"; 18250 - sha256 = "1yir1h5k6ni6wqbxbj5fs2rmd7bwl1asj6nh82h987mg8s7w3gf5"; 18261 + rev = "6a233f7bbdd2aa57a169471cd783c17e48b1be33"; 18262 + sha256 = "0b7p3zn0c35gcf5bn41a06rwghn818699jy7qmbpjaqs2nq2ica1"; 18251 18263 }; 18252 18264 meta.homepage = "https://github.com/mikavilpas/yazi.nvim/"; 18253 18265 }; ··· 18542 18554 18543 18555 nvchad-ui = buildVimPlugin { 18544 18556 pname = "nvchad-ui"; 18545 - version = "2024-10-15"; 18557 + version = "2024-10-18"; 18546 18558 src = fetchFromGitHub { 18547 18559 owner = "nvchad"; 18548 18560 repo = "ui"; 18549 - rev = "e0891549ec3ccff7d68a57915e7af97c9608ffad"; 18550 - sha256 = "1sj9gjzr8g035dhszpcg19a6f68ibqj65bfss39vm4qhk9zr85kn"; 18561 + rev = "87578bb7e2bc106127f013f9a1edd7a716f4f6c6"; 18562 + sha256 = "0jz4wgh67xqlmhn0aqlx7i4v7idbxgbmvgysf0crmwps0i80j4ds"; 18551 18563 }; 18552 18564 meta.homepage = "https://github.com/nvchad/ui/"; 18553 18565 };
+56 -56
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 559 559 }; 560 560 elixir = buildGrammar { 561 561 language = "elixir"; 562 - version = "0.0.0+rev=827d15d"; 562 + version = "0.0.0+rev=2ac7a0f"; 563 563 src = fetchFromGitHub { 564 564 owner = "elixir-lang"; 565 565 repo = "tree-sitter-elixir"; 566 - rev = "827d15deada6ca2f40eece82d1bbe65df07af954"; 567 - hash = "sha256-yKeSOH1/6R1km3vzIZurVwVE1hxVoGMBCFGHkHFkt20="; 566 + rev = "2ac7a0f81f0731d83068b2872c4a8fee39263a85"; 567 + hash = "sha256-u0gwq4eIoFNcTeoJpY2lRE97M7JSHZ5X2zSKrNlTycM="; 568 568 }; 569 569 meta.homepage = "https://github.com/elixir-lang/tree-sitter-elixir"; 570 570 }; ··· 735 735 }; 736 736 fsharp = buildGrammar { 737 737 language = "fsharp"; 738 - version = "0.0.0+rev=5202637"; 738 + version = "0.0.0+rev=971da5f"; 739 739 src = fetchFromGitHub { 740 740 owner = "ionide"; 741 741 repo = "tree-sitter-fsharp"; 742 - rev = "5202637c203fcf8876affbd18b04ff43256d4c4a"; 743 - hash = "sha256-OjCwEhTACaVcnR/NyfUGZN/juLUHgqY6h+3DSrqUuiQ="; 742 + rev = "971da5ff0266bfe4a6ecfb94616548032d6d1ba0"; 743 + hash = "sha256-0jrbznAXcjXrbJ5jnxWMzPKxRopxKCtoQXGl80R1M0M="; 744 744 }; 745 745 location = "fsharp"; 746 746 meta.homepage = "https://github.com/ionide/tree-sitter-fsharp"; ··· 846 846 }; 847 847 gitcommit = buildGrammar { 848 848 language = "gitcommit"; 849 - version = "0.0.0+rev=79fdc5d"; 849 + version = "0.0.0+rev=66e2585"; 850 850 src = fetchFromGitHub { 851 851 owner = "gbprod"; 852 852 repo = "tree-sitter-gitcommit"; 853 - rev = "79fdc5de52d0e2c6854db924525196af22100dad"; 854 - hash = "sha256-SvYMfldARrwhte6lJrCwpVaBjCerCsYwL4Z+qjdhHKs="; 853 + rev = "66e2585f4a3e73e768d42ef1223a5fb0a447bae6"; 854 + hash = "sha256-TZYdYTyDjvbvkuaKORLpQBqkcSCdG7ZSO1Jo64YkJ3o="; 855 855 }; 856 856 meta.homepage = "https://github.com/gbprod/tree-sitter-gitcommit"; 857 857 }; ··· 890 890 }; 891 891 glimmer_javascript = buildGrammar { 892 892 language = "glimmer_javascript"; 893 - version = "0.0.0+rev=a260911"; 893 + version = "0.0.0+rev=7e8ea8c"; 894 894 src = fetchFromGitHub { 895 895 owner = "NullVoxPopuli"; 896 896 repo = "tree-sitter-glimmer-javascript"; 897 - rev = "a260911201684f80cf815418b3771e6c39309f81"; 898 - hash = "sha256-fpVlfYjVI1ricwNfuzI5AV3RV4ijFTYOf/2NhCirCvU="; 897 + rev = "7e8ea8cf39fc360cb97bd253442cd48e4f7a9ce3"; 898 + hash = "sha256-gqadIB5tB7aIOl3g6pxDeOsuENAwzb5RLVFn4d0G9MY="; 899 899 }; 900 900 meta.homepage = "https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript"; 901 901 }; 902 902 glimmer_typescript = buildGrammar { 903 903 language = "glimmer_typescript"; 904 - version = "0.0.0+rev=9d018a0"; 904 + version = "0.0.0+rev=4006128"; 905 905 src = fetchFromGitHub { 906 906 owner = "NullVoxPopuli"; 907 907 repo = "tree-sitter-glimmer-typescript"; 908 - rev = "9d018a0f93417e6951264a26093b89ee63df7315"; 909 - hash = "sha256-ZV6q4OEwj0ulGh5PO5XEMvT4WJQHkMmMXFJs8mcJqXk="; 908 + rev = "4006128790efb58ca82a4492d8ef0983b260fc6a"; 909 + hash = "sha256-oOF36q09hcOCdFWrFQlhDX79tS9xBNVgcp1vmxjRdGM="; 910 910 }; 911 911 meta.homepage = "https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript"; 912 912 }; ··· 1041 1041 hash = "sha256-NvE9Rpdp4sALqKSRWJpqxwl6obmqnIIdvrL1nK5peXc="; 1042 1042 }; 1043 1043 meta.homepage = "https://github.com/bkegley/tree-sitter-graphql"; 1044 + }; 1045 + gren = buildGrammar { 1046 + language = "gren"; 1047 + version = "0.0.0+rev=c06e272"; 1048 + src = fetchFromGitHub { 1049 + owner = "MaeBrooks"; 1050 + repo = "tree-sitter-gren"; 1051 + rev = "c06e272341363c5d8e19ac34bc7c56258a37e71b"; 1052 + hash = "sha256-Zxa/5hTFrkVRzswKion1tzrwp//ASuZKQjw7g/znBsI="; 1053 + }; 1054 + meta.homepage = "https://github.com/MaeBrooks/tree-sitter-gren"; 1044 1055 }; 1045 1056 groovy = buildGrammar { 1046 1057 language = "groovy"; ··· 1309 1320 }; 1310 1321 java = buildGrammar { 1311 1322 language = "java"; 1312 - version = "0.0.0+rev=3f86793"; 1323 + version = "0.0.0+rev=b864ed9"; 1313 1324 src = fetchFromGitHub { 1314 1325 owner = "tree-sitter"; 1315 1326 repo = "tree-sitter-java"; 1316 - rev = "3f8679368cf00ed10ec086975fa87f697b91b7bc"; 1317 - hash = "sha256-Mkh3zwZmErBEwzQ1yLTo9kyEhSZm6WigXtWKZpPYyXY="; 1327 + rev = "b864ed97b9675e86de7c15a70c12e4c1ca85fbf9"; 1328 + hash = "sha256-CiWIh8IFmK1xW7DfERWqsnFjtveAevANlzJbPOwA7Z0="; 1318 1329 }; 1319 1330 meta.homepage = "https://github.com/tree-sitter/tree-sitter-java"; 1320 1331 }; ··· 1943 1954 }; 1944 1955 php = buildGrammar { 1945 1956 language = "php"; 1946 - version = "0.0.0+rev=69af07e"; 1957 + version = "0.0.0+rev=2bce5a6"; 1947 1958 src = fetchFromGitHub { 1948 1959 owner = "tree-sitter"; 1949 1960 repo = "tree-sitter-php"; 1950 - rev = "69af07eedf60bc1992c59a8fd6b5e41f25442715"; 1951 - hash = "sha256-uS5MTotJypsawMR1z/KmZCNxfTuFIyimqbms5IEJ0cE="; 1961 + rev = "2bce5a6588ad6d53ffe5effaf9708682f0fbfc9b"; 1962 + hash = "sha256-0yWXwRc0cMMLL8P99eW3BwYIrm6FDG7eBNfjmIDzZIU="; 1952 1963 }; 1953 1964 location = "php"; 1954 1965 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1955 1966 }; 1956 1967 php_only = buildGrammar { 1957 1968 language = "php_only"; 1958 - version = "0.0.0+rev=69af07e"; 1969 + version = "0.0.0+rev=2bce5a6"; 1959 1970 src = fetchFromGitHub { 1960 1971 owner = "tree-sitter"; 1961 1972 repo = "tree-sitter-php"; 1962 - rev = "69af07eedf60bc1992c59a8fd6b5e41f25442715"; 1963 - hash = "sha256-uS5MTotJypsawMR1z/KmZCNxfTuFIyimqbms5IEJ0cE="; 1973 + rev = "2bce5a6588ad6d53ffe5effaf9708682f0fbfc9b"; 1974 + hash = "sha256-0yWXwRc0cMMLL8P99eW3BwYIrm6FDG7eBNfjmIDzZIU="; 1964 1975 }; 1965 1976 location = "php_only"; 1966 1977 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; ··· 2454 2465 }; 2455 2466 scala = buildGrammar { 2456 2467 language = "scala"; 2457 - version = "0.0.0+rev=2cfbb6e"; 2468 + version = "0.0.0+rev=a9af635"; 2458 2469 src = fetchFromGitHub { 2459 2470 owner = "tree-sitter"; 2460 2471 repo = "tree-sitter-scala"; 2461 - rev = "2cfbb6e3fcdfd51e0d477a43cc37ae8c6f87dc2e"; 2462 - hash = "sha256-8s5Li+fuHyr19KYaC/UzXc7ASLimwAu1VS+8lc5rNLA="; 2472 + rev = "a9af6356f8e31f04e870587bca79bc2b15808ff5"; 2473 + hash = "sha256-nZUQh42OsPnQffixOklbAmAIGtct/AaKOn4fE6ndTfQ="; 2463 2474 }; 2464 2475 meta.homepage = "https://github.com/tree-sitter/tree-sitter-scala"; 2465 2476 }; ··· 2700 2711 }; 2701 2712 superhtml = buildGrammar { 2702 2713 language = "superhtml"; 2703 - version = "0.0.0+rev=36f37aa"; 2714 + version = "0.0.0+rev=3325bbb"; 2704 2715 src = fetchFromGitHub { 2705 2716 owner = "kristoff-it"; 2706 2717 repo = "superhtml"; 2707 - rev = "36f37aa5aa440805f27d4a9f5203e616a303c6a1"; 2708 - hash = "sha256-oegEpBCk7Fhx4SbXebBq33b7Ef9XshYfx2SciaKwINY="; 2718 + rev = "3325bbb2dda260131a8db0cae1f1f557d17ebced"; 2719 + hash = "sha256-3NAS3eqayFYRziryNgOWfY+3d1HcVe+jPcKkkL9jbWY="; 2709 2720 }; 2710 2721 location = "tree-sitter-superhtml"; 2711 2722 meta.homepage = "https://github.com/kristoff-it/superhtml"; ··· 2766 2777 }; 2767 2778 meta.homepage = "https://github.com/ok-ryoko/tree-sitter-systemtap"; 2768 2779 }; 2769 - systemverilog = buildGrammar { 2770 - language = "systemverilog"; 2771 - version = "0.0.0+rev=4f897d5"; 2772 - src = fetchFromGitHub { 2773 - owner = "zhangwwpeng"; 2774 - repo = "tree-sitter-systemverilog"; 2775 - rev = "4f897d5e3f0e38bf8fbb55e8f39dc97d2bc2229e"; 2776 - hash = "sha256-guNdS07QqbqegFICNHP1ECX9bc+ZCW9li3ILIZVHRwM="; 2777 - }; 2778 - meta.homepage = "https://github.com/zhangwwpeng/tree-sitter-systemverilog"; 2779 - }; 2780 2780 t32 = buildGrammar { 2781 2781 language = "t32"; 2782 - version = "0.0.0+rev=6182836"; 2782 + version = "0.0.0+rev=0f6a5b1"; 2783 2783 src = fetchFromGitLab { 2784 2784 owner = "xasc"; 2785 2785 repo = "tree-sitter-t32"; 2786 - rev = "6182836f4128725f1e74ce986840d7317021a015"; 2787 - hash = "sha256-w9X/CL5X6Lwr4/GGVQcMZ1O2HfJmdNiVjRQKGZHrRqg="; 2786 + rev = "0f6a5b1e031c97ebf58d3c76eadb2c6bf1e4f780"; 2787 + hash = "sha256-Pd6rudBmDVvBwlVSLtBmSsoOBU9aG0iSyEPbTaYX6JE="; 2788 2788 }; 2789 2789 meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; 2790 2790 }; ··· 2858 2858 }; 2859 2859 textproto = buildGrammar { 2860 2860 language = "textproto"; 2861 - version = "0.0.0+rev=d900077"; 2861 + version = "0.0.0+rev=568471b"; 2862 2862 src = fetchFromGitHub { 2863 2863 owner = "PorterAtGoogle"; 2864 2864 repo = "tree-sitter-textproto"; 2865 - rev = "d900077aef9f5dcb0d47c86be33585013ed5db9a"; 2866 - hash = "sha256-PZMhYhIpGa7Y50jxvXZ0Z5l9e26P5q55sC18ptDi/uU="; 2865 + rev = "568471b80fd8793d37ed01865d8c2208a9fefd1b"; 2866 + hash = "sha256-VAj8qSxbkFqNp0X8BOZNvGTggSXZvzDjODedY11J0BQ="; 2867 2867 }; 2868 2868 meta.homepage = "https://github.com/PorterAtGoogle/tree-sitter-textproto"; 2869 2869 }; ··· 3116 3116 }; 3117 3117 verilog = buildGrammar { 3118 3118 language = "verilog"; 3119 - version = "0.0.0+rev=5a01c57"; 3119 + version = "0.0.0+rev=0dacb91"; 3120 3120 src = fetchFromGitHub { 3121 - owner = "tree-sitter"; 3122 - repo = "tree-sitter-verilog"; 3123 - rev = "5a01c57fa8e3d8801953a67ae7c6b240e2284ee8"; 3124 - hash = "sha256-Q8RaoL/1vNd553VFOI8crRffV8iVmAnMVCC+O2zjEZU="; 3121 + owner = "gmlarumbe"; 3122 + repo = "tree-sitter-systemverilog"; 3123 + rev = "0dacb911daa9614a7c7e79a594d4cb9f478e6554"; 3124 + hash = "sha256-WATrVeP3c//tWLG8VibXZrYrChBs7d4V6LCcEGcofdg="; 3125 3125 }; 3126 - meta.homepage = "https://github.com/tree-sitter/tree-sitter-verilog"; 3126 + meta.homepage = "https://github.com/gmlarumbe/tree-sitter-systemverilog"; 3127 3127 }; 3128 3128 vhdl = buildGrammar { 3129 3129 language = "vhdl"; ··· 3204 3204 }; 3205 3205 wgsl_bevy = buildGrammar { 3206 3206 language = "wgsl_bevy"; 3207 - version = "0.0.0+rev=0f06f24"; 3207 + version = "0.0.0+rev=47c1818"; 3208 3208 src = fetchFromGitHub { 3209 3209 owner = "theHamsta"; 3210 3210 repo = "tree-sitter-wgsl-bevy"; 3211 - rev = "0f06f24e259ac725045956436b9025dab008ff9f"; 3212 - hash = "sha256-/HNDdI2Tg6YG/lAvubZtN2g6pUCk0Kl4kRTRsABIm0Y="; 3211 + rev = "47c1818d245a6156a488c4c4d06e9336714bae9b"; 3212 + hash = "sha256-oL9HDMDl6MgDLZw4NWtdX7W775JZKwD2BweAO+9iI/k="; 3213 3213 }; 3214 3214 meta.homepage = "https://github.com/theHamsta/tree-sitter-wgsl-bevy"; 3215 3215 };
+2
pkgs/applications/editors/vim/plugins/overrides.nix
··· 199 199 meta.homepage = "https://github.com/sblumentritt/bitbake.vim/"; 200 200 }; 201 201 202 + blink-cmp = callPackage ./blink-cmp { }; 203 + 202 204 # The GitHub repository returns 404, which breaks the update script 203 205 vim-pony = buildVimPlugin { 204 206 pname = "vim-pony";
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 457 457 https://github.com/JuliaEditorSupport/julia-vim/,, 458 458 https://github.com/GCBallesteros/jupytext.nvim/,HEAD, 459 459 https://github.com/rebelot/kanagawa.nvim/,, 460 + https://github.com/imsnif/kdl.vim/,HEAD, 460 461 https://github.com/anuvyklack/keymap-layer.nvim/,HEAD, 461 462 https://github.com/kmonad/kmonad-vim/,, 462 463 https://github.com/frabjous/knap/,HEAD,
+7 -6
pkgs/applications/misc/input-leap/default.nix
··· 1 1 { lib 2 - , mkDerivation 2 + , stdenv 3 3 , fetchFromGitHub 4 4 , cmake 5 5 ··· 22 22 , qtbase 23 23 , qttools 24 24 , wrapGAppsHook3 25 + , wrapQtAppsHook 25 26 }: 26 27 27 - mkDerivation rec { 28 + stdenv.mkDerivation rec { 28 29 pname = "input-leap"; 29 - version = "unstable-2023-12-27"; 30 + version = "3.0.2"; 30 31 31 32 src = fetchFromGitHub { 32 33 owner = "input-leap"; 33 34 repo = "input-leap"; 34 - rev = "ecf1fb6645af7b79e6ea984d3c9698ca0ab6f391"; 35 - hash = "sha256-TEv1xR1wUG3wXNATLLIZKOtW05X96wsPNOlE77OQK54="; 35 + rev = "v${version}"; 36 + hash = "sha256-YkBHvwN573qqQWe/p0n4C2NlyNQHSZNz2jyMKGPITF4="; 36 37 fetchSubmodules = true; 37 38 }; 38 39 39 - nativeBuildInputs = [ pkg-config cmake wrapGAppsHook3 qttools ]; 40 + nativeBuildInputs = [ pkg-config cmake wrapGAppsHook3 wrapQtAppsHook qttools ]; 40 41 buildInputs = [ 41 42 curl qtbase avahi 42 43 libX11 libXext libXtst libXinerama libXrandr libXdmcp libICE libSM
+6 -5
pkgs/applications/networking/cluster/k0sctl/default.nix
··· 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "k0sproject"; 15 - repo = pname; 16 - rev = "v${version}"; 15 + repo = "k0sctl"; 16 + rev = "refs/tags/v${version}"; 17 17 hash = "sha256-86MLQdXc10bvDFeq3ImD19ytjVPVD19eJzicIo6oJZc="; 18 18 }; 19 19 ··· 22 22 ldflags = [ 23 23 "-s" 24 24 "-w" 25 - "-X github.com/k0sproject/k0sctl/version.Environment=production" 26 - "-X github.com/carlmjohnson/versioninfo.Version=v${version}" # Doesn't work currently: https://github.com/carlmjohnson/versioninfo/discussions/12 27 - "-X github.com/carlmjohnson/versioninfo.Revision=v${version}" 25 + "-X=github.com/k0sproject/k0sctl/version.Environment=production" 26 + "-X=github.com/carlmjohnson/versioninfo.Version=v${version}" # Doesn't work currently: https://github.com/carlmjohnson/versioninfo/discussions/12 27 + "-X=github.com/carlmjohnson/versioninfo.Revision=v${version}" 28 28 ]; 29 29 30 30 nativeBuildInputs = [ installShellFiles ]; ··· 46 46 meta = with lib; { 47 47 description = "Bootstrapping and management tool for k0s clusters"; 48 48 homepage = "https://k0sproject.io/"; 49 + changelog = "https://github.com/k0sproject/k0sctl/releases/tag/v${version}"; 49 50 license = licenses.asl20; 50 51 mainProgram = "k0sctl"; 51 52 maintainers = with maintainers; [ nickcao qjoly ];
+3 -3
pkgs/applications/networking/dnscontrol/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnscontrol"; 5 - version = "4.13.0"; 5 + version = "4.14.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "StackExchange"; 9 9 repo = "dnscontrol"; 10 10 rev = "v${version}"; 11 - hash = "sha256-qDCt1Ld3xHPexpCv/0SbvQwGhWE46cVX3BJ0PoBsKcA="; 11 + hash = "sha256-XKsP6ZJCY196wYsp54d0OgF4zj0b9H8820wBAOjrDbg="; 12 12 }; 13 13 14 - vendorHash = "sha256-qEIvxQ4PRtDWyIw3MWmyXV4HLraCLSglHivlV7UJ9jM="; 14 + vendorHash = "sha256-6ePEgHVFPtkW+C57+cPLj5yc9YaCRKrnBFo2Y1pcglM="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/by-name/al/aldente/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "aldente"; 11 - version = "1.28.4"; 11 + version = "1.28.5"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/davidwernhart/aldente-charge-limiter/releases/download/${finalAttrs.version}/AlDente.dmg"; 15 - hash = "sha256-ihfTVVc6kM+rOyPG7k2rkLVmCsOlBA7Uik8KrWhrdp0="; 15 + hash = "sha256-N+0bNgD80LLzwRAvYwxcLC0WnMgpvS4DnX/dZx0nIvE="; 16 16 }; 17 17 18 18 dontBuild = true;
+1 -1
pkgs/by-name/an/anchor/package.nix
··· 46 46 homepage = "https://github.com/coral-xyz/anchor"; 47 47 changelog = "https://github.com/coral-xyz/anchor/blob/${src.rev}/CHANGELOG.md"; 48 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ xrelkd ]; 49 + maintainers = [ ]; 50 50 mainProgram = "anchor"; 51 51 }; 52 52 }
+1 -7
pkgs/by-name/ba/bash-language-server/package.nix
··· 45 45 pnpm --offline \ 46 46 --frozen-lockfile --ignore-script \ 47 47 --filter=bash-language-server \ 48 - deploy $out/lib/bash-language-server 49 - # Cleanup directory a bit, to save space, and make fixup phase a bit faster 50 - rm -r $out/lib/bash-language-server/src 51 - find $out/lib/bash-language-server -name '*.ts' -delete 52 - rm -r \ 53 - $out/lib/bash-language-server/node_modules/.bin \ 54 - $out/lib/bash-language-server/node_modules/*/bin 48 + deploy --prod $out/lib/bash-language-server 55 49 56 50 # Create the executable, based upon what happens in npmHooks.npmInstallHook 57 51 makeWrapper ${lib.getExe nodejs} $out/bin/bash-language-server \
+2 -2
pkgs/by-name/co/cosmic-wallpapers/package.nix
··· 39 39 description = "Wallpapers for the COSMIC Desktop Environment"; 40 40 homepage = "https://system76.com/cosmic"; 41 41 license = with lib.licenses; [ 42 - unfree # https://github.com/pop-os/cosmic-wallpapers/issues/1 https://github.com/pop-os/cosmic-wallpapers/issues/3 https://github.com/pop-os/cosmic-wallpapers/issues/4 42 + unfree # https://github.com/pop-os/cosmic-wallpapers/issues/1 https://github.com/pop-os/cosmic-wallpapers/issues/3 43 43 cc-by-40 # https://www.esa.int/ESA_Multimedia/Images/2017/06/A_stormy_stellar_nursery (A_stormy_stellar_nursery_esa_379309.jpg) 44 - publicDomain # https://earthobservatory.nasa.gov/image-use-policy (otherworldly_earth_nasa_ISS064-E-29444.jpg, phytoplankton_bloom_nasa_oli2_20240121.jpg); https://hubblesite.org/copyright (orion_nebula_nasa_heic0601a.jpg); https://webbtelescope.org/copyright (tarantula_nebula_nasa_PIA23646.jpg) 44 + publicDomain # https://earthobservatory.nasa.gov/image-use-policy (otherworldly_earth_nasa_ISS064-E-29444.jpg, phytoplankton_bloom_nasa_oli2_20240121.jpg); https://hubblesite.org/copyright (orion_nebula_nasa_heic0601a.jpg); https://webbtelescope.org/copyright (tarantula_nebula_nasa_PIA23646.jpg); https://www.planetary.org/space-images/the-solar-systems-round-moons (round_moons_nasa.jpg) 45 45 ]; 46 46 maintainers = with lib.maintainers; [ pandapip1 ]; 47 47 platforms = lib.platforms.unix;
+30
pkgs/by-name/fo/foxmarks/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + sqlite, 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "foxmarks"; 10 + version = "2.1.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "zer0-x"; 14 + repo = "foxmarks"; 15 + rev = "v${version}"; 16 + hash = "sha256-tkmmu6A7vqK4yO9zHjVEeACaOHP3+hJQLBK7p/Svn7Q="; 17 + }; 18 + 19 + cargoHash = "sha256-m3JtibgNHsZScxziNEu1ycslJocBXRbtloMWE0G5ZyM="; 20 + 21 + buildInputs = [ sqlite ]; 22 + 23 + meta = { 24 + description = "CLI read-only interface for Mozilla Firefox's bookmarks"; 25 + homepage = "https://github.com/zer0-x/foxmarks"; 26 + changelog = "https://github.com/zer0-x/foxmarks/blobl/v${version}/CHANGELOG.md"; 27 + license = lib.licenses.gpl3; 28 + maintainers = with lib.maintainers; [ loicreynier ]; 29 + }; 30 + }
+9
pkgs/by-name/gi/git-spice/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildGo123Module, 4 5 fetchFromGitHub, 5 6 git, ··· 30 31 "-w" 31 32 "-X=main._version=${version}" 32 33 ]; 34 + 35 + __darwinAllowLocalNetworking = true; 36 + 37 + preCheck = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) '' 38 + # timeout 39 + rm testdata/script/branch_submit_remote_prompt.txt 40 + rm testdata/script/branch_submit_multiple_pr_templates.txt 41 + ''; 33 42 34 43 passthru.updateScript = nix-update-script { }; 35 44
+16 -5
pkgs/by-name/ht/httpie-desktop/package.nix
··· 2 2 appimageTools, 3 3 lib, 4 4 fetchurl, 5 + stdenv, 5 6 }: 6 7 7 8 appimageTools.wrapType2 rec { 8 9 pname = "httpie-desktop"; 9 10 version = "2024.1.2"; 10 11 11 - src = fetchurl { 12 - url = "https://github.com/httpie/desktop/releases/download/v${version}/HTTPie-${version}.AppImage"; 13 - hash = "sha256-OOP1l7J2BgO3nOPSipxfwfN/lOUsl80UzYMBosyBHrM="; 14 - }; 12 + src = 13 + if stdenv.hostPlatform.system == "aarch64-linux" then 14 + fetchurl { 15 + url = "https://github.com/httpie/desktop/releases/download/v${version}/HTTPie-${version}-arm64.AppImage"; 16 + hash = "sha256-RhIyLakCkMUcXvu0sgl5MtV4YXXkqqH1UUS7bptUzww="; 17 + } 18 + else 19 + fetchurl { 20 + url = "https://github.com/httpie/desktop/releases/download/v${version}/HTTPie-${version}.AppImage"; 21 + hash = "sha256-OOP1l7J2BgO3nOPSipxfwfN/lOUsl80UzYMBosyBHrM="; 22 + }; 15 23 16 24 extraInstallCommands = 17 25 let ··· 32 40 license = licenses.unfree; 33 41 maintainers = with maintainers; [ luftmensch-luftmensch ]; 34 42 mainProgram = "httpie-desktop"; 35 - platforms = [ "x86_64-linux" ]; 43 + platforms = [ 44 + "x86_64-linux" 45 + "aarch64-linux" 46 + ]; 36 47 }; 37 48 }
-5804
pkgs/by-name/ki/kiwitalk/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "addr2line" 7 - version = "0.21.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "aes" 22 - version = "0.8.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" 25 - dependencies = [ 26 - "cfg-if", 27 - "cipher", 28 - "cpufeatures", 29 - ] 30 - 31 - [[package]] 32 - name = "ahash" 33 - version = "0.8.3" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 36 - dependencies = [ 37 - "cfg-if", 38 - "getrandom 0.2.10", 39 - "once_cell", 40 - "version_check", 41 - ] 42 - 43 - [[package]] 44 - name = "aho-corasick" 45 - version = "1.1.2" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 48 - dependencies = [ 49 - "memchr", 50 - ] 51 - 52 - [[package]] 53 - name = "alloc-no-stdlib" 54 - version = "2.0.4" 55 - source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 57 - 58 - [[package]] 59 - name = "alloc-stdlib" 60 - version = "0.2.2" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 63 - dependencies = [ 64 - "alloc-no-stdlib", 65 - ] 66 - 67 - [[package]] 68 - name = "android-tzdata" 69 - version = "0.1.1" 70 - source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 72 - 73 - [[package]] 74 - name = "android_system_properties" 75 - version = "0.1.5" 76 - source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 78 - dependencies = [ 79 - "libc", 80 - ] 81 - 82 - [[package]] 83 - name = "anyhow" 84 - version = "1.0.75" 85 - source = "registry+https://github.com/rust-lang/crates.io-index" 86 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 87 - dependencies = [ 88 - "backtrace", 89 - ] 90 - 91 - [[package]] 92 - name = "arrayvec" 93 - version = "0.7.4" 94 - source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 96 - dependencies = [ 97 - "serde", 98 - ] 99 - 100 - [[package]] 101 - name = "async-broadcast" 102 - version = "0.5.1" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 105 - dependencies = [ 106 - "event-listener 2.5.3", 107 - "futures-core", 108 - ] 109 - 110 - [[package]] 111 - name = "async-channel" 112 - version = "1.9.0" 113 - source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 115 - dependencies = [ 116 - "concurrent-queue", 117 - "event-listener 2.5.3", 118 - "futures-core", 119 - ] 120 - 121 - [[package]] 122 - name = "async-executor" 123 - version = "1.6.0" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "4b0c4a4f319e45986f347ee47fef8bf5e81c9abc3f6f58dc2391439f30df65f0" 126 - dependencies = [ 127 - "async-lock", 128 - "async-task", 129 - "concurrent-queue", 130 - "fastrand 2.0.1", 131 - "futures-lite 1.13.0", 132 - "slab", 133 - ] 134 - 135 - [[package]] 136 - name = "async-fs" 137 - version = "1.6.0" 138 - source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 140 - dependencies = [ 141 - "async-lock", 142 - "autocfg", 143 - "blocking", 144 - "futures-lite 1.13.0", 145 - ] 146 - 147 - [[package]] 148 - name = "async-io" 149 - version = "1.13.0" 150 - source = "registry+https://github.com/rust-lang/crates.io-index" 151 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 152 - dependencies = [ 153 - "async-lock", 154 - "autocfg", 155 - "cfg-if", 156 - "concurrent-queue", 157 - "futures-lite 1.13.0", 158 - "log", 159 - "parking", 160 - "polling", 161 - "rustix 0.37.25", 162 - "slab", 163 - "socket2 0.4.9", 164 - "waker-fn", 165 - ] 166 - 167 - [[package]] 168 - name = "async-lock" 169 - version = "2.8.0" 170 - source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 172 - dependencies = [ 173 - "event-listener 2.5.3", 174 - ] 175 - 176 - [[package]] 177 - name = "async-process" 178 - version = "1.8.1" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 181 - dependencies = [ 182 - "async-io", 183 - "async-lock", 184 - "async-signal", 185 - "blocking", 186 - "cfg-if", 187 - "event-listener 3.0.0", 188 - "futures-lite 1.13.0", 189 - "rustix 0.38.19", 190 - "windows-sys 0.48.0", 191 - ] 192 - 193 - [[package]] 194 - name = "async-recursion" 195 - version = "1.0.5" 196 - source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 198 - dependencies = [ 199 - "proc-macro2", 200 - "quote", 201 - "syn 2.0.38", 202 - ] 203 - 204 - [[package]] 205 - name = "async-signal" 206 - version = "0.2.4" 207 - source = "registry+https://github.com/rust-lang/crates.io-index" 208 - checksum = "d2a5415b7abcdc9cd7d63d6badba5288b2ca017e3fbd4173b8f405449f1a2399" 209 - dependencies = [ 210 - "async-io", 211 - "async-lock", 212 - "atomic-waker", 213 - "cfg-if", 214 - "futures-core", 215 - "futures-io", 216 - "rustix 0.38.19", 217 - "signal-hook-registry", 218 - "slab", 219 - "windows-sys 0.48.0", 220 - ] 221 - 222 - [[package]] 223 - name = "async-stream" 224 - version = "0.3.5" 225 - source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 227 - dependencies = [ 228 - "async-stream-impl", 229 - "futures-core", 230 - "pin-project-lite", 231 - ] 232 - 233 - [[package]] 234 - name = "async-stream-impl" 235 - version = "0.3.5" 236 - source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 238 - dependencies = [ 239 - "proc-macro2", 240 - "quote", 241 - "syn 2.0.38", 242 - ] 243 - 244 - [[package]] 245 - name = "async-task" 246 - version = "4.5.0" 247 - source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 249 - 250 - [[package]] 251 - name = "async-trait" 252 - version = "0.1.74" 253 - source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 255 - dependencies = [ 256 - "proc-macro2", 257 - "quote", 258 - "syn 2.0.38", 259 - ] 260 - 261 - [[package]] 262 - name = "atk" 263 - version = "0.15.1" 264 - source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 266 - dependencies = [ 267 - "atk-sys", 268 - "bitflags 1.3.2", 269 - "glib", 270 - "libc", 271 - ] 272 - 273 - [[package]] 274 - name = "atk-sys" 275 - version = "0.15.1" 276 - source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 278 - dependencies = [ 279 - "glib-sys", 280 - "gobject-sys", 281 - "libc", 282 - "system-deps 6.1.2", 283 - ] 284 - 285 - [[package]] 286 - name = "atomic-waker" 287 - version = "1.1.2" 288 - source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 290 - 291 - [[package]] 292 - name = "autocfg" 293 - version = "1.1.0" 294 - source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 296 - 297 - [[package]] 298 - name = "backtrace" 299 - version = "0.3.69" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 302 - dependencies = [ 303 - "addr2line", 304 - "cc", 305 - "cfg-if", 306 - "libc", 307 - "miniz_oxide", 308 - "object", 309 - "rustc-demangle", 310 - ] 311 - 312 - [[package]] 313 - name = "base64" 314 - version = "0.13.1" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 317 - 318 - [[package]] 319 - name = "base64" 320 - version = "0.21.5" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 323 - 324 - [[package]] 325 - name = "base64ct" 326 - version = "1.6.0" 327 - source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 329 - 330 - [[package]] 331 - name = "bincode" 332 - version = "1.3.3" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 335 - dependencies = [ 336 - "serde", 337 - ] 338 - 339 - [[package]] 340 - name = "bitflags" 341 - version = "1.3.2" 342 - source = "registry+https://github.com/rust-lang/crates.io-index" 343 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 344 - 345 - [[package]] 346 - name = "bitflags" 347 - version = "2.4.1" 348 - source = "registry+https://github.com/rust-lang/crates.io-index" 349 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 350 - dependencies = [ 351 - "serde", 352 - ] 353 - 354 - [[package]] 355 - name = "bitvec" 356 - version = "1.0.1" 357 - source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 359 - dependencies = [ 360 - "funty", 361 - "radium", 362 - "tap", 363 - "wyz", 364 - ] 365 - 366 - [[package]] 367 - name = "block" 368 - version = "0.1.6" 369 - source = "registry+https://github.com/rust-lang/crates.io-index" 370 - checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 371 - 372 - [[package]] 373 - name = "block-buffer" 374 - version = "0.10.4" 375 - source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 377 - dependencies = [ 378 - "generic-array", 379 - ] 380 - 381 - [[package]] 382 - name = "blocking" 383 - version = "1.4.1" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a" 386 - dependencies = [ 387 - "async-channel", 388 - "async-lock", 389 - "async-task", 390 - "fastrand 2.0.1", 391 - "futures-io", 392 - "futures-lite 1.13.0", 393 - "piper", 394 - "tracing", 395 - ] 396 - 397 - [[package]] 398 - name = "brotli" 399 - version = "3.4.0" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 402 - dependencies = [ 403 - "alloc-no-stdlib", 404 - "alloc-stdlib", 405 - "brotli-decompressor", 406 - ] 407 - 408 - [[package]] 409 - name = "brotli-decompressor" 410 - version = "2.5.0" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" 413 - dependencies = [ 414 - "alloc-no-stdlib", 415 - "alloc-stdlib", 416 - ] 417 - 418 - [[package]] 419 - name = "bson" 420 - version = "2.7.0" 421 - source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "58da0ae1e701ea752cc46c1bb9f39d5ecefc7395c3ecd526261a566d4f16e0c2" 423 - dependencies = [ 424 - "ahash", 425 - "base64 0.13.1", 426 - "bitvec", 427 - "hex", 428 - "indexmap 1.9.3", 429 - "js-sys", 430 - "once_cell", 431 - "rand 0.8.5", 432 - "serde", 433 - "serde_bytes", 434 - "serde_json", 435 - "time", 436 - "uuid", 437 - ] 438 - 439 - [[package]] 440 - name = "bstr" 441 - version = "1.7.0" 442 - source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 444 - dependencies = [ 445 - "memchr", 446 - "serde", 447 - ] 448 - 449 - [[package]] 450 - name = "bumpalo" 451 - version = "3.14.0" 452 - source = "registry+https://github.com/rust-lang/crates.io-index" 453 - checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 454 - 455 - [[package]] 456 - name = "byte-order" 457 - version = "0.3.0" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "b021a13e4bf34a5679ada4609a01337ae82f2c4c97493b9d8cbf8aa9af9bd0f4" 460 - 461 - [[package]] 462 - name = "byte-unit" 463 - version = "4.0.19" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "da78b32057b8fdfc352504708feeba7216dcd65a2c9ab02978cbd288d1279b6c" 466 - dependencies = [ 467 - "serde", 468 - "utf8-width", 469 - ] 470 - 471 - [[package]] 472 - name = "bytemuck" 473 - version = "1.14.0" 474 - source = "registry+https://github.com/rust-lang/crates.io-index" 475 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 476 - 477 - [[package]] 478 - name = "byteorder" 479 - version = "1.5.0" 480 - source = "registry+https://github.com/rust-lang/crates.io-index" 481 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 482 - 483 - [[package]] 484 - name = "bytes" 485 - version = "1.5.0" 486 - source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 488 - dependencies = [ 489 - "serde", 490 - ] 491 - 492 - [[package]] 493 - name = "cairo-rs" 494 - version = "0.15.12" 495 - source = "registry+https://github.com/rust-lang/crates.io-index" 496 - checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 497 - dependencies = [ 498 - "bitflags 1.3.2", 499 - "cairo-sys-rs", 500 - "glib", 501 - "libc", 502 - "thiserror", 503 - ] 504 - 505 - [[package]] 506 - name = "cairo-sys-rs" 507 - version = "0.15.1" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 510 - dependencies = [ 511 - "glib-sys", 512 - "libc", 513 - "system-deps 6.1.2", 514 - ] 515 - 516 - [[package]] 517 - name = "cargo_toml" 518 - version = "0.15.3" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 521 - dependencies = [ 522 - "serde", 523 - "toml 0.7.8", 524 - ] 525 - 526 - [[package]] 527 - name = "cc" 528 - version = "1.0.83" 529 - source = "registry+https://github.com/rust-lang/crates.io-index" 530 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 531 - dependencies = [ 532 - "libc", 533 - ] 534 - 535 - [[package]] 536 - name = "cesu8" 537 - version = "1.1.0" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 540 - 541 - [[package]] 542 - name = "cfb" 543 - version = "0.7.3" 544 - source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 546 - dependencies = [ 547 - "byteorder", 548 - "fnv", 549 - "uuid", 550 - ] 551 - 552 - [[package]] 553 - name = "cfb-mode" 554 - version = "0.8.2" 555 - source = "registry+https://github.com/rust-lang/crates.io-index" 556 - checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 557 - dependencies = [ 558 - "cipher", 559 - ] 560 - 561 - [[package]] 562 - name = "cfg-expr" 563 - version = "0.9.1" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 566 - dependencies = [ 567 - "smallvec", 568 - ] 569 - 570 - [[package]] 571 - name = "cfg-expr" 572 - version = "0.15.5" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 575 - dependencies = [ 576 - "smallvec", 577 - "target-lexicon", 578 - ] 579 - 580 - [[package]] 581 - name = "cfg-if" 582 - version = "1.0.0" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 585 - 586 - [[package]] 587 - name = "chrono" 588 - version = "0.4.31" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 591 - dependencies = [ 592 - "android-tzdata", 593 - "iana-time-zone", 594 - "num-traits", 595 - "serde", 596 - "windows-targets 0.48.5", 597 - ] 598 - 599 - [[package]] 600 - name = "cipher" 601 - version = "0.4.4" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 604 - dependencies = [ 605 - "crypto-common", 606 - "inout", 607 - ] 608 - 609 - [[package]] 610 - name = "cocoa" 611 - version = "0.24.1" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 614 - dependencies = [ 615 - "bitflags 1.3.2", 616 - "block", 617 - "cocoa-foundation", 618 - "core-foundation", 619 - "core-graphics 0.22.3", 620 - "foreign-types 0.3.2", 621 - "libc", 622 - "objc", 623 - ] 624 - 625 - [[package]] 626 - name = "cocoa" 627 - version = "0.25.0" 628 - source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 630 - dependencies = [ 631 - "bitflags 1.3.2", 632 - "block", 633 - "cocoa-foundation", 634 - "core-foundation", 635 - "core-graphics 0.23.1", 636 - "foreign-types 0.5.0", 637 - "libc", 638 - "objc", 639 - ] 640 - 641 - [[package]] 642 - name = "cocoa-foundation" 643 - version = "0.1.2" 644 - source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 646 - dependencies = [ 647 - "bitflags 1.3.2", 648 - "block", 649 - "core-foundation", 650 - "core-graphics-types", 651 - "libc", 652 - "objc", 653 - ] 654 - 655 - [[package]] 656 - name = "color_quant" 657 - version = "1.1.0" 658 - source = "registry+https://github.com/rust-lang/crates.io-index" 659 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 660 - 661 - [[package]] 662 - name = "combine" 663 - version = "4.6.6" 664 - source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 666 - dependencies = [ 667 - "bytes", 668 - "memchr", 669 - ] 670 - 671 - [[package]] 672 - name = "concurrent-queue" 673 - version = "2.3.0" 674 - source = "registry+https://github.com/rust-lang/crates.io-index" 675 - checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 676 - dependencies = [ 677 - "crossbeam-utils", 678 - ] 679 - 680 - [[package]] 681 - name = "const-oid" 682 - version = "0.9.5" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" 685 - 686 - [[package]] 687 - name = "convert_case" 688 - version = "0.4.0" 689 - source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 691 - 692 - [[package]] 693 - name = "core-foundation" 694 - version = "0.9.3" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 697 - dependencies = [ 698 - "core-foundation-sys", 699 - "libc", 700 - ] 701 - 702 - [[package]] 703 - name = "core-foundation-sys" 704 - version = "0.8.4" 705 - source = "registry+https://github.com/rust-lang/crates.io-index" 706 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 707 - 708 - [[package]] 709 - name = "core-graphics" 710 - version = "0.22.3" 711 - source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 713 - dependencies = [ 714 - "bitflags 1.3.2", 715 - "core-foundation", 716 - "core-graphics-types", 717 - "foreign-types 0.3.2", 718 - "libc", 719 - ] 720 - 721 - [[package]] 722 - name = "core-graphics" 723 - version = "0.23.1" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212" 726 - dependencies = [ 727 - "bitflags 1.3.2", 728 - "core-foundation", 729 - "core-graphics-types", 730 - "foreign-types 0.5.0", 731 - "libc", 732 - ] 733 - 734 - [[package]] 735 - name = "core-graphics-types" 736 - version = "0.1.2" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" 739 - dependencies = [ 740 - "bitflags 1.3.2", 741 - "core-foundation", 742 - "libc", 743 - ] 744 - 745 - [[package]] 746 - name = "cpufeatures" 747 - version = "0.2.9" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 750 - dependencies = [ 751 - "libc", 752 - ] 753 - 754 - [[package]] 755 - name = "crc32fast" 756 - version = "1.3.2" 757 - source = "registry+https://github.com/rust-lang/crates.io-index" 758 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 759 - dependencies = [ 760 - "cfg-if", 761 - ] 762 - 763 - [[package]] 764 - name = "crossbeam-channel" 765 - version = "0.5.8" 766 - source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 768 - dependencies = [ 769 - "cfg-if", 770 - "crossbeam-utils", 771 - ] 772 - 773 - [[package]] 774 - name = "crossbeam-utils" 775 - version = "0.8.16" 776 - source = "registry+https://github.com/rust-lang/crates.io-index" 777 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 778 - dependencies = [ 779 - "cfg-if", 780 - ] 781 - 782 - [[package]] 783 - name = "crypto-common" 784 - version = "0.1.6" 785 - source = "registry+https://github.com/rust-lang/crates.io-index" 786 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 787 - dependencies = [ 788 - "generic-array", 789 - "typenum", 790 - ] 791 - 792 - [[package]] 793 - name = "cssparser" 794 - version = "0.27.2" 795 - source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 797 - dependencies = [ 798 - "cssparser-macros", 799 - "dtoa-short", 800 - "itoa 0.4.8", 801 - "matches", 802 - "phf 0.8.0", 803 - "proc-macro2", 804 - "quote", 805 - "smallvec", 806 - "syn 1.0.109", 807 - ] 808 - 809 - [[package]] 810 - name = "cssparser-macros" 811 - version = "0.6.1" 812 - source = "registry+https://github.com/rust-lang/crates.io-index" 813 - checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 814 - dependencies = [ 815 - "quote", 816 - "syn 2.0.38", 817 - ] 818 - 819 - [[package]] 820 - name = "ctor" 821 - version = "0.1.26" 822 - source = "registry+https://github.com/rust-lang/crates.io-index" 823 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 824 - dependencies = [ 825 - "quote", 826 - "syn 1.0.109", 827 - ] 828 - 829 - [[package]] 830 - name = "darling" 831 - version = "0.20.3" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 834 - dependencies = [ 835 - "darling_core", 836 - "darling_macro", 837 - ] 838 - 839 - [[package]] 840 - name = "darling_core" 841 - version = "0.20.3" 842 - source = "registry+https://github.com/rust-lang/crates.io-index" 843 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 844 - dependencies = [ 845 - "fnv", 846 - "ident_case", 847 - "proc-macro2", 848 - "quote", 849 - "strsim", 850 - "syn 2.0.38", 851 - ] 852 - 853 - [[package]] 854 - name = "darling_macro" 855 - version = "0.20.3" 856 - source = "registry+https://github.com/rust-lang/crates.io-index" 857 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 858 - dependencies = [ 859 - "darling_core", 860 - "quote", 861 - "syn 2.0.38", 862 - ] 863 - 864 - [[package]] 865 - name = "dashmap" 866 - version = "5.5.3" 867 - source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 869 - dependencies = [ 870 - "cfg-if", 871 - "hashbrown 0.14.1", 872 - "lock_api", 873 - "once_cell", 874 - "parking_lot_core", 875 - ] 876 - 877 - [[package]] 878 - name = "der" 879 - version = "0.7.8" 880 - source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" 882 - dependencies = [ 883 - "const-oid", 884 - "pem-rfc7468", 885 - "zeroize", 886 - ] 887 - 888 - [[package]] 889 - name = "deranged" 890 - version = "0.3.9" 891 - source = "registry+https://github.com/rust-lang/crates.io-index" 892 - checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 893 - dependencies = [ 894 - "powerfmt", 895 - "serde", 896 - ] 897 - 898 - [[package]] 899 - name = "derivative" 900 - version = "2.2.0" 901 - source = "registry+https://github.com/rust-lang/crates.io-index" 902 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 903 - dependencies = [ 904 - "proc-macro2", 905 - "quote", 906 - "syn 1.0.109", 907 - ] 908 - 909 - [[package]] 910 - name = "derive_more" 911 - version = "0.99.17" 912 - source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 914 - dependencies = [ 915 - "convert_case", 916 - "proc-macro2", 917 - "quote", 918 - "rustc_version", 919 - "syn 1.0.109", 920 - ] 921 - 922 - [[package]] 923 - name = "diesel" 924 - version = "2.1.3" 925 - source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "2268a214a6f118fce1838edba3d1561cf0e78d8de785475957a580a7f8c69d33" 927 - dependencies = [ 928 - "diesel_derives", 929 - "libsqlite3-sys", 930 - "r2d2", 931 - "serde_json", 932 - "time", 933 - ] 934 - 935 - [[package]] 936 - name = "diesel_derives" 937 - version = "2.1.2" 938 - source = "registry+https://github.com/rust-lang/crates.io-index" 939 - checksum = "ef8337737574f55a468005a83499da720f20c65586241ffea339db9ecdfd2b44" 940 - dependencies = [ 941 - "diesel_table_macro_syntax", 942 - "proc-macro2", 943 - "quote", 944 - "syn 2.0.38", 945 - ] 946 - 947 - [[package]] 948 - name = "diesel_migrations" 949 - version = "2.1.0" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "6036b3f0120c5961381b570ee20a02432d7e2d27ea60de9578799cf9156914ac" 952 - dependencies = [ 953 - "diesel", 954 - "migrations_internals", 955 - "migrations_macros", 956 - ] 957 - 958 - [[package]] 959 - name = "diesel_table_macro_syntax" 960 - version = "0.1.0" 961 - source = "registry+https://github.com/rust-lang/crates.io-index" 962 - checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5" 963 - dependencies = [ 964 - "syn 2.0.38", 965 - ] 966 - 967 - [[package]] 968 - name = "digest" 969 - version = "0.10.7" 970 - source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 972 - dependencies = [ 973 - "block-buffer", 974 - "const-oid", 975 - "crypto-common", 976 - ] 977 - 978 - [[package]] 979 - name = "dirs-next" 980 - version = "2.0.0" 981 - source = "registry+https://github.com/rust-lang/crates.io-index" 982 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 983 - dependencies = [ 984 - "cfg-if", 985 - "dirs-sys-next", 986 - ] 987 - 988 - [[package]] 989 - name = "dirs-sys-next" 990 - version = "0.1.2" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 993 - dependencies = [ 994 - "libc", 995 - "redox_users", 996 - "winapi", 997 - ] 998 - 999 - [[package]] 1000 - name = "dispatch" 1001 - version = "0.2.0" 1002 - source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 1004 - 1005 - [[package]] 1006 - name = "dtoa" 1007 - version = "1.0.9" 1008 - source = "registry+https://github.com/rust-lang/crates.io-index" 1009 - checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 1010 - 1011 - [[package]] 1012 - name = "dtoa-short" 1013 - version = "0.3.4" 1014 - source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" 1016 - dependencies = [ 1017 - "dtoa", 1018 - ] 1019 - 1020 - [[package]] 1021 - name = "dunce" 1022 - version = "1.0.4" 1023 - source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 1025 - 1026 - [[package]] 1027 - name = "easy-ext" 1028 - version = "1.0.1" 1029 - source = "registry+https://github.com/rust-lang/crates.io-index" 1030 - checksum = "49457524c7e65648794c98283282a0b7c73b10018e7091f1cdcfff314fd7ae59" 1031 - 1032 - [[package]] 1033 - name = "embed-resource" 1034 - version = "2.4.0" 1035 - source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "f54cc3e827ee1c3812239a9a41dede7b4d7d5d5464faa32d71bd7cba28ce2cb2" 1037 - dependencies = [ 1038 - "cc", 1039 - "rustc_version", 1040 - "toml 0.8.2", 1041 - "vswhom", 1042 - "winreg 0.51.0", 1043 - ] 1044 - 1045 - [[package]] 1046 - name = "embed_plist" 1047 - version = "1.2.2" 1048 - source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 1050 - 1051 - [[package]] 1052 - name = "encoding_rs" 1053 - version = "0.8.33" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1056 - dependencies = [ 1057 - "cfg-if", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "enumflags2" 1062 - version = "0.7.8" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1065 - dependencies = [ 1066 - "enumflags2_derive", 1067 - "serde", 1068 - ] 1069 - 1070 - [[package]] 1071 - name = "enumflags2_derive" 1072 - version = "0.7.8" 1073 - source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1075 - dependencies = [ 1076 - "proc-macro2", 1077 - "quote", 1078 - "syn 2.0.38", 1079 - ] 1080 - 1081 - [[package]] 1082 - name = "equivalent" 1083 - version = "1.0.1" 1084 - source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1086 - 1087 - [[package]] 1088 - name = "errno" 1089 - version = "0.3.5" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 1092 - dependencies = [ 1093 - "libc", 1094 - "windows-sys 0.48.0", 1095 - ] 1096 - 1097 - [[package]] 1098 - name = "event-listener" 1099 - version = "2.5.3" 1100 - source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1102 - 1103 - [[package]] 1104 - name = "event-listener" 1105 - version = "3.0.0" 1106 - source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325" 1108 - dependencies = [ 1109 - "concurrent-queue", 1110 - "parking", 1111 - "pin-project-lite", 1112 - ] 1113 - 1114 - [[package]] 1115 - name = "extend" 1116 - version = "1.2.0" 1117 - source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "311a6d2f1f9d60bff73d2c78a0af97ed27f79672f15c238192a5bbb64db56d00" 1119 - dependencies = [ 1120 - "proc-macro2", 1121 - "quote", 1122 - "syn 2.0.38", 1123 - ] 1124 - 1125 - [[package]] 1126 - name = "fastrand" 1127 - version = "1.9.0" 1128 - source = "registry+https://github.com/rust-lang/crates.io-index" 1129 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1130 - dependencies = [ 1131 - "instant", 1132 - ] 1133 - 1134 - [[package]] 1135 - name = "fastrand" 1136 - version = "2.0.1" 1137 - source = "registry+https://github.com/rust-lang/crates.io-index" 1138 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1139 - 1140 - [[package]] 1141 - name = "fdeflate" 1142 - version = "0.3.0" 1143 - source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 1145 - dependencies = [ 1146 - "simd-adler32", 1147 - ] 1148 - 1149 - [[package]] 1150 - name = "fern" 1151 - version = "0.6.2" 1152 - source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" 1154 - dependencies = [ 1155 - "log", 1156 - ] 1157 - 1158 - [[package]] 1159 - name = "field-offset" 1160 - version = "0.3.6" 1161 - source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1163 - dependencies = [ 1164 - "memoffset 0.9.0", 1165 - "rustc_version", 1166 - ] 1167 - 1168 - [[package]] 1169 - name = "filetime" 1170 - version = "0.2.22" 1171 - source = "registry+https://github.com/rust-lang/crates.io-index" 1172 - checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 1173 - dependencies = [ 1174 - "cfg-if", 1175 - "libc", 1176 - "redox_syscall 0.3.5", 1177 - "windows-sys 0.48.0", 1178 - ] 1179 - 1180 - [[package]] 1181 - name = "flate2" 1182 - version = "1.0.28" 1183 - source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1185 - dependencies = [ 1186 - "crc32fast", 1187 - "miniz_oxide", 1188 - ] 1189 - 1190 - [[package]] 1191 - name = "flume" 1192 - version = "0.11.0" 1193 - source = "registry+https://github.com/rust-lang/crates.io-index" 1194 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1195 - dependencies = [ 1196 - "futures-core", 1197 - "futures-sink", 1198 - "nanorand", 1199 - "spin 0.9.8", 1200 - ] 1201 - 1202 - [[package]] 1203 - name = "fnv" 1204 - version = "1.0.7" 1205 - source = "registry+https://github.com/rust-lang/crates.io-index" 1206 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1207 - 1208 - [[package]] 1209 - name = "foreign-types" 1210 - version = "0.3.2" 1211 - source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1213 - dependencies = [ 1214 - "foreign-types-shared 0.1.1", 1215 - ] 1216 - 1217 - [[package]] 1218 - name = "foreign-types" 1219 - version = "0.5.0" 1220 - source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1222 - dependencies = [ 1223 - "foreign-types-macros", 1224 - "foreign-types-shared 0.3.1", 1225 - ] 1226 - 1227 - [[package]] 1228 - name = "foreign-types-macros" 1229 - version = "0.2.3" 1230 - source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1232 - dependencies = [ 1233 - "proc-macro2", 1234 - "quote", 1235 - "syn 2.0.38", 1236 - ] 1237 - 1238 - [[package]] 1239 - name = "foreign-types-shared" 1240 - version = "0.1.1" 1241 - source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1243 - 1244 - [[package]] 1245 - name = "foreign-types-shared" 1246 - version = "0.3.1" 1247 - source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1249 - 1250 - [[package]] 1251 - name = "form_urlencoded" 1252 - version = "1.2.0" 1253 - source = "registry+https://github.com/rust-lang/crates.io-index" 1254 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1255 - dependencies = [ 1256 - "percent-encoding", 1257 - ] 1258 - 1259 - [[package]] 1260 - name = "funty" 1261 - version = "2.0.0" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1264 - 1265 - [[package]] 1266 - name = "futf" 1267 - version = "0.1.5" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1270 - dependencies = [ 1271 - "mac", 1272 - "new_debug_unreachable", 1273 - ] 1274 - 1275 - [[package]] 1276 - name = "futures" 1277 - version = "0.3.29" 1278 - source = "registry+https://github.com/rust-lang/crates.io-index" 1279 - checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1280 - dependencies = [ 1281 - "futures-channel", 1282 - "futures-core", 1283 - "futures-executor", 1284 - "futures-io", 1285 - "futures-sink", 1286 - "futures-task", 1287 - "futures-util", 1288 - ] 1289 - 1290 - [[package]] 1291 - name = "futures-channel" 1292 - version = "0.3.29" 1293 - source = "registry+https://github.com/rust-lang/crates.io-index" 1294 - checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1295 - dependencies = [ 1296 - "futures-core", 1297 - "futures-sink", 1298 - ] 1299 - 1300 - [[package]] 1301 - name = "futures-core" 1302 - version = "0.3.29" 1303 - source = "registry+https://github.com/rust-lang/crates.io-index" 1304 - checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1305 - 1306 - [[package]] 1307 - name = "futures-executor" 1308 - version = "0.3.29" 1309 - source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1311 - dependencies = [ 1312 - "futures-core", 1313 - "futures-task", 1314 - "futures-util", 1315 - ] 1316 - 1317 - [[package]] 1318 - name = "futures-io" 1319 - version = "0.3.29" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1322 - 1323 - [[package]] 1324 - name = "futures-lite" 1325 - version = "1.13.0" 1326 - source = "registry+https://github.com/rust-lang/crates.io-index" 1327 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1328 - dependencies = [ 1329 - "fastrand 1.9.0", 1330 - "futures-core", 1331 - "futures-io", 1332 - "memchr", 1333 - "parking", 1334 - "pin-project-lite", 1335 - "waker-fn", 1336 - ] 1337 - 1338 - [[package]] 1339 - name = "futures-lite" 1340 - version = "2.0.1" 1341 - source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb" 1343 - dependencies = [ 1344 - "fastrand 2.0.1", 1345 - "futures-core", 1346 - "futures-io", 1347 - "memchr", 1348 - "parking", 1349 - "pin-project-lite", 1350 - ] 1351 - 1352 - [[package]] 1353 - name = "futures-loco-protocol" 1354 - version = "0.4.0" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "d2e01bd62aeea8e91616b5036ebfeba7a33ccbc7cf192e29494f9147e2aba147" 1357 - dependencies = [ 1358 - "flume", 1359 - "futures-core", 1360 - "futures-io", 1361 - "getrandom 0.2.10", 1362 - "loco-protocol", 1363 - "nohash-hasher", 1364 - "oneshot", 1365 - "pin-project-lite", 1366 - "rand 0.8.5", 1367 - ] 1368 - 1369 - [[package]] 1370 - name = "futures-macro" 1371 - version = "0.3.29" 1372 - source = "registry+https://github.com/rust-lang/crates.io-index" 1373 - checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1374 - dependencies = [ 1375 - "proc-macro2", 1376 - "quote", 1377 - "syn 2.0.38", 1378 - ] 1379 - 1380 - [[package]] 1381 - name = "futures-sink" 1382 - version = "0.3.29" 1383 - source = "registry+https://github.com/rust-lang/crates.io-index" 1384 - checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1385 - 1386 - [[package]] 1387 - name = "futures-task" 1388 - version = "0.3.29" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1391 - 1392 - [[package]] 1393 - name = "futures-util" 1394 - version = "0.3.29" 1395 - source = "registry+https://github.com/rust-lang/crates.io-index" 1396 - checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1397 - dependencies = [ 1398 - "futures-channel", 1399 - "futures-core", 1400 - "futures-io", 1401 - "futures-macro", 1402 - "futures-sink", 1403 - "futures-task", 1404 - "memchr", 1405 - "pin-project-lite", 1406 - "pin-utils", 1407 - "slab", 1408 - ] 1409 - 1410 - [[package]] 1411 - name = "fxhash" 1412 - version = "0.2.1" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1415 - dependencies = [ 1416 - "byteorder", 1417 - ] 1418 - 1419 - [[package]] 1420 - name = "gdk" 1421 - version = "0.15.4" 1422 - source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 1424 - dependencies = [ 1425 - "bitflags 1.3.2", 1426 - "cairo-rs", 1427 - "gdk-pixbuf", 1428 - "gdk-sys", 1429 - "gio", 1430 - "glib", 1431 - "libc", 1432 - "pango", 1433 - ] 1434 - 1435 - [[package]] 1436 - name = "gdk-pixbuf" 1437 - version = "0.15.11" 1438 - source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 1440 - dependencies = [ 1441 - "bitflags 1.3.2", 1442 - "gdk-pixbuf-sys", 1443 - "gio", 1444 - "glib", 1445 - "libc", 1446 - ] 1447 - 1448 - [[package]] 1449 - name = "gdk-pixbuf-sys" 1450 - version = "0.15.10" 1451 - source = "registry+https://github.com/rust-lang/crates.io-index" 1452 - checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 1453 - dependencies = [ 1454 - "gio-sys", 1455 - "glib-sys", 1456 - "gobject-sys", 1457 - "libc", 1458 - "system-deps 6.1.2", 1459 - ] 1460 - 1461 - [[package]] 1462 - name = "gdk-sys" 1463 - version = "0.15.1" 1464 - source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 1466 - dependencies = [ 1467 - "cairo-sys-rs", 1468 - "gdk-pixbuf-sys", 1469 - "gio-sys", 1470 - "glib-sys", 1471 - "gobject-sys", 1472 - "libc", 1473 - "pango-sys", 1474 - "pkg-config", 1475 - "system-deps 6.1.2", 1476 - ] 1477 - 1478 - [[package]] 1479 - name = "gdkwayland-sys" 1480 - version = "0.15.3" 1481 - source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2" 1483 - dependencies = [ 1484 - "gdk-sys", 1485 - "glib-sys", 1486 - "gobject-sys", 1487 - "libc", 1488 - "pkg-config", 1489 - "system-deps 6.1.2", 1490 - ] 1491 - 1492 - [[package]] 1493 - name = "gdkx11-sys" 1494 - version = "0.15.1" 1495 - source = "registry+https://github.com/rust-lang/crates.io-index" 1496 - checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 1497 - dependencies = [ 1498 - "gdk-sys", 1499 - "glib-sys", 1500 - "libc", 1501 - "system-deps 6.1.2", 1502 - "x11", 1503 - ] 1504 - 1505 - [[package]] 1506 - name = "generator" 1507 - version = "0.7.5" 1508 - source = "registry+https://github.com/rust-lang/crates.io-index" 1509 - checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e" 1510 - dependencies = [ 1511 - "cc", 1512 - "libc", 1513 - "log", 1514 - "rustversion", 1515 - "windows 0.48.0", 1516 - ] 1517 - 1518 - [[package]] 1519 - name = "generic-array" 1520 - version = "0.14.7" 1521 - source = "registry+https://github.com/rust-lang/crates.io-index" 1522 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1523 - dependencies = [ 1524 - "typenum", 1525 - "version_check", 1526 - ] 1527 - 1528 - [[package]] 1529 - name = "getrandom" 1530 - version = "0.1.16" 1531 - source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1533 - dependencies = [ 1534 - "cfg-if", 1535 - "libc", 1536 - "wasi 0.9.0+wasi-snapshot-preview1", 1537 - ] 1538 - 1539 - [[package]] 1540 - name = "getrandom" 1541 - version = "0.2.10" 1542 - source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1544 - dependencies = [ 1545 - "cfg-if", 1546 - "js-sys", 1547 - "libc", 1548 - "wasi 0.11.0+wasi-snapshot-preview1", 1549 - "wasm-bindgen", 1550 - ] 1551 - 1552 - [[package]] 1553 - name = "gimli" 1554 - version = "0.28.0" 1555 - source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1557 - 1558 - [[package]] 1559 - name = "gio" 1560 - version = "0.15.12" 1561 - source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 1563 - dependencies = [ 1564 - "bitflags 1.3.2", 1565 - "futures-channel", 1566 - "futures-core", 1567 - "futures-io", 1568 - "gio-sys", 1569 - "glib", 1570 - "libc", 1571 - "once_cell", 1572 - "thiserror", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "gio-sys" 1577 - version = "0.15.10" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 1580 - dependencies = [ 1581 - "glib-sys", 1582 - "gobject-sys", 1583 - "libc", 1584 - "system-deps 6.1.2", 1585 - "winapi", 1586 - ] 1587 - 1588 - [[package]] 1589 - name = "glib" 1590 - version = "0.15.12" 1591 - source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 1593 - dependencies = [ 1594 - "bitflags 1.3.2", 1595 - "futures-channel", 1596 - "futures-core", 1597 - "futures-executor", 1598 - "futures-task", 1599 - "glib-macros", 1600 - "glib-sys", 1601 - "gobject-sys", 1602 - "libc", 1603 - "once_cell", 1604 - "smallvec", 1605 - "thiserror", 1606 - ] 1607 - 1608 - [[package]] 1609 - name = "glib-macros" 1610 - version = "0.15.13" 1611 - source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a" 1613 - dependencies = [ 1614 - "anyhow", 1615 - "heck 0.4.1", 1616 - "proc-macro-crate", 1617 - "proc-macro-error", 1618 - "proc-macro2", 1619 - "quote", 1620 - "syn 1.0.109", 1621 - ] 1622 - 1623 - [[package]] 1624 - name = "glib-sys" 1625 - version = "0.15.10" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1628 - dependencies = [ 1629 - "libc", 1630 - "system-deps 6.1.2", 1631 - ] 1632 - 1633 - [[package]] 1634 - name = "glob" 1635 - version = "0.3.1" 1636 - source = "registry+https://github.com/rust-lang/crates.io-index" 1637 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1638 - 1639 - [[package]] 1640 - name = "globset" 1641 - version = "0.4.13" 1642 - source = "registry+https://github.com/rust-lang/crates.io-index" 1643 - checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 1644 - dependencies = [ 1645 - "aho-corasick", 1646 - "bstr", 1647 - "fnv", 1648 - "log", 1649 - "regex", 1650 - ] 1651 - 1652 - [[package]] 1653 - name = "gobject-sys" 1654 - version = "0.15.10" 1655 - source = "registry+https://github.com/rust-lang/crates.io-index" 1656 - checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1657 - dependencies = [ 1658 - "glib-sys", 1659 - "libc", 1660 - "system-deps 6.1.2", 1661 - ] 1662 - 1663 - [[package]] 1664 - name = "gtk" 1665 - version = "0.15.5" 1666 - source = "registry+https://github.com/rust-lang/crates.io-index" 1667 - checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1668 - dependencies = [ 1669 - "atk", 1670 - "bitflags 1.3.2", 1671 - "cairo-rs", 1672 - "field-offset", 1673 - "futures-channel", 1674 - "gdk", 1675 - "gdk-pixbuf", 1676 - "gio", 1677 - "glib", 1678 - "gtk-sys", 1679 - "gtk3-macros", 1680 - "libc", 1681 - "once_cell", 1682 - "pango", 1683 - "pkg-config", 1684 - ] 1685 - 1686 - [[package]] 1687 - name = "gtk-sys" 1688 - version = "0.15.3" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1691 - dependencies = [ 1692 - "atk-sys", 1693 - "cairo-sys-rs", 1694 - "gdk-pixbuf-sys", 1695 - "gdk-sys", 1696 - "gio-sys", 1697 - "glib-sys", 1698 - "gobject-sys", 1699 - "libc", 1700 - "pango-sys", 1701 - "system-deps 6.1.2", 1702 - ] 1703 - 1704 - [[package]] 1705 - name = "gtk3-macros" 1706 - version = "0.15.6" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d" 1709 - dependencies = [ 1710 - "anyhow", 1711 - "proc-macro-crate", 1712 - "proc-macro-error", 1713 - "proc-macro2", 1714 - "quote", 1715 - "syn 1.0.109", 1716 - ] 1717 - 1718 - [[package]] 1719 - name = "h2" 1720 - version = "0.3.21" 1721 - source = "registry+https://github.com/rust-lang/crates.io-index" 1722 - checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 1723 - dependencies = [ 1724 - "bytes", 1725 - "fnv", 1726 - "futures-core", 1727 - "futures-sink", 1728 - "futures-util", 1729 - "http", 1730 - "indexmap 1.9.3", 1731 - "slab", 1732 - "tokio", 1733 - "tokio-util", 1734 - "tracing", 1735 - ] 1736 - 1737 - [[package]] 1738 - name = "hashbrown" 1739 - version = "0.12.3" 1740 - source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1742 - 1743 - [[package]] 1744 - name = "hashbrown" 1745 - version = "0.14.1" 1746 - source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" 1748 - 1749 - [[package]] 1750 - name = "headless-talk" 1751 - version = "0.6.1" 1752 - dependencies = [ 1753 - "arrayvec", 1754 - "bson", 1755 - "diesel", 1756 - "diesel_migrations", 1757 - "extend", 1758 - "futures", 1759 - "futures-loco-protocol", 1760 - "libsqlite3-sys", 1761 - "log", 1762 - "nohash-hasher", 1763 - "once_cell", 1764 - "r2d2", 1765 - "serde", 1766 - "serde_json", 1767 - "talk-loco-client", 1768 - "thiserror", 1769 - "tokio", 1770 - ] 1771 - 1772 - [[package]] 1773 - name = "heck" 1774 - version = "0.3.3" 1775 - source = "registry+https://github.com/rust-lang/crates.io-index" 1776 - checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1777 - dependencies = [ 1778 - "unicode-segmentation", 1779 - ] 1780 - 1781 - [[package]] 1782 - name = "heck" 1783 - version = "0.4.1" 1784 - source = "registry+https://github.com/rust-lang/crates.io-index" 1785 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1786 - 1787 - [[package]] 1788 - name = "hermit-abi" 1789 - version = "0.3.3" 1790 - source = "registry+https://github.com/rust-lang/crates.io-index" 1791 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1792 - 1793 - [[package]] 1794 - name = "hex" 1795 - version = "0.4.3" 1796 - source = "registry+https://github.com/rust-lang/crates.io-index" 1797 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1798 - 1799 - [[package]] 1800 - name = "hostname" 1801 - version = "0.3.1" 1802 - source = "registry+https://github.com/rust-lang/crates.io-index" 1803 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 1804 - dependencies = [ 1805 - "libc", 1806 - "match_cfg", 1807 - "winapi", 1808 - ] 1809 - 1810 - [[package]] 1811 - name = "html5ever" 1812 - version = "0.25.2" 1813 - source = "registry+https://github.com/rust-lang/crates.io-index" 1814 - checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1815 - dependencies = [ 1816 - "log", 1817 - "mac", 1818 - "markup5ever 0.10.1", 1819 - "proc-macro2", 1820 - "quote", 1821 - "syn 1.0.109", 1822 - ] 1823 - 1824 - [[package]] 1825 - name = "html5ever" 1826 - version = "0.26.0" 1827 - source = "registry+https://github.com/rust-lang/crates.io-index" 1828 - checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1829 - dependencies = [ 1830 - "log", 1831 - "mac", 1832 - "markup5ever 0.11.0", 1833 - "proc-macro2", 1834 - "quote", 1835 - "syn 1.0.109", 1836 - ] 1837 - 1838 - [[package]] 1839 - name = "http" 1840 - version = "0.2.9" 1841 - source = "registry+https://github.com/rust-lang/crates.io-index" 1842 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1843 - dependencies = [ 1844 - "bytes", 1845 - "fnv", 1846 - "itoa 1.0.9", 1847 - ] 1848 - 1849 - [[package]] 1850 - name = "http-body" 1851 - version = "0.4.5" 1852 - source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1854 - dependencies = [ 1855 - "bytes", 1856 - "http", 1857 - "pin-project-lite", 1858 - ] 1859 - 1860 - [[package]] 1861 - name = "http-range" 1862 - version = "0.1.5" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1865 - 1866 - [[package]] 1867 - name = "httparse" 1868 - version = "1.8.0" 1869 - source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1871 - 1872 - [[package]] 1873 - name = "httpdate" 1874 - version = "1.0.3" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1877 - 1878 - [[package]] 1879 - name = "hyper" 1880 - version = "0.14.27" 1881 - source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1883 - dependencies = [ 1884 - "bytes", 1885 - "futures-channel", 1886 - "futures-core", 1887 - "futures-util", 1888 - "h2", 1889 - "http", 1890 - "http-body", 1891 - "httparse", 1892 - "httpdate", 1893 - "itoa 1.0.9", 1894 - "pin-project-lite", 1895 - "socket2 0.4.9", 1896 - "tokio", 1897 - "tower-service", 1898 - "tracing", 1899 - "want", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "hyper-tls" 1904 - version = "0.5.0" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1907 - dependencies = [ 1908 - "bytes", 1909 - "hyper", 1910 - "native-tls", 1911 - "tokio", 1912 - "tokio-native-tls", 1913 - ] 1914 - 1915 - [[package]] 1916 - name = "iana-time-zone" 1917 - version = "0.1.58" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1920 - dependencies = [ 1921 - "android_system_properties", 1922 - "core-foundation-sys", 1923 - "iana-time-zone-haiku", 1924 - "js-sys", 1925 - "wasm-bindgen", 1926 - "windows-core", 1927 - ] 1928 - 1929 - [[package]] 1930 - name = "iana-time-zone-haiku" 1931 - version = "0.1.2" 1932 - source = "registry+https://github.com/rust-lang/crates.io-index" 1933 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1934 - dependencies = [ 1935 - "cc", 1936 - ] 1937 - 1938 - [[package]] 1939 - name = "ico" 1940 - version = "0.3.0" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" 1943 - dependencies = [ 1944 - "byteorder", 1945 - "png", 1946 - ] 1947 - 1948 - [[package]] 1949 - name = "ident_case" 1950 - version = "1.0.1" 1951 - source = "registry+https://github.com/rust-lang/crates.io-index" 1952 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1953 - 1954 - [[package]] 1955 - name = "idna" 1956 - version = "0.4.0" 1957 - source = "registry+https://github.com/rust-lang/crates.io-index" 1958 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1959 - dependencies = [ 1960 - "unicode-bidi", 1961 - "unicode-normalization", 1962 - ] 1963 - 1964 - [[package]] 1965 - name = "ignore" 1966 - version = "0.4.20" 1967 - source = "registry+https://github.com/rust-lang/crates.io-index" 1968 - checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 1969 - dependencies = [ 1970 - "globset", 1971 - "lazy_static", 1972 - "log", 1973 - "memchr", 1974 - "regex", 1975 - "same-file", 1976 - "thread_local", 1977 - "walkdir", 1978 - "winapi-util", 1979 - ] 1980 - 1981 - [[package]] 1982 - name = "image" 1983 - version = "0.24.7" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1986 - dependencies = [ 1987 - "bytemuck", 1988 - "byteorder", 1989 - "color_quant", 1990 - "num-rational", 1991 - "num-traits", 1992 - ] 1993 - 1994 - [[package]] 1995 - name = "indexmap" 1996 - version = "1.9.3" 1997 - source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1999 - dependencies = [ 2000 - "autocfg", 2001 - "hashbrown 0.12.3", 2002 - "serde", 2003 - ] 2004 - 2005 - [[package]] 2006 - name = "indexmap" 2007 - version = "2.0.2" 2008 - source = "registry+https://github.com/rust-lang/crates.io-index" 2009 - checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2010 - dependencies = [ 2011 - "equivalent", 2012 - "hashbrown 0.14.1", 2013 - "serde", 2014 - ] 2015 - 2016 - [[package]] 2017 - name = "infer" 2018 - version = "0.12.0" 2019 - source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3" 2021 - dependencies = [ 2022 - "cfb", 2023 - ] 2024 - 2025 - [[package]] 2026 - name = "inout" 2027 - version = "0.1.3" 2028 - source = "registry+https://github.com/rust-lang/crates.io-index" 2029 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 2030 - dependencies = [ 2031 - "generic-array", 2032 - ] 2033 - 2034 - [[package]] 2035 - name = "instant" 2036 - version = "0.1.12" 2037 - source = "registry+https://github.com/rust-lang/crates.io-index" 2038 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2039 - dependencies = [ 2040 - "cfg-if", 2041 - ] 2042 - 2043 - [[package]] 2044 - name = "io-lifetimes" 2045 - version = "1.0.11" 2046 - source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2048 - dependencies = [ 2049 - "hermit-abi", 2050 - "libc", 2051 - "windows-sys 0.48.0", 2052 - ] 2053 - 2054 - [[package]] 2055 - name = "ipnet" 2056 - version = "2.8.0" 2057 - source = "registry+https://github.com/rust-lang/crates.io-index" 2058 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 2059 - 2060 - [[package]] 2061 - name = "itoa" 2062 - version = "0.4.8" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 2065 - 2066 - [[package]] 2067 - name = "itoa" 2068 - version = "1.0.9" 2069 - source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 2071 - 2072 - [[package]] 2073 - name = "javascriptcore-rs" 2074 - version = "0.16.0" 2075 - source = "registry+https://github.com/rust-lang/crates.io-index" 2076 - checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 2077 - dependencies = [ 2078 - "bitflags 1.3.2", 2079 - "glib", 2080 - "javascriptcore-rs-sys", 2081 - ] 2082 - 2083 - [[package]] 2084 - name = "javascriptcore-rs-sys" 2085 - version = "0.4.0" 2086 - source = "registry+https://github.com/rust-lang/crates.io-index" 2087 - checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 2088 - dependencies = [ 2089 - "glib-sys", 2090 - "gobject-sys", 2091 - "libc", 2092 - "system-deps 5.0.0", 2093 - ] 2094 - 2095 - [[package]] 2096 - name = "jni" 2097 - version = "0.20.0" 2098 - source = "registry+https://github.com/rust-lang/crates.io-index" 2099 - checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 2100 - dependencies = [ 2101 - "cesu8", 2102 - "combine", 2103 - "jni-sys", 2104 - "log", 2105 - "thiserror", 2106 - "walkdir", 2107 - ] 2108 - 2109 - [[package]] 2110 - name = "jni-sys" 2111 - version = "0.3.0" 2112 - source = "registry+https://github.com/rust-lang/crates.io-index" 2113 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2114 - 2115 - [[package]] 2116 - name = "js-sys" 2117 - version = "0.3.64" 2118 - source = "registry+https://github.com/rust-lang/crates.io-index" 2119 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 2120 - dependencies = [ 2121 - "wasm-bindgen", 2122 - ] 2123 - 2124 - [[package]] 2125 - name = "json-patch" 2126 - version = "1.2.0" 2127 - source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6" 2129 - dependencies = [ 2130 - "serde", 2131 - "serde_json", 2132 - "thiserror", 2133 - "treediff", 2134 - ] 2135 - 2136 - [[package]] 2137 - name = "kiwi-talk-api" 2138 - version = "0.5.1" 2139 - dependencies = [ 2140 - "anyhow", 2141 - "bincode", 2142 - "easy-ext", 2143 - "hex", 2144 - "kiwi-talk-result", 2145 - "kiwi-talk-system", 2146 - "parking_lot", 2147 - "reqwest", 2148 - "serde", 2149 - "serde-byte-array", 2150 - "sha2", 2151 - "talk-api-internal", 2152 - "tauri", 2153 - "tokio", 2154 - ] 2155 - 2156 - [[package]] 2157 - name = "kiwi-talk-app" 2158 - version = "0.5.1" 2159 - dependencies = [ 2160 - "anyhow", 2161 - "kiwi-talk-api", 2162 - "kiwi-talk-client", 2163 - "kiwi-talk-result", 2164 - "kiwi-talk-system", 2165 - "log", 2166 - "serde", 2167 - "serde_json", 2168 - "talk-loco-client", 2169 - "tauri", 2170 - "tauri-build", 2171 - "tauri-plugin-log", 2172 - "tauri-plugin-single-instance", 2173 - "tauri-plugin-window-state", 2174 - "tokio", 2175 - "window-shadows", 2176 - "window-vibrancy", 2177 - ] 2178 - 2179 - [[package]] 2180 - name = "kiwi-talk-client" 2181 - version = "0.5.1" 2182 - dependencies = [ 2183 - "anyhow", 2184 - "arrayvec", 2185 - "futures", 2186 - "headless-talk", 2187 - "hex", 2188 - "kiwi-talk-api", 2189 - "kiwi-talk-resource", 2190 - "kiwi-talk-result", 2191 - "kiwi-talk-system", 2192 - "log", 2193 - "num-bigint-dig", 2194 - "once_cell", 2195 - "parking_lot", 2196 - "serde", 2197 - "sha2", 2198 - "talk-loco-client", 2199 - "tauri", 2200 - "tokio", 2201 - "tokio-util", 2202 - ] 2203 - 2204 - [[package]] 2205 - name = "kiwi-talk-resource" 2206 - version = "0.5.1" 2207 - dependencies = [ 2208 - "anyhow", 2209 - "dashmap", 2210 - "serde", 2211 - ] 2212 - 2213 - [[package]] 2214 - name = "kiwi-talk-result" 2215 - version = "0.5.1" 2216 - dependencies = [ 2217 - "anyhow", 2218 - "serde", 2219 - ] 2220 - 2221 - [[package]] 2222 - name = "kiwi-talk-system" 2223 - version = "0.5.1" 2224 - dependencies = [ 2225 - "anyhow", 2226 - "base64 0.21.5", 2227 - "hostname", 2228 - "log", 2229 - "rand 0.8.5", 2230 - "sys-locale 0.3.1", 2231 - "tauri", 2232 - "tokio", 2233 - ] 2234 - 2235 - [[package]] 2236 - name = "kuchiki" 2237 - version = "0.8.1" 2238 - source = "registry+https://github.com/rust-lang/crates.io-index" 2239 - checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 2240 - dependencies = [ 2241 - "cssparser", 2242 - "html5ever 0.25.2", 2243 - "matches", 2244 - "selectors", 2245 - ] 2246 - 2247 - [[package]] 2248 - name = "kuchikiki" 2249 - version = "0.8.2" 2250 - source = "registry+https://github.com/rust-lang/crates.io-index" 2251 - checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 2252 - dependencies = [ 2253 - "cssparser", 2254 - "html5ever 0.26.0", 2255 - "indexmap 1.9.3", 2256 - "matches", 2257 - "selectors", 2258 - ] 2259 - 2260 - [[package]] 2261 - name = "lazy_static" 2262 - version = "1.4.0" 2263 - source = "registry+https://github.com/rust-lang/crates.io-index" 2264 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2265 - dependencies = [ 2266 - "spin 0.5.2", 2267 - ] 2268 - 2269 - [[package]] 2270 - name = "libappindicator" 2271 - version = "0.7.1" 2272 - source = "registry+https://github.com/rust-lang/crates.io-index" 2273 - checksum = "db2d3cb96d092b4824cb306c9e544c856a4cb6210c1081945187f7f1924b47e8" 2274 - dependencies = [ 2275 - "glib", 2276 - "gtk", 2277 - "gtk-sys", 2278 - "libappindicator-sys", 2279 - "log", 2280 - ] 2281 - 2282 - [[package]] 2283 - name = "libappindicator-sys" 2284 - version = "0.7.3" 2285 - source = "registry+https://github.com/rust-lang/crates.io-index" 2286 - checksum = "f1b3b6681973cea8cc3bce7391e6d7d5502720b80a581c9a95c9cbaf592826aa" 2287 - dependencies = [ 2288 - "gtk-sys", 2289 - "libloading", 2290 - "once_cell", 2291 - ] 2292 - 2293 - [[package]] 2294 - name = "libc" 2295 - version = "0.2.149" 2296 - source = "registry+https://github.com/rust-lang/crates.io-index" 2297 - checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2298 - 2299 - [[package]] 2300 - name = "libloading" 2301 - version = "0.7.4" 2302 - source = "registry+https://github.com/rust-lang/crates.io-index" 2303 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2304 - dependencies = [ 2305 - "cfg-if", 2306 - "winapi", 2307 - ] 2308 - 2309 - [[package]] 2310 - name = "libm" 2311 - version = "0.2.8" 2312 - source = "registry+https://github.com/rust-lang/crates.io-index" 2313 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2314 - 2315 - [[package]] 2316 - name = "libsqlite3-sys" 2317 - version = "0.26.0" 2318 - source = "registry+https://github.com/rust-lang/crates.io-index" 2319 - checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" 2320 - dependencies = [ 2321 - "cc", 2322 - "pkg-config", 2323 - "vcpkg", 2324 - ] 2325 - 2326 - [[package]] 2327 - name = "line-wrap" 2328 - version = "0.1.1" 2329 - source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 2331 - dependencies = [ 2332 - "safemem", 2333 - ] 2334 - 2335 - [[package]] 2336 - name = "linux-raw-sys" 2337 - version = "0.3.8" 2338 - source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2340 - 2341 - [[package]] 2342 - name = "linux-raw-sys" 2343 - version = "0.4.10" 2344 - source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 2346 - 2347 - [[package]] 2348 - name = "lock_api" 2349 - version = "0.4.11" 2350 - source = "registry+https://github.com/rust-lang/crates.io-index" 2351 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2352 - dependencies = [ 2353 - "autocfg", 2354 - "scopeguard", 2355 - ] 2356 - 2357 - [[package]] 2358 - name = "loco-protocol" 2359 - version = "6.5.0" 2360 - source = "registry+https://github.com/rust-lang/crates.io-index" 2361 - checksum = "c023996a61dd3fcefe0c1f4d96c91795cc825b95d7fa41728a5b3dcafb8fa729" 2362 - dependencies = [ 2363 - "aes", 2364 - "arrayvec", 2365 - "bincode", 2366 - "byte-order", 2367 - "cfb-mode", 2368 - "getrandom 0.2.10", 2369 - "rand 0.8.5", 2370 - "rsa", 2371 - "serde", 2372 - "sha1", 2373 - ] 2374 - 2375 - [[package]] 2376 - name = "log" 2377 - version = "0.4.20" 2378 - source = "registry+https://github.com/rust-lang/crates.io-index" 2379 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 2380 - dependencies = [ 2381 - "value-bag", 2382 - ] 2383 - 2384 - [[package]] 2385 - name = "loom" 2386 - version = "0.5.6" 2387 - source = "registry+https://github.com/rust-lang/crates.io-index" 2388 - checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 2389 - dependencies = [ 2390 - "cfg-if", 2391 - "generator", 2392 - "pin-utils", 2393 - "scoped-tls", 2394 - "serde", 2395 - "serde_json", 2396 - "tracing", 2397 - "tracing-subscriber", 2398 - ] 2399 - 2400 - [[package]] 2401 - name = "mac" 2402 - version = "0.1.1" 2403 - source = "registry+https://github.com/rust-lang/crates.io-index" 2404 - checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2405 - 2406 - [[package]] 2407 - name = "mac-notification-sys" 2408 - version = "0.6.1" 2409 - source = "registry+https://github.com/rust-lang/crates.io-index" 2410 - checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64" 2411 - dependencies = [ 2412 - "cc", 2413 - "dirs-next", 2414 - "objc-foundation", 2415 - "objc_id", 2416 - "time", 2417 - ] 2418 - 2419 - [[package]] 2420 - name = "malloc_buf" 2421 - version = "0.0.6" 2422 - source = "registry+https://github.com/rust-lang/crates.io-index" 2423 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 2424 - dependencies = [ 2425 - "libc", 2426 - ] 2427 - 2428 - [[package]] 2429 - name = "markup5ever" 2430 - version = "0.10.1" 2431 - source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 2433 - dependencies = [ 2434 - "log", 2435 - "phf 0.8.0", 2436 - "phf_codegen 0.8.0", 2437 - "string_cache", 2438 - "string_cache_codegen", 2439 - "tendril", 2440 - ] 2441 - 2442 - [[package]] 2443 - name = "markup5ever" 2444 - version = "0.11.0" 2445 - source = "registry+https://github.com/rust-lang/crates.io-index" 2446 - checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2447 - dependencies = [ 2448 - "log", 2449 - "phf 0.10.1", 2450 - "phf_codegen 0.10.0", 2451 - "string_cache", 2452 - "string_cache_codegen", 2453 - "tendril", 2454 - ] 2455 - 2456 - [[package]] 2457 - name = "match_cfg" 2458 - version = "0.1.0" 2459 - source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2461 - 2462 - [[package]] 2463 - name = "matchers" 2464 - version = "0.1.0" 2465 - source = "registry+https://github.com/rust-lang/crates.io-index" 2466 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2467 - dependencies = [ 2468 - "regex-automata 0.1.10", 2469 - ] 2470 - 2471 - [[package]] 2472 - name = "matches" 2473 - version = "0.1.10" 2474 - source = "registry+https://github.com/rust-lang/crates.io-index" 2475 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2476 - 2477 - [[package]] 2478 - name = "memchr" 2479 - version = "2.6.4" 2480 - source = "registry+https://github.com/rust-lang/crates.io-index" 2481 - checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2482 - 2483 - [[package]] 2484 - name = "memoffset" 2485 - version = "0.7.1" 2486 - source = "registry+https://github.com/rust-lang/crates.io-index" 2487 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2488 - dependencies = [ 2489 - "autocfg", 2490 - ] 2491 - 2492 - [[package]] 2493 - name = "memoffset" 2494 - version = "0.9.0" 2495 - source = "registry+https://github.com/rust-lang/crates.io-index" 2496 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 2497 - dependencies = [ 2498 - "autocfg", 2499 - ] 2500 - 2501 - [[package]] 2502 - name = "migrations_internals" 2503 - version = "2.1.0" 2504 - source = "registry+https://github.com/rust-lang/crates.io-index" 2505 - checksum = "0f23f71580015254b020e856feac3df5878c2c7a8812297edd6c0a485ac9dada" 2506 - dependencies = [ 2507 - "serde", 2508 - "toml 0.7.8", 2509 - ] 2510 - 2511 - [[package]] 2512 - name = "migrations_macros" 2513 - version = "2.1.0" 2514 - source = "registry+https://github.com/rust-lang/crates.io-index" 2515 - checksum = "cce3325ac70e67bbab5bd837a31cae01f1a6db64e0e744a33cb03a543469ef08" 2516 - dependencies = [ 2517 - "migrations_internals", 2518 - "proc-macro2", 2519 - "quote", 2520 - ] 2521 - 2522 - [[package]] 2523 - name = "mime" 2524 - version = "0.3.17" 2525 - source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2527 - 2528 - [[package]] 2529 - name = "minisign-verify" 2530 - version = "0.2.1" 2531 - source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "933dca44d65cdd53b355d0b73d380a2ff5da71f87f036053188bf1eab6a19881" 2533 - 2534 - [[package]] 2535 - name = "miniz_oxide" 2536 - version = "0.7.1" 2537 - source = "registry+https://github.com/rust-lang/crates.io-index" 2538 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2539 - dependencies = [ 2540 - "adler", 2541 - "simd-adler32", 2542 - ] 2543 - 2544 - [[package]] 2545 - name = "mio" 2546 - version = "0.8.8" 2547 - source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2549 - dependencies = [ 2550 - "libc", 2551 - "wasi 0.11.0+wasi-snapshot-preview1", 2552 - "windows-sys 0.48.0", 2553 - ] 2554 - 2555 - [[package]] 2556 - name = "nanorand" 2557 - version = "0.7.0" 2558 - source = "registry+https://github.com/rust-lang/crates.io-index" 2559 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2560 - dependencies = [ 2561 - "getrandom 0.2.10", 2562 - ] 2563 - 2564 - [[package]] 2565 - name = "native-tls" 2566 - version = "0.2.11" 2567 - source = "registry+https://github.com/rust-lang/crates.io-index" 2568 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2569 - dependencies = [ 2570 - "lazy_static", 2571 - "libc", 2572 - "log", 2573 - "openssl", 2574 - "openssl-probe", 2575 - "openssl-sys", 2576 - "schannel", 2577 - "security-framework", 2578 - "security-framework-sys", 2579 - "tempfile", 2580 - ] 2581 - 2582 - [[package]] 2583 - name = "ndk" 2584 - version = "0.6.0" 2585 - source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 2587 - dependencies = [ 2588 - "bitflags 1.3.2", 2589 - "jni-sys", 2590 - "ndk-sys", 2591 - "num_enum", 2592 - "thiserror", 2593 - ] 2594 - 2595 - [[package]] 2596 - name = "ndk-context" 2597 - version = "0.1.1" 2598 - source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2600 - 2601 - [[package]] 2602 - name = "ndk-sys" 2603 - version = "0.3.0" 2604 - source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 2606 - dependencies = [ 2607 - "jni-sys", 2608 - ] 2609 - 2610 - [[package]] 2611 - name = "new_debug_unreachable" 2612 - version = "1.0.4" 2613 - source = "registry+https://github.com/rust-lang/crates.io-index" 2614 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2615 - 2616 - [[package]] 2617 - name = "nix" 2618 - version = "0.26.4" 2619 - source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 2621 - dependencies = [ 2622 - "bitflags 1.3.2", 2623 - "cfg-if", 2624 - "libc", 2625 - "memoffset 0.7.1", 2626 - ] 2627 - 2628 - [[package]] 2629 - name = "nodrop" 2630 - version = "0.1.14" 2631 - source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2633 - 2634 - [[package]] 2635 - name = "nohash-hasher" 2636 - version = "0.2.0" 2637 - source = "registry+https://github.com/rust-lang/crates.io-index" 2638 - checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" 2639 - 2640 - [[package]] 2641 - name = "notify-rust" 2642 - version = "4.9.0" 2643 - source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "6d7b75c8958cb2eab3451538b32db8a7b74006abc33eb2e6a9a56d21e4775c2b" 2645 - dependencies = [ 2646 - "log", 2647 - "mac-notification-sys", 2648 - "serde", 2649 - "tauri-winrt-notification", 2650 - "zbus", 2651 - ] 2652 - 2653 - [[package]] 2654 - name = "nu-ansi-term" 2655 - version = "0.46.0" 2656 - source = "registry+https://github.com/rust-lang/crates.io-index" 2657 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2658 - dependencies = [ 2659 - "overload", 2660 - "winapi", 2661 - ] 2662 - 2663 - [[package]] 2664 - name = "num-bigint-dig" 2665 - version = "0.8.4" 2666 - source = "registry+https://github.com/rust-lang/crates.io-index" 2667 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 2668 - dependencies = [ 2669 - "byteorder", 2670 - "lazy_static", 2671 - "libm", 2672 - "num-integer", 2673 - "num-iter", 2674 - "num-traits", 2675 - "rand 0.8.5", 2676 - "serde", 2677 - "smallvec", 2678 - "zeroize", 2679 - ] 2680 - 2681 - [[package]] 2682 - name = "num-conv" 2683 - version = "0.1.0" 2684 - source = "registry+https://github.com/rust-lang/crates.io-index" 2685 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2686 - 2687 - [[package]] 2688 - name = "num-integer" 2689 - version = "0.1.45" 2690 - source = "registry+https://github.com/rust-lang/crates.io-index" 2691 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2692 - dependencies = [ 2693 - "autocfg", 2694 - "num-traits", 2695 - ] 2696 - 2697 - [[package]] 2698 - name = "num-iter" 2699 - version = "0.1.43" 2700 - source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 2702 - dependencies = [ 2703 - "autocfg", 2704 - "num-integer", 2705 - "num-traits", 2706 - ] 2707 - 2708 - [[package]] 2709 - name = "num-rational" 2710 - version = "0.4.1" 2711 - source = "registry+https://github.com/rust-lang/crates.io-index" 2712 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2713 - dependencies = [ 2714 - "autocfg", 2715 - "num-integer", 2716 - "num-traits", 2717 - ] 2718 - 2719 - [[package]] 2720 - name = "num-traits" 2721 - version = "0.2.17" 2722 - source = "registry+https://github.com/rust-lang/crates.io-index" 2723 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 2724 - dependencies = [ 2725 - "autocfg", 2726 - "libm", 2727 - ] 2728 - 2729 - [[package]] 2730 - name = "num_cpus" 2731 - version = "1.16.0" 2732 - source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2734 - dependencies = [ 2735 - "hermit-abi", 2736 - "libc", 2737 - ] 2738 - 2739 - [[package]] 2740 - name = "num_enum" 2741 - version = "0.5.11" 2742 - source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2744 - dependencies = [ 2745 - "num_enum_derive", 2746 - ] 2747 - 2748 - [[package]] 2749 - name = "num_enum_derive" 2750 - version = "0.5.11" 2751 - source = "registry+https://github.com/rust-lang/crates.io-index" 2752 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2753 - dependencies = [ 2754 - "proc-macro-crate", 2755 - "proc-macro2", 2756 - "quote", 2757 - "syn 1.0.109", 2758 - ] 2759 - 2760 - [[package]] 2761 - name = "num_threads" 2762 - version = "0.1.6" 2763 - source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2765 - dependencies = [ 2766 - "libc", 2767 - ] 2768 - 2769 - [[package]] 2770 - name = "objc" 2771 - version = "0.2.7" 2772 - source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2774 - dependencies = [ 2775 - "malloc_buf", 2776 - "objc_exception", 2777 - ] 2778 - 2779 - [[package]] 2780 - name = "objc-foundation" 2781 - version = "0.1.1" 2782 - source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 2784 - dependencies = [ 2785 - "block", 2786 - "objc", 2787 - "objc_id", 2788 - ] 2789 - 2790 - [[package]] 2791 - name = "objc_exception" 2792 - version = "0.1.2" 2793 - source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 2795 - dependencies = [ 2796 - "cc", 2797 - ] 2798 - 2799 - [[package]] 2800 - name = "objc_id" 2801 - version = "0.1.1" 2802 - source = "registry+https://github.com/rust-lang/crates.io-index" 2803 - checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 2804 - dependencies = [ 2805 - "objc", 2806 - ] 2807 - 2808 - [[package]] 2809 - name = "object" 2810 - version = "0.32.1" 2811 - source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 2813 - dependencies = [ 2814 - "memchr", 2815 - ] 2816 - 2817 - [[package]] 2818 - name = "once_cell" 2819 - version = "1.18.0" 2820 - source = "registry+https://github.com/rust-lang/crates.io-index" 2821 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2822 - 2823 - [[package]] 2824 - name = "oneshot" 2825 - version = "0.1.6" 2826 - source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "6f6640c6bda7731b1fdbab747981a0f896dd1fedaf9f4a53fa237a04a84431f4" 2828 - dependencies = [ 2829 - "loom", 2830 - ] 2831 - 2832 - [[package]] 2833 - name = "open" 2834 - version = "3.2.0" 2835 - source = "registry+https://github.com/rust-lang/crates.io-index" 2836 - checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 2837 - dependencies = [ 2838 - "pathdiff", 2839 - "windows-sys 0.42.0", 2840 - ] 2841 - 2842 - [[package]] 2843 - name = "openssl" 2844 - version = "0.10.57" 2845 - source = "registry+https://github.com/rust-lang/crates.io-index" 2846 - checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 2847 - dependencies = [ 2848 - "bitflags 2.4.1", 2849 - "cfg-if", 2850 - "foreign-types 0.3.2", 2851 - "libc", 2852 - "once_cell", 2853 - "openssl-macros", 2854 - "openssl-sys", 2855 - ] 2856 - 2857 - [[package]] 2858 - name = "openssl-macros" 2859 - version = "0.1.1" 2860 - source = "registry+https://github.com/rust-lang/crates.io-index" 2861 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2862 - dependencies = [ 2863 - "proc-macro2", 2864 - "quote", 2865 - "syn 2.0.38", 2866 - ] 2867 - 2868 - [[package]] 2869 - name = "openssl-probe" 2870 - version = "0.1.5" 2871 - source = "registry+https://github.com/rust-lang/crates.io-index" 2872 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2873 - 2874 - [[package]] 2875 - name = "openssl-sys" 2876 - version = "0.9.93" 2877 - source = "registry+https://github.com/rust-lang/crates.io-index" 2878 - checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 2879 - dependencies = [ 2880 - "cc", 2881 - "libc", 2882 - "pkg-config", 2883 - "vcpkg", 2884 - ] 2885 - 2886 - [[package]] 2887 - name = "ordered-stream" 2888 - version = "0.2.0" 2889 - source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2891 - dependencies = [ 2892 - "futures-core", 2893 - "pin-project-lite", 2894 - ] 2895 - 2896 - [[package]] 2897 - name = "os_info" 2898 - version = "3.7.0" 2899 - source = "registry+https://github.com/rust-lang/crates.io-index" 2900 - checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 2901 - dependencies = [ 2902 - "log", 2903 - "serde", 2904 - "winapi", 2905 - ] 2906 - 2907 - [[package]] 2908 - name = "os_pipe" 2909 - version = "1.1.4" 2910 - source = "registry+https://github.com/rust-lang/crates.io-index" 2911 - checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 2912 - dependencies = [ 2913 - "libc", 2914 - "windows-sys 0.48.0", 2915 - ] 2916 - 2917 - [[package]] 2918 - name = "overload" 2919 - version = "0.1.1" 2920 - source = "registry+https://github.com/rust-lang/crates.io-index" 2921 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2922 - 2923 - [[package]] 2924 - name = "pango" 2925 - version = "0.15.10" 2926 - source = "registry+https://github.com/rust-lang/crates.io-index" 2927 - checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 2928 - dependencies = [ 2929 - "bitflags 1.3.2", 2930 - "glib", 2931 - "libc", 2932 - "once_cell", 2933 - "pango-sys", 2934 - ] 2935 - 2936 - [[package]] 2937 - name = "pango-sys" 2938 - version = "0.15.10" 2939 - source = "registry+https://github.com/rust-lang/crates.io-index" 2940 - checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 2941 - dependencies = [ 2942 - "glib-sys", 2943 - "gobject-sys", 2944 - "libc", 2945 - "system-deps 6.1.2", 2946 - ] 2947 - 2948 - [[package]] 2949 - name = "parking" 2950 - version = "2.2.0" 2951 - source = "registry+https://github.com/rust-lang/crates.io-index" 2952 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2953 - 2954 - [[package]] 2955 - name = "parking_lot" 2956 - version = "0.12.1" 2957 - source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2959 - dependencies = [ 2960 - "lock_api", 2961 - "parking_lot_core", 2962 - ] 2963 - 2964 - [[package]] 2965 - name = "parking_lot_core" 2966 - version = "0.9.9" 2967 - source = "registry+https://github.com/rust-lang/crates.io-index" 2968 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2969 - dependencies = [ 2970 - "cfg-if", 2971 - "libc", 2972 - "redox_syscall 0.4.1", 2973 - "smallvec", 2974 - "windows-targets 0.48.5", 2975 - ] 2976 - 2977 - [[package]] 2978 - name = "pathdiff" 2979 - version = "0.2.1" 2980 - source = "registry+https://github.com/rust-lang/crates.io-index" 2981 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2982 - 2983 - [[package]] 2984 - name = "pem-rfc7468" 2985 - version = "0.7.0" 2986 - source = "registry+https://github.com/rust-lang/crates.io-index" 2987 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 2988 - dependencies = [ 2989 - "base64ct", 2990 - ] 2991 - 2992 - [[package]] 2993 - name = "percent-encoding" 2994 - version = "2.3.0" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2997 - 2998 - [[package]] 2999 - name = "phf" 3000 - version = "0.8.0" 3001 - source = "registry+https://github.com/rust-lang/crates.io-index" 3002 - checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 3003 - dependencies = [ 3004 - "phf_macros 0.8.0", 3005 - "phf_shared 0.8.0", 3006 - "proc-macro-hack", 3007 - ] 3008 - 3009 - [[package]] 3010 - name = "phf" 3011 - version = "0.10.1" 3012 - source = "registry+https://github.com/rust-lang/crates.io-index" 3013 - checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 3014 - dependencies = [ 3015 - "phf_macros 0.10.0", 3016 - "phf_shared 0.10.0", 3017 - "proc-macro-hack", 3018 - ] 3019 - 3020 - [[package]] 3021 - name = "phf_codegen" 3022 - version = "0.8.0" 3023 - source = "registry+https://github.com/rust-lang/crates.io-index" 3024 - checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 3025 - dependencies = [ 3026 - "phf_generator 0.8.0", 3027 - "phf_shared 0.8.0", 3028 - ] 3029 - 3030 - [[package]] 3031 - name = "phf_codegen" 3032 - version = "0.10.0" 3033 - source = "registry+https://github.com/rust-lang/crates.io-index" 3034 - checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 3035 - dependencies = [ 3036 - "phf_generator 0.10.0", 3037 - "phf_shared 0.10.0", 3038 - ] 3039 - 3040 - [[package]] 3041 - name = "phf_generator" 3042 - version = "0.8.0" 3043 - source = "registry+https://github.com/rust-lang/crates.io-index" 3044 - checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 3045 - dependencies = [ 3046 - "phf_shared 0.8.0", 3047 - "rand 0.7.3", 3048 - ] 3049 - 3050 - [[package]] 3051 - name = "phf_generator" 3052 - version = "0.10.0" 3053 - source = "registry+https://github.com/rust-lang/crates.io-index" 3054 - checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3055 - dependencies = [ 3056 - "phf_shared 0.10.0", 3057 - "rand 0.8.5", 3058 - ] 3059 - 3060 - [[package]] 3061 - name = "phf_macros" 3062 - version = "0.8.0" 3063 - source = "registry+https://github.com/rust-lang/crates.io-index" 3064 - checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 3065 - dependencies = [ 3066 - "phf_generator 0.8.0", 3067 - "phf_shared 0.8.0", 3068 - "proc-macro-hack", 3069 - "proc-macro2", 3070 - "quote", 3071 - "syn 1.0.109", 3072 - ] 3073 - 3074 - [[package]] 3075 - name = "phf_macros" 3076 - version = "0.10.0" 3077 - source = "registry+https://github.com/rust-lang/crates.io-index" 3078 - checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 3079 - dependencies = [ 3080 - "phf_generator 0.10.0", 3081 - "phf_shared 0.10.0", 3082 - "proc-macro-hack", 3083 - "proc-macro2", 3084 - "quote", 3085 - "syn 1.0.109", 3086 - ] 3087 - 3088 - [[package]] 3089 - name = "phf_shared" 3090 - version = "0.8.0" 3091 - source = "registry+https://github.com/rust-lang/crates.io-index" 3092 - checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 3093 - dependencies = [ 3094 - "siphasher", 3095 - ] 3096 - 3097 - [[package]] 3098 - name = "phf_shared" 3099 - version = "0.10.0" 3100 - source = "registry+https://github.com/rust-lang/crates.io-index" 3101 - checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3102 - dependencies = [ 3103 - "siphasher", 3104 - ] 3105 - 3106 - [[package]] 3107 - name = "pin-project-lite" 3108 - version = "0.2.13" 3109 - source = "registry+https://github.com/rust-lang/crates.io-index" 3110 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3111 - 3112 - [[package]] 3113 - name = "pin-utils" 3114 - version = "0.1.0" 3115 - source = "registry+https://github.com/rust-lang/crates.io-index" 3116 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3117 - 3118 - [[package]] 3119 - name = "piper" 3120 - version = "0.2.1" 3121 - source = "registry+https://github.com/rust-lang/crates.io-index" 3122 - checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 3123 - dependencies = [ 3124 - "atomic-waker", 3125 - "fastrand 2.0.1", 3126 - "futures-io", 3127 - ] 3128 - 3129 - [[package]] 3130 - name = "pkcs1" 3131 - version = "0.7.5" 3132 - source = "registry+https://github.com/rust-lang/crates.io-index" 3133 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3134 - dependencies = [ 3135 - "der", 3136 - "pkcs8", 3137 - "spki", 3138 - ] 3139 - 3140 - [[package]] 3141 - name = "pkcs8" 3142 - version = "0.10.2" 3143 - source = "registry+https://github.com/rust-lang/crates.io-index" 3144 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3145 - dependencies = [ 3146 - "der", 3147 - "spki", 3148 - ] 3149 - 3150 - [[package]] 3151 - name = "pkg-config" 3152 - version = "0.3.27" 3153 - source = "registry+https://github.com/rust-lang/crates.io-index" 3154 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3155 - 3156 - [[package]] 3157 - name = "plist" 3158 - version = "1.5.0" 3159 - source = "registry+https://github.com/rust-lang/crates.io-index" 3160 - checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 3161 - dependencies = [ 3162 - "base64 0.21.5", 3163 - "indexmap 1.9.3", 3164 - "line-wrap", 3165 - "quick-xml 0.29.0", 3166 - "serde", 3167 - "time", 3168 - ] 3169 - 3170 - [[package]] 3171 - name = "png" 3172 - version = "0.17.10" 3173 - source = "registry+https://github.com/rust-lang/crates.io-index" 3174 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3175 - dependencies = [ 3176 - "bitflags 1.3.2", 3177 - "crc32fast", 3178 - "fdeflate", 3179 - "flate2", 3180 - "miniz_oxide", 3181 - ] 3182 - 3183 - [[package]] 3184 - name = "polling" 3185 - version = "2.8.0" 3186 - source = "registry+https://github.com/rust-lang/crates.io-index" 3187 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 3188 - dependencies = [ 3189 - "autocfg", 3190 - "bitflags 1.3.2", 3191 - "cfg-if", 3192 - "concurrent-queue", 3193 - "libc", 3194 - "log", 3195 - "pin-project-lite", 3196 - "windows-sys 0.48.0", 3197 - ] 3198 - 3199 - [[package]] 3200 - name = "powerfmt" 3201 - version = "0.2.0" 3202 - source = "registry+https://github.com/rust-lang/crates.io-index" 3203 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3204 - 3205 - [[package]] 3206 - name = "ppv-lite86" 3207 - version = "0.2.17" 3208 - source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3210 - 3211 - [[package]] 3212 - name = "precomputed-hash" 3213 - version = "0.1.1" 3214 - source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3216 - 3217 - [[package]] 3218 - name = "proc-macro-crate" 3219 - version = "1.3.1" 3220 - source = "registry+https://github.com/rust-lang/crates.io-index" 3221 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3222 - dependencies = [ 3223 - "once_cell", 3224 - "toml_edit 0.19.15", 3225 - ] 3226 - 3227 - [[package]] 3228 - name = "proc-macro-error" 3229 - version = "1.0.4" 3230 - source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3232 - dependencies = [ 3233 - "proc-macro-error-attr", 3234 - "proc-macro2", 3235 - "quote", 3236 - "syn 1.0.109", 3237 - "version_check", 3238 - ] 3239 - 3240 - [[package]] 3241 - name = "proc-macro-error-attr" 3242 - version = "1.0.4" 3243 - source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3245 - dependencies = [ 3246 - "proc-macro2", 3247 - "quote", 3248 - "version_check", 3249 - ] 3250 - 3251 - [[package]] 3252 - name = "proc-macro-hack" 3253 - version = "0.5.20+deprecated" 3254 - source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3256 - 3257 - [[package]] 3258 - name = "proc-macro2" 3259 - version = "1.0.69" 3260 - source = "registry+https://github.com/rust-lang/crates.io-index" 3261 - checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3262 - dependencies = [ 3263 - "unicode-ident", 3264 - ] 3265 - 3266 - [[package]] 3267 - name = "quick-xml" 3268 - version = "0.29.0" 3269 - source = "registry+https://github.com/rust-lang/crates.io-index" 3270 - checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51" 3271 - dependencies = [ 3272 - "memchr", 3273 - ] 3274 - 3275 - [[package]] 3276 - name = "quick-xml" 3277 - version = "0.30.0" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 3280 - dependencies = [ 3281 - "memchr", 3282 - ] 3283 - 3284 - [[package]] 3285 - name = "quote" 3286 - version = "1.0.33" 3287 - source = "registry+https://github.com/rust-lang/crates.io-index" 3288 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 3289 - dependencies = [ 3290 - "proc-macro2", 3291 - ] 3292 - 3293 - [[package]] 3294 - name = "r2d2" 3295 - version = "0.8.10" 3296 - source = "registry+https://github.com/rust-lang/crates.io-index" 3297 - checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93" 3298 - dependencies = [ 3299 - "log", 3300 - "parking_lot", 3301 - "scheduled-thread-pool", 3302 - ] 3303 - 3304 - [[package]] 3305 - name = "radium" 3306 - version = "0.7.0" 3307 - source = "registry+https://github.com/rust-lang/crates.io-index" 3308 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 3309 - 3310 - [[package]] 3311 - name = "rand" 3312 - version = "0.7.3" 3313 - source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3315 - dependencies = [ 3316 - "getrandom 0.1.16", 3317 - "libc", 3318 - "rand_chacha 0.2.2", 3319 - "rand_core 0.5.1", 3320 - "rand_hc", 3321 - "rand_pcg", 3322 - ] 3323 - 3324 - [[package]] 3325 - name = "rand" 3326 - version = "0.8.5" 3327 - source = "registry+https://github.com/rust-lang/crates.io-index" 3328 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3329 - dependencies = [ 3330 - "libc", 3331 - "rand_chacha 0.3.1", 3332 - "rand_core 0.6.4", 3333 - ] 3334 - 3335 - [[package]] 3336 - name = "rand_chacha" 3337 - version = "0.2.2" 3338 - source = "registry+https://github.com/rust-lang/crates.io-index" 3339 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3340 - dependencies = [ 3341 - "ppv-lite86", 3342 - "rand_core 0.5.1", 3343 - ] 3344 - 3345 - [[package]] 3346 - name = "rand_chacha" 3347 - version = "0.3.1" 3348 - source = "registry+https://github.com/rust-lang/crates.io-index" 3349 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3350 - dependencies = [ 3351 - "ppv-lite86", 3352 - "rand_core 0.6.4", 3353 - ] 3354 - 3355 - [[package]] 3356 - name = "rand_core" 3357 - version = "0.5.1" 3358 - source = "registry+https://github.com/rust-lang/crates.io-index" 3359 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3360 - dependencies = [ 3361 - "getrandom 0.1.16", 3362 - ] 3363 - 3364 - [[package]] 3365 - name = "rand_core" 3366 - version = "0.6.4" 3367 - source = "registry+https://github.com/rust-lang/crates.io-index" 3368 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3369 - dependencies = [ 3370 - "getrandom 0.2.10", 3371 - ] 3372 - 3373 - [[package]] 3374 - name = "rand_hc" 3375 - version = "0.2.0" 3376 - source = "registry+https://github.com/rust-lang/crates.io-index" 3377 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3378 - dependencies = [ 3379 - "rand_core 0.5.1", 3380 - ] 3381 - 3382 - [[package]] 3383 - name = "rand_pcg" 3384 - version = "0.2.1" 3385 - source = "registry+https://github.com/rust-lang/crates.io-index" 3386 - checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3387 - dependencies = [ 3388 - "rand_core 0.5.1", 3389 - ] 3390 - 3391 - [[package]] 3392 - name = "raw-window-handle" 3393 - version = "0.5.2" 3394 - source = "registry+https://github.com/rust-lang/crates.io-index" 3395 - checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 3396 - 3397 - [[package]] 3398 - name = "redox_syscall" 3399 - version = "0.2.16" 3400 - source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3402 - dependencies = [ 3403 - "bitflags 1.3.2", 3404 - ] 3405 - 3406 - [[package]] 3407 - name = "redox_syscall" 3408 - version = "0.3.5" 3409 - source = "registry+https://github.com/rust-lang/crates.io-index" 3410 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3411 - dependencies = [ 3412 - "bitflags 1.3.2", 3413 - ] 3414 - 3415 - [[package]] 3416 - name = "redox_syscall" 3417 - version = "0.4.1" 3418 - source = "registry+https://github.com/rust-lang/crates.io-index" 3419 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3420 - dependencies = [ 3421 - "bitflags 1.3.2", 3422 - ] 3423 - 3424 - [[package]] 3425 - name = "redox_users" 3426 - version = "0.4.3" 3427 - source = "registry+https://github.com/rust-lang/crates.io-index" 3428 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3429 - dependencies = [ 3430 - "getrandom 0.2.10", 3431 - "redox_syscall 0.2.16", 3432 - "thiserror", 3433 - ] 3434 - 3435 - [[package]] 3436 - name = "regex" 3437 - version = "1.10.2" 3438 - source = "registry+https://github.com/rust-lang/crates.io-index" 3439 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3440 - dependencies = [ 3441 - "aho-corasick", 3442 - "memchr", 3443 - "regex-automata 0.4.3", 3444 - "regex-syntax 0.8.2", 3445 - ] 3446 - 3447 - [[package]] 3448 - name = "regex-automata" 3449 - version = "0.1.10" 3450 - source = "registry+https://github.com/rust-lang/crates.io-index" 3451 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3452 - dependencies = [ 3453 - "regex-syntax 0.6.29", 3454 - ] 3455 - 3456 - [[package]] 3457 - name = "regex-automata" 3458 - version = "0.4.3" 3459 - source = "registry+https://github.com/rust-lang/crates.io-index" 3460 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3461 - dependencies = [ 3462 - "aho-corasick", 3463 - "memchr", 3464 - "regex-syntax 0.8.2", 3465 - ] 3466 - 3467 - [[package]] 3468 - name = "regex-syntax" 3469 - version = "0.6.29" 3470 - source = "registry+https://github.com/rust-lang/crates.io-index" 3471 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3472 - 3473 - [[package]] 3474 - name = "regex-syntax" 3475 - version = "0.8.2" 3476 - source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3478 - 3479 - [[package]] 3480 - name = "reqwest" 3481 - version = "0.11.22" 3482 - source = "registry+https://github.com/rust-lang/crates.io-index" 3483 - checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 3484 - dependencies = [ 3485 - "base64 0.21.5", 3486 - "bytes", 3487 - "encoding_rs", 3488 - "futures-core", 3489 - "futures-util", 3490 - "h2", 3491 - "http", 3492 - "http-body", 3493 - "hyper", 3494 - "hyper-tls", 3495 - "ipnet", 3496 - "js-sys", 3497 - "log", 3498 - "mime", 3499 - "native-tls", 3500 - "once_cell", 3501 - "percent-encoding", 3502 - "pin-project-lite", 3503 - "serde", 3504 - "serde_json", 3505 - "serde_urlencoded", 3506 - "system-configuration", 3507 - "tokio", 3508 - "tokio-native-tls", 3509 - "tokio-util", 3510 - "tower-service", 3511 - "url", 3512 - "wasm-bindgen", 3513 - "wasm-bindgen-futures", 3514 - "wasm-streams", 3515 - "web-sys", 3516 - "winreg 0.50.0", 3517 - ] 3518 - 3519 - [[package]] 3520 - name = "rfd" 3521 - version = "0.10.0" 3522 - source = "registry+https://github.com/rust-lang/crates.io-index" 3523 - checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea" 3524 - dependencies = [ 3525 - "block", 3526 - "dispatch", 3527 - "glib-sys", 3528 - "gobject-sys", 3529 - "gtk-sys", 3530 - "js-sys", 3531 - "lazy_static", 3532 - "log", 3533 - "objc", 3534 - "objc-foundation", 3535 - "objc_id", 3536 - "raw-window-handle", 3537 - "wasm-bindgen", 3538 - "wasm-bindgen-futures", 3539 - "web-sys", 3540 - "windows 0.37.0", 3541 - ] 3542 - 3543 - [[package]] 3544 - name = "rsa" 3545 - version = "0.9.2" 3546 - source = "registry+https://github.com/rust-lang/crates.io-index" 3547 - checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" 3548 - dependencies = [ 3549 - "byteorder", 3550 - "const-oid", 3551 - "digest", 3552 - "num-bigint-dig", 3553 - "num-integer", 3554 - "num-iter", 3555 - "num-traits", 3556 - "pkcs1", 3557 - "pkcs8", 3558 - "rand_core 0.6.4", 3559 - "signature", 3560 - "spki", 3561 - "subtle", 3562 - "zeroize", 3563 - ] 3564 - 3565 - [[package]] 3566 - name = "rustc-demangle" 3567 - version = "0.1.23" 3568 - source = "registry+https://github.com/rust-lang/crates.io-index" 3569 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3570 - 3571 - [[package]] 3572 - name = "rustc_version" 3573 - version = "0.4.0" 3574 - source = "registry+https://github.com/rust-lang/crates.io-index" 3575 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3576 - dependencies = [ 3577 - "semver", 3578 - ] 3579 - 3580 - [[package]] 3581 - name = "rustix" 3582 - version = "0.37.25" 3583 - source = "registry+https://github.com/rust-lang/crates.io-index" 3584 - checksum = "d4eb579851244c2c03e7c24f501c3432bed80b8f720af1d6e5b0e0f01555a035" 3585 - dependencies = [ 3586 - "bitflags 1.3.2", 3587 - "errno", 3588 - "io-lifetimes", 3589 - "libc", 3590 - "linux-raw-sys 0.3.8", 3591 - "windows-sys 0.48.0", 3592 - ] 3593 - 3594 - [[package]] 3595 - name = "rustix" 3596 - version = "0.38.19" 3597 - source = "registry+https://github.com/rust-lang/crates.io-index" 3598 - checksum = "745ecfa778e66b2b63c88a61cb36e0eea109e803b0b86bf9879fbc77c70e86ed" 3599 - dependencies = [ 3600 - "bitflags 2.4.1", 3601 - "errno", 3602 - "libc", 3603 - "linux-raw-sys 0.4.10", 3604 - "windows-sys 0.48.0", 3605 - ] 3606 - 3607 - [[package]] 3608 - name = "rustversion" 3609 - version = "1.0.14" 3610 - source = "registry+https://github.com/rust-lang/crates.io-index" 3611 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 3612 - 3613 - [[package]] 3614 - name = "ryu" 3615 - version = "1.0.15" 3616 - source = "registry+https://github.com/rust-lang/crates.io-index" 3617 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3618 - 3619 - [[package]] 3620 - name = "safemem" 3621 - version = "0.3.3" 3622 - source = "registry+https://github.com/rust-lang/crates.io-index" 3623 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 3624 - 3625 - [[package]] 3626 - name = "same-file" 3627 - version = "1.0.6" 3628 - source = "registry+https://github.com/rust-lang/crates.io-index" 3629 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3630 - dependencies = [ 3631 - "winapi-util", 3632 - ] 3633 - 3634 - [[package]] 3635 - name = "schannel" 3636 - version = "0.1.22" 3637 - source = "registry+https://github.com/rust-lang/crates.io-index" 3638 - checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3639 - dependencies = [ 3640 - "windows-sys 0.48.0", 3641 - ] 3642 - 3643 - [[package]] 3644 - name = "scheduled-thread-pool" 3645 - version = "0.2.7" 3646 - source = "registry+https://github.com/rust-lang/crates.io-index" 3647 - checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" 3648 - dependencies = [ 3649 - "parking_lot", 3650 - ] 3651 - 3652 - [[package]] 3653 - name = "scoped-tls" 3654 - version = "1.0.1" 3655 - source = "registry+https://github.com/rust-lang/crates.io-index" 3656 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3657 - 3658 - [[package]] 3659 - name = "scopeguard" 3660 - version = "1.2.0" 3661 - source = "registry+https://github.com/rust-lang/crates.io-index" 3662 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3663 - 3664 - [[package]] 3665 - name = "security-framework" 3666 - version = "2.9.2" 3667 - source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 3669 - dependencies = [ 3670 - "bitflags 1.3.2", 3671 - "core-foundation", 3672 - "core-foundation-sys", 3673 - "libc", 3674 - "security-framework-sys", 3675 - ] 3676 - 3677 - [[package]] 3678 - name = "security-framework-sys" 3679 - version = "2.9.1" 3680 - source = "registry+https://github.com/rust-lang/crates.io-index" 3681 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 3682 - dependencies = [ 3683 - "core-foundation-sys", 3684 - "libc", 3685 - ] 3686 - 3687 - [[package]] 3688 - name = "selectors" 3689 - version = "0.22.0" 3690 - source = "registry+https://github.com/rust-lang/crates.io-index" 3691 - checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 3692 - dependencies = [ 3693 - "bitflags 1.3.2", 3694 - "cssparser", 3695 - "derive_more", 3696 - "fxhash", 3697 - "log", 3698 - "matches", 3699 - "phf 0.8.0", 3700 - "phf_codegen 0.8.0", 3701 - "precomputed-hash", 3702 - "servo_arc", 3703 - "smallvec", 3704 - "thin-slice", 3705 - ] 3706 - 3707 - [[package]] 3708 - name = "semver" 3709 - version = "1.0.20" 3710 - source = "registry+https://github.com/rust-lang/crates.io-index" 3711 - checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3712 - dependencies = [ 3713 - "serde", 3714 - ] 3715 - 3716 - [[package]] 3717 - name = "serde" 3718 - version = "1.0.192" 3719 - source = "registry+https://github.com/rust-lang/crates.io-index" 3720 - checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" 3721 - dependencies = [ 3722 - "serde_derive", 3723 - ] 3724 - 3725 - [[package]] 3726 - name = "serde-byte-array" 3727 - version = "0.1.2" 3728 - source = "registry+https://github.com/rust-lang/crates.io-index" 3729 - checksum = "63213ee4ed648dbd87db6fa993d4275b46bfb4ddfd95b3756045007c2b28f742" 3730 - dependencies = [ 3731 - "serde", 3732 - ] 3733 - 3734 - [[package]] 3735 - name = "serde_bytes" 3736 - version = "0.11.12" 3737 - source = "registry+https://github.com/rust-lang/crates.io-index" 3738 - checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 3739 - dependencies = [ 3740 - "serde", 3741 - ] 3742 - 3743 - [[package]] 3744 - name = "serde_derive" 3745 - version = "1.0.192" 3746 - source = "registry+https://github.com/rust-lang/crates.io-index" 3747 - checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" 3748 - dependencies = [ 3749 - "proc-macro2", 3750 - "quote", 3751 - "syn 2.0.38", 3752 - ] 3753 - 3754 - [[package]] 3755 - name = "serde_json" 3756 - version = "1.0.108" 3757 - source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 3759 - dependencies = [ 3760 - "indexmap 2.0.2", 3761 - "itoa 1.0.9", 3762 - "ryu", 3763 - "serde", 3764 - ] 3765 - 3766 - [[package]] 3767 - name = "serde_repr" 3768 - version = "0.1.16" 3769 - source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 3771 - dependencies = [ 3772 - "proc-macro2", 3773 - "quote", 3774 - "syn 2.0.38", 3775 - ] 3776 - 3777 - [[package]] 3778 - name = "serde_spanned" 3779 - version = "0.6.3" 3780 - source = "registry+https://github.com/rust-lang/crates.io-index" 3781 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 3782 - dependencies = [ 3783 - "serde", 3784 - ] 3785 - 3786 - [[package]] 3787 - name = "serde_urlencoded" 3788 - version = "0.7.1" 3789 - source = "registry+https://github.com/rust-lang/crates.io-index" 3790 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3791 - dependencies = [ 3792 - "form_urlencoded", 3793 - "itoa 1.0.9", 3794 - "ryu", 3795 - "serde", 3796 - ] 3797 - 3798 - [[package]] 3799 - name = "serde_with" 3800 - version = "3.4.0" 3801 - source = "registry+https://github.com/rust-lang/crates.io-index" 3802 - checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 3803 - dependencies = [ 3804 - "base64 0.21.5", 3805 - "chrono", 3806 - "hex", 3807 - "indexmap 1.9.3", 3808 - "indexmap 2.0.2", 3809 - "serde", 3810 - "serde_json", 3811 - "serde_with_macros", 3812 - "time", 3813 - ] 3814 - 3815 - [[package]] 3816 - name = "serde_with_macros" 3817 - version = "3.4.0" 3818 - source = "registry+https://github.com/rust-lang/crates.io-index" 3819 - checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 3820 - dependencies = [ 3821 - "darling", 3822 - "proc-macro2", 3823 - "quote", 3824 - "syn 2.0.38", 3825 - ] 3826 - 3827 - [[package]] 3828 - name = "serialize-to-javascript" 3829 - version = "0.1.1" 3830 - source = "registry+https://github.com/rust-lang/crates.io-index" 3831 - checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 3832 - dependencies = [ 3833 - "serde", 3834 - "serde_json", 3835 - "serialize-to-javascript-impl", 3836 - ] 3837 - 3838 - [[package]] 3839 - name = "serialize-to-javascript-impl" 3840 - version = "0.1.1" 3841 - source = "registry+https://github.com/rust-lang/crates.io-index" 3842 - checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 3843 - dependencies = [ 3844 - "proc-macro2", 3845 - "quote", 3846 - "syn 1.0.109", 3847 - ] 3848 - 3849 - [[package]] 3850 - name = "servo_arc" 3851 - version = "0.1.1" 3852 - source = "registry+https://github.com/rust-lang/crates.io-index" 3853 - checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 3854 - dependencies = [ 3855 - "nodrop", 3856 - "stable_deref_trait", 3857 - ] 3858 - 3859 - [[package]] 3860 - name = "sha1" 3861 - version = "0.10.6" 3862 - source = "registry+https://github.com/rust-lang/crates.io-index" 3863 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3864 - dependencies = [ 3865 - "cfg-if", 3866 - "cpufeatures", 3867 - "digest", 3868 - ] 3869 - 3870 - [[package]] 3871 - name = "sha2" 3872 - version = "0.10.8" 3873 - source = "registry+https://github.com/rust-lang/crates.io-index" 3874 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3875 - dependencies = [ 3876 - "cfg-if", 3877 - "cpufeatures", 3878 - "digest", 3879 - ] 3880 - 3881 - [[package]] 3882 - name = "sharded-slab" 3883 - version = "0.1.7" 3884 - source = "registry+https://github.com/rust-lang/crates.io-index" 3885 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3886 - dependencies = [ 3887 - "lazy_static", 3888 - ] 3889 - 3890 - [[package]] 3891 - name = "shared_child" 3892 - version = "1.0.0" 3893 - source = "registry+https://github.com/rust-lang/crates.io-index" 3894 - checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 3895 - dependencies = [ 3896 - "libc", 3897 - "winapi", 3898 - ] 3899 - 3900 - [[package]] 3901 - name = "signal-hook-registry" 3902 - version = "1.4.1" 3903 - source = "registry+https://github.com/rust-lang/crates.io-index" 3904 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 3905 - dependencies = [ 3906 - "libc", 3907 - ] 3908 - 3909 - [[package]] 3910 - name = "signature" 3911 - version = "2.1.0" 3912 - source = "registry+https://github.com/rust-lang/crates.io-index" 3913 - checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" 3914 - dependencies = [ 3915 - "digest", 3916 - "rand_core 0.6.4", 3917 - ] 3918 - 3919 - [[package]] 3920 - name = "simd-adler32" 3921 - version = "0.3.7" 3922 - source = "registry+https://github.com/rust-lang/crates.io-index" 3923 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 3924 - 3925 - [[package]] 3926 - name = "siphasher" 3927 - version = "0.3.11" 3928 - source = "registry+https://github.com/rust-lang/crates.io-index" 3929 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3930 - 3931 - [[package]] 3932 - name = "slab" 3933 - version = "0.4.9" 3934 - source = "registry+https://github.com/rust-lang/crates.io-index" 3935 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3936 - dependencies = [ 3937 - "autocfg", 3938 - ] 3939 - 3940 - [[package]] 3941 - name = "smallvec" 3942 - version = "1.11.1" 3943 - source = "registry+https://github.com/rust-lang/crates.io-index" 3944 - checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 3945 - 3946 - [[package]] 3947 - name = "socket2" 3948 - version = "0.4.9" 3949 - source = "registry+https://github.com/rust-lang/crates.io-index" 3950 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3951 - dependencies = [ 3952 - "libc", 3953 - "winapi", 3954 - ] 3955 - 3956 - [[package]] 3957 - name = "socket2" 3958 - version = "0.5.4" 3959 - source = "registry+https://github.com/rust-lang/crates.io-index" 3960 - checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 3961 - dependencies = [ 3962 - "libc", 3963 - "windows-sys 0.48.0", 3964 - ] 3965 - 3966 - [[package]] 3967 - name = "soup2" 3968 - version = "0.2.1" 3969 - source = "registry+https://github.com/rust-lang/crates.io-index" 3970 - checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 3971 - dependencies = [ 3972 - "bitflags 1.3.2", 3973 - "gio", 3974 - "glib", 3975 - "libc", 3976 - "once_cell", 3977 - "soup2-sys", 3978 - ] 3979 - 3980 - [[package]] 3981 - name = "soup2-sys" 3982 - version = "0.2.0" 3983 - source = "registry+https://github.com/rust-lang/crates.io-index" 3984 - checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 3985 - dependencies = [ 3986 - "bitflags 1.3.2", 3987 - "gio-sys", 3988 - "glib-sys", 3989 - "gobject-sys", 3990 - "libc", 3991 - "system-deps 5.0.0", 3992 - ] 3993 - 3994 - [[package]] 3995 - name = "spin" 3996 - version = "0.5.2" 3997 - source = "registry+https://github.com/rust-lang/crates.io-index" 3998 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3999 - 4000 - [[package]] 4001 - name = "spin" 4002 - version = "0.9.8" 4003 - source = "registry+https://github.com/rust-lang/crates.io-index" 4004 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4005 - dependencies = [ 4006 - "lock_api", 4007 - ] 4008 - 4009 - [[package]] 4010 - name = "spki" 4011 - version = "0.7.2" 4012 - source = "registry+https://github.com/rust-lang/crates.io-index" 4013 - checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" 4014 - dependencies = [ 4015 - "base64ct", 4016 - "der", 4017 - ] 4018 - 4019 - [[package]] 4020 - name = "stable_deref_trait" 4021 - version = "1.2.0" 4022 - source = "registry+https://github.com/rust-lang/crates.io-index" 4023 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 4024 - 4025 - [[package]] 4026 - name = "state" 4027 - version = "0.5.3" 4028 - source = "registry+https://github.com/rust-lang/crates.io-index" 4029 - checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 4030 - dependencies = [ 4031 - "loom", 4032 - ] 4033 - 4034 - [[package]] 4035 - name = "static_assertions" 4036 - version = "1.1.0" 4037 - source = "registry+https://github.com/rust-lang/crates.io-index" 4038 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4039 - 4040 - [[package]] 4041 - name = "string_cache" 4042 - version = "0.8.7" 4043 - source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 4045 - dependencies = [ 4046 - "new_debug_unreachable", 4047 - "once_cell", 4048 - "parking_lot", 4049 - "phf_shared 0.10.0", 4050 - "precomputed-hash", 4051 - "serde", 4052 - ] 4053 - 4054 - [[package]] 4055 - name = "string_cache_codegen" 4056 - version = "0.5.2" 4057 - source = "registry+https://github.com/rust-lang/crates.io-index" 4058 - checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 4059 - dependencies = [ 4060 - "phf_generator 0.10.0", 4061 - "phf_shared 0.10.0", 4062 - "proc-macro2", 4063 - "quote", 4064 - ] 4065 - 4066 - [[package]] 4067 - name = "strsim" 4068 - version = "0.10.0" 4069 - source = "registry+https://github.com/rust-lang/crates.io-index" 4070 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4071 - 4072 - [[package]] 4073 - name = "structstruck" 4074 - version = "0.4.1" 4075 - source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "1a052ec87a2d9bdd3a35f85ec6a07a5ac0816e4190b1cbede9d67cccb47ea66d" 4077 - dependencies = [ 4078 - "heck 0.4.1", 4079 - "proc-macro2", 4080 - "quote", 4081 - "venial", 4082 - ] 4083 - 4084 - [[package]] 4085 - name = "subtle" 4086 - version = "2.5.0" 4087 - source = "registry+https://github.com/rust-lang/crates.io-index" 4088 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 4089 - 4090 - [[package]] 4091 - name = "syn" 4092 - version = "1.0.109" 4093 - source = "registry+https://github.com/rust-lang/crates.io-index" 4094 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4095 - dependencies = [ 4096 - "proc-macro2", 4097 - "quote", 4098 - "unicode-ident", 4099 - ] 4100 - 4101 - [[package]] 4102 - name = "syn" 4103 - version = "2.0.38" 4104 - source = "registry+https://github.com/rust-lang/crates.io-index" 4105 - checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 4106 - dependencies = [ 4107 - "proc-macro2", 4108 - "quote", 4109 - "unicode-ident", 4110 - ] 4111 - 4112 - [[package]] 4113 - name = "sys-locale" 4114 - version = "0.2.4" 4115 - source = "registry+https://github.com/rust-lang/crates.io-index" 4116 - checksum = "f8a11bd9c338fdba09f7881ab41551932ad42e405f61d01e8406baea71c07aee" 4117 - dependencies = [ 4118 - "js-sys", 4119 - "libc", 4120 - "wasm-bindgen", 4121 - "web-sys", 4122 - "windows-sys 0.45.0", 4123 - ] 4124 - 4125 - [[package]] 4126 - name = "sys-locale" 4127 - version = "0.3.1" 4128 - source = "registry+https://github.com/rust-lang/crates.io-index" 4129 - checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 4130 - dependencies = [ 4131 - "libc", 4132 - ] 4133 - 4134 - [[package]] 4135 - name = "system-configuration" 4136 - version = "0.5.1" 4137 - source = "registry+https://github.com/rust-lang/crates.io-index" 4138 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 4139 - dependencies = [ 4140 - "bitflags 1.3.2", 4141 - "core-foundation", 4142 - "system-configuration-sys", 4143 - ] 4144 - 4145 - [[package]] 4146 - name = "system-configuration-sys" 4147 - version = "0.5.0" 4148 - source = "registry+https://github.com/rust-lang/crates.io-index" 4149 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 4150 - dependencies = [ 4151 - "core-foundation-sys", 4152 - "libc", 4153 - ] 4154 - 4155 - [[package]] 4156 - name = "system-deps" 4157 - version = "5.0.0" 4158 - source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 4160 - dependencies = [ 4161 - "cfg-expr 0.9.1", 4162 - "heck 0.3.3", 4163 - "pkg-config", 4164 - "toml 0.5.11", 4165 - "version-compare 0.0.11", 4166 - ] 4167 - 4168 - [[package]] 4169 - name = "system-deps" 4170 - version = "6.1.2" 4171 - source = "registry+https://github.com/rust-lang/crates.io-index" 4172 - checksum = "94af52f9402f94aac4948a2518b43359be8d9ce6cd9efc1c4de3b2f7b7e897d6" 4173 - dependencies = [ 4174 - "cfg-expr 0.15.5", 4175 - "heck 0.4.1", 4176 - "pkg-config", 4177 - "toml 0.8.2", 4178 - "version-compare 0.1.1", 4179 - ] 4180 - 4181 - [[package]] 4182 - name = "talk-api-internal" 4183 - version = "0.4.1" 4184 - dependencies = [ 4185 - "hex", 4186 - "reqwest", 4187 - "serde", 4188 - "serde_json", 4189 - "serde_with", 4190 - "sha2", 4191 - "thiserror", 4192 - "tokio", 4193 - "url", 4194 - ] 4195 - 4196 - [[package]] 4197 - name = "talk-loco-client" 4198 - version = "0.6.1" 4199 - dependencies = [ 4200 - "async-stream", 4201 - "bitflags 2.4.1", 4202 - "bson", 4203 - "futures-lite 2.0.1", 4204 - "futures-loco-protocol", 4205 - "num-bigint-dig", 4206 - "parking_lot", 4207 - "pin-project-lite", 4208 - "serde", 4209 - "serde-byte-array", 4210 - "serde_with", 4211 - "structstruck", 4212 - "thiserror", 4213 - "tokio", 4214 - "tokio-native-tls", 4215 - "tokio-util", 4216 - ] 4217 - 4218 - [[package]] 4219 - name = "tao" 4220 - version = "0.16.4" 4221 - source = "registry+https://github.com/rust-lang/crates.io-index" 4222 - checksum = "b768eb5cf657b045d03304b1f60ecb54eac8b520f393c4f4240a94111a1caa17" 4223 - dependencies = [ 4224 - "bitflags 1.3.2", 4225 - "cairo-rs", 4226 - "cc", 4227 - "cocoa 0.24.1", 4228 - "core-foundation", 4229 - "core-graphics 0.22.3", 4230 - "crossbeam-channel", 4231 - "dirs-next", 4232 - "dispatch", 4233 - "gdk", 4234 - "gdk-pixbuf", 4235 - "gdk-sys", 4236 - "gdkwayland-sys", 4237 - "gdkx11-sys", 4238 - "gio", 4239 - "glib", 4240 - "glib-sys", 4241 - "gtk", 4242 - "image", 4243 - "instant", 4244 - "jni", 4245 - "lazy_static", 4246 - "libappindicator", 4247 - "libc", 4248 - "log", 4249 - "ndk", 4250 - "ndk-context", 4251 - "ndk-sys", 4252 - "objc", 4253 - "once_cell", 4254 - "parking_lot", 4255 - "png", 4256 - "raw-window-handle", 4257 - "scopeguard", 4258 - "serde", 4259 - "tao-macros", 4260 - "unicode-segmentation", 4261 - "uuid", 4262 - "windows 0.39.0", 4263 - "windows-implement", 4264 - "x11-dl", 4265 - ] 4266 - 4267 - [[package]] 4268 - name = "tao-macros" 4269 - version = "0.1.2" 4270 - source = "registry+https://github.com/rust-lang/crates.io-index" 4271 - checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2" 4272 - dependencies = [ 4273 - "proc-macro2", 4274 - "quote", 4275 - "syn 1.0.109", 4276 - ] 4277 - 4278 - [[package]] 4279 - name = "tap" 4280 - version = "1.0.1" 4281 - source = "registry+https://github.com/rust-lang/crates.io-index" 4282 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 4283 - 4284 - [[package]] 4285 - name = "tar" 4286 - version = "0.4.40" 4287 - source = "registry+https://github.com/rust-lang/crates.io-index" 4288 - checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 4289 - dependencies = [ 4290 - "filetime", 4291 - "libc", 4292 - "xattr", 4293 - ] 4294 - 4295 - [[package]] 4296 - name = "target-lexicon" 4297 - version = "0.12.11" 4298 - source = "registry+https://github.com/rust-lang/crates.io-index" 4299 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 4300 - 4301 - [[package]] 4302 - name = "tauri" 4303 - version = "1.5.2" 4304 - source = "registry+https://github.com/rust-lang/crates.io-index" 4305 - checksum = "9bfe673cf125ef364d6f56b15e8ce7537d9ca7e4dae1cf6fbbdeed2e024db3d9" 4306 - dependencies = [ 4307 - "anyhow", 4308 - "base64 0.21.5", 4309 - "bytes", 4310 - "cocoa 0.24.1", 4311 - "dirs-next", 4312 - "embed_plist", 4313 - "encoding_rs", 4314 - "flate2", 4315 - "futures-util", 4316 - "glib", 4317 - "glob", 4318 - "gtk", 4319 - "heck 0.4.1", 4320 - "http", 4321 - "ignore", 4322 - "minisign-verify", 4323 - "notify-rust", 4324 - "objc", 4325 - "once_cell", 4326 - "open", 4327 - "os_info", 4328 - "os_pipe", 4329 - "percent-encoding", 4330 - "rand 0.8.5", 4331 - "raw-window-handle", 4332 - "regex", 4333 - "reqwest", 4334 - "rfd", 4335 - "semver", 4336 - "serde", 4337 - "serde_json", 4338 - "serde_repr", 4339 - "serialize-to-javascript", 4340 - "shared_child", 4341 - "state", 4342 - "sys-locale 0.2.4", 4343 - "tar", 4344 - "tauri-macros", 4345 - "tauri-runtime", 4346 - "tauri-runtime-wry", 4347 - "tauri-utils", 4348 - "tempfile", 4349 - "thiserror", 4350 - "time", 4351 - "tokio", 4352 - "url", 4353 - "uuid", 4354 - "webkit2gtk", 4355 - "webview2-com", 4356 - "windows 0.39.0", 4357 - "zip", 4358 - ] 4359 - 4360 - [[package]] 4361 - name = "tauri-build" 4362 - version = "1.5.0" 4363 - source = "registry+https://github.com/rust-lang/crates.io-index" 4364 - checksum = "defbfc551bd38ab997e5f8e458f87396d2559d05ce32095076ad6c30f7fc5f9c" 4365 - dependencies = [ 4366 - "anyhow", 4367 - "cargo_toml", 4368 - "dirs-next", 4369 - "heck 0.4.1", 4370 - "json-patch", 4371 - "semver", 4372 - "serde", 4373 - "serde_json", 4374 - "tauri-utils", 4375 - "tauri-winres", 4376 - "walkdir", 4377 - ] 4378 - 4379 - [[package]] 4380 - name = "tauri-codegen" 4381 - version = "1.4.1" 4382 - source = "registry+https://github.com/rust-lang/crates.io-index" 4383 - checksum = "7b3475e55acec0b4a50fb96435f19631fb58cbcd31923e1a213de5c382536bbb" 4384 - dependencies = [ 4385 - "base64 0.21.5", 4386 - "brotli", 4387 - "ico", 4388 - "json-patch", 4389 - "plist", 4390 - "png", 4391 - "proc-macro2", 4392 - "quote", 4393 - "regex", 4394 - "semver", 4395 - "serde", 4396 - "serde_json", 4397 - "sha2", 4398 - "tauri-utils", 4399 - "thiserror", 4400 - "time", 4401 - "uuid", 4402 - "walkdir", 4403 - ] 4404 - 4405 - [[package]] 4406 - name = "tauri-macros" 4407 - version = "1.4.1" 4408 - source = "registry+https://github.com/rust-lang/crates.io-index" 4409 - checksum = "613740228de92d9196b795ac455091d3a5fbdac2654abb8bb07d010b62ab43af" 4410 - dependencies = [ 4411 - "heck 0.4.1", 4412 - "proc-macro2", 4413 - "quote", 4414 - "syn 1.0.109", 4415 - "tauri-codegen", 4416 - "tauri-utils", 4417 - ] 4418 - 4419 - [[package]] 4420 - name = "tauri-plugin-log" 4421 - version = "0.0.0" 4422 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#8d6045421a553330e9da8b9e1e4405d419c5ea88" 4423 - dependencies = [ 4424 - "byte-unit", 4425 - "fern", 4426 - "log", 4427 - "serde", 4428 - "serde_json", 4429 - "serde_repr", 4430 - "tauri", 4431 - "time", 4432 - ] 4433 - 4434 - [[package]] 4435 - name = "tauri-plugin-single-instance" 4436 - version = "0.0.0" 4437 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#8d6045421a553330e9da8b9e1e4405d419c5ea88" 4438 - dependencies = [ 4439 - "log", 4440 - "serde", 4441 - "serde_json", 4442 - "tauri", 4443 - "thiserror", 4444 - "windows-sys 0.48.0", 4445 - "zbus", 4446 - ] 4447 - 4448 - [[package]] 4449 - name = "tauri-plugin-window-state" 4450 - version = "0.1.0" 4451 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#8d6045421a553330e9da8b9e1e4405d419c5ea88" 4452 - dependencies = [ 4453 - "bincode", 4454 - "bitflags 2.4.1", 4455 - "log", 4456 - "serde", 4457 - "serde_json", 4458 - "tauri", 4459 - "thiserror", 4460 - ] 4461 - 4462 - [[package]] 4463 - name = "tauri-runtime" 4464 - version = "0.14.1" 4465 - source = "registry+https://github.com/rust-lang/crates.io-index" 4466 - checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43" 4467 - dependencies = [ 4468 - "gtk", 4469 - "http", 4470 - "http-range", 4471 - "rand 0.8.5", 4472 - "raw-window-handle", 4473 - "serde", 4474 - "serde_json", 4475 - "tauri-utils", 4476 - "thiserror", 4477 - "url", 4478 - "uuid", 4479 - "webview2-com", 4480 - "windows 0.39.0", 4481 - ] 4482 - 4483 - [[package]] 4484 - name = "tauri-runtime-wry" 4485 - version = "0.14.1" 4486 - source = "registry+https://github.com/rust-lang/crates.io-index" 4487 - checksum = "8141d72b6b65f2008911e9ef5b98a68d1e3413b7a1464e8f85eb3673bb19a895" 4488 - dependencies = [ 4489 - "cocoa 0.24.1", 4490 - "gtk", 4491 - "percent-encoding", 4492 - "rand 0.8.5", 4493 - "raw-window-handle", 4494 - "tauri-runtime", 4495 - "tauri-utils", 4496 - "uuid", 4497 - "webkit2gtk", 4498 - "webview2-com", 4499 - "windows 0.39.0", 4500 - "wry", 4501 - ] 4502 - 4503 - [[package]] 4504 - name = "tauri-utils" 4505 - version = "1.5.0" 4506 - source = "registry+https://github.com/rust-lang/crates.io-index" 4507 - checksum = "34d55e185904a84a419308d523c2c6891d5e2dbcee740c4997eb42e75a7b0f46" 4508 - dependencies = [ 4509 - "brotli", 4510 - "ctor", 4511 - "dunce", 4512 - "glob", 4513 - "heck 0.4.1", 4514 - "html5ever 0.26.0", 4515 - "infer", 4516 - "json-patch", 4517 - "kuchikiki", 4518 - "log", 4519 - "memchr", 4520 - "phf 0.10.1", 4521 - "proc-macro2", 4522 - "quote", 4523 - "semver", 4524 - "serde", 4525 - "serde_json", 4526 - "serde_with", 4527 - "thiserror", 4528 - "url", 4529 - "walkdir", 4530 - "windows 0.39.0", 4531 - ] 4532 - 4533 - [[package]] 4534 - name = "tauri-winres" 4535 - version = "0.1.1" 4536 - source = "registry+https://github.com/rust-lang/crates.io-index" 4537 - checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 4538 - dependencies = [ 4539 - "embed-resource", 4540 - "toml 0.7.8", 4541 - ] 4542 - 4543 - [[package]] 4544 - name = "tauri-winrt-notification" 4545 - version = "0.1.3" 4546 - source = "registry+https://github.com/rust-lang/crates.io-index" 4547 - checksum = "006851c9ccefa3c38a7646b8cec804bb429def3da10497bfa977179869c3e8e2" 4548 - dependencies = [ 4549 - "quick-xml 0.30.0", 4550 - "windows 0.51.1", 4551 - ] 4552 - 4553 - [[package]] 4554 - name = "tempfile" 4555 - version = "3.8.0" 4556 - source = "registry+https://github.com/rust-lang/crates.io-index" 4557 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 4558 - dependencies = [ 4559 - "cfg-if", 4560 - "fastrand 2.0.1", 4561 - "redox_syscall 0.3.5", 4562 - "rustix 0.38.19", 4563 - "windows-sys 0.48.0", 4564 - ] 4565 - 4566 - [[package]] 4567 - name = "tendril" 4568 - version = "0.4.3" 4569 - source = "registry+https://github.com/rust-lang/crates.io-index" 4570 - checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 4571 - dependencies = [ 4572 - "futf", 4573 - "mac", 4574 - "utf-8", 4575 - ] 4576 - 4577 - [[package]] 4578 - name = "thin-slice" 4579 - version = "0.1.1" 4580 - source = "registry+https://github.com/rust-lang/crates.io-index" 4581 - checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 4582 - 4583 - [[package]] 4584 - name = "thiserror" 4585 - version = "1.0.49" 4586 - source = "registry+https://github.com/rust-lang/crates.io-index" 4587 - checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 4588 - dependencies = [ 4589 - "thiserror-impl", 4590 - ] 4591 - 4592 - [[package]] 4593 - name = "thiserror-impl" 4594 - version = "1.0.49" 4595 - source = "registry+https://github.com/rust-lang/crates.io-index" 4596 - checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 4597 - dependencies = [ 4598 - "proc-macro2", 4599 - "quote", 4600 - "syn 2.0.38", 4601 - ] 4602 - 4603 - [[package]] 4604 - name = "thread_local" 4605 - version = "1.1.7" 4606 - source = "registry+https://github.com/rust-lang/crates.io-index" 4607 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 4608 - dependencies = [ 4609 - "cfg-if", 4610 - "once_cell", 4611 - ] 4612 - 4613 - [[package]] 4614 - name = "time" 4615 - version = "0.3.36" 4616 - source = "registry+https://github.com/rust-lang/crates.io-index" 4617 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 4618 - dependencies = [ 4619 - "deranged", 4620 - "itoa 1.0.9", 4621 - "libc", 4622 - "num-conv", 4623 - "num_threads", 4624 - "powerfmt", 4625 - "serde", 4626 - "time-core", 4627 - "time-macros", 4628 - ] 4629 - 4630 - [[package]] 4631 - name = "time-core" 4632 - version = "0.1.2" 4633 - source = "registry+https://github.com/rust-lang/crates.io-index" 4634 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4635 - 4636 - [[package]] 4637 - name = "time-macros" 4638 - version = "0.2.18" 4639 - source = "registry+https://github.com/rust-lang/crates.io-index" 4640 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 4641 - dependencies = [ 4642 - "num-conv", 4643 - "time-core", 4644 - ] 4645 - 4646 - [[package]] 4647 - name = "tinyvec" 4648 - version = "1.6.0" 4649 - source = "registry+https://github.com/rust-lang/crates.io-index" 4650 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4651 - dependencies = [ 4652 - "tinyvec_macros", 4653 - ] 4654 - 4655 - [[package]] 4656 - name = "tinyvec_macros" 4657 - version = "0.1.1" 4658 - source = "registry+https://github.com/rust-lang/crates.io-index" 4659 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4660 - 4661 - [[package]] 4662 - name = "tokio" 4663 - version = "1.33.0" 4664 - source = "registry+https://github.com/rust-lang/crates.io-index" 4665 - checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 4666 - dependencies = [ 4667 - "backtrace", 4668 - "bytes", 4669 - "libc", 4670 - "mio", 4671 - "num_cpus", 4672 - "parking_lot", 4673 - "pin-project-lite", 4674 - "signal-hook-registry", 4675 - "socket2 0.5.4", 4676 - "tokio-macros", 4677 - "windows-sys 0.48.0", 4678 - ] 4679 - 4680 - [[package]] 4681 - name = "tokio-macros" 4682 - version = "2.1.0" 4683 - source = "registry+https://github.com/rust-lang/crates.io-index" 4684 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4685 - dependencies = [ 4686 - "proc-macro2", 4687 - "quote", 4688 - "syn 2.0.38", 4689 - ] 4690 - 4691 - [[package]] 4692 - name = "tokio-native-tls" 4693 - version = "0.3.1" 4694 - source = "registry+https://github.com/rust-lang/crates.io-index" 4695 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 4696 - dependencies = [ 4697 - "native-tls", 4698 - "tokio", 4699 - ] 4700 - 4701 - [[package]] 4702 - name = "tokio-util" 4703 - version = "0.7.10" 4704 - source = "registry+https://github.com/rust-lang/crates.io-index" 4705 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 4706 - dependencies = [ 4707 - "bytes", 4708 - "futures-core", 4709 - "futures-io", 4710 - "futures-sink", 4711 - "pin-project-lite", 4712 - "tokio", 4713 - "tracing", 4714 - ] 4715 - 4716 - [[package]] 4717 - name = "toml" 4718 - version = "0.5.11" 4719 - source = "registry+https://github.com/rust-lang/crates.io-index" 4720 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 4721 - dependencies = [ 4722 - "serde", 4723 - ] 4724 - 4725 - [[package]] 4726 - name = "toml" 4727 - version = "0.7.8" 4728 - source = "registry+https://github.com/rust-lang/crates.io-index" 4729 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 4730 - dependencies = [ 4731 - "serde", 4732 - "serde_spanned", 4733 - "toml_datetime", 4734 - "toml_edit 0.19.15", 4735 - ] 4736 - 4737 - [[package]] 4738 - name = "toml" 4739 - version = "0.8.2" 4740 - source = "registry+https://github.com/rust-lang/crates.io-index" 4741 - checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 4742 - dependencies = [ 4743 - "serde", 4744 - "serde_spanned", 4745 - "toml_datetime", 4746 - "toml_edit 0.20.2", 4747 - ] 4748 - 4749 - [[package]] 4750 - name = "toml_datetime" 4751 - version = "0.6.3" 4752 - source = "registry+https://github.com/rust-lang/crates.io-index" 4753 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4754 - dependencies = [ 4755 - "serde", 4756 - ] 4757 - 4758 - [[package]] 4759 - name = "toml_edit" 4760 - version = "0.19.15" 4761 - source = "registry+https://github.com/rust-lang/crates.io-index" 4762 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4763 - dependencies = [ 4764 - "indexmap 2.0.2", 4765 - "serde", 4766 - "serde_spanned", 4767 - "toml_datetime", 4768 - "winnow", 4769 - ] 4770 - 4771 - [[package]] 4772 - name = "toml_edit" 4773 - version = "0.20.2" 4774 - source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 4776 - dependencies = [ 4777 - "indexmap 2.0.2", 4778 - "serde", 4779 - "serde_spanned", 4780 - "toml_datetime", 4781 - "winnow", 4782 - ] 4783 - 4784 - [[package]] 4785 - name = "tower-service" 4786 - version = "0.3.2" 4787 - source = "registry+https://github.com/rust-lang/crates.io-index" 4788 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4789 - 4790 - [[package]] 4791 - name = "tracing" 4792 - version = "0.1.40" 4793 - source = "registry+https://github.com/rust-lang/crates.io-index" 4794 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4795 - dependencies = [ 4796 - "pin-project-lite", 4797 - "tracing-attributes", 4798 - "tracing-core", 4799 - ] 4800 - 4801 - [[package]] 4802 - name = "tracing-attributes" 4803 - version = "0.1.27" 4804 - source = "registry+https://github.com/rust-lang/crates.io-index" 4805 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4806 - dependencies = [ 4807 - "proc-macro2", 4808 - "quote", 4809 - "syn 2.0.38", 4810 - ] 4811 - 4812 - [[package]] 4813 - name = "tracing-core" 4814 - version = "0.1.32" 4815 - source = "registry+https://github.com/rust-lang/crates.io-index" 4816 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4817 - dependencies = [ 4818 - "once_cell", 4819 - "valuable", 4820 - ] 4821 - 4822 - [[package]] 4823 - name = "tracing-log" 4824 - version = "0.1.3" 4825 - source = "registry+https://github.com/rust-lang/crates.io-index" 4826 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4827 - dependencies = [ 4828 - "lazy_static", 4829 - "log", 4830 - "tracing-core", 4831 - ] 4832 - 4833 - [[package]] 4834 - name = "tracing-subscriber" 4835 - version = "0.3.17" 4836 - source = "registry+https://github.com/rust-lang/crates.io-index" 4837 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4838 - dependencies = [ 4839 - "matchers", 4840 - "nu-ansi-term", 4841 - "once_cell", 4842 - "regex", 4843 - "sharded-slab", 4844 - "smallvec", 4845 - "thread_local", 4846 - "tracing", 4847 - "tracing-core", 4848 - "tracing-log", 4849 - ] 4850 - 4851 - [[package]] 4852 - name = "treediff" 4853 - version = "4.0.2" 4854 - source = "registry+https://github.com/rust-lang/crates.io-index" 4855 - checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303" 4856 - dependencies = [ 4857 - "serde_json", 4858 - ] 4859 - 4860 - [[package]] 4861 - name = "try-lock" 4862 - version = "0.2.4" 4863 - source = "registry+https://github.com/rust-lang/crates.io-index" 4864 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4865 - 4866 - [[package]] 4867 - name = "typenum" 4868 - version = "1.17.0" 4869 - source = "registry+https://github.com/rust-lang/crates.io-index" 4870 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 4871 - 4872 - [[package]] 4873 - name = "uds_windows" 4874 - version = "1.0.2" 4875 - source = "registry+https://github.com/rust-lang/crates.io-index" 4876 - checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 4877 - dependencies = [ 4878 - "tempfile", 4879 - "winapi", 4880 - ] 4881 - 4882 - [[package]] 4883 - name = "unicode-bidi" 4884 - version = "0.3.13" 4885 - source = "registry+https://github.com/rust-lang/crates.io-index" 4886 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4887 - 4888 - [[package]] 4889 - name = "unicode-ident" 4890 - version = "1.0.12" 4891 - source = "registry+https://github.com/rust-lang/crates.io-index" 4892 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 4893 - 4894 - [[package]] 4895 - name = "unicode-normalization" 4896 - version = "0.1.22" 4897 - source = "registry+https://github.com/rust-lang/crates.io-index" 4898 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4899 - dependencies = [ 4900 - "tinyvec", 4901 - ] 4902 - 4903 - [[package]] 4904 - name = "unicode-segmentation" 4905 - version = "1.10.1" 4906 - source = "registry+https://github.com/rust-lang/crates.io-index" 4907 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 4908 - 4909 - [[package]] 4910 - name = "url" 4911 - version = "2.4.1" 4912 - source = "registry+https://github.com/rust-lang/crates.io-index" 4913 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 4914 - dependencies = [ 4915 - "form_urlencoded", 4916 - "idna", 4917 - "percent-encoding", 4918 - "serde", 4919 - ] 4920 - 4921 - [[package]] 4922 - name = "utf-8" 4923 - version = "0.7.6" 4924 - source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4926 - 4927 - [[package]] 4928 - name = "utf8-width" 4929 - version = "0.1.6" 4930 - source = "registry+https://github.com/rust-lang/crates.io-index" 4931 - checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" 4932 - 4933 - [[package]] 4934 - name = "uuid" 4935 - version = "1.5.0" 4936 - source = "registry+https://github.com/rust-lang/crates.io-index" 4937 - checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 4938 - dependencies = [ 4939 - "getrandom 0.2.10", 4940 - "serde", 4941 - ] 4942 - 4943 - [[package]] 4944 - name = "valuable" 4945 - version = "0.1.0" 4946 - source = "registry+https://github.com/rust-lang/crates.io-index" 4947 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4948 - 4949 - [[package]] 4950 - name = "value-bag" 4951 - version = "1.4.2" 4952 - source = "registry+https://github.com/rust-lang/crates.io-index" 4953 - checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe" 4954 - 4955 - [[package]] 4956 - name = "vcpkg" 4957 - version = "0.2.15" 4958 - source = "registry+https://github.com/rust-lang/crates.io-index" 4959 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4960 - 4961 - [[package]] 4962 - name = "venial" 4963 - version = "0.5.0" 4964 - source = "registry+https://github.com/rust-lang/crates.io-index" 4965 - checksum = "61584a325b16f97b5b25fcc852eb9550843a251057a5e3e5992d2376f3df4bb2" 4966 - dependencies = [ 4967 - "proc-macro2", 4968 - "quote", 4969 - ] 4970 - 4971 - [[package]] 4972 - name = "version-compare" 4973 - version = "0.0.11" 4974 - source = "registry+https://github.com/rust-lang/crates.io-index" 4975 - checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 4976 - 4977 - [[package]] 4978 - name = "version-compare" 4979 - version = "0.1.1" 4980 - source = "registry+https://github.com/rust-lang/crates.io-index" 4981 - checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 4982 - 4983 - [[package]] 4984 - name = "version_check" 4985 - version = "0.9.4" 4986 - source = "registry+https://github.com/rust-lang/crates.io-index" 4987 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4988 - 4989 - [[package]] 4990 - name = "vswhom" 4991 - version = "0.1.0" 4992 - source = "registry+https://github.com/rust-lang/crates.io-index" 4993 - checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 4994 - dependencies = [ 4995 - "libc", 4996 - "vswhom-sys", 4997 - ] 4998 - 4999 - [[package]] 5000 - name = "vswhom-sys" 5001 - version = "0.1.2" 5002 - source = "registry+https://github.com/rust-lang/crates.io-index" 5003 - checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" 5004 - dependencies = [ 5005 - "cc", 5006 - "libc", 5007 - ] 5008 - 5009 - [[package]] 5010 - name = "waker-fn" 5011 - version = "1.1.1" 5012 - source = "registry+https://github.com/rust-lang/crates.io-index" 5013 - checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 5014 - 5015 - [[package]] 5016 - name = "walkdir" 5017 - version = "2.4.0" 5018 - source = "registry+https://github.com/rust-lang/crates.io-index" 5019 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 5020 - dependencies = [ 5021 - "same-file", 5022 - "winapi-util", 5023 - ] 5024 - 5025 - [[package]] 5026 - name = "want" 5027 - version = "0.3.1" 5028 - source = "registry+https://github.com/rust-lang/crates.io-index" 5029 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5030 - dependencies = [ 5031 - "try-lock", 5032 - ] 5033 - 5034 - [[package]] 5035 - name = "wasi" 5036 - version = "0.9.0+wasi-snapshot-preview1" 5037 - source = "registry+https://github.com/rust-lang/crates.io-index" 5038 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5039 - 5040 - [[package]] 5041 - name = "wasi" 5042 - version = "0.11.0+wasi-snapshot-preview1" 5043 - source = "registry+https://github.com/rust-lang/crates.io-index" 5044 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5045 - 5046 - [[package]] 5047 - name = "wasm-bindgen" 5048 - version = "0.2.87" 5049 - source = "registry+https://github.com/rust-lang/crates.io-index" 5050 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 5051 - dependencies = [ 5052 - "cfg-if", 5053 - "wasm-bindgen-macro", 5054 - ] 5055 - 5056 - [[package]] 5057 - name = "wasm-bindgen-backend" 5058 - version = "0.2.87" 5059 - source = "registry+https://github.com/rust-lang/crates.io-index" 5060 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 5061 - dependencies = [ 5062 - "bumpalo", 5063 - "log", 5064 - "once_cell", 5065 - "proc-macro2", 5066 - "quote", 5067 - "syn 2.0.38", 5068 - "wasm-bindgen-shared", 5069 - ] 5070 - 5071 - [[package]] 5072 - name = "wasm-bindgen-futures" 5073 - version = "0.4.37" 5074 - source = "registry+https://github.com/rust-lang/crates.io-index" 5075 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5076 - dependencies = [ 5077 - "cfg-if", 5078 - "js-sys", 5079 - "wasm-bindgen", 5080 - "web-sys", 5081 - ] 5082 - 5083 - [[package]] 5084 - name = "wasm-bindgen-macro" 5085 - version = "0.2.87" 5086 - source = "registry+https://github.com/rust-lang/crates.io-index" 5087 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 5088 - dependencies = [ 5089 - "quote", 5090 - "wasm-bindgen-macro-support", 5091 - ] 5092 - 5093 - [[package]] 5094 - name = "wasm-bindgen-macro-support" 5095 - version = "0.2.87" 5096 - source = "registry+https://github.com/rust-lang/crates.io-index" 5097 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 5098 - dependencies = [ 5099 - "proc-macro2", 5100 - "quote", 5101 - "syn 2.0.38", 5102 - "wasm-bindgen-backend", 5103 - "wasm-bindgen-shared", 5104 - ] 5105 - 5106 - [[package]] 5107 - name = "wasm-bindgen-shared" 5108 - version = "0.2.87" 5109 - source = "registry+https://github.com/rust-lang/crates.io-index" 5110 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5111 - 5112 - [[package]] 5113 - name = "wasm-streams" 5114 - version = "0.3.0" 5115 - source = "registry+https://github.com/rust-lang/crates.io-index" 5116 - checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 5117 - dependencies = [ 5118 - "futures-util", 5119 - "js-sys", 5120 - "wasm-bindgen", 5121 - "wasm-bindgen-futures", 5122 - "web-sys", 5123 - ] 5124 - 5125 - [[package]] 5126 - name = "web-sys" 5127 - version = "0.3.64" 5128 - source = "registry+https://github.com/rust-lang/crates.io-index" 5129 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 5130 - dependencies = [ 5131 - "js-sys", 5132 - "wasm-bindgen", 5133 - ] 5134 - 5135 - [[package]] 5136 - name = "webkit2gtk" 5137 - version = "0.18.2" 5138 - source = "registry+https://github.com/rust-lang/crates.io-index" 5139 - checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370" 5140 - dependencies = [ 5141 - "bitflags 1.3.2", 5142 - "cairo-rs", 5143 - "gdk", 5144 - "gdk-sys", 5145 - "gio", 5146 - "gio-sys", 5147 - "glib", 5148 - "glib-sys", 5149 - "gobject-sys", 5150 - "gtk", 5151 - "gtk-sys", 5152 - "javascriptcore-rs", 5153 - "libc", 5154 - "once_cell", 5155 - "soup2", 5156 - "webkit2gtk-sys", 5157 - ] 5158 - 5159 - [[package]] 5160 - name = "webkit2gtk-sys" 5161 - version = "0.18.0" 5162 - source = "registry+https://github.com/rust-lang/crates.io-index" 5163 - checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 5164 - dependencies = [ 5165 - "atk-sys", 5166 - "bitflags 1.3.2", 5167 - "cairo-sys-rs", 5168 - "gdk-pixbuf-sys", 5169 - "gdk-sys", 5170 - "gio-sys", 5171 - "glib-sys", 5172 - "gobject-sys", 5173 - "gtk-sys", 5174 - "javascriptcore-rs-sys", 5175 - "libc", 5176 - "pango-sys", 5177 - "pkg-config", 5178 - "soup2-sys", 5179 - "system-deps 6.1.2", 5180 - ] 5181 - 5182 - [[package]] 5183 - name = "webview2-com" 5184 - version = "0.19.1" 5185 - source = "registry+https://github.com/rust-lang/crates.io-index" 5186 - checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178" 5187 - dependencies = [ 5188 - "webview2-com-macros", 5189 - "webview2-com-sys", 5190 - "windows 0.39.0", 5191 - "windows-implement", 5192 - ] 5193 - 5194 - [[package]] 5195 - name = "webview2-com-macros" 5196 - version = "0.6.0" 5197 - source = "registry+https://github.com/rust-lang/crates.io-index" 5198 - checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 5199 - dependencies = [ 5200 - "proc-macro2", 5201 - "quote", 5202 - "syn 1.0.109", 5203 - ] 5204 - 5205 - [[package]] 5206 - name = "webview2-com-sys" 5207 - version = "0.19.0" 5208 - source = "registry+https://github.com/rust-lang/crates.io-index" 5209 - checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7" 5210 - dependencies = [ 5211 - "regex", 5212 - "serde", 5213 - "serde_json", 5214 - "thiserror", 5215 - "windows 0.39.0", 5216 - "windows-bindgen", 5217 - "windows-metadata", 5218 - ] 5219 - 5220 - [[package]] 5221 - name = "winapi" 5222 - version = "0.3.9" 5223 - source = "registry+https://github.com/rust-lang/crates.io-index" 5224 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5225 - dependencies = [ 5226 - "winapi-i686-pc-windows-gnu", 5227 - "winapi-x86_64-pc-windows-gnu", 5228 - ] 5229 - 5230 - [[package]] 5231 - name = "winapi-i686-pc-windows-gnu" 5232 - version = "0.4.0" 5233 - source = "registry+https://github.com/rust-lang/crates.io-index" 5234 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5235 - 5236 - [[package]] 5237 - name = "winapi-util" 5238 - version = "0.1.6" 5239 - source = "registry+https://github.com/rust-lang/crates.io-index" 5240 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 5241 - dependencies = [ 5242 - "winapi", 5243 - ] 5244 - 5245 - [[package]] 5246 - name = "winapi-x86_64-pc-windows-gnu" 5247 - version = "0.4.0" 5248 - source = "registry+https://github.com/rust-lang/crates.io-index" 5249 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5250 - 5251 - [[package]] 5252 - name = "window-shadows" 5253 - version = "0.2.2" 5254 - source = "registry+https://github.com/rust-lang/crates.io-index" 5255 - checksum = "67ff424735b1ac21293b0492b069394b0a189c8a463fb015a16dea7c2e221c08" 5256 - dependencies = [ 5257 - "cocoa 0.25.0", 5258 - "objc", 5259 - "raw-window-handle", 5260 - "windows-sys 0.48.0", 5261 - ] 5262 - 5263 - [[package]] 5264 - name = "window-vibrancy" 5265 - version = "0.4.2" 5266 - source = "registry+https://github.com/rust-lang/crates.io-index" 5267 - checksum = "5931735e675b972fada30c7a402915d4d827aa5ef6c929c133d640c4b785e963" 5268 - dependencies = [ 5269 - "cocoa 0.25.0", 5270 - "objc", 5271 - "raw-window-handle", 5272 - "windows-sys 0.48.0", 5273 - ] 5274 - 5275 - [[package]] 5276 - name = "windows" 5277 - version = "0.37.0" 5278 - source = "registry+https://github.com/rust-lang/crates.io-index" 5279 - checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 5280 - dependencies = [ 5281 - "windows_aarch64_msvc 0.37.0", 5282 - "windows_i686_gnu 0.37.0", 5283 - "windows_i686_msvc 0.37.0", 5284 - "windows_x86_64_gnu 0.37.0", 5285 - "windows_x86_64_msvc 0.37.0", 5286 - ] 5287 - 5288 - [[package]] 5289 - name = "windows" 5290 - version = "0.39.0" 5291 - source = "registry+https://github.com/rust-lang/crates.io-index" 5292 - checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 5293 - dependencies = [ 5294 - "windows-implement", 5295 - "windows_aarch64_msvc 0.39.0", 5296 - "windows_i686_gnu 0.39.0", 5297 - "windows_i686_msvc 0.39.0", 5298 - "windows_x86_64_gnu 0.39.0", 5299 - "windows_x86_64_msvc 0.39.0", 5300 - ] 5301 - 5302 - [[package]] 5303 - name = "windows" 5304 - version = "0.48.0" 5305 - source = "registry+https://github.com/rust-lang/crates.io-index" 5306 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 5307 - dependencies = [ 5308 - "windows-targets 0.48.5", 5309 - ] 5310 - 5311 - [[package]] 5312 - name = "windows" 5313 - version = "0.51.1" 5314 - source = "registry+https://github.com/rust-lang/crates.io-index" 5315 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 5316 - dependencies = [ 5317 - "windows-core", 5318 - "windows-targets 0.48.5", 5319 - ] 5320 - 5321 - [[package]] 5322 - name = "windows-bindgen" 5323 - version = "0.39.0" 5324 - source = "registry+https://github.com/rust-lang/crates.io-index" 5325 - checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41" 5326 - dependencies = [ 5327 - "windows-metadata", 5328 - "windows-tokens", 5329 - ] 5330 - 5331 - [[package]] 5332 - name = "windows-core" 5333 - version = "0.51.1" 5334 - source = "registry+https://github.com/rust-lang/crates.io-index" 5335 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5336 - dependencies = [ 5337 - "windows-targets 0.48.5", 5338 - ] 5339 - 5340 - [[package]] 5341 - name = "windows-implement" 5342 - version = "0.39.0" 5343 - source = "registry+https://github.com/rust-lang/crates.io-index" 5344 - checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7" 5345 - dependencies = [ 5346 - "syn 1.0.109", 5347 - "windows-tokens", 5348 - ] 5349 - 5350 - [[package]] 5351 - name = "windows-metadata" 5352 - version = "0.39.0" 5353 - source = "registry+https://github.com/rust-lang/crates.io-index" 5354 - checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 5355 - 5356 - [[package]] 5357 - name = "windows-sys" 5358 - version = "0.42.0" 5359 - source = "registry+https://github.com/rust-lang/crates.io-index" 5360 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5361 - dependencies = [ 5362 - "windows_aarch64_gnullvm 0.42.2", 5363 - "windows_aarch64_msvc 0.42.2", 5364 - "windows_i686_gnu 0.42.2", 5365 - "windows_i686_msvc 0.42.2", 5366 - "windows_x86_64_gnu 0.42.2", 5367 - "windows_x86_64_gnullvm 0.42.2", 5368 - "windows_x86_64_msvc 0.42.2", 5369 - ] 5370 - 5371 - [[package]] 5372 - name = "windows-sys" 5373 - version = "0.45.0" 5374 - source = "registry+https://github.com/rust-lang/crates.io-index" 5375 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5376 - dependencies = [ 5377 - "windows-targets 0.42.2", 5378 - ] 5379 - 5380 - [[package]] 5381 - name = "windows-sys" 5382 - version = "0.48.0" 5383 - source = "registry+https://github.com/rust-lang/crates.io-index" 5384 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5385 - dependencies = [ 5386 - "windows-targets 0.48.5", 5387 - ] 5388 - 5389 - [[package]] 5390 - name = "windows-targets" 5391 - version = "0.42.2" 5392 - source = "registry+https://github.com/rust-lang/crates.io-index" 5393 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 5394 - dependencies = [ 5395 - "windows_aarch64_gnullvm 0.42.2", 5396 - "windows_aarch64_msvc 0.42.2", 5397 - "windows_i686_gnu 0.42.2", 5398 - "windows_i686_msvc 0.42.2", 5399 - "windows_x86_64_gnu 0.42.2", 5400 - "windows_x86_64_gnullvm 0.42.2", 5401 - "windows_x86_64_msvc 0.42.2", 5402 - ] 5403 - 5404 - [[package]] 5405 - name = "windows-targets" 5406 - version = "0.48.5" 5407 - source = "registry+https://github.com/rust-lang/crates.io-index" 5408 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5409 - dependencies = [ 5410 - "windows_aarch64_gnullvm 0.48.5", 5411 - "windows_aarch64_msvc 0.48.5", 5412 - "windows_i686_gnu 0.48.5", 5413 - "windows_i686_msvc 0.48.5", 5414 - "windows_x86_64_gnu 0.48.5", 5415 - "windows_x86_64_gnullvm 0.48.5", 5416 - "windows_x86_64_msvc 0.48.5", 5417 - ] 5418 - 5419 - [[package]] 5420 - name = "windows-tokens" 5421 - version = "0.39.0" 5422 - source = "registry+https://github.com/rust-lang/crates.io-index" 5423 - checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 5424 - 5425 - [[package]] 5426 - name = "windows_aarch64_gnullvm" 5427 - version = "0.42.2" 5428 - source = "registry+https://github.com/rust-lang/crates.io-index" 5429 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 5430 - 5431 - [[package]] 5432 - name = "windows_aarch64_gnullvm" 5433 - version = "0.48.5" 5434 - source = "registry+https://github.com/rust-lang/crates.io-index" 5435 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5436 - 5437 - [[package]] 5438 - name = "windows_aarch64_msvc" 5439 - version = "0.37.0" 5440 - source = "registry+https://github.com/rust-lang/crates.io-index" 5441 - checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 5442 - 5443 - [[package]] 5444 - name = "windows_aarch64_msvc" 5445 - version = "0.39.0" 5446 - source = "registry+https://github.com/rust-lang/crates.io-index" 5447 - checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 5448 - 5449 - [[package]] 5450 - name = "windows_aarch64_msvc" 5451 - version = "0.42.2" 5452 - source = "registry+https://github.com/rust-lang/crates.io-index" 5453 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5454 - 5455 - [[package]] 5456 - name = "windows_aarch64_msvc" 5457 - version = "0.48.5" 5458 - source = "registry+https://github.com/rust-lang/crates.io-index" 5459 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5460 - 5461 - [[package]] 5462 - name = "windows_i686_gnu" 5463 - version = "0.37.0" 5464 - source = "registry+https://github.com/rust-lang/crates.io-index" 5465 - checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 5466 - 5467 - [[package]] 5468 - name = "windows_i686_gnu" 5469 - version = "0.39.0" 5470 - source = "registry+https://github.com/rust-lang/crates.io-index" 5471 - checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 5472 - 5473 - [[package]] 5474 - name = "windows_i686_gnu" 5475 - version = "0.42.2" 5476 - source = "registry+https://github.com/rust-lang/crates.io-index" 5477 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5478 - 5479 - [[package]] 5480 - name = "windows_i686_gnu" 5481 - version = "0.48.5" 5482 - source = "registry+https://github.com/rust-lang/crates.io-index" 5483 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5484 - 5485 - [[package]] 5486 - name = "windows_i686_msvc" 5487 - version = "0.37.0" 5488 - source = "registry+https://github.com/rust-lang/crates.io-index" 5489 - checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 5490 - 5491 - [[package]] 5492 - name = "windows_i686_msvc" 5493 - version = "0.39.0" 5494 - source = "registry+https://github.com/rust-lang/crates.io-index" 5495 - checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 5496 - 5497 - [[package]] 5498 - name = "windows_i686_msvc" 5499 - version = "0.42.2" 5500 - source = "registry+https://github.com/rust-lang/crates.io-index" 5501 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5502 - 5503 - [[package]] 5504 - name = "windows_i686_msvc" 5505 - version = "0.48.5" 5506 - source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5508 - 5509 - [[package]] 5510 - name = "windows_x86_64_gnu" 5511 - version = "0.37.0" 5512 - source = "registry+https://github.com/rust-lang/crates.io-index" 5513 - checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 5514 - 5515 - [[package]] 5516 - name = "windows_x86_64_gnu" 5517 - version = "0.39.0" 5518 - source = "registry+https://github.com/rust-lang/crates.io-index" 5519 - checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 5520 - 5521 - [[package]] 5522 - name = "windows_x86_64_gnu" 5523 - version = "0.42.2" 5524 - source = "registry+https://github.com/rust-lang/crates.io-index" 5525 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5526 - 5527 - [[package]] 5528 - name = "windows_x86_64_gnu" 5529 - version = "0.48.5" 5530 - source = "registry+https://github.com/rust-lang/crates.io-index" 5531 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5532 - 5533 - [[package]] 5534 - name = "windows_x86_64_gnullvm" 5535 - version = "0.42.2" 5536 - source = "registry+https://github.com/rust-lang/crates.io-index" 5537 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5538 - 5539 - [[package]] 5540 - name = "windows_x86_64_gnullvm" 5541 - version = "0.48.5" 5542 - source = "registry+https://github.com/rust-lang/crates.io-index" 5543 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5544 - 5545 - [[package]] 5546 - name = "windows_x86_64_msvc" 5547 - version = "0.37.0" 5548 - source = "registry+https://github.com/rust-lang/crates.io-index" 5549 - checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 5550 - 5551 - [[package]] 5552 - name = "windows_x86_64_msvc" 5553 - version = "0.39.0" 5554 - source = "registry+https://github.com/rust-lang/crates.io-index" 5555 - checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 5556 - 5557 - [[package]] 5558 - name = "windows_x86_64_msvc" 5559 - version = "0.42.2" 5560 - source = "registry+https://github.com/rust-lang/crates.io-index" 5561 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5562 - 5563 - [[package]] 5564 - name = "windows_x86_64_msvc" 5565 - version = "0.48.5" 5566 - source = "registry+https://github.com/rust-lang/crates.io-index" 5567 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5568 - 5569 - [[package]] 5570 - name = "winnow" 5571 - version = "0.5.17" 5572 - source = "registry+https://github.com/rust-lang/crates.io-index" 5573 - checksum = "a3b801d0e0a6726477cc207f60162da452f3a95adb368399bef20a946e06f65c" 5574 - dependencies = [ 5575 - "memchr", 5576 - ] 5577 - 5578 - [[package]] 5579 - name = "winreg" 5580 - version = "0.50.0" 5581 - source = "registry+https://github.com/rust-lang/crates.io-index" 5582 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5583 - dependencies = [ 5584 - "cfg-if", 5585 - "windows-sys 0.48.0", 5586 - ] 5587 - 5588 - [[package]] 5589 - name = "winreg" 5590 - version = "0.51.0" 5591 - source = "registry+https://github.com/rust-lang/crates.io-index" 5592 - checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" 5593 - dependencies = [ 5594 - "cfg-if", 5595 - "windows-sys 0.48.0", 5596 - ] 5597 - 5598 - [[package]] 5599 - name = "wry" 5600 - version = "0.24.4" 5601 - source = "registry+https://github.com/rust-lang/crates.io-index" 5602 - checksum = "88ef04bdad49eba2e01f06e53688c8413bd6a87b0bc14b72284465cf96e3578e" 5603 - dependencies = [ 5604 - "base64 0.13.1", 5605 - "block", 5606 - "cocoa 0.24.1", 5607 - "core-graphics 0.22.3", 5608 - "crossbeam-channel", 5609 - "dunce", 5610 - "gdk", 5611 - "gio", 5612 - "glib", 5613 - "gtk", 5614 - "html5ever 0.25.2", 5615 - "http", 5616 - "kuchiki", 5617 - "libc", 5618 - "log", 5619 - "objc", 5620 - "objc_id", 5621 - "once_cell", 5622 - "serde", 5623 - "serde_json", 5624 - "sha2", 5625 - "soup2", 5626 - "tao", 5627 - "thiserror", 5628 - "url", 5629 - "webkit2gtk", 5630 - "webkit2gtk-sys", 5631 - "webview2-com", 5632 - "windows 0.39.0", 5633 - "windows-implement", 5634 - ] 5635 - 5636 - [[package]] 5637 - name = "wyz" 5638 - version = "0.5.1" 5639 - source = "registry+https://github.com/rust-lang/crates.io-index" 5640 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5641 - dependencies = [ 5642 - "tap", 5643 - ] 5644 - 5645 - [[package]] 5646 - name = "x11" 5647 - version = "2.21.0" 5648 - source = "registry+https://github.com/rust-lang/crates.io-index" 5649 - checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 5650 - dependencies = [ 5651 - "libc", 5652 - "pkg-config", 5653 - ] 5654 - 5655 - [[package]] 5656 - name = "x11-dl" 5657 - version = "2.21.0" 5658 - source = "registry+https://github.com/rust-lang/crates.io-index" 5659 - checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 5660 - dependencies = [ 5661 - "libc", 5662 - "once_cell", 5663 - "pkg-config", 5664 - ] 5665 - 5666 - [[package]] 5667 - name = "xattr" 5668 - version = "1.0.1" 5669 - source = "registry+https://github.com/rust-lang/crates.io-index" 5670 - checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 5671 - dependencies = [ 5672 - "libc", 5673 - ] 5674 - 5675 - [[package]] 5676 - name = "xdg-home" 5677 - version = "1.0.0" 5678 - source = "registry+https://github.com/rust-lang/crates.io-index" 5679 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 5680 - dependencies = [ 5681 - "nix", 5682 - "winapi", 5683 - ] 5684 - 5685 - [[package]] 5686 - name = "zbus" 5687 - version = "3.14.1" 5688 - source = "registry+https://github.com/rust-lang/crates.io-index" 5689 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 5690 - dependencies = [ 5691 - "async-broadcast", 5692 - "async-executor", 5693 - "async-fs", 5694 - "async-io", 5695 - "async-lock", 5696 - "async-process", 5697 - "async-recursion", 5698 - "async-task", 5699 - "async-trait", 5700 - "blocking", 5701 - "byteorder", 5702 - "derivative", 5703 - "enumflags2", 5704 - "event-listener 2.5.3", 5705 - "futures-core", 5706 - "futures-sink", 5707 - "futures-util", 5708 - "hex", 5709 - "nix", 5710 - "once_cell", 5711 - "ordered-stream", 5712 - "rand 0.8.5", 5713 - "serde", 5714 - "serde_repr", 5715 - "sha1", 5716 - "static_assertions", 5717 - "tracing", 5718 - "uds_windows", 5719 - "winapi", 5720 - "xdg-home", 5721 - "zbus_macros", 5722 - "zbus_names", 5723 - "zvariant", 5724 - ] 5725 - 5726 - [[package]] 5727 - name = "zbus_macros" 5728 - version = "3.14.1" 5729 - source = "registry+https://github.com/rust-lang/crates.io-index" 5730 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 5731 - dependencies = [ 5732 - "proc-macro-crate", 5733 - "proc-macro2", 5734 - "quote", 5735 - "regex", 5736 - "syn 1.0.109", 5737 - "zvariant_utils", 5738 - ] 5739 - 5740 - [[package]] 5741 - name = "zbus_names" 5742 - version = "2.6.0" 5743 - source = "registry+https://github.com/rust-lang/crates.io-index" 5744 - checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 5745 - dependencies = [ 5746 - "serde", 5747 - "static_assertions", 5748 - "zvariant", 5749 - ] 5750 - 5751 - [[package]] 5752 - name = "zeroize" 5753 - version = "1.6.0" 5754 - source = "registry+https://github.com/rust-lang/crates.io-index" 5755 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 5756 - 5757 - [[package]] 5758 - name = "zip" 5759 - version = "0.6.6" 5760 - source = "registry+https://github.com/rust-lang/crates.io-index" 5761 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 5762 - dependencies = [ 5763 - "byteorder", 5764 - "crc32fast", 5765 - "crossbeam-utils", 5766 - ] 5767 - 5768 - [[package]] 5769 - name = "zvariant" 5770 - version = "3.15.0" 5771 - source = "registry+https://github.com/rust-lang/crates.io-index" 5772 - checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 5773 - dependencies = [ 5774 - "byteorder", 5775 - "enumflags2", 5776 - "libc", 5777 - "serde", 5778 - "static_assertions", 5779 - "zvariant_derive", 5780 - ] 5781 - 5782 - [[package]] 5783 - name = "zvariant_derive" 5784 - version = "3.15.0" 5785 - source = "registry+https://github.com/rust-lang/crates.io-index" 5786 - checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 5787 - dependencies = [ 5788 - "proc-macro-crate", 5789 - "proc-macro2", 5790 - "quote", 5791 - "syn 1.0.109", 5792 - "zvariant_utils", 5793 - ] 5794 - 5795 - [[package]] 5796 - name = "zvariant_utils" 5797 - version = "1.0.1" 5798 - source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 5800 - dependencies = [ 5801 - "proc-macro2", 5802 - "quote", 5803 - "syn 1.0.109", 5804 - ]
-79
pkgs/by-name/ki/kiwitalk/package.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , stdenv 4 - , rustc 5 - , rustPlatform 6 - , cargo 7 - , cargo-tauri 8 - , desktop-file-utils 9 - , openssl 10 - , libayatana-appindicator 11 - , webkitgtk_4_0 12 - , pkg-config 13 - , pnpm 14 - , nodejs 15 - }: 16 - 17 - stdenv.mkDerivation (finalAttrs: { 18 - pname = "kiwitalk"; 19 - version = "0.5.1"; 20 - 21 - src = fetchFromGitHub { 22 - owner = "KiwiTalk"; 23 - repo = "KiwiTalk"; 24 - rev = "v${finalAttrs.version}"; 25 - hash = "sha256-Th8q+Zbc102fIk2v7O3OOeSriUV/ydz60QwxzmS7AY8="; 26 - }; 27 - 28 - postPatch = '' 29 - substituteInPlace $cargoDepsCopy/libappindicator-sys-*/src/lib.rs \ 30 - --replace-warn "libayatana-appindicator3.so.1" "${libayatana-appindicator}/lib/libayatana-appindicator3.so.1" 31 - ln -sf ${./Cargo.lock} Cargo.lock 32 - ''; 33 - 34 - pnpmDeps = pnpm.fetchDeps { 35 - inherit (finalAttrs) pname version src; 36 - hash = "sha256-gf3vmKUta8KksUOxyhQS4UO6ycAJDfEicyXVGMW8+4c="; 37 - }; 38 - 39 - cargoDeps = rustPlatform.importCargoLock { 40 - lockFile = ./Cargo.lock; 41 - outputHashes = { 42 - "tauri-plugin-log-0.0.0" = "sha256-8BrFf7vheMJIaZD0oXpi8V4hmUJFzHJmkcRtPL1/J48="; 43 - "tauri-plugin-single-instance-0.0.0" = "sha256-8BrFf7vheMJIaZD0oXpi8V4hmUJFzHJmkcRtPL1/J48="; 44 - }; 45 - }; 46 - 47 - nativeBuildInputs = [ 48 - rustPlatform.cargoSetupHook 49 - cargo 50 - rustc 51 - cargo-tauri.hook 52 - desktop-file-utils 53 - nodejs 54 - pnpm.configHook 55 - pkg-config 56 - ]; 57 - 58 - buildInputs = [ 59 - openssl 60 - libayatana-appindicator 61 - webkitgtk_4_0 62 - ]; 63 - 64 - postInstall = lib.optionalString stdenv.isLinux '' 65 - desktop-file-edit \ 66 - --set-comment "An UNOFFICIAL cross-platform KakaoTalk client" \ 67 - --set-key="Categories" --set-value="Network;InstantMessaging;" \ 68 - $out/share/applications/kiwi-talk.desktop 69 - ''; 70 - 71 - meta = with lib; { 72 - description = "UNOFFICIAL cross-platform KakaoTalk client written in TypeScript & Rust (SolidJS, tauri)"; 73 - homepage = "https://github.com/KiwiTalk/KiwiTalk"; 74 - maintainers = with maintainers; [ honnip ]; 75 - license = licenses.asl20; 76 - platforms = platforms.linux ++ platforms.darwin; 77 - mainProgram = "kiwi-talk"; 78 - }; 79 - })
+12
pkgs/by-name/li/libguestfs-with-appliance/package.nix
··· 1 + { 2 + lib, 3 + libguestfs, 4 + libguestfs-appliance, 5 + }: 6 + 7 + # https://github.com/NixOS/nixpkgs/issues/280881 8 + lib.warnIf (builtins.compareVersions libguestfs.version libguestfs-appliance.version > 0) 9 + "libguestfs has a higher version than libguestfs-appliance (${libguestfs.version} > ${libguestfs-appliance.version}), runtime errors may occur!" 10 + 11 + libguestfs.override 12 + { appliance = libguestfs-appliance; }
+17
pkgs/by-name/li/libguestfs/Revert-perl-Pass-CFLAGS-through-extra_linker_flags.patch
··· 1 + Subject: [PATCH] Revert "perl: Pass @CFLAGS@ through extra_linker_flags" 2 + 3 + This reverts commit be06cb048b595200bf7d1cec9684ab7958188b97. 4 + --- 5 + --- a/perl/Build.PL.in 6 + +++ b/perl/Build.PL.in 7 + @@ -65,8 +65,6 @@ my $build = Module::Build->new ( 8 + '@top_srcdir@/include', 9 + ], 10 + extra_linker_flags => [ 11 + - '-DGUESTFS_PRIVATE=1', 12 + - split (' ', '@CFLAGS@'), 13 + '-L@top_builddir@/lib/.libs', 14 + '-lguestfs', 15 + ], 16 + -- 17 + 2.44.1
+201
pkgs/by-name/li/libguestfs/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + pkg-config, 6 + autoreconfHook, 7 + makeWrapper, 8 + removeReferencesTo, 9 + libxcrypt, 10 + ncurses, 11 + cpio, 12 + gperf, 13 + cdrkit, 14 + flex, 15 + bison, 16 + qemu, 17 + pcre2, 18 + augeas, 19 + libxml2, 20 + acl, 21 + libcap, 22 + libcap_ng, 23 + libconfig, 24 + systemdLibs, 25 + fuse, 26 + yajl, 27 + libvirt, 28 + hivex, 29 + db, 30 + gmp, 31 + readline, 32 + file, 33 + numactl, 34 + libapparmor, 35 + jansson, 36 + getopt, 37 + perlPackages, 38 + ocamlPackages, 39 + libtirpc, 40 + appliance ? null, 41 + javaSupport ? false, 42 + jdk, 43 + zstd, 44 + }: 45 + 46 + assert appliance == null || lib.isDerivation appliance; 47 + 48 + stdenv.mkDerivation (finalAttrs: { 49 + pname = "libguestfs"; 50 + 51 + version = "1.54.0"; 52 + 53 + src = fetchurl { 54 + url = "https://libguestfs.org/download/${lib.versions.majorMinor finalAttrs.version}-stable/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; 55 + sha256 = "sha256-tK+g+P1YAgXqVUjUaLxuQ8O+y5leL2DmMmVSemMFQkY="; 56 + }; 57 + 58 + strictDeps = true; 59 + nativeBuildInputs = 60 + [ 61 + autoreconfHook 62 + removeReferencesTo 63 + bison 64 + cdrkit 65 + cpio 66 + flex 67 + getopt 68 + gperf 69 + makeWrapper 70 + pkg-config 71 + qemu 72 + zstd 73 + ] 74 + ++ (with perlPackages; [ 75 + perl 76 + libintl-perl 77 + GetoptLong 78 + ModuleBuild 79 + ]) 80 + ++ (with ocamlPackages; [ 81 + ocaml 82 + findlib 83 + ]); 84 + buildInputs = [ 85 + libxcrypt 86 + ncurses 87 + jansson 88 + pcre2 89 + augeas 90 + libxml2 91 + acl 92 + libcap 93 + libcap_ng 94 + libconfig 95 + systemdLibs 96 + fuse 97 + yajl 98 + libvirt 99 + gmp 100 + readline 101 + file 102 + hivex 103 + db 104 + numactl 105 + libapparmor 106 + perlPackages.ModuleBuild 107 + libtirpc 108 + zstd 109 + ocamlPackages.ocamlbuild 110 + ocamlPackages.ocaml_libvirt 111 + ocamlPackages.ounit 112 + ocamlPackages.augeas 113 + ocamlPackages.ocamlbuild 114 + ] ++ lib.optional javaSupport jdk; 115 + 116 + prePatch = '' 117 + patchShebangs . 118 + ''; 119 + configureFlags = [ 120 + "--enable-daemon" 121 + "--enable-install-daemon" 122 + "--disable-appliance" 123 + "--with-distro=NixOS" 124 + "--with-readline" 125 + "CPPFLAGS=-I${lib.getDev libxml2}/include/libxml2" 126 + "INSTALL_OCAMLLIB=${placeholder "out"}/lib/ocaml" 127 + "--with-guestfs-path=${placeholder "out"}/lib/guestfs" 128 + ] ++ lib.optionals (!javaSupport) [ "--without-java" ]; 129 + 130 + patches = [ 131 + ./libguestfs-syms.patch 132 + # Fixes PERL Sys-Guestfs build failure 133 + ./Revert-perl-Pass-CFLAGS-through-extra_linker_flags.patch 134 + ]; 135 + 136 + createFindlibDestdir = true; 137 + 138 + installFlags = [ "REALLY_INSTALL=yes" ]; 139 + enableParallelBuilding = true; 140 + 141 + outputs = [ 142 + "out" 143 + "guestfsd" 144 + ]; 145 + 146 + postInstall = '' 147 + # move guestfsd (the component running in the appliance) to a separate output 148 + mkdir -p $guestfsd/bin 149 + mv $out/sbin/guestfsd $guestfsd/bin/guestfsd 150 + remove-references-to -t $out $guestfsd/bin/guestfsd 151 + 152 + mv "$out/lib/ocaml/guestfs" "$OCAMLFIND_DESTDIR/guestfs" 153 + for bin in $out/bin/*; do 154 + wrapProgram "$bin" \ 155 + --prefix PATH : "$out/bin:${hivex}/bin:${qemu}/bin" \ 156 + --prefix PERL5LIB : "$out/${perlPackages.perl.libPrefix}" 157 + done 158 + ''; 159 + 160 + postFixup = lib.optionalString (appliance != null) '' 161 + mkdir -p $out/{lib,lib64} 162 + ln -s ${appliance} $out/lib64/guestfs 163 + ln -s ${appliance} $out/lib/guestfs 164 + ''; 165 + 166 + doInstallCheck = appliance != null; 167 + installCheckPhase = '' 168 + runHook preInstallCheck 169 + 170 + export HOME=$(mktemp -d) # avoid access to /homeless-shelter/.guestfish 171 + 172 + ${qemu}/bin/qemu-img create -f qcow2 disk1.img 10G 173 + 174 + $out/bin/guestfish <<'EOF' 175 + add-drive disk1.img 176 + run 177 + list-filesystems 178 + part-disk /dev/sda mbr 179 + mkfs ext2 /dev/sda1 180 + list-filesystems 181 + EOF 182 + 183 + runHook postInstallCheck 184 + ''; 185 + 186 + meta = { 187 + description = "Tools for accessing and modifying virtual machine disk images"; 188 + license = with lib.licenses; [ 189 + gpl2Plus 190 + lgpl21Plus 191 + ]; 192 + homepage = "https://libguestfs.org/"; 193 + maintainers = with lib.maintainers; [ 194 + offline 195 + lukts30 196 + ]; 197 + platforms = lib.platforms.linux; 198 + # this is to avoid "output size exceeded" 199 + hydraPlatforms = if appliance != null then appliance.meta.hydraPlatforms else lib.platforms.linux; 200 + }; 201 + })
+22 -22
pkgs/by-name/py/pylyzer/Cargo.lock
··· 37 37 38 38 [[package]] 39 39 name = "anyhow" 40 - version = "1.0.89" 40 + version = "1.0.90" 41 41 source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" 42 + checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" 43 43 44 44 [[package]] 45 45 name = "autocfg" ··· 145 145 146 146 [[package]] 147 147 name = "els" 148 - version = "0.1.58" 148 + version = "0.1.59-nightly.2" 149 149 source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "ab76dea4883a3e75fab38a6cd6c761346fec5909850c557fcbd683f7bd30b54e" 150 + checksum = "a2f90c210a0919808e48b96ecffd370ac788386ab061203132872e9bf1ad9f7f" 151 151 dependencies = [ 152 152 "erg_common", 153 153 "erg_compiler", ··· 161 161 162 162 [[package]] 163 163 name = "erg_common" 164 - version = "0.6.46" 164 + version = "0.6.47-nightly.2" 165 165 source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "9cef7281a06474cd12e7eb653d164777023440b13a28c8834124770c4b8f65fa" 166 + checksum = "d41f171eb77bf2763b119893966358ad9da72a3edd43cf278a78cf1c16daa2cf" 167 167 dependencies = [ 168 168 "backtrace-on-stack-overflow", 169 169 "erg_proc_macros", ··· 174 174 175 175 [[package]] 176 176 name = "erg_compiler" 177 - version = "0.6.46" 177 + version = "0.6.47-nightly.2" 178 178 source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "0bf1c1e83a364fafbcec194a27affd02bf4538740c34c1617c45d960d4a3e33c" 179 + checksum = "93d0486bc668c120faf7af954dd4046224185c28821fb945a97eedcadf3e7d58" 180 180 dependencies = [ 181 181 "erg_common", 182 182 "erg_parser", ··· 184 184 185 185 [[package]] 186 186 name = "erg_parser" 187 - version = "0.6.46" 187 + version = "0.6.47-nightly.2" 188 188 source = "registry+https://github.com/rust-lang/crates.io-index" 189 - checksum = "9c65037a0c9b890d8f810f7a827b897fba6ae950b34258b1450c9ab1e310813c" 189 + checksum = "98c37f58f3aef2e765610e7281ada15dbba707beaa0262a71e7f6958ee058ed0" 190 190 dependencies = [ 191 191 "erg_common", 192 192 "erg_proc_macros", ··· 195 195 196 196 [[package]] 197 197 name = "erg_proc_macros" 198 - version = "0.6.46" 198 + version = "0.6.47-nightly.2" 199 199 source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "29d7235082b39bf55cdec52da8c010c2d2d9ff7d41dde051158b7815f560f321" 200 + checksum = "97fa545f626fd04abea193a07c364c4fca3903c228bbe9cca4895500944b5aaf" 201 201 dependencies = [ 202 202 "quote", 203 203 "syn 1.0.109", ··· 292 292 293 293 [[package]] 294 294 name = "libc" 295 - version = "0.2.159" 295 + version = "0.2.161" 296 296 source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" 297 + checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 298 298 299 299 [[package]] 300 300 name = "libm" ··· 554 554 555 555 [[package]] 556 556 name = "proc-macro2" 557 - version = "1.0.87" 557 + version = "1.0.88" 558 558 source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a" 559 + checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" 560 560 dependencies = [ 561 561 "unicode-ident", 562 562 ] 563 563 564 564 [[package]] 565 565 name = "py2erg" 566 - version = "0.0.66" 566 + version = "0.0.67" 567 567 dependencies = [ 568 568 "erg_common", 569 569 "erg_compiler", ··· 573 573 574 574 [[package]] 575 575 name = "pylyzer" 576 - version = "0.0.66" 576 + version = "0.0.67" 577 577 dependencies = [ 578 578 "els", 579 579 "erg_common", ··· 583 583 584 584 [[package]] 585 585 name = "pylyzer_core" 586 - version = "0.0.66" 586 + version = "0.0.67" 587 587 dependencies = [ 588 588 "erg_common", 589 589 "erg_compiler", ··· 594 594 595 595 [[package]] 596 596 name = "pylyzer_wasm" 597 - version = "0.0.66" 597 + version = "0.0.67" 598 598 dependencies = [ 599 599 "erg_common", 600 600 "erg_compiler", ··· 764 764 765 765 [[package]] 766 766 name = "serde_json" 767 - version = "1.0.128" 767 + version = "1.0.131" 768 768 source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 769 + checksum = "67d42a0bd4ac281beff598909bb56a86acaf979b84483e1c79c10dcaf98f8cf3" 770 770 dependencies = [ 771 771 "itoa", 772 772 "memchr",
+2 -2
pkgs/by-name/py/pylyzer/package.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "pylyzer"; 18 - version = "0.0.66"; 18 + version = "0.0.67"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "mtshiba"; 22 22 repo = "pylyzer"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-vDeQ7IuECykBtcu4qvKKhcr/3vCXjN1JyL3/D4kwnng="; 24 + hash = "sha256-UMNyztdcFr88wOpRMBtLigGJcxR+0uScN+8i0+WfeYU="; 25 25 }; 26 26 27 27 cargoLock = {
+30
pkgs/by-name/re/reader/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildGoModule, 5 + }: 6 + let 7 + self = buildGoModule { 8 + pname = "reader"; 9 + version = "0.4.5"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "mrusme"; 13 + repo = "reader"; 14 + rev = "v${self.version}"; 15 + hash = "sha256-9hZ7ZS+p6PoLKcuHS2re537wxojN2SzhOm5gBuRX9Xc="; 16 + }; 17 + 18 + vendorHash = "sha256-obYdifg3WrTyxgN/VtzgpL31ZOyPNtVT8UDQts0WodQ="; 19 + 20 + meta = { 21 + description = "Lightweight tool offering better readability of web pages on the CLI"; 22 + homepage = "https://github.com/mrusme/reader"; 23 + changelog = "https://github.com/mrusme/reader/releases"; 24 + license = lib.licenses.gpl3Plus; 25 + maintainers = with lib.maintainers; [ theobori ]; 26 + mainProgram = "reader"; 27 + }; 28 + }; 29 + in 30 + self
+53
pkgs/by-name/si/simpleini/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + gtest, 7 + nix-update-script, 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "simpleini"; 12 + version = "4.22"; 13 + 14 + src = fetchFromGitHub { 15 + name = "simpleini-sources-${finalAttrs.version}"; 16 + owner = "brofield"; 17 + repo = "simpleini"; 18 + rev = "refs/tags/v${finalAttrs.version}"; 19 + hash = "sha256-H4J4+v/3A8ZTOp4iMeiZ0OClu68oP4vUZ8YOFZbllcM="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + cmake 24 + ]; 25 + 26 + buildInputs = [ 27 + gtest 28 + ]; 29 + 30 + strictDeps = true; 31 + 32 + cmakeFlags = [ (lib.cmakeBool "SIMPLEINI_USE_SYSTEM_GTEST" true) ]; 33 + 34 + passthru.updateScript = nix-update-script { }; 35 + 36 + meta = { 37 + description = "Cross-platform C++ library providing a simple API to read and write INI-style configuration files"; 38 + longDescription = '' 39 + A cross-platform library that provides a simple API to read and write 40 + INI-style configuration files. It supports data files in ASCII, MBCS and 41 + Unicode. It is designed explicitly to be portable to any platform and has 42 + been tested on Windows, WinCE and Linux. Released as open-source and free 43 + using the MIT licence. 44 + ''; 45 + homepage = "https://github.com/brofield/simpleini"; 46 + license = lib.licenses.mit; 47 + maintainers = with lib.maintainers; [ 48 + HeitorAugustoLN 49 + AndersonTorres 50 + ]; 51 + platforms = lib.platforms.all; 52 + }; 53 + })
+6 -3
pkgs/by-name/ss/ssh-tpm-agent/package.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 + , nix-update-script 4 5 , openssl 5 6 }: 6 7 7 8 buildGoModule rec { 8 9 pname = "ssh-tpm-agent"; 9 - version = "0.6.0"; 10 + version = "0.7.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "Foxboron"; 13 14 repo = "ssh-tpm-agent"; 14 15 rev = "v${version}"; 15 - hash = "sha256-gO9qVAVCvaiLrC/GiTJ0NghiXVRXXRBlvOIVSAOftR8="; 16 + hash = "sha256-yK7G+wZIn+kJazKOFOs8EYlRWZkCQuT0qZfmdqbcOnM="; 16 17 }; 17 18 18 19 proxyVendor = true; 19 20 20 - vendorHash = "sha256-Upq8u5Ip0HQW5FGyqhVUT6rINXz2BpCE7lbtk9fPaWs="; 21 + vendorHash = "sha256-njKyBfTG/QCPBBsj3Aom42cv2XqLv4YeS4DhwNQNaLA="; 21 22 22 23 buildInputs = [ 23 24 openssl 24 25 ]; 26 + 27 + passthru.updateScript = nix-update-script { }; 25 28 26 29 meta = with lib; { 27 30 description = "SSH agent with support for TPM sealed keys for public key authentication";
+1247 -943
pkgs/by-name/ty/typstyle/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "addr2line" 7 - version = "0.21.0" 7 + version = "0.24.2" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 9 + checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 10 dependencies = [ 11 11 "gimli", 12 12 ] 13 13 14 14 [[package]] 15 - name = "adler" 16 - version = "1.0.2" 15 + name = "adler2" 16 + version = "2.0.0" 17 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 18 + checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 19 20 20 [[package]] 21 21 name = "ahash" ··· 29 29 ] 30 30 31 31 [[package]] 32 + name = "ahash" 33 + version = "0.8.11" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 36 + dependencies = [ 37 + "cfg-if", 38 + "once_cell", 39 + "version_check", 40 + "zerocopy", 41 + ] 42 + 43 + [[package]] 32 44 name = "aho-corasick" 33 - version = "1.1.2" 45 + version = "1.1.3" 34 46 source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 47 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 36 48 dependencies = [ 37 49 "memchr", 38 50 ] ··· 54 66 55 67 [[package]] 56 68 name = "anstream" 57 - version = "0.6.13" 69 + version = "0.6.15" 58 70 source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 71 + checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 60 72 dependencies = [ 61 73 "anstyle", 62 74 "anstyle-parse", 63 75 "anstyle-query", 64 76 "anstyle-wincon", 65 77 "colorchoice", 78 + "is_terminal_polyfill", 66 79 "utf8parse", 67 80 ] 68 81 69 82 [[package]] 70 83 name = "anstyle" 71 - version = "1.0.6" 84 + version = "1.0.8" 72 85 source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 86 + checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 74 87 75 88 [[package]] 76 89 name = "anstyle-parse" 77 - version = "0.2.3" 90 + version = "0.2.5" 78 91 source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 92 + checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 80 93 dependencies = [ 81 94 "utf8parse", 82 95 ] 83 96 84 97 [[package]] 85 98 name = "anstyle-query" 86 - version = "1.0.2" 99 + version = "1.1.1" 87 100 source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 101 + checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 89 102 dependencies = [ 90 103 "windows-sys 0.52.0", 91 104 ] 92 105 93 106 [[package]] 94 107 name = "anstyle-wincon" 95 - version = "3.0.2" 108 + version = "3.0.4" 96 109 source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 110 + checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 98 111 dependencies = [ 99 112 "anstyle", 100 113 "windows-sys 0.52.0", ··· 102 115 103 116 [[package]] 104 117 name = "anyhow" 105 - version = "1.0.81" 106 - source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" 108 - 109 - [[package]] 110 - name = "append-only-vec" 111 - version = "0.1.3" 118 + version = "1.0.90" 112 119 source = "registry+https://github.com/rust-lang/crates.io-index" 113 - checksum = "f3cb8f874ecf419dd8165d0279746de966cb8966636d028845e3bd65d519812a" 120 + checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" 114 121 115 122 [[package]] 116 123 name = "approx" ··· 122 129 ] 123 130 124 131 [[package]] 132 + name = "archery" 133 + version = "1.2.1" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + checksum = "eae2ed21cd55021f05707a807a5fc85695dafb98832921f6cfa06db67ca5b869" 136 + dependencies = [ 137 + "triomphe", 138 + ] 139 + 140 + [[package]] 125 141 name = "arrayref" 126 - version = "0.3.7" 142 + version = "0.3.9" 127 143 source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 144 + checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 129 145 130 146 [[package]] 131 147 name = "arrayvec" ··· 135 151 136 152 [[package]] 137 153 name = "arrayvec" 138 - version = "0.7.4" 154 + version = "0.7.6" 139 155 source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 156 + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 141 157 142 158 [[package]] 143 159 name = "autocfg" 144 - version = "1.1.0" 160 + version = "1.4.0" 145 161 source = "registry+https://github.com/rust-lang/crates.io-index" 146 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 162 + checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 147 163 148 164 [[package]] 149 165 name = "az" ··· 153 169 154 170 [[package]] 155 171 name = "backtrace" 156 - version = "0.3.71" 172 + version = "0.3.74" 157 173 source = "registry+https://github.com/rust-lang/crates.io-index" 158 - checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 174 + checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 159 175 dependencies = [ 160 176 "addr2line", 161 - "cc", 162 177 "cfg-if", 163 178 "libc", 164 179 "miniz_oxide", 165 180 "object", 166 181 "rustc-demangle", 182 + "windows-targets 0.52.6", 167 183 ] 168 184 169 185 [[package]] 170 186 name = "base64" 171 - version = "0.21.7" 172 - source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 174 - 175 - [[package]] 176 - name = "base64" 177 - version = "0.22.0" 187 + version = "0.22.1" 178 188 source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" 180 - 181 - [[package]] 182 - name = "base64-serde" 183 - version = "0.7.0" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" 186 - dependencies = [ 187 - "base64 0.21.7", 188 - "serde", 189 - ] 189 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 190 190 191 191 [[package]] 192 192 name = "biblatex" 193 - version = "0.9.3" 193 + version = "0.10.0" 194 194 source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "27fe7285040d0227cd8b5395e1c4783f44f0b673eca5a657f4432ae401f2b7b8" 195 + checksum = "a35a7317fcbdbef94b60d0dd0a658711a936accfce4a631fea4bf8e527eff3c2" 196 196 dependencies = [ 197 197 "numerals", 198 198 "paste", 199 - "strum 0.26.2", 199 + "strum 0.26.3", 200 200 "unicode-normalization", 201 201 "unscanny", 202 202 ] ··· 233 233 234 234 [[package]] 235 235 name = "bitflags" 236 - version = "2.4.2" 236 + version = "2.6.0" 237 237 source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 238 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 239 239 dependencies = [ 240 240 "serde", 241 241 ] ··· 263 263 264 264 [[package]] 265 265 name = "bumpalo" 266 - version = "3.15.4" 266 + version = "3.16.0" 267 267 source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 268 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 269 + 270 + [[package]] 271 + name = "by_address" 272 + version = "1.2.1" 273 + source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" 269 275 270 276 [[package]] 271 277 name = "bytecheck" ··· 291 297 292 298 [[package]] 293 299 name = "bytemuck" 294 - version = "1.15.0" 300 + version = "1.19.0" 295 301 source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" 302 + checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" 297 303 298 304 [[package]] 299 305 name = "byteorder" ··· 302 308 checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 303 309 304 310 [[package]] 311 + name = "byteorder-lite" 312 + version = "0.1.0" 313 + source = "registry+https://github.com/rust-lang/crates.io-index" 314 + checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 315 + 316 + [[package]] 305 317 name = "bytes" 306 - version = "1.6.0" 318 + version = "1.7.2" 307 319 source = "registry+https://github.com/rust-lang/crates.io-index" 308 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 320 + checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 309 321 310 322 [[package]] 311 323 name = "camino" 312 - version = "1.1.6" 324 + version = "1.1.9" 313 325 source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 326 + checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" 315 327 dependencies = [ 316 328 "serde", 317 329 ] 318 330 319 331 [[package]] 320 332 name = "cargo-platform" 321 - version = "0.1.7" 333 + version = "0.1.8" 322 334 source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f" 335 + checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" 324 336 dependencies = [ 325 337 "serde", 326 338 ] ··· 341 353 342 354 [[package]] 343 355 name = "cc" 344 - version = "1.0.90" 356 + version = "1.1.30" 345 357 source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 358 + checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945" 347 359 dependencies = [ 348 360 "jobserver", 349 361 "libc", 362 + "shlex", 350 363 ] 351 364 352 365 [[package]] ··· 375 388 376 389 [[package]] 377 390 name = "chrono" 378 - version = "0.4.35" 391 + version = "0.4.38" 379 392 source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a" 393 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 381 394 dependencies = [ 382 395 "android-tzdata", 383 396 "iana-time-zone", 384 397 "num-traits", 385 398 "serde", 386 - "windows-targets 0.52.4", 399 + "windows-targets 0.52.6", 387 400 ] 388 401 389 402 [[package]] ··· 415 428 416 429 [[package]] 417 430 name = "citationberg" 418 - version = "0.3.0" 431 + version = "0.4.0" 419 432 source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "82108f2b676c954076d2e5044f19a6a03887b24bd42804f322e0650d13035899" 433 + checksum = "92fea693c83bd967604be367dc1e1b4895625eabafec2eec66c51092e18e700e" 421 434 dependencies = [ 422 - "quick-xml", 435 + "quick-xml 0.36.2", 423 436 "serde", 424 437 ] 425 438 426 439 [[package]] 427 440 name = "clap" 428 - version = "4.5.4" 441 + version = "4.5.20" 429 442 source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 443 + checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" 431 444 dependencies = [ 432 445 "clap_builder", 433 446 "clap_derive", ··· 435 448 436 449 [[package]] 437 450 name = "clap_builder" 438 - version = "4.5.2" 451 + version = "4.5.20" 439 452 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 453 + checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" 441 454 dependencies = [ 442 455 "anstream", 443 456 "anstyle", 444 457 "clap_lex", 445 - "strsim 0.11.0", 458 + "strsim", 459 + ] 460 + 461 + [[package]] 462 + name = "clap_complete" 463 + version = "4.5.33" 464 + source = "registry+https://github.com/rust-lang/crates.io-index" 465 + checksum = "9646e2e245bf62f45d39a0f3f36f1171ad1ea0d6967fd114bca72cb02a8fcdfb" 466 + dependencies = [ 467 + "clap", 446 468 ] 447 469 448 470 [[package]] 449 471 name = "clap_derive" 450 - version = "4.5.4" 472 + version = "4.5.18" 451 473 source = "registry+https://github.com/rust-lang/crates.io-index" 452 - checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 474 + checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 453 475 dependencies = [ 454 476 "heck 0.5.0", 455 477 "proc-macro2", 456 478 "quote", 457 - "syn 2.0.52", 479 + "syn 2.0.79", 458 480 ] 459 481 460 482 [[package]] 461 483 name = "clap_lex" 462 - version = "0.7.0" 484 + version = "0.7.2" 463 485 source = "registry+https://github.com/rust-lang/crates.io-index" 464 - checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 486 + checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 465 487 466 488 [[package]] 467 489 name = "cobs" ··· 487 509 488 510 [[package]] 489 511 name = "colorchoice" 490 - version = "1.0.0" 512 + version = "1.0.2" 491 513 source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 514 + checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 493 515 494 516 [[package]] 495 517 name = "comemo" ··· 500 522 "comemo-macros", 501 523 "once_cell", 502 524 "parking_lot", 503 - "siphasher 1.0.0", 525 + "siphasher 1.0.1", 504 526 ] 505 527 506 528 [[package]] ··· 511 533 dependencies = [ 512 534 "proc-macro2", 513 535 "quote", 514 - "syn 2.0.52", 536 + "syn 2.0.79", 515 537 ] 516 538 517 539 [[package]] ··· 538 560 539 561 [[package]] 540 562 name = "core-foundation-sys" 541 - version = "0.8.6" 563 + version = "0.8.7" 542 564 source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 565 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 544 566 545 567 [[package]] 546 568 name = "core_maths" ··· 553 575 554 576 [[package]] 555 577 name = "cpufeatures" 556 - version = "0.2.12" 578 + version = "0.2.14" 557 579 source = "registry+https://github.com/rust-lang/crates.io-index" 558 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 580 + checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 559 581 dependencies = [ 560 582 "libc", 561 583 ] 562 584 563 585 [[package]] 564 586 name = "crc32fast" 565 - version = "1.4.0" 587 + version = "1.4.2" 566 588 source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 589 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 568 590 dependencies = [ 569 591 "cfg-if", 570 592 ] 571 593 572 594 [[package]] 573 595 name = "crossbeam-channel" 574 - version = "0.5.12" 596 + version = "0.5.13" 575 597 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" 598 + checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 577 599 dependencies = [ 578 600 "crossbeam-utils", 579 601 ] ··· 608 630 609 631 [[package]] 610 632 name = "crossbeam-utils" 611 - version = "0.8.19" 633 + version = "0.8.20" 612 634 source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 635 + checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 614 636 615 637 [[package]] 616 638 name = "crunchy" ··· 651 673 652 674 [[package]] 653 675 name = "darling" 654 - version = "0.20.8" 676 + version = "0.20.10" 655 677 source = "registry+https://github.com/rust-lang/crates.io-index" 656 - checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" 678 + checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 657 679 dependencies = [ 658 680 "darling_core", 659 681 "darling_macro", ··· 661 683 662 684 [[package]] 663 685 name = "darling_core" 664 - version = "0.20.8" 686 + version = "0.20.10" 665 687 source = "registry+https://github.com/rust-lang/crates.io-index" 666 - checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" 688 + checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 667 689 dependencies = [ 668 690 "fnv", 669 691 "ident_case", 670 692 "proc-macro2", 671 693 "quote", 672 - "strsim 0.10.0", 673 - "syn 2.0.52", 694 + "strsim", 695 + "syn 2.0.79", 674 696 ] 675 697 676 698 [[package]] 677 699 name = "darling_macro" 678 - version = "0.20.8" 700 + version = "0.20.10" 679 701 source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" 702 + checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 681 703 dependencies = [ 682 704 "darling_core", 683 705 "quote", 684 - "syn 2.0.52", 706 + "syn 2.0.79", 685 707 ] 686 708 687 709 [[package]] ··· 691 713 checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 692 714 dependencies = [ 693 715 "cfg-if", 694 - "hashbrown 0.14.3", 716 + "hashbrown 0.14.5", 695 717 "lock_api", 696 718 "once_cell", 697 719 "parking_lot_core", ··· 752 774 753 775 [[package]] 754 776 name = "displaydoc" 755 - version = "0.2.4" 777 + version = "0.2.5" 756 778 source = "registry+https://github.com/rust-lang/crates.io-index" 757 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 779 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 758 780 dependencies = [ 759 781 "proc-macro2", 760 782 "quote", 761 - "syn 2.0.52", 783 + "syn 2.0.79", 762 784 ] 763 785 764 786 [[package]] 765 - name = "dissimilar" 766 - version = "1.0.7" 767 - source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "86e3bdc80eee6e16b2b6b0f87fbc98c04bee3455e35174c0de1a125d0688c632" 769 - 770 - [[package]] 771 787 name = "downcast-rs" 772 - version = "1.2.0" 788 + version = "1.2.1" 773 789 source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 790 + checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 775 791 776 792 [[package]] 777 793 name = "ecow" 778 - version = "0.2.1" 794 + version = "0.2.2" 779 795 source = "registry+https://github.com/rust-lang/crates.io-index" 780 - checksum = "dba31a30727c42ff5e60468d695c7f21e43a6db2808b7195adcab908fbd9f794" 796 + checksum = "54bfbb1708988623190a6c4dbedaeaf0f53c20c6395abd6a01feb327b3146f4b" 781 797 dependencies = [ 782 798 "serde", 783 799 ] 784 800 785 801 [[package]] 786 802 name = "either" 787 - version = "1.10.0" 803 + version = "1.13.0" 788 804 source = "registry+https://github.com/rust-lang/crates.io-index" 789 - checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 805 + checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 790 806 791 807 [[package]] 792 - name = "elsa" 793 - version = "1.10.0" 808 + name = "embedded-io" 809 + version = "0.4.0" 794 810 source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "d98e71ae4df57d214182a2e5cb90230c0192c6ddfcaa05c36453d46a54713e10" 796 - dependencies = [ 797 - "stable_deref_trait", 798 - ] 811 + checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 799 812 800 813 [[package]] 801 814 name = "embedded-io" 802 - version = "0.4.0" 815 + version = "0.6.1" 803 816 source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 817 + checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 805 818 806 819 [[package]] 807 820 name = "encode_unicode" ··· 810 823 checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 811 824 812 825 [[package]] 813 - name = "encoding_rs" 814 - version = "0.8.33" 815 - source = "registry+https://github.com/rust-lang/crates.io-index" 816 - checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 817 - dependencies = [ 818 - "cfg-if", 819 - ] 820 - 821 - [[package]] 822 826 name = "enum-ordinalize" 823 827 version = "4.3.0" 824 828 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 835 839 dependencies = [ 836 840 "proc-macro2", 837 841 "quote", 838 - "syn 2.0.52", 842 + "syn 2.0.79", 839 843 ] 840 844 841 845 [[package]] ··· 846 850 847 851 [[package]] 848 852 name = "errno" 849 - version = "0.3.8" 853 + version = "0.3.9" 850 854 source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 855 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 852 856 dependencies = [ 853 857 "libc", 854 858 "windows-sys 0.52.0", ··· 856 860 857 861 [[package]] 858 862 name = "escape8259" 859 - version = "0.5.2" 863 + version = "0.5.3" 860 864 source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "ba4f4911e3666fcd7826997b4745c8224295a6f3072f1418c3067b97a67557ee" 862 - dependencies = [ 863 - "rustversion", 864 - ] 865 + checksum = "5692dd7b5a1978a5aeb0ce83b7655c58ca8efdcb79d21036ea249da95afec2c6" 865 866 866 867 [[package]] 867 868 name = "fancy-regex" ··· 881 882 882 883 [[package]] 883 884 name = "fastrand" 884 - version = "2.0.1" 885 + version = "2.1.1" 885 886 source = "registry+https://github.com/rust-lang/crates.io-index" 886 - checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 887 + checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 887 888 888 889 [[package]] 889 890 name = "fdeflate" 890 - version = "0.3.4" 891 + version = "0.3.5" 891 892 source = "registry+https://github.com/rust-lang/crates.io-index" 892 - checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 893 + checksum = "d8090f921a24b04994d9929e204f50b498a33ea6ba559ffaa05e04f7ee7fb5ab" 893 894 dependencies = [ 894 895 "simd-adler32", 895 896 ] 896 897 897 898 [[package]] 898 899 name = "filetime" 899 - version = "0.2.23" 900 + version = "0.2.25" 900 901 source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 902 + checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 902 903 dependencies = [ 903 904 "cfg-if", 904 905 "libc", 905 - "redox_syscall", 906 - "windows-sys 0.52.0", 906 + "libredox", 907 + "windows-sys 0.59.0", 907 908 ] 908 909 909 910 [[package]] 910 911 name = "flate2" 911 - version = "1.0.28" 912 + version = "1.0.34" 912 913 source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 914 + checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 914 915 dependencies = [ 915 916 "crc32fast", 916 917 "miniz_oxide", ··· 930 931 931 932 [[package]] 932 933 name = "fontconfig-parser" 933 - version = "0.5.6" 934 + version = "0.5.7" 934 935 source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d" 936 + checksum = "c1fcfcd44ca6e90c921fee9fa665d530b21ef1327a4c1a6c5250ea44b776ada7" 936 937 dependencies = [ 937 938 "roxmltree", 938 939 ] ··· 948 949 "memmap2", 949 950 "slotmap", 950 951 "tinyvec", 951 - "ttf-parser", 952 + "ttf-parser 0.20.0", 953 + ] 954 + 955 + [[package]] 956 + name = "fontdb" 957 + version = "0.21.0" 958 + source = "registry+https://github.com/rust-lang/crates.io-index" 959 + checksum = "37be9fc20d966be438cd57a45767f73349477fb0f85ce86e000557f787298afb" 960 + dependencies = [ 961 + "fontconfig-parser", 962 + "log", 963 + "memmap2", 964 + "slotmap", 965 + "tinyvec", 966 + "ttf-parser 0.24.1", 952 967 ] 953 968 954 969 [[package]] ··· 985 1000 ] 986 1001 987 1002 [[package]] 988 - name = "fst" 989 - version = "0.4.7" 1003 + name = "funty" 1004 + version = "2.0.0" 990 1005 source = "registry+https://github.com/rust-lang/crates.io-index" 991 - checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" 1006 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 992 1007 993 1008 [[package]] 994 - name = "funty" 995 - version = "2.0.0" 1009 + name = "futures" 1010 + version = "0.3.31" 996 1011 source = "registry+https://github.com/rust-lang/crates.io-index" 997 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1012 + checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1013 + dependencies = [ 1014 + "futures-channel", 1015 + "futures-core", 1016 + "futures-executor", 1017 + "futures-io", 1018 + "futures-sink", 1019 + "futures-task", 1020 + "futures-util", 1021 + ] 998 1022 999 1023 [[package]] 1000 1024 name = "futures-channel" 1001 - version = "0.3.30" 1025 + version = "0.3.31" 1002 1026 source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1027 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1004 1028 dependencies = [ 1005 1029 "futures-core", 1030 + "futures-sink", 1006 1031 ] 1007 1032 1008 1033 [[package]] 1009 1034 name = "futures-core" 1010 - version = "0.3.30" 1035 + version = "0.3.31" 1011 1036 source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1037 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1038 + 1039 + [[package]] 1040 + name = "futures-executor" 1041 + version = "0.3.31" 1042 + source = "registry+https://github.com/rust-lang/crates.io-index" 1043 + checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1044 + dependencies = [ 1045 + "futures-core", 1046 + "futures-task", 1047 + "futures-util", 1048 + ] 1013 1049 1014 1050 [[package]] 1015 1051 name = "futures-io" 1016 - version = "0.3.30" 1052 + version = "0.3.31" 1017 1053 source = "registry+https://github.com/rust-lang/crates.io-index" 1018 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1054 + checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1055 + 1056 + [[package]] 1057 + name = "futures-macro" 1058 + version = "0.3.31" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1061 + dependencies = [ 1062 + "proc-macro2", 1063 + "quote", 1064 + "syn 2.0.79", 1065 + ] 1019 1066 1020 1067 [[package]] 1021 1068 name = "futures-sink" 1022 - version = "0.3.30" 1069 + version = "0.3.31" 1023 1070 source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1071 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1025 1072 1026 1073 [[package]] 1027 1074 name = "futures-task" 1028 - version = "0.3.30" 1075 + version = "0.3.31" 1029 1076 source = "registry+https://github.com/rust-lang/crates.io-index" 1030 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1077 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1031 1078 1032 1079 [[package]] 1033 1080 name = "futures-util" 1034 - version = "0.3.30" 1081 + version = "0.3.31" 1035 1082 source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1083 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1037 1084 dependencies = [ 1085 + "futures-channel", 1038 1086 "futures-core", 1039 1087 "futures-io", 1088 + "futures-macro", 1089 + "futures-sink", 1040 1090 "futures-task", 1041 1091 "memchr", 1042 1092 "pin-project-lite", ··· 1065 1115 1066 1116 [[package]] 1067 1117 name = "getrandom" 1068 - version = "0.2.12" 1118 + version = "0.2.15" 1069 1119 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1120 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1071 1121 dependencies = [ 1072 1122 "cfg-if", 1073 1123 "libc", ··· 1076 1126 1077 1127 [[package]] 1078 1128 name = "gif" 1079 - version = "0.12.0" 1080 - source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 1082 - dependencies = [ 1083 - "color_quant", 1084 - "weezl", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "gif" 1089 1129 version = "0.13.1" 1090 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 1091 1131 checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" ··· 1096 1136 1097 1137 [[package]] 1098 1138 name = "gimli" 1099 - version = "0.28.1" 1139 + version = "0.31.1" 1100 1140 source = "registry+https://github.com/rust-lang/crates.io-index" 1101 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1141 + checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1102 1142 1103 1143 [[package]] 1104 1144 name = "git2" 1105 - version = "0.18.2" 1145 + version = "0.19.0" 1106 1146 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "1b3ba52851e73b46a4c3df1d89343741112003f0f6f13beb0dfac9e457c3fdcd" 1147 + checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724" 1108 1148 dependencies = [ 1109 - "bitflags 2.4.2", 1149 + "bitflags 2.6.0", 1110 1150 "libc", 1111 1151 "libgit2-sys", 1112 1152 "log", ··· 1114 1154 ] 1115 1155 1116 1156 [[package]] 1117 - name = "h2" 1118 - version = "0.3.25" 1157 + name = "half" 1158 + version = "2.4.1" 1119 1159 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb" 1160 + checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 1121 1161 dependencies = [ 1122 - "bytes", 1123 - "fnv", 1124 - "futures-core", 1125 - "futures-sink", 1126 - "futures-util", 1127 - "http", 1128 - "indexmap 2.2.6", 1129 - "slab", 1130 - "tokio", 1131 - "tokio-util", 1132 - "tracing", 1162 + "cfg-if", 1163 + "crunchy", 1133 1164 ] 1134 1165 1135 1166 [[package]] 1136 - name = "half" 1137 - version = "2.4.0" 1167 + name = "hashbrown" 1168 + version = "0.12.3" 1138 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e" 1170 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1140 1171 dependencies = [ 1141 - "cfg-if", 1142 - "crunchy", 1172 + "ahash 0.7.8", 1143 1173 ] 1144 1174 1145 1175 [[package]] 1146 1176 name = "hashbrown" 1147 - version = "0.12.3" 1177 + version = "0.14.5" 1148 1178 source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1179 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1150 1180 dependencies = [ 1151 - "ahash", 1181 + "ahash 0.8.11", 1152 1182 ] 1153 1183 1154 1184 [[package]] 1155 1185 name = "hashbrown" 1156 - version = "0.14.3" 1186 + version = "0.15.0" 1157 1187 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1188 + checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 1159 1189 1160 1190 [[package]] 1161 1191 name = "hayagriva" 1162 - version = "0.5.2" 1192 + version = "0.8.0" 1163 1193 source = "registry+https://github.com/rust-lang/crates.io-index" 1164 - checksum = "cc2e670de5191df083ddd112cd253049f8213277ccf0c15e18a8bf10e6c666cc" 1194 + checksum = "7a3635c2577f77499c9dc3dceeef2e64e6c146e711b1861507a0f15b20641348" 1165 1195 dependencies = [ 1166 1196 "biblatex", 1167 1197 "ciborium", 1168 1198 "citationberg", 1169 - "indexmap 2.2.6", 1199 + "indexmap 2.6.0", 1170 1200 "numerals", 1171 1201 "paste", 1172 1202 "serde", ··· 1204 1234 1205 1235 [[package]] 1206 1236 name = "http" 1207 - version = "0.2.12" 1237 + version = "1.1.0" 1208 1238 source = "registry+https://github.com/rust-lang/crates.io-index" 1209 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1239 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 1210 1240 dependencies = [ 1211 1241 "bytes", 1212 1242 "fnv", ··· 1215 1245 1216 1246 [[package]] 1217 1247 name = "http-body" 1218 - version = "0.4.6" 1248 + version = "1.0.1" 1219 1249 source = "registry+https://github.com/rust-lang/crates.io-index" 1220 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1250 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1221 1251 dependencies = [ 1222 1252 "bytes", 1223 1253 "http", 1224 - "pin-project-lite", 1225 1254 ] 1226 1255 1227 1256 [[package]] 1228 - name = "httparse" 1229 - version = "1.8.0" 1257 + name = "http-body-util" 1258 + version = "0.1.2" 1230 1259 source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1260 + checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 1261 + dependencies = [ 1262 + "bytes", 1263 + "futures-util", 1264 + "http", 1265 + "http-body", 1266 + "pin-project-lite", 1267 + ] 1232 1268 1233 1269 [[package]] 1234 - name = "httpdate" 1235 - version = "1.0.3" 1270 + name = "httparse" 1271 + version = "1.9.5" 1236 1272 source = "registry+https://github.com/rust-lang/crates.io-index" 1237 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1273 + checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 1238 1274 1239 1275 [[package]] 1240 1276 name = "hyper" 1241 - version = "0.14.28" 1277 + version = "1.5.0" 1242 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 1243 - checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1279 + checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" 1244 1280 dependencies = [ 1245 1281 "bytes", 1246 1282 "futures-channel", 1247 - "futures-core", 1248 1283 "futures-util", 1249 - "h2", 1250 1284 "http", 1251 1285 "http-body", 1252 1286 "httparse", 1253 - "httpdate", 1254 1287 "itoa", 1255 1288 "pin-project-lite", 1256 - "socket2", 1289 + "smallvec", 1257 1290 "tokio", 1258 - "tower-service", 1259 - "tracing", 1260 1291 "want", 1261 1292 ] 1262 1293 1263 1294 [[package]] 1264 1295 name = "hyper-rustls" 1265 - version = "0.24.2" 1296 + version = "0.27.3" 1266 1297 source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1298 + checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" 1268 1299 dependencies = [ 1269 1300 "futures-util", 1270 1301 "http", 1271 1302 "hyper", 1303 + "hyper-util", 1272 1304 "rustls", 1305 + "rustls-pki-types", 1273 1306 "tokio", 1274 1307 "tokio-rustls", 1308 + "tower-service", 1309 + "webpki-roots", 1275 1310 ] 1276 1311 1277 1312 [[package]] 1278 1313 name = "hyper-tls" 1279 - version = "0.5.0" 1314 + version = "0.6.0" 1280 1315 source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1316 + checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1282 1317 dependencies = [ 1283 1318 "bytes", 1319 + "http-body-util", 1284 1320 "hyper", 1321 + "hyper-util", 1285 1322 "native-tls", 1286 1323 "tokio", 1287 1324 "tokio-native-tls", 1325 + "tower-service", 1326 + ] 1327 + 1328 + [[package]] 1329 + name = "hyper-util" 1330 + version = "0.1.9" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" 1333 + dependencies = [ 1334 + "bytes", 1335 + "futures-channel", 1336 + "futures-util", 1337 + "http", 1338 + "http-body", 1339 + "hyper", 1340 + "pin-project-lite", 1341 + "socket2", 1342 + "tokio", 1343 + "tower-service", 1344 + "tracing", 1288 1345 ] 1289 1346 1290 1347 [[package]] ··· 1295 1352 1296 1353 [[package]] 1297 1354 name = "iana-time-zone" 1298 - version = "0.1.60" 1355 + version = "0.1.61" 1299 1356 source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1357 + checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 1301 1358 dependencies = [ 1302 1359 "android_system_properties", 1303 1360 "core-foundation-sys", ··· 1318 1375 1319 1376 [[package]] 1320 1377 name = "icu_collections" 1321 - version = "1.4.0" 1378 + version = "1.5.0" 1322 1379 source = "registry+https://github.com/rust-lang/crates.io-index" 1323 - checksum = "137d96353afc8544d437e8a99eceb10ab291352699573b0de5b08bda38c78c60" 1380 + checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1324 1381 dependencies = [ 1325 1382 "displaydoc", 1326 1383 "serde", ··· 1331 1388 1332 1389 [[package]] 1333 1390 name = "icu_locid" 1334 - version = "1.4.0" 1391 + version = "1.5.0" 1335 1392 source = "registry+https://github.com/rust-lang/crates.io-index" 1336 - checksum = "5c0aa2536adc14c07e2a521e95512b75ed8ef832f0fdf9299d4a0a45d2be2a9d" 1393 + checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1337 1394 dependencies = [ 1338 1395 "displaydoc", 1339 1396 "litemap", ··· 1344 1401 1345 1402 [[package]] 1346 1403 name = "icu_locid_transform" 1347 - version = "1.4.0" 1404 + version = "1.5.0" 1348 1405 source = "registry+https://github.com/rust-lang/crates.io-index" 1349 - checksum = "57c17d8f6524fdca4471101dd71f0a132eb6382b5d6d7f2970441cb25f6f435a" 1406 + checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1350 1407 dependencies = [ 1351 1408 "displaydoc", 1352 1409 "icu_locid", ··· 1358 1415 1359 1416 [[package]] 1360 1417 name = "icu_locid_transform_data" 1361 - version = "1.4.0" 1418 + version = "1.5.0" 1362 1419 source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "545c6c3e8bf9580e2dafee8de6f9ec14826aaf359787789c7724f1f85f47d3dc" 1420 + checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1364 1421 1365 1422 [[package]] 1366 1423 name = "icu_properties" 1367 - version = "1.4.0" 1424 + version = "1.5.1" 1368 1425 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "976e296217453af983efa25f287a4c1da04b9a63bf1ed63719455068e4453eb5" 1426 + checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1370 1427 dependencies = [ 1371 1428 "displaydoc", 1372 1429 "icu_collections", ··· 1380 1437 1381 1438 [[package]] 1382 1439 name = "icu_properties_data" 1383 - version = "1.4.0" 1440 + version = "1.5.0" 1384 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1385 - checksum = "f6a86c0e384532b06b6c104814f9c1b13bcd5b64409001c0d05713a1f3529d99" 1442 + checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1386 1443 1387 1444 [[package]] 1388 1445 name = "icu_provider" 1389 - version = "1.4.0" 1446 + version = "1.5.0" 1390 1447 source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "ba58e782287eb6950247abbf11719f83f5d4e4a5c1f2cd490d30a334bc47c2f4" 1448 + checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1392 1449 dependencies = [ 1393 1450 "displaydoc", 1394 1451 "icu_locid", ··· 1405 1462 1406 1463 [[package]] 1407 1464 name = "icu_provider_adapters" 1408 - version = "1.4.0" 1465 + version = "1.5.0" 1409 1466 source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "a229f978260da7c3aabb68cb7dc7316589936680570fe55e50fdd3f97711a4dd" 1467 + checksum = "d6324dfd08348a8e0374a447ebd334044d766b1839bb8d5ccf2482a99a77c0bc" 1411 1468 dependencies = [ 1412 1469 "icu_locid", 1413 1470 "icu_locid_transform", ··· 1418 1475 1419 1476 [[package]] 1420 1477 name = "icu_provider_blob" 1421 - version = "1.4.0" 1478 + version = "1.5.0" 1422 1479 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "4a7202cddda672db167c6352719959e9b01cb1ca576d32fa79103f61b5a73601" 1480 + checksum = "c24b98d1365f55d78186c205817631a4acf08d7a45bdf5dc9dcf9c5d54dccf51" 1424 1481 dependencies = [ 1425 1482 "icu_provider", 1426 1483 "postcard", ··· 1432 1489 1433 1490 [[package]] 1434 1491 name = "icu_provider_macros" 1435 - version = "1.4.0" 1492 + version = "1.5.0" 1436 1493 source = "registry+https://github.com/rust-lang/crates.io-index" 1437 - checksum = "d2abdd3a62551e8337af119c5899e600ca0c88ec8f23a46c60ba216c803dcf1a" 1494 + checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1438 1495 dependencies = [ 1439 1496 "proc-macro2", 1440 1497 "quote", 1441 - "syn 2.0.52", 1498 + "syn 2.0.79", 1442 1499 ] 1443 1500 1444 1501 [[package]] 1445 1502 name = "icu_segmenter" 1446 - version = "1.4.0" 1503 + version = "1.5.0" 1447 1504 source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "b2dc1e8f4ba33a6a4956770ac5c08570f255d6605519fb3a859a0c0a270a2f8f" 1505 + checksum = "a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de" 1449 1506 dependencies = [ 1450 1507 "core_maths", 1451 1508 "displaydoc", ··· 1460 1517 1461 1518 [[package]] 1462 1519 name = "icu_segmenter_data" 1463 - version = "1.4.0" 1520 + version = "1.5.0" 1464 1521 source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "3673d6698dcffce08cfe8fc5da3c11c3f2c663d5d6137fd58ab2cbf44235ab46" 1522 + checksum = "f739ee737260d955e330bc83fdeaaf1631f7fb7ed218761d3c04bb13bb7d79df" 1466 1523 1467 1524 [[package]] 1468 1525 name = "ident_case" ··· 1488 1545 1489 1546 [[package]] 1490 1547 name = "image" 1491 - version = "0.24.9" 1548 + version = "0.25.4" 1492 1549 source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 1550 + checksum = "bc144d44a31d753b02ce64093d532f55ff8dc4ebf2ffb8a63c0dda691385acae" 1494 1551 dependencies = [ 1495 1552 "bytemuck", 1496 - "byteorder", 1553 + "byteorder-lite", 1497 1554 "color_quant", 1498 - "gif 0.13.1", 1499 - "jpeg-decoder", 1555 + "gif", 1500 1556 "num-traits", 1501 1557 "png", 1558 + "zune-core", 1559 + "zune-jpeg", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "image-webp" 1564 + version = "0.1.3" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "f79afb8cbee2ef20f59ccd477a218c12a93943d075b492015ecb1bb81f8ee904" 1567 + dependencies = [ 1568 + "byteorder-lite", 1569 + "quick-error", 1502 1570 ] 1503 1571 1504 1572 [[package]] 1505 1573 name = "imagesize" 1506 - version = "0.12.0" 1574 + version = "0.13.0" 1507 1575 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284" 1576 + checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285" 1509 1577 1510 1578 [[package]] 1511 1579 name = "indexmap" ··· 1520 1588 1521 1589 [[package]] 1522 1590 name = "indexmap" 1523 - version = "2.2.6" 1591 + version = "2.6.0" 1524 1592 source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1593 + checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 1526 1594 dependencies = [ 1527 1595 "equivalent", 1528 - "hashbrown 0.14.3", 1596 + "hashbrown 0.15.0", 1529 1597 "serde", 1530 1598 ] 1531 1599 ··· 1557 1625 1558 1626 [[package]] 1559 1627 name = "insta" 1560 - version = "1.38.0" 1628 + version = "1.40.0" 1561 1629 source = "registry+https://github.com/rust-lang/crates.io-index" 1562 - checksum = "3eab73f58e59ca6526037208f0e98851159ec1633cf17b6cd2e1f2c3fd5d53cc" 1630 + checksum = "6593a41c7a73841868772495db7dc1e8ecab43bb5c0b6da2059246c4b506ab60" 1563 1631 dependencies = [ 1564 1632 "console", 1565 1633 "lazy_static", ··· 1569 1637 1570 1638 [[package]] 1571 1639 name = "instant" 1572 - version = "0.1.12" 1640 + version = "0.1.13" 1573 1641 source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1642 + checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1575 1643 dependencies = [ 1576 1644 "cfg-if", 1577 1645 ] 1578 1646 1579 1647 [[package]] 1580 1648 name = "ipnet" 1581 - version = "2.9.0" 1649 + version = "2.10.1" 1582 1650 source = "registry+https://github.com/rust-lang/crates.io-index" 1583 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1651 + checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" 1652 + 1653 + [[package]] 1654 + name = "is_terminal_polyfill" 1655 + version = "1.70.1" 1656 + source = "registry+https://github.com/rust-lang/crates.io-index" 1657 + checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1584 1658 1585 1659 [[package]] 1586 1660 name = "itertools" 1587 - version = "0.12.1" 1661 + version = "0.13.0" 1588 1662 source = "registry+https://github.com/rust-lang/crates.io-index" 1589 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1663 + checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1590 1664 dependencies = [ 1591 1665 "either", 1592 1666 ] 1593 1667 1594 1668 [[package]] 1595 1669 name = "itoa" 1596 - version = "1.0.10" 1670 + version = "1.0.11" 1597 1671 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1672 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1599 1673 1600 1674 [[package]] 1601 1675 name = "jobserver" 1602 - version = "0.1.28" 1676 + version = "0.1.32" 1603 1677 source = "registry+https://github.com/rust-lang/crates.io-index" 1604 - checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" 1678 + checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1605 1679 dependencies = [ 1606 1680 "libc", 1607 1681 ] 1608 1682 1609 1683 [[package]] 1610 - name = "jpeg-decoder" 1611 - version = "0.3.1" 1612 - source = "registry+https://github.com/rust-lang/crates.io-index" 1613 - checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 1614 - 1615 - [[package]] 1616 1684 name = "js-sys" 1617 - version = "0.3.69" 1685 + version = "0.3.72" 1618 1686 source = "registry+https://github.com/rust-lang/crates.io-index" 1619 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1687 + checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" 1620 1688 dependencies = [ 1621 1689 "wasm-bindgen", 1622 1690 ] ··· 1656 1724 source = "registry+https://github.com/rust-lang/crates.io-index" 1657 1725 checksum = "bd85a5776cd9500c2e2059c8c76c3b01528566b7fcbaf8098b55a33fc298849b" 1658 1726 dependencies = [ 1659 - "arrayvec 0.7.4", 1727 + "arrayvec 0.7.6", 1728 + ] 1729 + 1730 + [[package]] 1731 + name = "kurbo" 1732 + version = "0.11.1" 1733 + source = "registry+https://github.com/rust-lang/crates.io-index" 1734 + checksum = "89234b2cc610a7dd927ebde6b41dd1a5d4214cffaef4cf1fb2195d592f92518f" 1735 + dependencies = [ 1736 + "arrayvec 0.7.6", 1737 + "smallvec", 1660 1738 ] 1661 1739 1662 1740 [[package]] 1663 1741 name = "lazy_static" 1664 - version = "1.4.0" 1742 + version = "1.5.0" 1665 1743 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1744 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1667 1745 1668 1746 [[package]] 1669 1747 name = "libc" 1670 - version = "0.2.153" 1748 + version = "0.2.161" 1671 1749 source = "registry+https://github.com/rust-lang/crates.io-index" 1672 - checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1750 + checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 1673 1751 1674 1752 [[package]] 1675 1753 name = "libgit2-sys" 1676 - version = "0.16.2+1.7.2" 1754 + version = "0.17.0+1.8.1" 1677 1755 source = "registry+https://github.com/rust-lang/crates.io-index" 1678 - checksum = "ee4126d8b4ee5c9d9ea891dd875cfdc1e9d0950437179104b183d7d8a74d24e8" 1756 + checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224" 1679 1757 dependencies = [ 1680 1758 "cc", 1681 1759 "libc", ··· 1691 1769 1692 1770 [[package]] 1693 1771 name = "libredox" 1694 - version = "0.0.1" 1772 + version = "0.1.3" 1695 1773 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1774 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1697 1775 dependencies = [ 1698 - "bitflags 2.4.2", 1776 + "bitflags 2.6.0", 1699 1777 "libc", 1700 1778 "redox_syscall", 1701 1779 ] 1702 1780 1703 1781 [[package]] 1704 1782 name = "libtest-mimic" 1705 - version = "0.7.0" 1783 + version = "0.8.1" 1706 1784 source = "registry+https://github.com/rust-lang/crates.io-index" 1707 - checksum = "7f0f4c6f44ecfd52e8b443f2ad18f2b996540135771561283c2352ce56a1c70b" 1785 + checksum = "5297962ef19edda4ce33aaa484386e0a5b3d7f2f4e037cbeee00503ef6b29d33" 1708 1786 dependencies = [ 1787 + "anstream", 1788 + "anstyle", 1709 1789 "clap", 1710 1790 "escape8259", 1711 - "termcolor", 1712 - "threadpool", 1713 1791 ] 1714 1792 1715 1793 [[package]] 1716 1794 name = "libz-sys" 1717 - version = "1.1.15" 1795 + version = "1.1.20" 1718 1796 source = "registry+https://github.com/rust-lang/crates.io-index" 1719 - checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 1797 + checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" 1720 1798 dependencies = [ 1721 1799 "cc", 1722 1800 "libc", ··· 1725 1803 ] 1726 1804 1727 1805 [[package]] 1728 - name = "line-wrap" 1729 - version = "0.1.1" 1730 - source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1732 - dependencies = [ 1733 - "safemem", 1734 - ] 1735 - 1736 - [[package]] 1737 1806 name = "linked-hash-map" 1738 1807 version = "0.5.6" 1739 1808 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1741 1810 1742 1811 [[package]] 1743 1812 name = "linux-raw-sys" 1744 - version = "0.4.13" 1813 + version = "0.4.14" 1745 1814 source = "registry+https://github.com/rust-lang/crates.io-index" 1746 - checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1815 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1747 1816 1748 1817 [[package]] 1749 1818 name = "lipsum" ··· 1757 1826 1758 1827 [[package]] 1759 1828 name = "litemap" 1760 - version = "0.7.2" 1829 + version = "0.7.3" 1761 1830 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "f9d642685b028806386b2b6e75685faadd3eb65a85fff7df711ce18446a422da" 1831 + checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" 1763 1832 dependencies = [ 1764 1833 "serde", 1765 1834 ] 1766 1835 1767 1836 [[package]] 1768 1837 name = "lock_api" 1769 - version = "0.4.11" 1838 + version = "0.4.12" 1770 1839 source = "registry+https://github.com/rust-lang/crates.io-index" 1771 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1840 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1772 1841 dependencies = [ 1773 1842 "autocfg", 1774 1843 "scopeguard", ··· 1776 1845 1777 1846 [[package]] 1778 1847 name = "log" 1779 - version = "0.4.21" 1848 + version = "0.4.22" 1780 1849 source = "registry+https://github.com/rust-lang/crates.io-index" 1781 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1850 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1782 1851 1783 1852 [[package]] 1784 1853 name = "memchr" 1785 - version = "2.7.1" 1854 + version = "2.7.4" 1786 1855 source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1856 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1788 1857 1789 1858 [[package]] 1790 1859 name = "memmap2" 1791 - version = "0.9.4" 1860 + version = "0.9.5" 1792 1861 source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1862 + checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 1794 1863 dependencies = [ 1795 1864 "libc", 1796 1865 ] ··· 1803 1872 1804 1873 [[package]] 1805 1874 name = "mime_guess" 1806 - version = "2.0.4" 1875 + version = "2.0.5" 1807 1876 source = "registry+https://github.com/rust-lang/crates.io-index" 1808 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1877 + checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1809 1878 dependencies = [ 1810 1879 "mime", 1811 1880 "unicase", ··· 1813 1882 1814 1883 [[package]] 1815 1884 name = "miniz_oxide" 1816 - version = "0.7.2" 1885 + version = "0.8.0" 1817 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1818 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1887 + checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 1819 1888 dependencies = [ 1820 - "adler", 1889 + "adler2", 1821 1890 "simd-adler32", 1822 1891 ] 1823 1892 ··· 1834 1903 ] 1835 1904 1836 1905 [[package]] 1906 + name = "mio" 1907 + version = "1.0.2" 1908 + source = "registry+https://github.com/rust-lang/crates.io-index" 1909 + checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 1910 + dependencies = [ 1911 + "hermit-abi", 1912 + "libc", 1913 + "wasi", 1914 + "windows-sys 0.52.0", 1915 + ] 1916 + 1917 + [[package]] 1918 + name = "multi-stash" 1919 + version = "0.2.0" 1920 + source = "registry+https://github.com/rust-lang/crates.io-index" 1921 + checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f" 1922 + 1923 + [[package]] 1837 1924 name = "mutate_once" 1838 1925 version = "0.1.1" 1839 1926 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1841 1928 1842 1929 [[package]] 1843 1930 name = "native-tls" 1844 - version = "0.2.11" 1931 + version = "0.2.12" 1845 1932 source = "registry+https://github.com/rust-lang/crates.io-index" 1846 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1933 + checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 1847 1934 dependencies = [ 1848 - "lazy_static", 1849 1935 "libc", 1850 1936 "log", 1851 1937 "openssl", ··· 1869 1955 source = "registry+https://github.com/rust-lang/crates.io-index" 1870 1956 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 1871 1957 dependencies = [ 1872 - "bitflags 2.4.2", 1958 + "bitflags 2.6.0", 1873 1959 "crossbeam-channel", 1874 1960 "filetime", 1875 1961 "fsevent-sys", ··· 1877 1963 "kqueue", 1878 1964 "libc", 1879 1965 "log", 1880 - "mio", 1966 + "mio 0.8.11", 1881 1967 "walkdir", 1882 1968 "windows-sys 0.48.0", 1883 1969 ] 1884 1970 1885 1971 [[package]] 1886 1972 name = "num-bigint" 1887 - version = "0.4.4" 1973 + version = "0.4.6" 1888 1974 source = "registry+https://github.com/rust-lang/crates.io-index" 1889 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 1975 + checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1890 1976 dependencies = [ 1891 - "autocfg", 1892 1977 "num-integer", 1893 1978 "num-traits", 1894 1979 ] ··· 1900 1985 checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1901 1986 1902 1987 [[package]] 1988 + name = "num-derive" 1989 + version = "0.4.2" 1990 + source = "registry+https://github.com/rust-lang/crates.io-index" 1991 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 1992 + dependencies = [ 1993 + "proc-macro2", 1994 + "quote", 1995 + "syn 2.0.79", 1996 + ] 1997 + 1998 + [[package]] 1903 1999 name = "num-integer" 1904 2000 version = "0.1.46" 1905 2001 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1910 2006 1911 2007 [[package]] 1912 2008 name = "num-traits" 1913 - version = "0.2.18" 2009 + version = "0.2.19" 1914 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 2011 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1916 2012 dependencies = [ 1917 2013 "autocfg", 1918 - ] 1919 - 1920 - [[package]] 1921 - name = "num_cpus" 1922 - version = "1.16.0" 1923 - source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1925 - dependencies = [ 1926 - "hermit-abi", 1927 - "libc", 1928 2014 ] 1929 2015 1930 2016 [[package]] ··· 1944 2030 1945 2031 [[package]] 1946 2032 name = "object" 1947 - version = "0.32.2" 2033 + version = "0.36.5" 1948 2034 source = "registry+https://github.com/rust-lang/crates.io-index" 1949 - checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2035 + checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 1950 2036 dependencies = [ 1951 2037 "memchr", 1952 2038 ] 1953 2039 1954 2040 [[package]] 1955 2041 name = "once_cell" 1956 - version = "1.19.0" 2042 + version = "1.20.2" 1957 2043 source = "registry+https://github.com/rust-lang/crates.io-index" 1958 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2044 + checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 1959 2045 1960 2046 [[package]] 1961 2047 name = "openssl" 1962 - version = "0.10.64" 2048 + version = "0.10.68" 1963 2049 source = "registry+https://github.com/rust-lang/crates.io-index" 1964 - checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 2050 + checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 1965 2051 dependencies = [ 1966 - "bitflags 2.4.2", 2052 + "bitflags 2.6.0", 1967 2053 "cfg-if", 1968 2054 "foreign-types", 1969 2055 "libc", ··· 1980 2066 dependencies = [ 1981 2067 "proc-macro2", 1982 2068 "quote", 1983 - "syn 2.0.52", 2069 + "syn 2.0.79", 1984 2070 ] 1985 2071 1986 2072 [[package]] ··· 1991 2077 1992 2078 [[package]] 1993 2079 name = "openssl-sys" 1994 - version = "0.9.101" 2080 + version = "0.9.104" 1995 2081 source = "registry+https://github.com/rust-lang/crates.io-index" 1996 - checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" 2082 + checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 1997 2083 dependencies = [ 1998 2084 "cc", 1999 2085 "libc", ··· 2009 2095 2010 2096 [[package]] 2011 2097 name = "palette" 2012 - version = "0.7.5" 2098 + version = "0.7.6" 2013 2099 source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - checksum = "ebfc23a4b76642983d57e4ad00bb4504eb30a8ce3c70f4aee1f725610e36d97a" 2100 + checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6" 2015 2101 dependencies = [ 2016 2102 "approx", 2017 2103 "fast-srgb8", ··· 2021 2107 2022 2108 [[package]] 2023 2109 name = "palette_derive" 2024 - version = "0.7.5" 2110 + version = "0.7.6" 2025 2111 source = "registry+https://github.com/rust-lang/crates.io-index" 2026 - checksum = "e8890702dbec0bad9116041ae586f84805b13eecd1d8b1df27c29998a9969d6d" 2112 + checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30" 2027 2113 dependencies = [ 2114 + "by_address", 2028 2115 "proc-macro2", 2029 2116 "quote", 2030 - "syn 2.0.52", 2117 + "syn 2.0.79", 2031 2118 ] 2032 2119 2033 2120 [[package]] 2034 2121 name = "parking_lot" 2035 - version = "0.12.1" 2122 + version = "0.12.3" 2036 2123 source = "registry+https://github.com/rust-lang/crates.io-index" 2037 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2124 + checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 2038 2125 dependencies = [ 2039 2126 "lock_api", 2040 2127 "parking_lot_core", ··· 2042 2129 2043 2130 [[package]] 2044 2131 name = "parking_lot_core" 2045 - version = "0.9.9" 2132 + version = "0.9.10" 2046 2133 source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2134 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2048 2135 dependencies = [ 2049 2136 "cfg-if", 2050 2137 "libc", 2051 2138 "redox_syscall", 2052 2139 "smallvec", 2053 - "windows-targets 0.48.5", 2140 + "windows-targets 0.52.6", 2054 2141 ] 2055 2142 2056 2143 [[package]] 2057 2144 name = "paste" 2058 - version = "1.0.14" 2145 + version = "1.0.15" 2059 2146 source = "registry+https://github.com/rust-lang/crates.io-index" 2060 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2147 + checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2061 2148 2062 2149 [[package]] 2063 2150 name = "path-clean" ··· 2067 2154 2068 2155 [[package]] 2069 2156 name = "pathdiff" 2070 - version = "0.2.1" 2157 + version = "0.2.2" 2071 2158 source = "registry+https://github.com/rust-lang/crates.io-index" 2072 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2159 + checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361" 2073 2160 2074 2161 [[package]] 2075 2162 name = "pdf-writer" 2076 - version = "0.9.2" 2163 + version = "0.12.0" 2077 2164 source = "registry+https://github.com/rust-lang/crates.io-index" 2078 - checksum = "644b654f2de28457bf1e25a4905a76a563d1128a33ce60cf042f721f6818feaf" 2165 + checksum = "be17f48d7fbbd22c6efedb58af5d409aa578e407f40b29a0bcb4e66ed84c5c98" 2079 2166 dependencies = [ 2080 - "bitflags 1.3.2", 2167 + "bitflags 2.6.0", 2081 2168 "itoa", 2082 2169 "memchr", 2083 2170 "ryu", ··· 2119 2206 "phf_shared", 2120 2207 "proc-macro2", 2121 2208 "quote", 2122 - "syn 2.0.52", 2209 + "syn 2.0.79", 2123 2210 ] 2124 2211 2125 2212 [[package]] ··· 2139 2226 2140 2227 [[package]] 2141 2228 name = "pin-project-lite" 2142 - version = "0.2.13" 2229 + version = "0.2.14" 2143 2230 source = "registry+https://github.com/rust-lang/crates.io-index" 2144 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2231 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2145 2232 2146 2233 [[package]] 2147 2234 name = "pin-utils" ··· 2151 2238 2152 2239 [[package]] 2153 2240 name = "pixglyph" 2154 - version = "0.3.0" 2241 + version = "0.5.1" 2155 2242 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "e2e0f8ad4c197db38125b880c3c44544788665c7d5f4c42f5a35da44bca1a712" 2243 + checksum = "d15afa937836bf3d876f5a04ce28810c06045857bf46c3d0d31073b8aada5494" 2157 2244 dependencies = [ 2158 - "ttf-parser", 2245 + "ttf-parser 0.24.1", 2159 2246 ] 2160 2247 2161 2248 [[package]] 2162 2249 name = "pkg-config" 2163 - version = "0.3.30" 2250 + version = "0.3.31" 2164 2251 source = "registry+https://github.com/rust-lang/crates.io-index" 2165 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2252 + checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 2166 2253 2167 2254 [[package]] 2168 2255 name = "plist" 2169 - version = "1.6.0" 2256 + version = "1.7.0" 2170 2257 source = "registry+https://github.com/rust-lang/crates.io-index" 2171 - checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2258 + checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" 2172 2259 dependencies = [ 2173 - "base64 0.21.7", 2174 - "indexmap 2.2.6", 2175 - "line-wrap", 2176 - "quick-xml", 2260 + "base64", 2261 + "indexmap 2.6.0", 2262 + "quick-xml 0.32.0", 2177 2263 "serde", 2178 2264 "time", 2179 2265 ] 2180 2266 2181 2267 [[package]] 2182 2268 name = "png" 2183 - version = "0.17.13" 2269 + version = "0.17.14" 2184 2270 source = "registry+https://github.com/rust-lang/crates.io-index" 2185 - checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 2271 + checksum = "52f9d46a34a05a6a57566bc2bfae066ef07585a6e3fa30fbbdff5936380623f0" 2186 2272 dependencies = [ 2187 2273 "bitflags 1.3.2", 2188 2274 "crc32fast", ··· 2193 2279 2194 2280 [[package]] 2195 2281 name = "portable-atomic" 2196 - version = "1.6.0" 2282 + version = "1.9.0" 2197 2283 source = "registry+https://github.com/rust-lang/crates.io-index" 2198 - checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 2284 + checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" 2199 2285 2200 2286 [[package]] 2201 2287 name = "postcard" 2202 - version = "1.0.8" 2288 + version = "1.0.10" 2203 2289 source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" 2290 + checksum = "5f7f0a8d620d71c457dd1d47df76bb18960378da56af4527aaa10f515eee732e" 2205 2291 dependencies = [ 2206 2292 "cobs", 2207 - "embedded-io", 2293 + "embedded-io 0.4.0", 2294 + "embedded-io 0.6.1", 2208 2295 "serde", 2209 2296 ] 2210 2297 ··· 2216 2303 2217 2304 [[package]] 2218 2305 name = "ppv-lite86" 2219 - version = "0.2.17" 2306 + version = "0.2.20" 2220 2307 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2308 + checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 2309 + dependencies = [ 2310 + "zerocopy", 2311 + ] 2222 2312 2223 2313 [[package]] 2224 2314 name = "pretty" ··· 2233 2323 2234 2324 [[package]] 2235 2325 name = "pretty_assertions" 2236 - version = "1.4.0" 2326 + version = "1.4.1" 2237 2327 source = "registry+https://github.com/rust-lang/crates.io-index" 2238 - checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 2328 + checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 2239 2329 dependencies = [ 2240 2330 "diff", 2241 2331 "yansi", ··· 2243 2333 2244 2334 [[package]] 2245 2335 name = "proc-macro2" 2246 - version = "1.0.79" 2336 + version = "1.0.88" 2247 2337 source = "registry+https://github.com/rust-lang/crates.io-index" 2248 - checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" 2338 + checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" 2249 2339 dependencies = [ 2250 2340 "unicode-ident", 2251 2341 ] 2252 2342 2253 2343 [[package]] 2254 2344 name = "psm" 2255 - version = "0.1.21" 2345 + version = "0.1.23" 2256 2346 source = "registry+https://github.com/rust-lang/crates.io-index" 2257 - checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 2347 + checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205" 2258 2348 dependencies = [ 2259 2349 "cc", 2260 2350 ] ··· 2286 2376 checksum = "edecfcd5d755a5e5d98e24cf43113e7cdaec5a070edd0f6b250c03a573da30fa" 2287 2377 2288 2378 [[package]] 2379 + name = "quick-error" 2380 + version = "2.0.1" 2381 + source = "registry+https://github.com/rust-lang/crates.io-index" 2382 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 2383 + 2384 + [[package]] 2289 2385 name = "quick-xml" 2290 - version = "0.31.0" 2386 + version = "0.32.0" 2291 2387 source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2388 + checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" 2389 + dependencies = [ 2390 + "memchr", 2391 + ] 2392 + 2393 + [[package]] 2394 + name = "quick-xml" 2395 + version = "0.36.2" 2396 + source = "registry+https://github.com/rust-lang/crates.io-index" 2397 + checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" 2293 2398 dependencies = [ 2294 2399 "memchr", 2295 2400 "serde", 2296 2401 ] 2297 2402 2298 2403 [[package]] 2404 + name = "quinn" 2405 + version = "0.11.5" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" 2408 + dependencies = [ 2409 + "bytes", 2410 + "pin-project-lite", 2411 + "quinn-proto", 2412 + "quinn-udp", 2413 + "rustc-hash", 2414 + "rustls", 2415 + "socket2", 2416 + "thiserror", 2417 + "tokio", 2418 + "tracing", 2419 + ] 2420 + 2421 + [[package]] 2422 + name = "quinn-proto" 2423 + version = "0.11.8" 2424 + source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 2426 + dependencies = [ 2427 + "bytes", 2428 + "rand", 2429 + "ring", 2430 + "rustc-hash", 2431 + "rustls", 2432 + "slab", 2433 + "thiserror", 2434 + "tinyvec", 2435 + "tracing", 2436 + ] 2437 + 2438 + [[package]] 2439 + name = "quinn-udp" 2440 + version = "0.5.5" 2441 + source = "registry+https://github.com/rust-lang/crates.io-index" 2442 + checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" 2443 + dependencies = [ 2444 + "libc", 2445 + "once_cell", 2446 + "socket2", 2447 + "tracing", 2448 + "windows-sys 0.59.0", 2449 + ] 2450 + 2451 + [[package]] 2299 2452 name = "quote" 2300 - version = "1.0.35" 2453 + version = "1.0.37" 2301 2454 source = "registry+https://github.com/rust-lang/crates.io-index" 2302 - checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2455 + checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 2303 2456 dependencies = [ 2304 2457 "proc-macro2", 2305 2458 ] ··· 2316 2469 source = "registry+https://github.com/rust-lang/crates.io-index" 2317 2470 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2318 2471 dependencies = [ 2472 + "libc", 2473 + "rand_chacha", 2319 2474 "rand_core", 2320 2475 ] 2321 2476 ··· 2334 2489 version = "0.6.4" 2335 2490 source = "registry+https://github.com/rust-lang/crates.io-index" 2336 2491 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2492 + dependencies = [ 2493 + "getrandom", 2494 + ] 2337 2495 2338 2496 [[package]] 2339 2497 name = "rayon" 2340 - version = "1.9.0" 2498 + version = "1.10.0" 2341 2499 source = "registry+https://github.com/rust-lang/crates.io-index" 2342 - checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" 2500 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 2343 2501 dependencies = [ 2344 2502 "either", 2345 2503 "rayon-core", ··· 2357 2515 2358 2516 [[package]] 2359 2517 name = "redox_syscall" 2360 - version = "0.4.1" 2518 + version = "0.5.7" 2361 2519 source = "registry+https://github.com/rust-lang/crates.io-index" 2362 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2520 + checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 2363 2521 dependencies = [ 2364 - "bitflags 1.3.2", 2522 + "bitflags 2.6.0", 2365 2523 ] 2366 2524 2367 2525 [[package]] 2368 2526 name = "redox_users" 2369 - version = "0.4.4" 2527 + version = "0.4.6" 2370 2528 source = "registry+https://github.com/rust-lang/crates.io-index" 2371 - checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 2529 + checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 2372 2530 dependencies = [ 2373 2531 "getrandom", 2374 2532 "libredox", ··· 2377 2535 2378 2536 [[package]] 2379 2537 name = "reflexo" 2380 - version = "0.5.0-rc2" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "247ea8050cb5c88b41a68b3269f5a2eb7ebff55851a564d96b035643418346e6" 2538 + version = "0.5.0-rc7" 2539 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2383 2540 dependencies = [ 2384 - "base64 0.22.0", 2541 + "base64", 2385 2542 "bitvec", 2386 2543 "comemo", 2387 2544 "dashmap", 2388 2545 "ecow", 2389 2546 "fxhash", 2390 - "once_cell", 2547 + "instant", 2391 2548 "parking_lot", 2392 2549 "path-clean", 2550 + "reflexo-typst-shim", 2393 2551 "rkyv", 2552 + "rustc-hash", 2394 2553 "serde", 2395 2554 "serde_json", 2396 2555 "serde_repr", 2397 2556 "serde_with", 2398 - "siphasher 1.0.0", 2557 + "siphasher 1.0.1", 2399 2558 "tiny-skia-path", 2400 2559 ] 2401 2560 2402 2561 [[package]] 2562 + name = "reflexo-typst" 2563 + version = "0.5.0-rc7" 2564 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2565 + dependencies = [ 2566 + "codespan-reporting", 2567 + "comemo", 2568 + "ecow", 2569 + "futures", 2570 + "fxhash", 2571 + "indexmap 2.6.0", 2572 + "log", 2573 + "nohash-hasher", 2574 + "notify", 2575 + "parking_lot", 2576 + "pathdiff", 2577 + "rayon", 2578 + "reflexo", 2579 + "reflexo-typst2vec", 2580 + "reflexo-vfs", 2581 + "reflexo-world", 2582 + "serde", 2583 + "serde_json", 2584 + "tar", 2585 + "tokio", 2586 + "typst", 2587 + ] 2588 + 2589 + [[package]] 2590 + name = "reflexo-typst-shim" 2591 + version = "0.5.0-rc7" 2592 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2593 + dependencies = [ 2594 + "cfg-if", 2595 + "typst", 2596 + "typst-syntax", 2597 + ] 2598 + 2599 + [[package]] 2600 + name = "reflexo-typst2vec" 2601 + version = "0.5.0-rc7" 2602 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2603 + dependencies = [ 2604 + "bitvec", 2605 + "comemo", 2606 + "crossbeam-queue", 2607 + "dashmap", 2608 + "flate2", 2609 + "log", 2610 + "parking_lot", 2611 + "rayon", 2612 + "reflexo", 2613 + "rustc-hash", 2614 + "serde", 2615 + "serde_json", 2616 + "svgtypes 0.13.0", 2617 + "tiny-skia", 2618 + "tiny-skia-path", 2619 + "ttf-parser 0.24.1", 2620 + "typst", 2621 + "xmlparser", 2622 + ] 2623 + 2624 + [[package]] 2625 + name = "reflexo-vfs" 2626 + version = "0.5.0-rc7" 2627 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2628 + dependencies = [ 2629 + "indexmap 2.6.0", 2630 + "log", 2631 + "nohash-hasher", 2632 + "parking_lot", 2633 + "reflexo", 2634 + "rpds", 2635 + "typst", 2636 + ] 2637 + 2638 + [[package]] 2639 + name = "reflexo-world" 2640 + version = "0.5.0-rc7" 2641 + source = "git+https://github.com/ParaN3xus/typst.ts?branch=tinymist-typst-0.12.0-rc2#2f5bcd35e03c269097636db5996e9f8ab0c831da" 2642 + dependencies = [ 2643 + "chrono", 2644 + "codespan-reporting", 2645 + "comemo", 2646 + "dirs", 2647 + "ecow", 2648 + "flate2", 2649 + "fontdb 0.16.2", 2650 + "hex", 2651 + "log", 2652 + "parking_lot", 2653 + "reflexo", 2654 + "reflexo-typst-shim", 2655 + "reflexo-vfs", 2656 + "reqwest", 2657 + "serde", 2658 + "serde_json", 2659 + "serde_with", 2660 + "sha2", 2661 + "strum 0.25.0", 2662 + "tar", 2663 + "typst", 2664 + ] 2665 + 2666 + [[package]] 2403 2667 name = "regex" 2404 - version = "1.10.3" 2668 + version = "1.11.0" 2405 2669 source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2670 + checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 2407 2671 dependencies = [ 2408 2672 "aho-corasick", 2409 2673 "memchr", ··· 2413 2677 2414 2678 [[package]] 2415 2679 name = "regex-automata" 2416 - version = "0.4.6" 2680 + version = "0.4.8" 2417 2681 source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 2682 + checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 2419 2683 dependencies = [ 2420 2684 "aho-corasick", 2421 2685 "memchr", ··· 2424 2688 2425 2689 [[package]] 2426 2690 name = "regex-syntax" 2427 - version = "0.8.2" 2691 + version = "0.8.5" 2428 2692 source = "registry+https://github.com/rust-lang/crates.io-index" 2429 - checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2693 + checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 2430 2694 2431 2695 [[package]] 2432 2696 name = "rend" ··· 2439 2703 2440 2704 [[package]] 2441 2705 name = "reqwest" 2442 - version = "0.11.27" 2706 + version = "0.12.8" 2443 2707 source = "registry+https://github.com/rust-lang/crates.io-index" 2444 - checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 2708 + checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" 2445 2709 dependencies = [ 2446 - "base64 0.21.7", 2710 + "base64", 2447 2711 "bytes", 2448 - "encoding_rs", 2712 + "futures-channel", 2449 2713 "futures-core", 2450 2714 "futures-util", 2451 - "h2", 2452 2715 "http", 2453 2716 "http-body", 2717 + "http-body-util", 2454 2718 "hyper", 2455 2719 "hyper-rustls", 2456 2720 "hyper-tls", 2721 + "hyper-util", 2457 2722 "ipnet", 2458 2723 "js-sys", 2459 2724 "log", ··· 2463 2728 "once_cell", 2464 2729 "percent-encoding", 2465 2730 "pin-project-lite", 2731 + "quinn", 2466 2732 "rustls", 2467 2733 "rustls-pemfile", 2734 + "rustls-pki-types", 2468 2735 "serde", 2469 2736 "serde_json", 2470 2737 "serde_urlencoded", 2471 2738 "sync_wrapper", 2472 - "system-configuration", 2473 2739 "tokio", 2474 2740 "tokio-native-tls", 2475 2741 "tokio-rustls", ··· 2479 2745 "wasm-bindgen-futures", 2480 2746 "web-sys", 2481 2747 "webpki-roots", 2482 - "winreg", 2748 + "windows-registry", 2483 2749 ] 2484 2750 2485 2751 [[package]] 2486 2752 name = "resvg" 2487 - version = "0.38.0" 2753 + version = "0.43.0" 2488 2754 source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "5c34501046959e06470ba62a2dc7f31c15f94ac250d842a45f9e012f4ee40c1e" 2755 + checksum = "c7314563c59c7ce31c18e23ad3dd092c37b928a0fa4e1c0a1a6504351ab411d1" 2490 2756 dependencies = [ 2491 - "gif 0.12.0", 2492 - "jpeg-decoder", 2757 + "gif", 2758 + "image-webp", 2493 2759 "log", 2494 2760 "pico-args", 2495 - "png", 2496 2761 "rgb", 2497 - "svgtypes", 2762 + "svgtypes 0.15.2", 2498 2763 "tiny-skia", 2499 2764 "usvg", 2765 + "zune-jpeg", 2500 2766 ] 2501 2767 2502 2768 [[package]] 2503 2769 name = "rgb" 2504 - version = "0.8.37" 2770 + version = "0.8.50" 2505 2771 source = "registry+https://github.com/rust-lang/crates.io-index" 2506 - checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 2772 + checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" 2507 2773 dependencies = [ 2508 2774 "bytemuck", 2509 2775 ] ··· 2525 2791 2526 2792 [[package]] 2527 2793 name = "rkyv" 2528 - version = "0.7.44" 2794 + version = "0.7.45" 2529 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2530 - checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 2796 + checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 2531 2797 dependencies = [ 2532 2798 "bitvec", 2533 2799 "bytecheck", ··· 2543 2809 2544 2810 [[package]] 2545 2811 name = "rkyv_derive" 2546 - version = "0.7.44" 2812 + version = "0.7.45" 2547 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 2814 + checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 2549 2815 dependencies = [ 2550 2816 "proc-macro2", 2551 2817 "quote", ··· 2554 2820 2555 2821 [[package]] 2556 2822 name = "roxmltree" 2557 - version = "0.19.0" 2823 + version = "0.20.0" 2558 2824 source = "registry+https://github.com/rust-lang/crates.io-index" 2559 - checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" 2825 + checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" 2826 + 2827 + [[package]] 2828 + name = "rpds" 2829 + version = "1.1.0" 2830 + source = "registry+https://github.com/rust-lang/crates.io-index" 2831 + checksum = "a0e15515d3ce3313324d842629ea4905c25a13f81953eadb88f85516f59290a4" 2832 + dependencies = [ 2833 + "archery", 2834 + ] 2835 + 2836 + [[package]] 2837 + name = "rust_decimal" 2838 + version = "1.36.0" 2839 + source = "registry+https://github.com/rust-lang/crates.io-index" 2840 + checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" 2841 + dependencies = [ 2842 + "arrayvec 0.7.6", 2843 + "num-traits", 2844 + ] 2560 2845 2561 2846 [[package]] 2562 2847 name = "rustc-demangle" 2563 - version = "0.1.23" 2848 + version = "0.1.24" 2564 2849 source = "registry+https://github.com/rust-lang/crates.io-index" 2565 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2850 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 2566 2851 2567 2852 [[package]] 2568 2853 name = "rustc-hash" 2569 - version = "1.1.0" 2854 + version = "2.0.0" 2570 2855 source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2856 + checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 2572 2857 2573 2858 [[package]] 2574 2859 name = "rustc_version" 2575 - version = "0.4.0" 2860 + version = "0.4.1" 2576 2861 source = "registry+https://github.com/rust-lang/crates.io-index" 2577 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2862 + checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2578 2863 dependencies = [ 2579 2864 "semver", 2580 2865 ] 2581 2866 2582 2867 [[package]] 2583 2868 name = "rustix" 2584 - version = "0.38.32" 2869 + version = "0.38.37" 2585 2870 source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" 2871 + checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 2587 2872 dependencies = [ 2588 - "bitflags 2.4.2", 2873 + "bitflags 2.6.0", 2589 2874 "errno", 2590 2875 "libc", 2591 2876 "linux-raw-sys", ··· 2594 2879 2595 2880 [[package]] 2596 2881 name = "rustls" 2597 - version = "0.21.10" 2882 + version = "0.23.15" 2598 2883 source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 2884 + checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993" 2600 2885 dependencies = [ 2601 - "log", 2886 + "once_cell", 2602 2887 "ring", 2888 + "rustls-pki-types", 2603 2889 "rustls-webpki", 2604 - "sct", 2890 + "subtle", 2891 + "zeroize", 2605 2892 ] 2606 2893 2607 2894 [[package]] 2608 2895 name = "rustls-pemfile" 2609 - version = "1.0.4" 2896 + version = "2.2.0" 2610 2897 source = "registry+https://github.com/rust-lang/crates.io-index" 2611 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2898 + checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 2612 2899 dependencies = [ 2613 - "base64 0.21.7", 2900 + "rustls-pki-types", 2614 2901 ] 2615 2902 2616 2903 [[package]] 2904 + name = "rustls-pki-types" 2905 + version = "1.10.0" 2906 + source = "registry+https://github.com/rust-lang/crates.io-index" 2907 + checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 2908 + 2909 + [[package]] 2617 2910 name = "rustls-webpki" 2618 - version = "0.101.7" 2911 + version = "0.102.8" 2619 2912 source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 2913 + checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 2621 2914 dependencies = [ 2622 2915 "ring", 2916 + "rustls-pki-types", 2623 2917 "untrusted", 2624 2918 ] 2625 2919 2626 2920 [[package]] 2627 2921 name = "rustversion" 2628 - version = "1.0.14" 2922 + version = "1.0.18" 2629 2923 source = "registry+https://github.com/rust-lang/crates.io-index" 2630 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2924 + checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" 2631 2925 2632 2926 [[package]] 2633 2927 name = "rustybuzz" 2634 - version = "0.12.1" 2928 + version = "0.18.0" 2635 2929 source = "registry+https://github.com/rust-lang/crates.io-index" 2636 - checksum = "f0ae5692c5beaad6a9e22830deeed7874eae8a4e3ba4076fb48e12c56856222c" 2930 + checksum = "c85d1ccd519e61834798eb52c4e886e8c2d7d698dd3d6ce0b1b47eb8557f1181" 2637 2931 dependencies = [ 2638 - "bitflags 2.4.2", 2932 + "bitflags 2.6.0", 2639 2933 "bytemuck", 2934 + "core_maths", 2935 + "log", 2640 2936 "smallvec", 2641 - "ttf-parser", 2937 + "ttf-parser 0.24.1", 2642 2938 "unicode-bidi-mirroring", 2643 2939 "unicode-ccc", 2644 2940 "unicode-properties", ··· 2647 2943 2648 2944 [[package]] 2649 2945 name = "ryu" 2650 - version = "1.0.17" 2651 - source = "registry+https://github.com/rust-lang/crates.io-index" 2652 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 2653 - 2654 - [[package]] 2655 - name = "safemem" 2656 - version = "0.3.3" 2946 + version = "1.0.18" 2657 2947 source = "registry+https://github.com/rust-lang/crates.io-index" 2658 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2948 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 2659 2949 2660 2950 [[package]] 2661 2951 name = "same-file" ··· 2668 2958 2669 2959 [[package]] 2670 2960 name = "schannel" 2671 - version = "0.1.23" 2961 + version = "0.1.26" 2672 2962 source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 2963 + checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" 2674 2964 dependencies = [ 2675 - "windows-sys 0.52.0", 2965 + "windows-sys 0.59.0", 2676 2966 ] 2677 2967 2678 2968 [[package]] ··· 2682 2972 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2683 2973 2684 2974 [[package]] 2685 - name = "sct" 2686 - version = "0.7.1" 2687 - source = "registry+https://github.com/rust-lang/crates.io-index" 2688 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 2689 - dependencies = [ 2690 - "ring", 2691 - "untrusted", 2692 - ] 2693 - 2694 - [[package]] 2695 2975 name = "seahash" 2696 2976 version = "4.1.0" 2697 2977 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2699 2979 2700 2980 [[package]] 2701 2981 name = "security-framework" 2702 - version = "2.9.2" 2982 + version = "2.11.1" 2703 2983 source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 2984 + checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 2705 2985 dependencies = [ 2706 - "bitflags 1.3.2", 2986 + "bitflags 2.6.0", 2707 2987 "core-foundation", 2708 2988 "core-foundation-sys", 2709 2989 "libc", ··· 2712 2992 2713 2993 [[package]] 2714 2994 name = "security-framework-sys" 2715 - version = "2.9.1" 2995 + version = "2.12.0" 2716 2996 source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 2997 + checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 2718 2998 dependencies = [ 2719 2999 "core-foundation-sys", 2720 3000 "libc", ··· 2722 3002 2723 3003 [[package]] 2724 3004 name = "semver" 2725 - version = "1.0.22" 3005 + version = "1.0.23" 2726 3006 source = "registry+https://github.com/rust-lang/crates.io-index" 2727 - checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 3007 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 2728 3008 dependencies = [ 2729 3009 "serde", 2730 3010 ] 2731 3011 2732 3012 [[package]] 2733 3013 name = "serde" 2734 - version = "1.0.197" 3014 + version = "1.0.210" 2735 3015 source = "registry+https://github.com/rust-lang/crates.io-index" 2736 - checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 3016 + checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 2737 3017 dependencies = [ 2738 3018 "serde_derive", 2739 3019 ] 2740 3020 2741 3021 [[package]] 2742 3022 name = "serde_derive" 2743 - version = "1.0.197" 3023 + version = "1.0.210" 2744 3024 source = "registry+https://github.com/rust-lang/crates.io-index" 2745 - checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 3025 + checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 2746 3026 dependencies = [ 2747 3027 "proc-macro2", 2748 3028 "quote", 2749 - "syn 2.0.52", 3029 + "syn 2.0.79", 2750 3030 ] 2751 3031 2752 3032 [[package]] 2753 3033 name = "serde_json" 2754 - version = "1.0.114" 3034 + version = "1.0.131" 2755 3035 source = "registry+https://github.com/rust-lang/crates.io-index" 2756 - checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 3036 + checksum = "67d42a0bd4ac281beff598909bb56a86acaf979b84483e1c79c10dcaf98f8cf3" 2757 3037 dependencies = [ 2758 3038 "itoa", 3039 + "memchr", 2759 3040 "ryu", 2760 3041 "serde", 2761 3042 ] 2762 3043 2763 3044 [[package]] 2764 3045 name = "serde_repr" 2765 - version = "0.1.18" 3046 + version = "0.1.19" 2766 3047 source = "registry+https://github.com/rust-lang/crates.io-index" 2767 - checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 3048 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2768 3049 dependencies = [ 2769 3050 "proc-macro2", 2770 3051 "quote", 2771 - "syn 2.0.52", 3052 + "syn 2.0.79", 2772 3053 ] 2773 3054 2774 3055 [[package]] 2775 3056 name = "serde_spanned" 2776 - version = "0.6.5" 3057 + version = "0.6.8" 2777 3058 source = "registry+https://github.com/rust-lang/crates.io-index" 2778 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 3059 + checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 2779 3060 dependencies = [ 2780 3061 "serde", 2781 3062 ] ··· 2794 3075 2795 3076 [[package]] 2796 3077 name = "serde_with" 2797 - version = "3.7.0" 3078 + version = "3.11.0" 2798 3079 source = "registry+https://github.com/rust-lang/crates.io-index" 2799 - checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a" 3080 + checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" 2800 3081 dependencies = [ 2801 - "base64 0.21.7", 3082 + "base64", 2802 3083 "chrono", 2803 3084 "hex", 2804 3085 "indexmap 1.9.3", 2805 - "indexmap 2.2.6", 3086 + "indexmap 2.6.0", 2806 3087 "serde", 2807 3088 "serde_derive", 2808 3089 "serde_json", ··· 2812 3093 2813 3094 [[package]] 2814 3095 name = "serde_with_macros" 2815 - version = "3.7.0" 3096 + version = "3.11.0" 2816 3097 source = "registry+https://github.com/rust-lang/crates.io-index" 2817 - checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655" 3098 + checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" 2818 3099 dependencies = [ 2819 3100 "darling", 2820 3101 "proc-macro2", 2821 3102 "quote", 2822 - "syn 2.0.52", 3103 + "syn 2.0.79", 2823 3104 ] 2824 3105 2825 3106 [[package]] 2826 3107 name = "serde_yaml" 2827 - version = "0.9.33" 3108 + version = "0.9.34+deprecated" 2828 3109 source = "registry+https://github.com/rust-lang/crates.io-index" 2829 - checksum = "a0623d197252096520c6f2a5e1171ee436e5af99a5d7caa2891e55e61950e6d9" 3110 + checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 2830 3111 dependencies = [ 2831 - "indexmap 2.2.6", 3112 + "indexmap 2.6.0", 2832 3113 "itoa", 2833 3114 "ryu", 2834 3115 "serde", ··· 2847 3128 ] 2848 3129 2849 3130 [[package]] 3131 + name = "shlex" 3132 + version = "1.3.0" 3133 + source = "registry+https://github.com/rust-lang/crates.io-index" 3134 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3135 + 3136 + [[package]] 3137 + name = "signal-hook-registry" 3138 + version = "1.4.2" 3139 + source = "registry+https://github.com/rust-lang/crates.io-index" 3140 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3141 + dependencies = [ 3142 + "libc", 3143 + ] 3144 + 3145 + [[package]] 2850 3146 name = "simd-adler32" 2851 3147 version = "0.3.7" 2852 3148 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2854 3150 2855 3151 [[package]] 2856 3152 name = "simdutf8" 2857 - version = "0.1.4" 3153 + version = "0.1.5" 2858 3154 source = "registry+https://github.com/rust-lang/crates.io-index" 2859 - checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 3155 + checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 2860 3156 2861 3157 [[package]] 2862 3158 name = "similar" 2863 - version = "2.4.0" 3159 + version = "2.6.0" 2864 3160 source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21" 3161 + checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" 2866 3162 2867 3163 [[package]] 2868 3164 name = "simplecss" ··· 2881 3177 2882 3178 [[package]] 2883 3179 name = "siphasher" 2884 - version = "1.0.0" 3180 + version = "1.0.1" 2885 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 2886 - checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" 3182 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 2887 3183 2888 3184 [[package]] 2889 3185 name = "slab" ··· 2905 3201 2906 3202 [[package]] 2907 3203 name = "smallvec" 2908 - version = "1.13.1" 3204 + version = "1.13.2" 2909 3205 source = "registry+https://github.com/rust-lang/crates.io-index" 2910 - checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 3206 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2911 3207 2912 3208 [[package]] 2913 3209 name = "socket2" 2914 - version = "0.5.6" 3210 + version = "0.5.7" 2915 3211 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 3212 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 2917 3213 dependencies = [ 2918 3214 "libc", 2919 3215 "windows-sys 0.52.0", ··· 2933 3229 2934 3230 [[package]] 2935 3231 name = "stacker" 2936 - version = "0.1.15" 3232 + version = "0.1.17" 2937 3233 source = "registry+https://github.com/rust-lang/crates.io-index" 2938 - checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" 3234 + checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b" 2939 3235 dependencies = [ 2940 3236 "cc", 2941 3237 "cfg-if", 2942 3238 "libc", 2943 3239 "psm", 2944 - "winapi", 3240 + "windows-sys 0.59.0", 2945 3241 ] 2946 3242 2947 3243 [[package]] ··· 2954 3250 ] 2955 3251 2956 3252 [[package]] 2957 - name = "strsim" 2958 - version = "0.10.0" 3253 + name = "string-interner" 3254 + version = "0.17.0" 2959 3255 source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3256 + checksum = "1c6a0d765f5807e98a091107bae0a56ea3799f66a5de47b2c84c94a39c09974e" 3257 + dependencies = [ 3258 + "cfg-if", 3259 + "hashbrown 0.14.5", 3260 + "serde", 3261 + ] 2961 3262 2962 3263 [[package]] 2963 3264 name = "strsim" 2964 - version = "0.11.0" 3265 + version = "0.11.1" 2965 3266 source = "registry+https://github.com/rust-lang/crates.io-index" 2966 - checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 3267 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2967 3268 2968 3269 [[package]] 2969 3270 name = "strum" ··· 2976 3277 2977 3278 [[package]] 2978 3279 name = "strum" 2979 - version = "0.26.2" 3280 + version = "0.26.3" 2980 3281 source = "registry+https://github.com/rust-lang/crates.io-index" 2981 - checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" 3282 + checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 2982 3283 dependencies = [ 2983 - "strum_macros 0.26.2", 3284 + "strum_macros 0.26.4", 2984 3285 ] 2985 3286 2986 3287 [[package]] ··· 2993 3294 "proc-macro2", 2994 3295 "quote", 2995 3296 "rustversion", 2996 - "syn 2.0.52", 3297 + "syn 2.0.79", 2997 3298 ] 2998 3299 2999 3300 [[package]] 3000 3301 name = "strum_macros" 3001 - version = "0.26.2" 3302 + version = "0.26.4" 3002 3303 source = "registry+https://github.com/rust-lang/crates.io-index" 3003 - checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" 3304 + checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 3004 3305 dependencies = [ 3005 - "heck 0.4.1", 3306 + "heck 0.5.0", 3006 3307 "proc-macro2", 3007 3308 "quote", 3008 3309 "rustversion", 3009 - "syn 2.0.52", 3310 + "syn 2.0.79", 3010 3311 ] 3011 3312 3012 3313 [[package]] 3013 3314 name = "subsetter" 3014 - version = "0.1.1" 3315 + version = "0.2.0" 3316 + source = "registry+https://github.com/rust-lang/crates.io-index" 3317 + checksum = "74f98178f34057d4d4de93d68104007c6dea4dfac930204a69ab4622daefa648" 3318 + 3319 + [[package]] 3320 + name = "subtle" 3321 + version = "2.6.1" 3015 3322 source = "registry+https://github.com/rust-lang/crates.io-index" 3016 - checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9" 3323 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3017 3324 3018 3325 [[package]] 3019 3326 name = "svg2pdf" 3020 - version = "0.10.0" 3327 + version = "0.12.0" 3021 3328 source = "registry+https://github.com/rust-lang/crates.io-index" 3022 - checksum = "ba36b330062be8497fd96597227a757b621b86c4d24d164b06e4522b52b3693e" 3329 + checksum = "5014c9dadcf318fb7ef8c16438e95abcc9de1ae24d60d5bccc64c55100c50364" 3023 3330 dependencies = [ 3331 + "fontdb 0.21.0", 3024 3332 "image", 3333 + "log", 3025 3334 "miniz_oxide", 3026 3335 "once_cell", 3027 3336 "pdf-writer", 3028 3337 "resvg", 3338 + "siphasher 1.0.1", 3339 + "subsetter", 3029 3340 "tiny-skia", 3341 + "ttf-parser 0.24.1", 3030 3342 "usvg", 3031 3343 ] 3032 3344 ··· 3036 3348 source = "registry+https://github.com/rust-lang/crates.io-index" 3037 3349 checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70" 3038 3350 dependencies = [ 3039 - "kurbo", 3351 + "kurbo 0.9.5", 3040 3352 "siphasher 0.3.11", 3041 3353 ] 3042 3354 3043 3355 [[package]] 3356 + name = "svgtypes" 3357 + version = "0.15.2" 3358 + source = "registry+https://github.com/rust-lang/crates.io-index" 3359 + checksum = "794de53cc48eaabeed0ab6a3404a65f40b3e38c067e4435883a65d2aa4ca000e" 3360 + dependencies = [ 3361 + "kurbo 0.11.1", 3362 + "siphasher 1.0.1", 3363 + ] 3364 + 3365 + [[package]] 3044 3366 name = "syn" 3045 3367 version = "1.0.109" 3046 3368 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3053 3375 3054 3376 [[package]] 3055 3377 name = "syn" 3056 - version = "2.0.52" 3378 + version = "2.0.79" 3057 3379 source = "registry+https://github.com/rust-lang/crates.io-index" 3058 - checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 3380 + checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" 3059 3381 dependencies = [ 3060 3382 "proc-macro2", 3061 3383 "quote", ··· 3064 3386 3065 3387 [[package]] 3066 3388 name = "sync_wrapper" 3067 - version = "0.1.2" 3389 + version = "1.0.1" 3068 3390 source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 3391 + checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 3392 + dependencies = [ 3393 + "futures-core", 3394 + ] 3070 3395 3071 3396 [[package]] 3072 3397 name = "synstructure" ··· 3076 3401 dependencies = [ 3077 3402 "proc-macro2", 3078 3403 "quote", 3079 - "syn 2.0.52", 3404 + "syn 2.0.79", 3080 3405 ] 3081 3406 3082 3407 [[package]] ··· 3102 3427 ] 3103 3428 3104 3429 [[package]] 3105 - name = "system-configuration" 3106 - version = "0.5.1" 3107 - source = "registry+https://github.com/rust-lang/crates.io-index" 3108 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 3109 - dependencies = [ 3110 - "bitflags 1.3.2", 3111 - "core-foundation", 3112 - "system-configuration-sys", 3113 - ] 3114 - 3115 - [[package]] 3116 - name = "system-configuration-sys" 3117 - version = "0.5.0" 3118 - source = "registry+https://github.com/rust-lang/crates.io-index" 3119 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 3120 - dependencies = [ 3121 - "core-foundation-sys", 3122 - "libc", 3123 - ] 3124 - 3125 - [[package]] 3126 3430 name = "tap" 3127 3431 version = "1.0.1" 3128 3432 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3130 3434 3131 3435 [[package]] 3132 3436 name = "tar" 3133 - version = "0.4.40" 3437 + version = "0.4.42" 3134 3438 source = "registry+https://github.com/rust-lang/crates.io-index" 3135 - checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 3439 + checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" 3136 3440 dependencies = [ 3137 3441 "filetime", 3138 3442 "libc", ··· 3141 3445 3142 3446 [[package]] 3143 3447 name = "tempfile" 3144 - version = "3.10.1" 3448 + version = "3.13.0" 3145 3449 source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 3450 + checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 3147 3451 dependencies = [ 3148 3452 "cfg-if", 3149 3453 "fastrand", 3454 + "once_cell", 3150 3455 "rustix", 3151 - "windows-sys 0.52.0", 3456 + "windows-sys 0.59.0", 3152 3457 ] 3153 3458 3154 3459 [[package]] ··· 3159 3464 dependencies = [ 3160 3465 "winapi-util", 3161 3466 ] 3467 + 3468 + [[package]] 3469 + name = "thin-vec" 3470 + version = "0.2.13" 3471 + source = "registry+https://github.com/rust-lang/crates.io-index" 3472 + checksum = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b" 3162 3473 3163 3474 [[package]] 3164 3475 name = "thiserror" 3165 - version = "1.0.58" 3476 + version = "1.0.64" 3166 3477 source = "registry+https://github.com/rust-lang/crates.io-index" 3167 - checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" 3478 + checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 3168 3479 dependencies = [ 3169 3480 "thiserror-impl", 3170 3481 ] 3171 3482 3172 3483 [[package]] 3173 3484 name = "thiserror-impl" 3174 - version = "1.0.58" 3485 + version = "1.0.64" 3175 3486 source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" 3487 + checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 3177 3488 dependencies = [ 3178 3489 "proc-macro2", 3179 3490 "quote", 3180 - "syn 2.0.52", 3181 - ] 3182 - 3183 - [[package]] 3184 - name = "threadpool" 3185 - version = "1.8.1" 3186 - source = "registry+https://github.com/rust-lang/crates.io-index" 3187 - checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 3188 - dependencies = [ 3189 - "num_cpus", 3491 + "syn 2.0.79", 3190 3492 ] 3191 3493 3192 3494 [[package]] 3193 3495 name = "time" 3194 - version = "0.3.34" 3496 + version = "0.3.36" 3195 3497 source = "registry+https://github.com/rust-lang/crates.io-index" 3196 - checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 3498 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 3197 3499 dependencies = [ 3198 3500 "deranged", 3199 3501 "itoa", ··· 3214 3516 3215 3517 [[package]] 3216 3518 name = "time-macros" 3217 - version = "0.2.17" 3519 + version = "0.2.18" 3218 3520 source = "registry+https://github.com/rust-lang/crates.io-index" 3219 - checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 3521 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 3220 3522 dependencies = [ 3221 3523 "num-conv", 3222 3524 "time-core", ··· 3229 3531 checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 3230 3532 dependencies = [ 3231 3533 "arrayref", 3232 - "arrayvec 0.7.4", 3534 + "arrayvec 0.7.6", 3233 3535 "bytemuck", 3234 3536 "cfg-if", 3235 3537 "log", ··· 3250 3552 3251 3553 [[package]] 3252 3554 name = "tinystr" 3253 - version = "0.7.5" 3555 + version = "0.7.6" 3254 3556 source = "registry+https://github.com/rust-lang/crates.io-index" 3255 - checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece" 3557 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 3256 3558 dependencies = [ 3257 3559 "displaydoc", 3258 3560 "serde", ··· 3261 3563 3262 3564 [[package]] 3263 3565 name = "tinyvec" 3264 - version = "1.6.0" 3566 + version = "1.8.0" 3265 3567 source = "registry+https://github.com/rust-lang/crates.io-index" 3266 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3568 + checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 3267 3569 dependencies = [ 3268 3570 "tinyvec_macros", 3269 3571 ] ··· 3276 3578 3277 3579 [[package]] 3278 3580 name = "tokio" 3279 - version = "1.36.0" 3581 + version = "1.40.0" 3280 3582 source = "registry+https://github.com/rust-lang/crates.io-index" 3281 - checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 3583 + checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 3282 3584 dependencies = [ 3283 3585 "backtrace", 3284 3586 "bytes", 3285 3587 "libc", 3286 - "mio", 3588 + "mio 1.0.2", 3589 + "parking_lot", 3287 3590 "pin-project-lite", 3591 + "signal-hook-registry", 3288 3592 "socket2", 3289 - "windows-sys 0.48.0", 3593 + "tokio-macros", 3594 + "windows-sys 0.52.0", 3595 + ] 3596 + 3597 + [[package]] 3598 + name = "tokio-macros" 3599 + version = "2.4.0" 3600 + source = "registry+https://github.com/rust-lang/crates.io-index" 3601 + checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 3602 + dependencies = [ 3603 + "proc-macro2", 3604 + "quote", 3605 + "syn 2.0.79", 3290 3606 ] 3291 3607 3292 3608 [[package]] ··· 3301 3617 3302 3618 [[package]] 3303 3619 name = "tokio-rustls" 3304 - version = "0.24.1" 3620 + version = "0.26.0" 3305 3621 source = "registry+https://github.com/rust-lang/crates.io-index" 3306 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 3622 + checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 3307 3623 dependencies = [ 3308 3624 "rustls", 3625 + "rustls-pki-types", 3309 3626 "tokio", 3310 3627 ] 3311 3628 3312 3629 [[package]] 3313 - name = "tokio-util" 3314 - version = "0.7.10" 3315 - source = "registry+https://github.com/rust-lang/crates.io-index" 3316 - checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 3317 - dependencies = [ 3318 - "bytes", 3319 - "futures-core", 3320 - "futures-sink", 3321 - "pin-project-lite", 3322 - "tokio", 3323 - "tracing", 3324 - ] 3325 - 3326 - [[package]] 3327 3630 name = "toml" 3328 - version = "0.8.12" 3631 + version = "0.8.19" 3329 3632 source = "registry+https://github.com/rust-lang/crates.io-index" 3330 - checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" 3633 + checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 3331 3634 dependencies = [ 3332 3635 "serde", 3333 3636 "serde_spanned", ··· 3337 3640 3338 3641 [[package]] 3339 3642 name = "toml_datetime" 3340 - version = "0.6.5" 3643 + version = "0.6.8" 3341 3644 source = "registry+https://github.com/rust-lang/crates.io-index" 3342 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 3645 + checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 3343 3646 dependencies = [ 3344 3647 "serde", 3345 3648 ] 3346 3649 3347 3650 [[package]] 3348 3651 name = "toml_edit" 3349 - version = "0.22.9" 3652 + version = "0.22.22" 3350 3653 source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" 3654 + checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 3352 3655 dependencies = [ 3353 - "indexmap 2.2.6", 3656 + "indexmap 2.6.0", 3354 3657 "serde", 3355 3658 "serde_spanned", 3356 3659 "toml_datetime", ··· 3359 3662 3360 3663 [[package]] 3361 3664 name = "tower-service" 3362 - version = "0.3.2" 3665 + version = "0.3.3" 3363 3666 source = "registry+https://github.com/rust-lang/crates.io-index" 3364 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 3667 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3365 3668 3366 3669 [[package]] 3367 3670 name = "tracing" ··· 3383 3686 ] 3384 3687 3385 3688 [[package]] 3689 + name = "triomphe" 3690 + version = "0.1.14" 3691 + source = "registry+https://github.com/rust-lang/crates.io-index" 3692 + checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85" 3693 + 3694 + [[package]] 3386 3695 name = "try-lock" 3387 3696 version = "0.2.5" 3388 3697 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3393 3702 version = "0.20.0" 3394 3703 source = "registry+https://github.com/rust-lang/crates.io-index" 3395 3704 checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4" 3705 + 3706 + [[package]] 3707 + name = "ttf-parser" 3708 + version = "0.24.1" 3709 + source = "registry+https://github.com/rust-lang/crates.io-index" 3710 + checksum = "5be21190ff5d38e8b4a2d3b6a3ae57f612cc39c96e83cedeaf7abc338a8bac4a" 3711 + dependencies = [ 3712 + "core_maths", 3713 + ] 3396 3714 3397 3715 [[package]] 3398 3716 name = "two-face" 3399 - version = "0.3.0" 3717 + version = "0.4.0" 3400 3718 source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "37bed2135b2459c7eefba72c906d374697eb15949c205f2f124e3636a46b5eeb" 3719 + checksum = "0ccd4843ea031c609fe9c16cae00e9657bad8a9f735a3cc2e420955d802b4268" 3402 3720 dependencies = [ 3403 3721 "once_cell", 3404 3722 "serde", ··· 3419 3737 3420 3738 [[package]] 3421 3739 name = "typst" 3422 - version = "0.11.0" 3740 + version = "0.12.0" 3423 3741 source = "registry+https://github.com/rust-lang/crates.io-index" 3424 - checksum = "82ce6533a33d2cc4b5eba6b009b862e75c8f9146a584f84ca154c94463e43993" 3742 + checksum = "87286a6b7e417426c425f35c42fb3d86e54ee99485b7eeb3662f4aeb569151c6" 3425 3743 dependencies = [ 3744 + "arrayvec 0.7.6", 3426 3745 "az", 3427 - "bitflags 2.4.2", 3746 + "bitflags 2.6.0", 3747 + "bumpalo", 3428 3748 "chinese-number", 3429 3749 "ciborium", 3430 3750 "comemo", 3431 3751 "csv", 3432 3752 "ecow", 3433 - "fontdb", 3753 + "flate2", 3754 + "fontdb 0.21.0", 3434 3755 "hayagriva", 3435 3756 "hypher", 3436 3757 "icu_properties", ··· 3440 3761 "icu_segmenter", 3441 3762 "if_chain", 3442 3763 "image", 3443 - "indexmap 2.2.6", 3764 + "indexmap 2.6.0", 3444 3765 "kamadak-exif", 3445 - "kurbo", 3766 + "kurbo 0.11.1", 3446 3767 "lipsum", 3447 3768 "log", 3448 3769 "once_cell", ··· 3454 3775 "rayon", 3455 3776 "regex", 3456 3777 "roxmltree", 3778 + "rust_decimal", 3457 3779 "rustybuzz", 3458 3780 "serde", 3459 3781 "serde_json", 3460 3782 "serde_yaml", 3461 - "siphasher 1.0.0", 3783 + "siphasher 1.0.1", 3462 3784 "smallvec", 3463 3785 "stacker", 3464 3786 "syntect", 3465 3787 "time", 3466 3788 "toml", 3467 - "ttf-parser", 3789 + "ttf-parser 0.24.1", 3468 3790 "two-face", 3469 3791 "typed-arena", 3470 3792 "typst-assets", 3471 3793 "typst-macros", 3472 3794 "typst-syntax", 3473 3795 "typst-timing", 3796 + "typst-utils", 3474 3797 "unicode-bidi", 3475 3798 "unicode-math-class", 3476 3799 "unicode-script", 3477 3800 "unicode-segmentation", 3801 + "unscanny", 3478 3802 "usvg", 3479 3803 "wasmi", 3804 + "xmlwriter", 3480 3805 ] 3481 3806 3482 3807 [[package]] 3483 3808 name = "typst-assets" 3484 - version = "0.11.0" 3809 + version = "0.12.0" 3485 3810 source = "registry+https://github.com/rust-lang/crates.io-index" 3486 - checksum = "f13f85360328da54847dd7fefaf272dfa5b6d1fdeb53f32938924c39bf5b2c6c" 3811 + checksum = "4fe00da1b24da2c4a7da532fc33d0c3bd43a902ca4c408ee2c36eabe70f2f4ba" 3487 3812 3488 3813 [[package]] 3489 3814 name = "typst-macros" 3490 - version = "0.11.0" 3815 + version = "0.12.0" 3491 3816 source = "registry+https://github.com/rust-lang/crates.io-index" 3492 - checksum = "54e48fdd6dabf48a0e595960aaef6ae43dac7d243e8c1c6926a0787d5b8a9ba7" 3817 + checksum = "17b8b94b63e868e969e372929d6d3efb0d5f8cedad95a4f3aa460959f4544e0d" 3493 3818 dependencies = [ 3494 - "heck 0.4.1", 3819 + "heck 0.5.0", 3495 3820 "proc-macro2", 3496 3821 "quote", 3497 - "syn 2.0.52", 3822 + "syn 2.0.79", 3498 3823 ] 3499 3824 3500 3825 [[package]] 3501 3826 name = "typst-pdf" 3502 - version = "0.11.0" 3827 + version = "0.12.0" 3503 3828 source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "7c27957bbe3e17b961746a7ddf6f0831479674331457680bb8e3b84f7b83bd58" 3829 + checksum = "f8734aa2909d388486f58aba306711c6b916712bf09e11db05ca21ff5d712766" 3505 3830 dependencies = [ 3506 - "base64 0.22.0", 3831 + "arrayvec 0.7.6", 3832 + "base64", 3507 3833 "bytemuck", 3508 3834 "comemo", 3509 3835 "ecow", 3510 3836 "image", 3837 + "indexmap 2.6.0", 3511 3838 "miniz_oxide", 3512 3839 "once_cell", 3513 3840 "pdf-writer", 3841 + "serde", 3514 3842 "subsetter", 3515 3843 "svg2pdf", 3516 - "ttf-parser", 3844 + "ttf-parser 0.24.1", 3517 3845 "typst", 3518 3846 "typst-assets", 3519 3847 "typst-macros", 3520 3848 "typst-timing", 3521 - "unicode-properties", 3522 3849 "unscanny", 3523 3850 "xmp-writer", 3524 3851 ] 3525 3852 3526 3853 [[package]] 3527 3854 name = "typst-render" 3528 - version = "0.11.0" 3855 + version = "0.12.0" 3529 3856 source = "registry+https://github.com/rust-lang/crates.io-index" 3530 - checksum = "f7bcbc9a824c5e4d61327ec100e570d7ba03e3a29dcdb0a9736024a9b0e86594" 3857 + checksum = "4d70f981e0016722e9ec71ab087af057a29e622b604fcf471b0b453e2da2db04" 3531 3858 dependencies = [ 3532 3859 "bytemuck", 3533 3860 "comemo", 3534 - "flate2", 3535 3861 "image", 3536 3862 "pixglyph", 3537 3863 "resvg", 3538 3864 "roxmltree", 3539 3865 "tiny-skia", 3540 - "ttf-parser", 3866 + "ttf-parser 0.24.1", 3541 3867 "typst", 3542 3868 "typst-macros", 3543 3869 "typst-timing", ··· 3546 3872 3547 3873 [[package]] 3548 3874 name = "typst-syntax" 3549 - version = "0.11.0" 3550 - source = "git+https://github.com/Myriad-Dreamin/typst?rev=d2afbb9a62436a20b507e833d70a2ddc77a00b74#d2afbb9a62436a20b507e833d70a2ddc77a00b74" 3875 + version = "0.12.0" 3876 + source = "registry+https://github.com/rust-lang/crates.io-index" 3877 + checksum = "05b7be8b6ed6b2cb39ca495947d548a28d7db0ba244008e44c5a759120327693" 3551 3878 dependencies = [ 3552 - "comemo", 3553 3879 "ecow", 3554 3880 "once_cell", 3555 3881 "serde", 3882 + "toml", 3883 + "typst-utils", 3556 3884 "unicode-ident", 3557 3885 "unicode-math-class", 3558 3886 "unicode-script", ··· 3562 3890 3563 3891 [[package]] 3564 3892 name = "typst-timing" 3565 - version = "0.11.0" 3893 + version = "0.12.0" 3566 3894 source = "registry+https://github.com/rust-lang/crates.io-index" 3567 - checksum = "6b2629933cde6f299c43627b90c83bb006cb906c56cc5dec7324f0a5017d5fd8" 3895 + checksum = "175e7755eca10fe7d5a37a54cff50fbdf1a1becd55f35330ab783f5317c9eb96" 3568 3896 dependencies = [ 3569 3897 "parking_lot", 3570 3898 "serde", ··· 3573 3901 ] 3574 3902 3575 3903 [[package]] 3576 - name = "typst-ts-compiler" 3577 - version = "0.5.0-rc2" 3904 + name = "typst-utils" 3905 + version = "0.12.0" 3578 3906 source = "registry+https://github.com/rust-lang/crates.io-index" 3579 - checksum = "c18cf7d96c0c558901b3f7e3f5200ecb7e3d7d3dcc5a1222e94bc875237ff352" 3907 + checksum = "8f0305443ed97f0b658471487228f86bf835705e7525fbdcc671cebd864f7a40" 3580 3908 dependencies = [ 3581 - "append-only-vec", 3582 - "base64 0.22.0", 3583 - "chrono", 3584 - "codespan-reporting", 3585 - "comemo", 3586 - "dirs", 3587 - "dissimilar", 3588 - "flate2", 3589 - "fontdb", 3590 - "fst", 3591 - "hex", 3592 - "indexmap 2.2.6", 3593 - "instant", 3594 - "log", 3595 - "nohash-hasher", 3596 - "notify", 3597 3909 "once_cell", 3598 - "parking_lot", 3599 - "pathdiff", 3600 - "reqwest", 3601 - "rustc-hash", 3602 - "serde", 3603 - "serde_json", 3604 - "sha2", 3605 - "strum 0.25.0", 3606 - "tar", 3607 - "typst", 3608 - "typst-ts-core", 3609 - "walkdir", 3610 - ] 3611 - 3612 - [[package]] 3613 - name = "typst-ts-core" 3614 - version = "0.5.0-rc2" 3615 - source = "registry+https://github.com/rust-lang/crates.io-index" 3616 - checksum = "a69135c380eb60efa4aeabd986d27d82ecd1b4c843fd3393992b449409317847" 3617 - dependencies = [ 3618 - "base64 0.22.0", 3619 - "base64-serde", 3620 - "bitvec", 3621 - "byteorder", 3622 - "comemo", 3623 - "crossbeam-queue", 3624 - "dashmap", 3625 - "ecow", 3626 - "elsa", 3627 - "flate2", 3628 - "fxhash", 3629 - "hex", 3630 - "log", 3631 - "once_cell", 3632 - "parking_lot", 3633 - "path-clean", 3910 + "portable-atomic", 3634 3911 "rayon", 3635 - "reflexo", 3636 - "rustc-hash", 3637 - "serde", 3638 - "serde_json", 3639 - "serde_repr", 3640 - "serde_with", 3641 - "sha2", 3642 - "siphasher 1.0.0", 3643 - "tiny-skia", 3644 - "tiny-skia-path", 3645 - "ttf-parser", 3646 - "typst", 3647 - "xmlparser", 3912 + "siphasher 1.0.1", 3913 + "thin-vec", 3648 3914 ] 3649 3915 3650 3916 [[package]] 3651 3917 name = "typstyle" 3652 - version = "0.11.16" 3918 + version = "0.12.0" 3653 3919 dependencies = [ 3654 3920 "anyhow", 3655 3921 "clap", 3922 + "clap_complete", 3923 + "ecow", 3656 3924 "insta", 3657 3925 "itertools", 3658 3926 "libtest-mimic", ··· 3660 3928 "pathdiff", 3661 3929 "pretty", 3662 3930 "pretty_assertions", 3931 + "reflexo", 3932 + "reflexo-typst", 3933 + "reflexo-typst-shim", 3934 + "reflexo-vfs", 3935 + "reflexo-world", 3663 3936 "typst", 3664 3937 "typst-assets", 3665 3938 "typst-pdf", 3666 3939 "typst-render", 3667 3940 "typst-syntax", 3668 - "typst-ts-compiler", 3669 - "typst-ts-core", 3670 3941 "vergen", 3671 3942 "walkdir", 3672 3943 "wasm-bindgen", ··· 3674 3945 3675 3946 [[package]] 3676 3947 name = "unic-langid" 3677 - version = "0.9.4" 3948 + version = "0.9.5" 3678 3949 source = "registry+https://github.com/rust-lang/crates.io-index" 3679 - checksum = "238722e6d794ed130f91f4ea33e01fcff4f188d92337a21297892521c72df516" 3950 + checksum = "23dd9d1e72a73b25e07123a80776aae3e7b0ec461ef94f9151eed6ec88005a44" 3680 3951 dependencies = [ 3681 3952 "unic-langid-impl", 3682 3953 ] 3683 3954 3684 3955 [[package]] 3685 3956 name = "unic-langid-impl" 3686 - version = "0.9.4" 3957 + version = "0.9.5" 3687 3958 source = "registry+https://github.com/rust-lang/crates.io-index" 3688 - checksum = "4bd55a2063fdea4ef1f8633243a7b0524cbeef1905ae04c31a1c9b9775c55bc6" 3959 + checksum = "0a5422c1f65949306c99240b81de9f3f15929f5a8bfe05bb44b034cc8bf593e5" 3689 3960 dependencies = [ 3690 3961 "serde", 3691 3962 "tinystr", ··· 3693 3964 3694 3965 [[package]] 3695 3966 name = "unicase" 3696 - version = "2.7.0" 3967 + version = "2.8.0" 3697 3968 source = "registry+https://github.com/rust-lang/crates.io-index" 3698 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 3699 - dependencies = [ 3700 - "version_check", 3701 - ] 3969 + checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" 3702 3970 3703 3971 [[package]] 3704 3972 name = "unicode-bidi" 3705 - version = "0.3.15" 3973 + version = "0.3.17" 3706 3974 source = "registry+https://github.com/rust-lang/crates.io-index" 3707 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3975 + checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 3708 3976 3709 3977 [[package]] 3710 3978 name = "unicode-bidi-mirroring" 3711 - version = "0.1.0" 3979 + version = "0.3.0" 3712 3980 source = "registry+https://github.com/rust-lang/crates.io-index" 3713 - checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694" 3981 + checksum = "64af057ad7466495ca113126be61838d8af947f41d93a949980b2389a118082f" 3714 3982 3715 3983 [[package]] 3716 3984 name = "unicode-ccc" 3717 - version = "0.1.2" 3985 + version = "0.3.0" 3718 3986 source = "registry+https://github.com/rust-lang/crates.io-index" 3719 - checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1" 3987 + checksum = "260bc6647b3893a9a90668360803a15f96b85a5257b1c3a0c3daf6ae2496de42" 3720 3988 3721 3989 [[package]] 3722 3990 name = "unicode-ident" 3723 - version = "1.0.12" 3991 + version = "1.0.13" 3724 3992 source = "registry+https://github.com/rust-lang/crates.io-index" 3725 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3993 + checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 3726 3994 3727 3995 [[package]] 3728 3996 name = "unicode-math-class" ··· 3732 4000 3733 4001 [[package]] 3734 4002 name = "unicode-normalization" 3735 - version = "0.1.23" 4003 + version = "0.1.24" 3736 4004 source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 4005 + checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 3738 4006 dependencies = [ 3739 4007 "tinyvec", 3740 4008 ] 3741 4009 3742 4010 [[package]] 3743 4011 name = "unicode-properties" 3744 - version = "0.1.1" 4012 + version = "0.1.3" 3745 4013 source = "registry+https://github.com/rust-lang/crates.io-index" 3746 - checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 4014 + checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 3747 4015 3748 4016 [[package]] 3749 4017 name = "unicode-script" 3750 - version = "0.5.6" 4018 + version = "0.5.7" 3751 4019 source = "registry+https://github.com/rust-lang/crates.io-index" 3752 - checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd" 4020 + checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f" 3753 4021 3754 4022 [[package]] 3755 4023 name = "unicode-segmentation" 3756 - version = "1.11.0" 4024 + version = "1.12.0" 3757 4025 source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 4026 + checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 3759 4027 3760 4028 [[package]] 3761 4029 name = "unicode-vo" ··· 3765 4033 3766 4034 [[package]] 3767 4035 name = "unicode-width" 3768 - version = "0.1.11" 4036 + version = "0.1.14" 3769 4037 source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 4038 + checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3771 4039 3772 4040 [[package]] 3773 4041 name = "unsafe-libyaml" ··· 3789 4057 3790 4058 [[package]] 3791 4059 name = "url" 3792 - version = "2.5.0" 4060 + version = "2.5.2" 3793 4061 source = "registry+https://github.com/rust-lang/crates.io-index" 3794 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4062 + checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 3795 4063 dependencies = [ 3796 4064 "form_urlencoded", 3797 4065 "idna", ··· 3801 4069 3802 4070 [[package]] 3803 4071 name = "usvg" 3804 - version = "0.38.0" 4072 + version = "0.43.0" 3805 4073 source = "registry+https://github.com/rust-lang/crates.io-index" 3806 - checksum = "377f62b4a3c173de8654c1aa80ab1dac1154e6f13a779a9943e53780120d1625" 4074 + checksum = "6803057b5cbb426e9fb8ce2216f3a9b4ca1dd2c705ba3cbebc13006e437735fd" 3807 4075 dependencies = [ 3808 - "base64 0.21.7", 3809 - "log", 3810 - "pico-args", 3811 - "usvg-parser", 3812 - "usvg-text-layout", 3813 - "usvg-tree", 3814 - "xmlwriter", 3815 - ] 3816 - 3817 - [[package]] 3818 - name = "usvg-parser" 3819 - version = "0.38.0" 3820 - source = "registry+https://github.com/rust-lang/crates.io-index" 3821 - checksum = "351a05e6f2023d6b4e946f734240a3927aefdcf930d7d42587a2c8a8869814b0" 3822 - dependencies = [ 4076 + "base64", 3823 4077 "data-url", 3824 4078 "flate2", 4079 + "fontdb 0.21.0", 3825 4080 "imagesize", 3826 - "kurbo", 4081 + "kurbo 0.11.1", 3827 4082 "log", 4083 + "pico-args", 3828 4084 "roxmltree", 3829 - "simplecss", 3830 - "siphasher 0.3.11", 3831 - "svgtypes", 3832 - "usvg-tree", 3833 - ] 3834 - 3835 - [[package]] 3836 - name = "usvg-text-layout" 3837 - version = "0.38.0" 3838 - source = "registry+https://github.com/rust-lang/crates.io-index" 3839 - checksum = "8c41888b9d5cf431fe852eaf9d047bbde83251b98f1749c2f08b1071e6db46e2" 3840 - dependencies = [ 3841 - "fontdb", 3842 - "kurbo", 3843 - "log", 3844 4085 "rustybuzz", 4086 + "simplecss", 4087 + "siphasher 1.0.1", 4088 + "strict-num", 4089 + "svgtypes 0.15.2", 4090 + "tiny-skia-path", 3845 4091 "unicode-bidi", 3846 4092 "unicode-script", 3847 4093 "unicode-vo", 3848 - "usvg-tree", 3849 - ] 3850 - 3851 - [[package]] 3852 - name = "usvg-tree" 3853 - version = "0.38.0" 3854 - source = "registry+https://github.com/rust-lang/crates.io-index" 3855 - checksum = "18863e0404ed153d6e56362c5b1146db9f4f262a3244e3cf2dbe7d8a85909f05" 3856 - dependencies = [ 3857 - "strict-num", 3858 - "svgtypes", 3859 - "tiny-skia-path", 4094 + "xmlwriter", 3860 4095 ] 3861 4096 3862 4097 [[package]] ··· 3867 4102 3868 4103 [[package]] 3869 4104 name = "utf8parse" 3870 - version = "0.2.1" 4105 + version = "0.2.2" 3871 4106 source = "registry+https://github.com/rust-lang/crates.io-index" 3872 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 4107 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3873 4108 3874 4109 [[package]] 3875 4110 name = "uuid" 3876 - version = "1.8.0" 4111 + version = "1.11.0" 3877 4112 source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 4113 + checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 3879 4114 3880 4115 [[package]] 3881 4116 name = "vcpkg" ··· 3885 4120 3886 4121 [[package]] 3887 4122 name = "vergen" 3888 - version = "8.3.1" 4123 + version = "8.3.2" 3889 4124 source = "registry+https://github.com/rust-lang/crates.io-index" 3890 - checksum = "e27d6bdd219887a9eadd19e1c34f32e47fa332301184935c6d9bca26f3cca525" 4125 + checksum = "2990d9ea5967266ea0ccf413a4aa5c42a93dbcfda9cb49a97de6931726b12566" 3891 4126 dependencies = [ 3892 4127 "anyhow", 3893 4128 "cargo_metadata", ··· 3901 4136 3902 4137 [[package]] 3903 4138 name = "version_check" 3904 - version = "0.9.4" 4139 + version = "0.9.5" 3905 4140 source = "registry+https://github.com/rust-lang/crates.io-index" 3906 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4141 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3907 4142 3908 4143 [[package]] 3909 4144 name = "walkdir" ··· 3932 4167 3933 4168 [[package]] 3934 4169 name = "wasm-bindgen" 3935 - version = "0.2.92" 4170 + version = "0.2.95" 3936 4171 source = "registry+https://github.com/rust-lang/crates.io-index" 3937 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 4172 + checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" 3938 4173 dependencies = [ 3939 4174 "cfg-if", 4175 + "once_cell", 3940 4176 "wasm-bindgen-macro", 3941 4177 ] 3942 4178 3943 4179 [[package]] 3944 4180 name = "wasm-bindgen-backend" 3945 - version = "0.2.92" 4181 + version = "0.2.95" 3946 4182 source = "registry+https://github.com/rust-lang/crates.io-index" 3947 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 4183 + checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" 3948 4184 dependencies = [ 3949 4185 "bumpalo", 3950 4186 "log", 3951 4187 "once_cell", 3952 4188 "proc-macro2", 3953 4189 "quote", 3954 - "syn 2.0.52", 4190 + "syn 2.0.79", 3955 4191 "wasm-bindgen-shared", 3956 4192 ] 3957 4193 3958 4194 [[package]] 3959 4195 name = "wasm-bindgen-futures" 3960 - version = "0.4.42" 4196 + version = "0.4.45" 3961 4197 source = "registry+https://github.com/rust-lang/crates.io-index" 3962 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 4198 + checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" 3963 4199 dependencies = [ 3964 4200 "cfg-if", 3965 4201 "js-sys", ··· 3969 4205 3970 4206 [[package]] 3971 4207 name = "wasm-bindgen-macro" 3972 - version = "0.2.92" 4208 + version = "0.2.95" 3973 4209 source = "registry+https://github.com/rust-lang/crates.io-index" 3974 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 4210 + checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" 3975 4211 dependencies = [ 3976 4212 "quote", 3977 4213 "wasm-bindgen-macro-support", ··· 3979 4215 3980 4216 [[package]] 3981 4217 name = "wasm-bindgen-macro-support" 3982 - version = "0.2.92" 4218 + version = "0.2.95" 3983 4219 source = "registry+https://github.com/rust-lang/crates.io-index" 3984 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 4220 + checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" 3985 4221 dependencies = [ 3986 4222 "proc-macro2", 3987 4223 "quote", 3988 - "syn 2.0.52", 4224 + "syn 2.0.79", 3989 4225 "wasm-bindgen-backend", 3990 4226 "wasm-bindgen-shared", 3991 4227 ] 3992 4228 3993 4229 [[package]] 3994 4230 name = "wasm-bindgen-shared" 3995 - version = "0.2.92" 4231 + version = "0.2.95" 3996 4232 source = "registry+https://github.com/rust-lang/crates.io-index" 3997 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 4233 + checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" 3998 4234 3999 4235 [[package]] 4000 4236 name = "wasmi" 4001 - version = "0.31.2" 4237 + version = "0.35.0" 4002 4238 source = "registry+https://github.com/rust-lang/crates.io-index" 4003 - checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7" 4239 + checksum = "dbaac6e702fa7b52258e5ac90d6e20a40afb37a1fbe7c645d0903ee42c5f85f4" 4004 4240 dependencies = [ 4241 + "arrayvec 0.7.6", 4242 + "multi-stash", 4243 + "num-derive", 4244 + "num-traits", 4005 4245 "smallvec", 4006 4246 "spin", 4007 - "wasmi_arena", 4247 + "wasmi_collections", 4008 4248 "wasmi_core", 4009 4249 "wasmparser-nostd", 4010 4250 ] 4011 4251 4012 4252 [[package]] 4013 - name = "wasmi_arena" 4014 - version = "0.4.1" 4253 + name = "wasmi_collections" 4254 + version = "0.35.0" 4015 4255 source = "registry+https://github.com/rust-lang/crates.io-index" 4016 - checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073" 4256 + checksum = "8ff59e30e550a509cc689ec638e5042be4d78ec9f6dd8a71fd02ee28776a74fd" 4257 + dependencies = [ 4258 + "ahash 0.8.11", 4259 + "hashbrown 0.14.5", 4260 + "string-interner", 4261 + ] 4017 4262 4018 4263 [[package]] 4019 4264 name = "wasmi_core" 4020 - version = "0.13.0" 4265 + version = "0.35.0" 4021 4266 source = "registry+https://github.com/rust-lang/crates.io-index" 4022 - checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a" 4267 + checksum = "13e10c674add0f92f47bf8ad57c55ee3ac1762a0d9baf07535e27e22b758a916" 4023 4268 dependencies = [ 4024 4269 "downcast-rs", 4025 4270 "libm", ··· 4029 4274 4030 4275 [[package]] 4031 4276 name = "wasmparser-nostd" 4032 - version = "0.100.1" 4277 + version = "0.100.2" 4033 4278 source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" 4279 + checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa" 4035 4280 dependencies = [ 4036 4281 "indexmap-nostd", 4037 4282 ] 4038 4283 4039 4284 [[package]] 4040 4285 name = "web-sys" 4041 - version = "0.3.69" 4286 + version = "0.3.72" 4042 4287 source = "registry+https://github.com/rust-lang/crates.io-index" 4043 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 4288 + checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" 4044 4289 dependencies = [ 4045 4290 "js-sys", 4046 4291 "wasm-bindgen", ··· 4048 4293 4049 4294 [[package]] 4050 4295 name = "webpki-roots" 4051 - version = "0.25.4" 4296 + version = "0.26.6" 4052 4297 source = "registry+https://github.com/rust-lang/crates.io-index" 4053 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 4298 + checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 4299 + dependencies = [ 4300 + "rustls-pki-types", 4301 + ] 4054 4302 4055 4303 [[package]] 4056 4304 name = "weezl" ··· 4059 4307 checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 4060 4308 4061 4309 [[package]] 4062 - name = "winapi" 4063 - version = "0.3.9" 4310 + name = "winapi-util" 4311 + version = "0.1.9" 4064 4312 source = "registry+https://github.com/rust-lang/crates.io-index" 4065 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4313 + checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 4066 4314 dependencies = [ 4067 - "winapi-i686-pc-windows-gnu", 4068 - "winapi-x86_64-pc-windows-gnu", 4315 + "windows-sys 0.59.0", 4069 4316 ] 4070 4317 4071 4318 [[package]] 4072 - name = "winapi-i686-pc-windows-gnu" 4073 - version = "0.4.0" 4319 + name = "windows-core" 4320 + version = "0.52.0" 4074 4321 source = "registry+https://github.com/rust-lang/crates.io-index" 4075 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4322 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4323 + dependencies = [ 4324 + "windows-targets 0.52.6", 4325 + ] 4076 4326 4077 4327 [[package]] 4078 - name = "winapi-util" 4079 - version = "0.1.6" 4328 + name = "windows-registry" 4329 + version = "0.2.0" 4080 4330 source = "registry+https://github.com/rust-lang/crates.io-index" 4081 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4331 + checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 4082 4332 dependencies = [ 4083 - "winapi", 4333 + "windows-result", 4334 + "windows-strings", 4335 + "windows-targets 0.52.6", 4084 4336 ] 4085 4337 4086 4338 [[package]] 4087 - name = "winapi-x86_64-pc-windows-gnu" 4088 - version = "0.4.0" 4339 + name = "windows-result" 4340 + version = "0.2.0" 4089 4341 source = "registry+https://github.com/rust-lang/crates.io-index" 4090 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4342 + checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 4343 + dependencies = [ 4344 + "windows-targets 0.52.6", 4345 + ] 4091 4346 4092 4347 [[package]] 4093 - name = "windows-core" 4094 - version = "0.52.0" 4348 + name = "windows-strings" 4349 + version = "0.1.0" 4095 4350 source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4351 + checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 4097 4352 dependencies = [ 4098 - "windows-targets 0.52.4", 4353 + "windows-result", 4354 + "windows-targets 0.52.6", 4099 4355 ] 4100 4356 4101 4357 [[package]] ··· 4113 4369 source = "registry+https://github.com/rust-lang/crates.io-index" 4114 4370 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4115 4371 dependencies = [ 4116 - "windows-targets 0.52.4", 4372 + "windows-targets 0.52.6", 4373 + ] 4374 + 4375 + [[package]] 4376 + name = "windows-sys" 4377 + version = "0.59.0" 4378 + source = "registry+https://github.com/rust-lang/crates.io-index" 4379 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 4380 + dependencies = [ 4381 + "windows-targets 0.52.6", 4117 4382 ] 4118 4383 4119 4384 [[package]] ··· 4133 4398 4134 4399 [[package]] 4135 4400 name = "windows-targets" 4136 - version = "0.52.4" 4401 + version = "0.52.6" 4137 4402 source = "registry+https://github.com/rust-lang/crates.io-index" 4138 - checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 4403 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4139 4404 dependencies = [ 4140 - "windows_aarch64_gnullvm 0.52.4", 4141 - "windows_aarch64_msvc 0.52.4", 4142 - "windows_i686_gnu 0.52.4", 4143 - "windows_i686_msvc 0.52.4", 4144 - "windows_x86_64_gnu 0.52.4", 4145 - "windows_x86_64_gnullvm 0.52.4", 4146 - "windows_x86_64_msvc 0.52.4", 4405 + "windows_aarch64_gnullvm 0.52.6", 4406 + "windows_aarch64_msvc 0.52.6", 4407 + "windows_i686_gnu 0.52.6", 4408 + "windows_i686_gnullvm", 4409 + "windows_i686_msvc 0.52.6", 4410 + "windows_x86_64_gnu 0.52.6", 4411 + "windows_x86_64_gnullvm 0.52.6", 4412 + "windows_x86_64_msvc 0.52.6", 4147 4413 ] 4148 4414 4149 4415 [[package]] ··· 4154 4420 4155 4421 [[package]] 4156 4422 name = "windows_aarch64_gnullvm" 4157 - version = "0.52.4" 4423 + version = "0.52.6" 4158 4424 source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 4425 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4160 4426 4161 4427 [[package]] 4162 4428 name = "windows_aarch64_msvc" ··· 4166 4432 4167 4433 [[package]] 4168 4434 name = "windows_aarch64_msvc" 4169 - version = "0.52.4" 4435 + version = "0.52.6" 4170 4436 source = "registry+https://github.com/rust-lang/crates.io-index" 4171 - checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 4437 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4172 4438 4173 4439 [[package]] 4174 4440 name = "windows_i686_gnu" ··· 4178 4444 4179 4445 [[package]] 4180 4446 name = "windows_i686_gnu" 4181 - version = "0.52.4" 4447 + version = "0.52.6" 4182 4448 source = "registry+https://github.com/rust-lang/crates.io-index" 4183 - checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 4449 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4450 + 4451 + [[package]] 4452 + name = "windows_i686_gnullvm" 4453 + version = "0.52.6" 4454 + source = "registry+https://github.com/rust-lang/crates.io-index" 4455 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4184 4456 4185 4457 [[package]] 4186 4458 name = "windows_i686_msvc" ··· 4190 4462 4191 4463 [[package]] 4192 4464 name = "windows_i686_msvc" 4193 - version = "0.52.4" 4465 + version = "0.52.6" 4194 4466 source = "registry+https://github.com/rust-lang/crates.io-index" 4195 - checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 4467 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4196 4468 4197 4469 [[package]] 4198 4470 name = "windows_x86_64_gnu" ··· 4202 4474 4203 4475 [[package]] 4204 4476 name = "windows_x86_64_gnu" 4205 - version = "0.52.4" 4477 + version = "0.52.6" 4206 4478 source = "registry+https://github.com/rust-lang/crates.io-index" 4207 - checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 4479 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4208 4480 4209 4481 [[package]] 4210 4482 name = "windows_x86_64_gnullvm" ··· 4214 4486 4215 4487 [[package]] 4216 4488 name = "windows_x86_64_gnullvm" 4217 - version = "0.52.4" 4489 + version = "0.52.6" 4218 4490 source = "registry+https://github.com/rust-lang/crates.io-index" 4219 - checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 4491 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4220 4492 4221 4493 [[package]] 4222 4494 name = "windows_x86_64_msvc" ··· 4226 4498 4227 4499 [[package]] 4228 4500 name = "windows_x86_64_msvc" 4229 - version = "0.52.4" 4501 + version = "0.52.6" 4230 4502 source = "registry+https://github.com/rust-lang/crates.io-index" 4231 - checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 4503 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4232 4504 4233 4505 [[package]] 4234 4506 name = "winnow" 4235 - version = "0.6.5" 4507 + version = "0.6.20" 4236 4508 source = "registry+https://github.com/rust-lang/crates.io-index" 4237 - checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" 4509 + checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 4238 4510 dependencies = [ 4239 4511 "memchr", 4240 4512 ] 4241 4513 4242 4514 [[package]] 4243 - name = "winreg" 4244 - version = "0.50.0" 4245 - source = "registry+https://github.com/rust-lang/crates.io-index" 4246 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4247 - dependencies = [ 4248 - "cfg-if", 4249 - "windows-sys 0.48.0", 4250 - ] 4251 - 4252 - [[package]] 4253 4515 name = "writeable" 4254 - version = "0.5.4" 4516 + version = "0.5.5" 4255 4517 source = "registry+https://github.com/rust-lang/crates.io-index" 4256 - checksum = "dad7bb64b8ef9c0aa27b6da38b452b0ee9fd82beaf276a87dd796fb55cbae14e" 4518 + checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 4257 4519 4258 4520 [[package]] 4259 4521 name = "wyz" ··· 4289 4551 4290 4552 [[package]] 4291 4553 name = "xmp-writer" 4292 - version = "0.2.0" 4554 + version = "0.3.0" 4293 4555 source = "registry+https://github.com/rust-lang/crates.io-index" 4294 - checksum = "4543ba138f64a94b19e1e9c66c165bca7e03d470e1c066cb76ea279d9d0e1989" 4556 + checksum = "8254499146a4fd0c86e3e99cf4a9f468f595808fb49ff8f3e495f2b117bf4ebc" 4295 4557 4296 4558 [[package]] 4297 4559 name = "yaml-rust" ··· 4304 4566 4305 4567 [[package]] 4306 4568 name = "yansi" 4307 - version = "0.5.1" 4569 + version = "1.0.1" 4308 4570 source = "registry+https://github.com/rust-lang/crates.io-index" 4309 - checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 4571 + checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4310 4572 4311 4573 [[package]] 4312 4574 name = "yoke" 4313 - version = "0.7.3" 4575 + version = "0.7.4" 4314 4576 source = "registry+https://github.com/rust-lang/crates.io-index" 4315 - checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" 4577 + checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" 4316 4578 dependencies = [ 4317 4579 "serde", 4318 4580 "stable_deref_trait", ··· 4322 4584 4323 4585 [[package]] 4324 4586 name = "yoke-derive" 4325 - version = "0.7.3" 4587 + version = "0.7.4" 4326 4588 source = "registry+https://github.com/rust-lang/crates.io-index" 4327 - checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" 4589 + checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" 4328 4590 dependencies = [ 4329 4591 "proc-macro2", 4330 4592 "quote", 4331 - "syn 2.0.52", 4593 + "syn 2.0.79", 4332 4594 "synstructure", 4333 4595 ] 4334 4596 4335 4597 [[package]] 4598 + name = "zerocopy" 4599 + version = "0.7.35" 4600 + source = "registry+https://github.com/rust-lang/crates.io-index" 4601 + checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 4602 + dependencies = [ 4603 + "byteorder", 4604 + "zerocopy-derive", 4605 + ] 4606 + 4607 + [[package]] 4608 + name = "zerocopy-derive" 4609 + version = "0.7.35" 4610 + source = "registry+https://github.com/rust-lang/crates.io-index" 4611 + checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 4612 + dependencies = [ 4613 + "proc-macro2", 4614 + "quote", 4615 + "syn 2.0.79", 4616 + ] 4617 + 4618 + [[package]] 4336 4619 name = "zerofrom" 4337 - version = "0.1.3" 4620 + version = "0.1.4" 4338 4621 source = "registry+https://github.com/rust-lang/crates.io-index" 4339 - checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7" 4622 + checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" 4340 4623 dependencies = [ 4341 4624 "zerofrom-derive", 4342 4625 ] 4343 4626 4344 4627 [[package]] 4345 4628 name = "zerofrom-derive" 4346 - version = "0.1.3" 4629 + version = "0.1.4" 4347 4630 source = "registry+https://github.com/rust-lang/crates.io-index" 4348 - checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" 4631 + checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" 4349 4632 dependencies = [ 4350 4633 "proc-macro2", 4351 4634 "quote", 4352 - "syn 2.0.52", 4635 + "syn 2.0.79", 4353 4636 "synstructure", 4354 4637 ] 4355 4638 4356 4639 [[package]] 4640 + name = "zeroize" 4641 + version = "1.8.1" 4642 + source = "registry+https://github.com/rust-lang/crates.io-index" 4643 + checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 4644 + 4645 + [[package]] 4357 4646 name = "zerotrie" 4358 - version = "0.1.2" 4647 + version = "0.1.3" 4359 4648 source = "registry+https://github.com/rust-lang/crates.io-index" 4360 - checksum = "d0594125a0574fb93059c92c588ab209cc036a23d1baeb3410fa9181bea551a0" 4649 + checksum = "fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f" 4361 4650 dependencies = [ 4362 4651 "displaydoc", 4363 4652 "litemap", ··· 4367 4656 4368 4657 [[package]] 4369 4658 name = "zerovec" 4370 - version = "0.10.1" 4659 + version = "0.10.4" 4371 4660 source = "registry+https://github.com/rust-lang/crates.io-index" 4372 - checksum = "eff4439ae91fb5c72b8abc12f3f2dbf51bd27e6eadb9f8a5bc8898dddb0e27ea" 4661 + checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 4373 4662 dependencies = [ 4374 4663 "serde", 4375 4664 "yoke", ··· 4379 4668 4380 4669 [[package]] 4381 4670 name = "zerovec-derive" 4382 - version = "0.10.1" 4671 + version = "0.10.3" 4383 4672 source = "registry+https://github.com/rust-lang/crates.io-index" 4384 - checksum = "7b4e5997cbf58990550ef1f0e5124a05e47e1ebd33a84af25739be6031a62c20" 4673 + checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 4385 4674 dependencies = [ 4386 4675 "proc-macro2", 4387 4676 "quote", 4388 - "syn 2.0.52", 4677 + "syn 2.0.79", 4678 + ] 4679 + 4680 + [[package]] 4681 + name = "zune-core" 4682 + version = "0.4.12" 4683 + source = "registry+https://github.com/rust-lang/crates.io-index" 4684 + checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 4685 + 4686 + [[package]] 4687 + name = "zune-jpeg" 4688 + version = "0.4.13" 4689 + source = "registry+https://github.com/rust-lang/crates.io-index" 4690 + checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768" 4691 + dependencies = [ 4692 + "zune-core", 4389 4693 ]
+8 -3
pkgs/by-name/ty/typstyle/package.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "typstyle"; 16 - version = "0.11.35"; 16 + version = "0.12.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "Enter-tainer"; 20 20 repo = "typstyle"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-mPppnbgTXJ4ALIHrI0q9UpwGPDoTGitw5KRY8eA/vJg="; 22 + hash = "sha256-jrhxOtaawZ2vCiK8BQ9G09HTC5F6cnEK/Ji567xYfXw="; 23 23 }; 24 24 25 - cargoHash = "sha256-30xinYXS+OGYE1H0Eutwpjgn3OfFtjTUJInDHvn6/E0="; 25 + cargoLock = { 26 + lockFile = ./Cargo.lock; 27 + outputHashes = { 28 + "reflexo-0.5.0-rc7" = "sha256-XjzHo9HprI1FVPDwNQ0Gw9iTXspo6PUsxz3BOd6qkL0="; 29 + }; 30 + }; 26 31 27 32 nativeBuildInputs = [ 28 33 pkg-config
+15 -7
pkgs/development/libraries/libguestfs/appliance.nix pkgs/by-name/li/libguestfs-appliance/package.nix
··· 1 - { lib 2 - , stdenvNoCC 3 - , fetchurl 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 4 5 }: 5 6 6 7 stdenvNoCC.mkDerivation rec { 7 8 pname = "libguestfs-appliance"; 8 - version = "1.46.0"; 9 + version = "1.54.0"; 9 10 10 11 src = fetchurl { 11 12 url = "http://download.libguestfs.org/binaries/appliance/appliance-${version}.tar.xz"; 12 - hash = "sha256-p1UN5wv3y+V5dFMG5yM3bVf1vaoDzQnVv9apfwC4gNg="; 13 + hash = "sha256-D7f4Cnjx+OmLfqQWmauyXZiSjayG9TCmxftj0iOPFso="; 13 14 }; 14 15 15 16 installPhase = '' ··· 24 25 meta = with lib; { 25 26 description = "VM appliance disk image used in libguestfs package"; 26 27 homepage = "https://libguestfs.org"; 27 - license = with licenses; [ gpl2Plus lgpl2Plus ]; 28 - platforms = [ "i686-linux" "x86_64-linux" ]; 28 + license = with licenses; [ 29 + gpl2Plus 30 + lgpl2Plus 31 + ]; 32 + maintainers = with maintainers; [ lukts30 ]; 33 + platforms = [ 34 + "i686-linux" 35 + "x86_64-linux" 36 + ]; 29 37 hydraPlatforms = [ ]; # Hydra fails with "Output limit exceeded" 30 38 }; 31 39 }
-168
pkgs/development/libraries/libguestfs/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , pkg-config 5 - , autoreconfHook 6 - , makeWrapper 7 - , libxcrypt 8 - , ncurses 9 - , cpio 10 - , gperf 11 - , cdrkit 12 - , flex 13 - , bison 14 - , qemu 15 - , pcre2 16 - , augeas 17 - , libxml2 18 - , acl 19 - , libcap 20 - , libcap_ng 21 - , libconfig 22 - , systemd 23 - , fuse 24 - , yajl 25 - , libvirt 26 - , hivex 27 - , db 28 - , gmp 29 - , readline 30 - , file 31 - , numactl 32 - , libapparmor 33 - , jansson 34 - , getopt 35 - , perlPackages 36 - , ocamlPackages 37 - , libtirpc 38 - , appliance ? null 39 - , javaSupport ? false 40 - , jdk 41 - , zstd 42 - }: 43 - 44 - assert appliance == null || lib.isDerivation appliance; 45 - 46 - stdenv.mkDerivation rec { 47 - pname = "libguestfs"; 48 - version = "1.50.1"; 49 - 50 - src = fetchurl { 51 - url = "https://libguestfs.org/download/${lib.versions.majorMinor version}-stable/${pname}-${version}.tar.gz"; 52 - sha256 = "sha256-Xmhx6I+C5SHjHUQt5qELZJcCN8t5VumdEXsSO1hWWm8="; 53 - }; 54 - 55 - strictDeps = true; 56 - nativeBuildInputs = [ 57 - autoreconfHook 58 - bison 59 - cdrkit 60 - cpio 61 - flex 62 - getopt 63 - gperf 64 - makeWrapper 65 - pkg-config 66 - qemu 67 - zstd 68 - ] ++ (with perlPackages; [ perl libintl-perl GetoptLong ModuleBuild ]) 69 - ++ (with ocamlPackages; [ ocaml findlib ]); 70 - buildInputs = [ 71 - libxcrypt 72 - ncurses 73 - jansson 74 - pcre2 75 - augeas 76 - libxml2 77 - acl 78 - libcap 79 - libcap_ng 80 - libconfig 81 - systemd 82 - fuse 83 - yajl 84 - libvirt 85 - gmp 86 - readline 87 - file 88 - hivex 89 - db 90 - numactl 91 - libapparmor 92 - perlPackages.ModuleBuild 93 - libtirpc 94 - ] ++ (with ocamlPackages; [ ocamlbuild ocaml_libvirt gettext-stub ounit ]) 95 - ++ lib.optional javaSupport jdk; 96 - 97 - prePatch = '' 98 - # build-time scripts 99 - substituteInPlace run.in --replace '#!/bin/bash' '#!${stdenv.shell}' 100 - substituteInPlace ocaml-link.sh.in --replace '#!/bin/bash' '#!${stdenv.shell}' 101 - 102 - # $(OCAMLLIB) is read-only "${ocamlPackages.ocaml}/lib/ocaml" 103 - substituteInPlace ocaml/Makefile.am --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 104 - substituteInPlace ocaml/Makefile.in --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 105 - 106 - # some scripts hardcore /usr/bin/env which is not available in the build env 107 - patchShebangs . 108 - ''; 109 - configureFlags = [ 110 - "--disable-appliance" 111 - "--disable-daemon" 112 - "--with-distro=NixOS" 113 - "--with-guestfs-path=${placeholder "out"}/lib/guestfs" 114 - ] ++ lib.optionals (!javaSupport) [ "--without-java" ]; 115 - patches = [ 116 - ./libguestfs-syms.patch 117 - ]; 118 - 119 - createFindlibDestdir = true; 120 - 121 - installFlags = [ "REALLY_INSTALL=yes" ]; 122 - enableParallelBuilding = true; 123 - 124 - postInstall = '' 125 - mv "$out/lib/ocaml/guestfs" "$OCAMLFIND_DESTDIR/guestfs" 126 - for bin in $out/bin/*; do 127 - wrapProgram "$bin" \ 128 - --prefix PATH : "$out/bin:${hivex}/bin:${qemu}/bin" \ 129 - --prefix PERL5LIB : "$out/${perlPackages.perl.libPrefix}" 130 - done 131 - ''; 132 - 133 - postFixup = lib.optionalString (appliance != null) '' 134 - mkdir -p $out/{lib,lib64} 135 - ln -s ${appliance} $out/lib64/guestfs 136 - ln -s ${appliance} $out/lib/guestfs 137 - ''; 138 - 139 - doInstallCheck = appliance != null; 140 - installCheckPhase = '' 141 - runHook preInstallCheck 142 - 143 - export HOME=$(mktemp -d) # avoid access to /homeless-shelter/.guestfish 144 - 145 - ${qemu}/bin/qemu-img create -f qcow2 disk1.img 10G 146 - 147 - $out/bin/guestfish <<'EOF' 148 - add-drive disk1.img 149 - run 150 - list-filesystems 151 - part-disk /dev/sda mbr 152 - mkfs ext2 /dev/sda1 153 - list-filesystems 154 - EOF 155 - 156 - runHook postInstallCheck 157 - ''; 158 - 159 - meta = with lib; { 160 - description = "Tools for accessing and modifying virtual machine disk images"; 161 - license = with licenses; [ gpl2Plus lgpl21Plus ]; 162 - homepage = "https://libguestfs.org/"; 163 - maintainers = with maintainers; [ offline ]; 164 - platforms = platforms.linux; 165 - # this is to avoid "output size exceeded" 166 - hydraPlatforms = if appliance != null then appliance.meta.hydraPlatforms else platforms.linux; 167 - }; 168 - }
pkgs/development/libraries/libguestfs/libguestfs-syms.patch pkgs/by-name/li/libguestfs/libguestfs-syms.patch
+5
pkgs/development/libraries/libressl/default.nix
··· 151 151 }) 152 152 ]; 153 153 }; 154 + 155 + libressl_4_0 = generic { 156 + version = "4.0.0"; 157 + hash = "sha256-TYQZVfCsw9/HHQ49018oOvRhIiNQ4mhD/qlzHAJGoeQ="; 158 + }; 154 159 }
+40 -45
pkgs/development/python-modules/afdko/default.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 + # Enables some expensive tests, useful for verifying an update 5 + afdko, 6 + antlr4_9, 7 + booleanoperations, 4 8 buildPythonPackage, 5 - fetchFromGitHub, 6 - pythonOlder, 7 - fonttools, 9 + cmake, 8 10 defcon, 9 - lxml, 10 - fs, 11 - unicodedata2, 12 - zopfli, 13 - brotlipy, 11 + fetchFromGitHub, 12 + fontmath, 14 13 fontpens, 15 - brotli, 16 - fontmath, 14 + fonttools, 15 + libxml2, 17 16 mutatormath, 18 - booleanoperations, 19 - ufoprocessor, 20 - ufonormalizer, 21 - tqdm, 22 - setuptools-scm, 23 - scikit-build, 24 - cmake, 25 17 ninja, 26 - antlr4_9, 27 - libxml2, 28 18 pytestCheckHook, 29 - # Enables some expensive tests, useful for verifying an update 19 + pythonOlder, 30 20 runAllTests ? false, 31 - afdko, 21 + scikit-build, 22 + setuptools-scm, 23 + tqdm, 24 + ufonormalizer, 25 + ufoprocessor, 32 26 }: 33 27 34 28 buildPythonPackage rec { 35 29 pname = "afdko"; 36 30 version = "4.0.1"; 37 - format = "pyproject"; 31 + pyproject = true; 38 32 39 - disabled = pythonOlder "3.7"; 33 + disabled = pythonOlder "3.8"; 40 34 41 35 src = fetchFromGitHub { 42 36 owner = "adobe-type-tools"; 43 - repo = pname; 37 + repo = "afdko"; 44 38 rev = "refs/tags/${version}"; 45 39 hash = "sha256-I5GKPkbyQX8QNSZgNB3wPKdWwpx8Xkklesu1M7nhgp8="; 46 40 }; 47 41 42 + build-system = [ setuptools-scm ]; 43 + 48 44 nativeBuildInputs = [ 49 - setuptools-scm 50 45 scikit-build 51 46 cmake 52 47 ninja ··· 78 73 # setup.py will always (re-)execute cmake in buildPhase 79 74 dontConfigure = true; 80 75 81 - propagatedBuildInputs = [ 82 - booleanoperations 83 - fonttools 84 - lxml # fonttools[lxml], defcon[lxml] extra 85 - fs # fonttools[ufo] extra 86 - unicodedata2 # fonttools[unicode] extra 87 - brotlipy # fonttools[woff] extra 88 - zopfli # fonttools[woff] extra 89 - fontpens 90 - brotli 91 - defcon 92 - fontmath 93 - mutatormath 94 - ufoprocessor 95 - ufonormalizer 96 - tqdm 97 - ]; 76 + dependencies = 77 + [ 78 + booleanoperations 79 + defcon 80 + fontmath 81 + fontpens 82 + fonttools 83 + mutatormath 84 + tqdm 85 + ufonormalizer 86 + ufoprocessor 87 + ] 88 + ++ defcon.optional-dependencies.lxml 89 + ++ fonttools.optional-dependencies.lxml 90 + ++ fonttools.optional-dependencies.ufo 91 + ++ fonttools.optional-dependencies.unicode 92 + ++ fonttools.optional-dependencies.woff; 98 93 99 94 # Use system libxml2 100 95 FORCE_SYSTEM_LIBXML2 = true; ··· 116 111 "test_waterfallplot" 117 112 ] 118 113 ++ lib.optionals (stdenv.cc.isGNU) [ 119 - # broke in the gcc 13 → 14 update 114 + # broke in the gcc 13 -> 14 update 120 115 "test_dump" 121 116 "test_input_formats" 122 117 "test_other_input_formats" ··· 146 141 }; 147 142 148 143 meta = with lib; { 149 - changelog = "https://github.com/adobe-type-tools/afdko/blob/${version}/NEWS.md"; 150 144 description = "Adobe Font Development Kit for OpenType"; 145 + changelog = "https://github.com/adobe-type-tools/afdko/blob/${version}/NEWS.md"; 151 146 homepage = "https://adobe-type-tools.github.io/afdko"; 152 147 license = licenses.asl20; 153 - maintainers = [ maintainers.sternenseemann ]; 148 + maintainers = with maintainers; [ sternenseemann ]; 154 149 }; 155 150 }
+3 -1
pkgs/development/python-modules/axisregistry/default.nix
··· 5 5 fonttools, 6 6 protobuf, 7 7 pytestCheckHook, 8 - setuptools-scm, 9 8 pythonOlder, 9 + setuptools-scm, 10 10 }: 11 11 12 12 buildPythonPackage rec { ··· 26 26 # so we need to use protobuf 4 here as well to avoid a conflict 27 27 # in the closure of fontbakery. It seems to be compatible enough. 28 28 pythonRelaxDeps = [ "protobuf" ]; 29 + 30 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 29 31 30 32 build-system = [ setuptools-scm ]; 31 33
+18 -14
pkgs/development/python-modules/brotlipy/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 5 4 cffi, 6 - enum34, 7 5 construct, 8 - pytest, 6 + fetchPypi, 9 7 hypothesis, 8 + pytest, 9 + pytestCheckHook, 10 + pythonOlder, 11 + setuptools, 10 12 }: 11 13 12 14 buildPythonPackage rec { 13 15 pname = "brotlipy"; 14 16 version = "0.7.0"; 15 - format = "setuptools"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.7"; 16 20 17 21 src = fetchPypi { 18 22 inherit pname version; 19 - sha256 = "36def0b859beaf21910157b4c33eb3b06d8ce459c942102f16988cca6ea164df"; 23 + hash = "sha256-Nt7wuFm+ryGRAVe0wz6zsG2M5FnJQhAvFpiMym6hZN8="; 20 24 }; 21 25 22 - propagatedBuildInputs = [ 26 + build-system = [ setuptools ]; 27 + 28 + propagatedNativeBuildInputs = [ cffi ]; 29 + 30 + dependencies = [ 23 31 cffi 24 - enum34 25 32 construct 26 33 ]; 27 34 28 - propagatedNativeBuildInputs = [ cffi ]; 29 - 30 35 nativeCheckInputs = [ 31 - pytest 32 36 hypothesis 37 + pytestCheckHook 33 38 ]; 34 39 35 - checkPhase = '' 36 - py.test 37 - ''; 38 - 39 40 # Missing test files 40 41 doCheck = false; 42 + 43 + pythonImportsCheck = [ "brotli" ]; 41 44 42 45 meta = { 43 46 description = "Python bindings for the reference Brotli encoder/decoder"; 44 47 homepage = "https://github.com/python-hyper/brotlipy/"; 45 48 license = lib.licenses.mit; 49 + maintainers = [ ]; 46 50 }; 47 51 }
+16 -33
pkgs/development/python-modules/clikit/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + crashtest, 4 5 fetchFromGitHub, 5 - isPy27, 6 - pythonAtLeast, 6 + pastel, 7 7 poetry-core, 8 - 9 - # propagates 10 8 pylev, 11 - pastel, 12 - 13 - # python36+ 14 - crashtest, 15 - 16 - # python2 17 - typing, 18 - enum34, 19 - 20 - # tests 21 9 pytest-mock, 22 10 pytestCheckHook, 11 + pythonOlder, 23 12 }: 24 13 25 14 buildPythonPackage rec { 26 15 pname = "clikit"; 27 16 version = "0.6.2"; 28 - format = "pyproject"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.7"; 29 20 30 21 src = fetchFromGitHub { 31 22 owner = "sdispater"; 32 - repo = pname; 23 + repo = "clikit"; 33 24 rev = "refs/tags/${version}"; 34 25 hash = "sha256-xAsUNhVQBjtSFHyjjnicAKRC3+Tdn3AdGDUYhmOOIdA="; 35 26 }; 36 27 37 - postPatch = '' 38 - substituteInPlace pyproject.toml --replace \ 39 - 'crashtest = { version = "^0.3.0", python = "^3.6" }' \ 40 - 'crashtest = { version = "*", python = "^3.6" }' 41 - ''; 28 + pythonRelaxDeps = [ "crashtest" ]; 42 29 43 - nativeBuildInputs = [ poetry-core ]; 30 + build-system = [ poetry-core ]; 44 31 45 - propagatedBuildInputs = 46 - [ 47 - pylev 48 - pastel 49 - ] 50 - ++ lib.optionals (pythonAtLeast "3.6") [ crashtest ] 51 - ++ lib.optionals isPy27 [ 52 - typing 53 - enum34 54 - ]; 32 + dependencies = [ 33 + crashtest 34 + pastel 35 + pylev 36 + ]; 55 37 56 38 nativeCheckInputs = [ 57 39 pytest-mock ··· 61 43 pythonImportsCheck = [ "clikit" ]; 62 44 63 45 meta = with lib; { 46 + description = "Group of utilities to build beautiful and testable command line interfaces"; 64 47 homepage = "https://github.com/sdispater/clikit"; 65 - description = "Group of utilities to build beautiful and testable command line interfaces"; 48 + changelog = "https://github.com/sdispater/clikit/blob/${version}/CHANGELOG.md"; 66 49 license = licenses.mit; 67 50 maintainers = with maintainers; [ jakewaksbaum ]; 68 51 };
+5 -2
pkgs/development/python-modules/diffenator2/default.nix
··· 37 37 hash = "sha256-FVdQW2iupAxHFmx6sC88yO2Vx3VvBhPJl55gA0fmvgo="; 38 38 }; 39 39 40 - nativeBuildInputs = [ pythonRelaxDepsHook ]; 40 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 41 41 42 - pythonRelaxDeps = [ "protobuf" ]; 42 + pythonRelaxDeps = [ 43 + "protobuf" 44 + "python-bidi" 45 + ]; 43 46 44 47 build-system = [ 45 48 poetry-core
+37 -29
pkgs/development/python-modules/dragonfly/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + decorator, 4 5 fetchFromGitHub, 5 - decorator, 6 + json-rpc, 7 + kaldi-active-grammar, 8 + lark, 6 9 packaging, 10 + psutil, 7 11 pynput, 12 + pyperclip, 13 + pythonOlder, 8 14 regex, 9 - lark, 10 - enum34, 11 - pyperclip, 15 + requests, 16 + setuptools, 12 17 six, 13 - requests, 14 - psutil, 15 - json-rpc, 16 - werkzeug, 17 - kaldi-active-grammar, 18 18 sounddevice, 19 19 webrtcvad, 20 - setuptools, 21 - xdotool, 20 + werkzeug, 22 21 wmctrl, 22 + xdotool, 23 23 xorg, 24 24 }: 25 25 26 26 buildPythonPackage rec { 27 27 pname = "dragonfly"; 28 28 version = "0.35.0"; 29 - format = "setuptools"; 29 + pyproject = true; 30 + 31 + disabled = pythonOlder "3.7"; 30 32 31 33 src = fetchFromGitHub { 32 34 owner = "dictation-toolbox"; 33 - repo = pname; 34 - rev = version; 35 + repo = "dragonfly"; 36 + rev = "refs/tags/${version}"; 35 37 hash = "sha256-sqEEEr5/KG3cn4rmOGJt9zMNAjeLO6h3NJgg0EyewrM="; 36 38 }; 37 39 38 40 postPatch = '' 39 - substituteInPlace setup.py --replace 'lark-parser == 0.8.*' 'lark' 40 41 substituteInPlace dragonfly/actions/keyboard/_x11_xdotool.py \ 41 - --replace 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"' 42 + --replace-fail 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"' 42 43 substituteInPlace dragonfly/windows/x11_window.py \ 43 - --replace 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"' \ 44 - --replace 'xprop = "xprop"'${" "}'xprop = "${xorg.xprop}/bin/xprop"' \ 45 - --replace 'wmctrl = "wmctrl"'${" "}'wmctrl = "${wmctrl}/bin/wmctrl"' 44 + --replace-fail 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"' \ 45 + --replace-fail 'xprop = "xprop"'${" "}'xprop = "${xorg.xprop}/bin/xprop"' \ 46 + --replace-fail 'wmctrl = "wmctrl"'${" "}'wmctrl = "${wmctrl}/bin/wmctrl"' 46 47 ''; 47 48 49 + pythonRemoveDeps = [ "lark-parser" ]; 50 + 48 51 propagatedBuildInputs = [ 49 52 decorator 53 + json-rpc 54 + lark 50 55 packaging 56 + psutil 51 57 pynput 52 - regex 53 - lark 54 - enum34 55 58 pyperclip 59 + regex 60 + requests 61 + setuptools # needs pkg_resources at runtime 56 62 six 57 - requests 58 - psutil 59 - json-rpc 60 63 werkzeug 61 - kaldi-active-grammar # for the Kaldi engine 62 - sounddevice 63 - webrtcvad 64 - setuptools # needs pkg_resources at runtime 65 64 ]; 66 65 66 + optional-dependencies = { 67 + kaldi = [ 68 + kaldi-active-grammar 69 + sounddevice 70 + webrtcvad 71 + ]; 72 + }; 73 + 67 74 # Too many tests fail because of the unusual environment or 68 75 # because of the missing dependencies for some of the engines. 69 76 doCheck = false; ··· 73 80 meta = with lib; { 74 81 description = "Speech recognition framework allowing powerful Python-based scripting"; 75 82 homepage = "https://github.com/dictation-toolbox/dragonfly"; 83 + changelog = "https://github.com/dictation-toolbox/dragonfly/blob/${version}/CHANGELOG.rst"; 76 84 license = licenses.lgpl3Plus; 77 85 maintainers = [ ]; 78 86 };
+5 -1
pkgs/development/python-modules/fontbakery/default.nix
··· 57 57 hash = "sha256-+9O7cAE6CUATvybG22qULNNHi94zSGqU9UjhvrF9R8k="; 58 58 }; 59 59 60 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 61 + 60 62 pythonRelaxDeps = [ 61 63 "collidoscope" 62 64 "protobuf" ··· 127 129 ''; 128 130 129 131 disabledTests = [ 130 - # These require network access: 132 + # These require network access 131 133 "test_check_description_broken_links" 132 134 "test_check_description_family_update" 133 135 "test_check_metadata_designer_profiles" ··· 138 140 "test_check_cjk_vertical_metrics" 139 141 "test_check_cjk_vertical_metrics_regressions" 140 142 "test_check_fontbakery_version_live_apis" 143 + # AssertionError 144 + "test_check_shape_languages" 141 145 ]; 142 146 143 147 postInstall = ''
+17 -5
pkgs/development/python-modules/gflanguages/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "gflanguages"; 17 - version = "0.6.4"; 17 + version = "0.6.5"; 18 + pyproject = true; 18 19 19 20 disabled = pythonOlder "3.7"; 20 21 21 22 src = fetchPypi { 22 23 inherit pname version; 23 - hash = "sha256-a+BSR2dMC/EVvpQa9AG+c+9IpMeXYTOKBr8r8nBZrGY="; 24 + hash = "sha256-wMhRVWdjKiEfzswnAWqKfzHrpJj0U4q8tzDBGshNryo="; 24 25 }; 25 26 26 - pyproject = true; 27 - 28 27 # Relax the dependency on protobuf 3. Other packages in the Google Fonts 29 28 # ecosystem have begun upgrading from protobuf 3 to protobuf 4, 30 29 # so we need to use protobuf 4 here as well to avoid a conflict 31 30 # in the closure of fontbakery. It seems to be compatible enough. 32 31 pythonRelaxDeps = [ "protobuf" ]; 32 + 33 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 33 34 34 35 build-system = [ 35 36 setuptools 36 37 setuptools-scm 37 38 ]; 38 39 39 - dependencies = [ protobuf ]; 40 + dependencies = [ 41 + protobuf 42 + regex 43 + ]; 40 44 41 45 nativeCheckInputs = [ 42 46 pytestCheckHook 43 47 regex 44 48 uharfbuzz 45 49 youseedee 50 + ]; 51 + 52 + pythonImportsCheck = [ "gflanguages" ]; 53 + 54 + disabledTests = [ 55 + # AssertionError 56 + "test_exemplars_are_in_script" 57 + "test_sample_texts_are_in_script" 46 58 ]; 47 59 48 60 meta = with lib; {
+2
pkgs/development/python-modules/gftools/default.nix
··· 114 114 --replace-fail "'gftools" "'${placeholder "out"}t/bin/gftools" 115 115 ''; 116 116 117 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 118 + 117 119 pythonRelaxDeps = [ 118 120 "protobuf" 119 121 "pygit2"
+17 -9
pkgs/development/python-modules/gin-config/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - six, 6 - enum34, 5 + pythonOlder, 6 + setuptools, 7 + tensorflow, 8 + torch, 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "gin-config"; 11 13 version = "0.5.0"; 12 - format = "setuptools"; 14 + pyproject = true; 15 + 16 + disabled = pythonOlder "3.7"; 13 17 14 18 src = fetchPypi { 15 19 inherit pname version; 16 - sha256 = "0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6"; 20 + hash = "sha256-DG6lAm3tknyMk8mQsBxpUlfB30RuReVJoVjPvHnhntY="; 17 21 }; 18 22 19 - propagatedBuildInputs = [ 20 - six 21 - enum34 22 - ]; 23 + build-system = [ setuptools ]; 24 + 25 + optional-dependencies = { 26 + tensorflow = [ tensorflow ]; 27 + torch = [ torch ]; 28 + }; 23 29 24 30 # PyPI archive does not ship with tests 25 31 doCheck = false; 26 32 33 + pythonImportsCheck = [ "gin" ]; 34 + 27 35 meta = with lib; { 36 + description = "Gin provides a lightweight configuration framework for Python, based on dependency injection"; 28 37 homepage = "https://github.com/google/gin-config"; 29 - description = "Gin provides a lightweight configuration framework for Python, based on dependency injection"; 30 38 license = licenses.asl20; 31 39 maintainers = with maintainers; [ jethro ]; 32 40 };
+11 -3
pkgs/development/python-modules/glyphsets/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 5 4 defcon, 5 + fetchPypi, 6 6 fonttools, 7 7 gflanguages, 8 8 glyphslib, 9 9 pytestCheckHook, 10 + pythonOlder, 10 11 pyyaml, 11 12 requests, 13 + setuptools-scm, 12 14 setuptools, 13 - setuptools-scm, 14 15 unicodedata2, 15 16 }: 16 17 ··· 18 19 pname = "glyphsets"; 19 20 version = "1.0.0"; 20 21 pyproject = true; 22 + 23 + disabled = pythonOlder "3.8"; 21 24 22 25 src = fetchPypi { 23 26 inherit pname version; 24 27 hash = "sha256-fa+W1IGIZcn1P1xNKm1Yb/TOuf4QdDVnIvlDkOLOcLY="; 25 28 }; 26 29 30 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 31 + 27 32 postPatch = '' 28 33 substituteInPlace setup.py \ 29 34 --replace-fail "setuptools_scm>=8.0.4,<8.1" "setuptools_scm" ··· 53 58 disabledTests = [ 54 59 # This "test" just tries to connect to PyPI and look for newer releases. Not needed. 55 60 "test_dependencies" 61 + # AssertionError 62 + "test_definitions" 56 63 ]; 57 64 58 65 meta = with lib; { 59 66 description = "Google Fonts glyph set metadata"; 60 - mainProgram = "glyphsets"; 61 67 homepage = "https://github.com/googlefonts/glyphsets"; 68 + changelog = "https://github.com/googlefonts/glyphsets/blob/v${version}/CHANGELOG.md"; 62 69 license = licenses.asl20; 63 70 maintainers = with maintainers; [ danc86 ]; 71 + mainProgram = "glyphsets"; 64 72 }; 65 73 }
+18 -6
pkgs/development/python-modules/libsoundtouch/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - enum-compat, 6 5 requests, 7 6 websocket-client, 8 7 zeroconf, 9 8 pytestCheckHook, 9 + setuptools, 10 + pythonOlder, 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "libsoundtouch"; 14 15 version = "0.8.0"; 15 - format = "setuptools"; 16 + pyproject = true; 17 + 18 + disabled = pythonOlder "3.7"; 16 19 17 20 src = fetchFromGitHub { 18 21 owner = "CharlesBlonde"; 19 22 repo = "libsoundtouch"; 20 - rev = version; 21 - sha256 = "1wl2w5xfdkrv0qzsz084z2k6sycfyq62mqqgciycha3dywf2fvva"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha256-am8nHPdtKMh8ZA/jKgz2jnltpvgEga8/BjvP5nrhgvI="; 22 25 }; 23 26 24 - propagatedBuildInputs = [ 27 + postPatch = '' 28 + substituteInPlace setup.py \ 29 + --replace-fail "'enum-compat>=0.0.2'," "" 30 + ''; 31 + 32 + build-system = [ setuptools ]; 33 + 34 + dependencies = [ 25 35 requests 26 - enum-compat 27 36 websocket-client 28 37 zeroconf 29 38 ]; ··· 36 45 "test_snapshot_restore" 37 46 ]; 38 47 48 + pythonImportsCheck = [ "libsoundtouch" ]; 49 + 39 50 meta = with lib; { 40 51 description = "Bose Soundtouch Python library"; 41 52 homepage = "https://github.com/CharlesBlonde/libsoundtouch"; 42 53 license = licenses.asl20; 54 + maintainers = [ ]; 43 55 }; 44 56 }
+2 -2
pkgs/development/python-modules/pure-protobuf/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pure-protobuf"; 17 - version = "3.1.2"; 17 + version = "3.1.3"; 18 18 19 19 format = "pyproject"; 20 20 # < 3.10 requires get-annotations which isn't packaged yet ··· 24 24 owner = "eigenein"; 25 25 repo = "protobuf"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-up/01Q2IdaW41Ple+nCRpWjYnl/IAlOppdGcg4djRZY="; 27 + hash = "sha256-AsiJDi3SF3nlWKFvZujUsoHY8AJ21JKzEuTdR9FtFQI="; 28 28 }; 29 29 30 30 build-system = [
+2 -2
pkgs/development/python-modules/pyopencl/default.nix
··· 31 31 in 32 32 buildPythonPackage rec { 33 33 pname = "pyopencl"; 34 - version = "2024.2.7"; 34 + version = "2024.3"; 35 35 pyproject = true; 36 36 37 37 src = fetchFromGitHub { ··· 39 39 repo = "pyopencl"; 40 40 rev = "refs/tags/v${version}"; 41 41 fetchSubmodules = true; 42 - hash = "sha256-VeaEDYnGfMYf9/WqMIZ9g4KounD48eWF3Romt79RMEQ="; 42 + hash = "sha256-HE7dARgKnZxqjAXX4iI1ml0N2BalyTo+ZAzjC2ThEN8="; 43 43 }; 44 44 45 45 build-system = [
+2 -2
pkgs/development/python-modules/ring-doorbell/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "ring-doorbell"; 26 - version = "0.9.6"; 26 + version = "0.9.8"; 27 27 pyproject = true; 28 28 29 29 disabled = pythonOlder "3.9"; ··· 31 31 src = fetchPypi { 32 32 pname = "ring_doorbell"; 33 33 inherit version; 34 - hash = "sha256-pSHsQ2bJ0zNk6eJfDERVFqZM/IWorL8HFFjnwnhaHhY="; 34 + hash = "sha256-3OSD+L6+mZkkm0OU09hAFyEAxJZ3YA1+lRm2DjQ7Dl0="; 35 35 }; 36 36 37 37 pythonRelaxDeps = [ "requests-oauthlib" ];
+22 -11
pkgs/development/python-modules/shaperglot/default.nix
··· 6 6 num2words, 7 7 protobuf, 8 8 pytestCheckHook, 9 + pythonOlder, 9 10 pyyaml, 11 + setuptools-scm, 10 12 setuptools, 11 - setuptools-scm, 12 13 strictyaml, 13 14 termcolor, 14 15 ufo2ft, ··· 18 19 19 20 buildPythonPackage rec { 20 21 pname = "shaperglot"; 21 - version = "0.6.3"; 22 + version = "0.6.4"; 23 + pyproject = true; 22 24 23 - # PyPI source tarballs omit tests, fetch from Github instead 25 + disabled = pythonOlder "3.7"; 26 + 24 27 src = fetchFromGitHub { 25 28 owner = "googlefonts"; 26 29 repo = "shaperglot"; 27 30 rev = "refs/tags/v${version}"; 28 - hash = "sha256-XoWlTE7PXtVh7VT7p3jY2ppU2tLwzYBQQBTP5Ocg4Qc="; 31 + hash = "sha256-O6z7TJpC54QkqX5/G1HKSvaDYty7B9BnCQ4FpsLsEMs="; 29 32 }; 30 33 31 - pyproject = true; 34 + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; 35 + 36 + postPatch = '' 37 + substituteInPlace pyproject.toml \ 38 + --replace-fail "setuptools>=75.0.0" "setuptools" 39 + ''; 40 + 41 + build-system = [ 42 + setuptools 43 + setuptools-scm 44 + ]; 32 45 33 46 dependencies = [ 34 47 gflanguages ··· 41 54 vharfbuzz 42 55 youseedee 43 56 ]; 44 - build-system = [ 45 - setuptools 46 - setuptools-scm 47 - ]; 48 57 49 - doCheck = true; 50 58 nativeCheckInputs = [ pytestCheckHook ]; 51 59 60 + pythonImportsCheck = [ "shaperglot" ]; 61 + 52 62 meta = with lib; { 53 63 description = "Tool to test OpenType fonts for language support"; 54 - mainProgram = "shaperglot"; 55 64 homepage = "https://github.com/googlefonts/shaperglot"; 65 + changelog = "https://github.com/googlefonts/shaperglot/releases/tag/v${version}"; 56 66 license = licenses.asl20; 57 67 maintainers = with maintainers; [ danc86 ]; 68 + mainProgram = "shaperglot"; 58 69 }; 59 70 }
+2 -12
pkgs/development/tools/open-policy-agent/default.nix
··· 2 2 , stdenv 3 3 , buildGoModule 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , installShellFiles 7 6 8 7 , enableWasmEval ? false ··· 12 11 13 12 buildGoModule rec { 14 13 pname = "open-policy-agent"; 15 - version = "0.66.0"; 14 + version = "0.69.0"; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "open-policy-agent"; 19 18 repo = "opa"; 20 19 rev = "v${version}"; 21 - hash = "sha256-fx7k6KvL0uy2NXLDLpCnN1ux9MGEO1CbX6TdLweVzag="; 20 + hash = "sha256-AEh6HBDLQYptBw68SQurPuWADxL5x5OirtJGQ+UKXdU="; 22 21 }; 23 - 24 - patches = [ 25 - # fix tests in 1.22.5 26 - # https://github.com/open-policy-agent/opa/pull/6845 27 - (fetchpatch { 28 - url = "https://github.com/open-policy-agent/opa/commit/956358516c23b1f33f6667961e20aca65b91355b.patch"; 29 - hash = "sha256-1nfMwJwbYfdLg9j4ppP1IWdDeFq6vhXcDKr6uprP53U="; 30 - }) 31 - ]; 32 22 33 23 vendorHash = null; 34 24
+8 -2
pkgs/games/corsix-th/default.nix
··· 2 2 , lib 3 3 , fetchFromGitHub 4 4 , cmake 5 + , curl 5 6 , doxygen 6 7 , ffmpeg 7 8 , freetype ··· 14 15 , libiconv 15 16 , Cocoa 16 17 , CoreVideo 18 + , CoreMedia 19 + , VideoToolbox 17 20 # Update 18 21 , nix-update-script 19 22 }: 20 23 21 24 stdenv.mkDerivation(finalAttrs: { 22 25 pname = "corsix-th"; 23 - version = "0.67"; 26 + version = "0.68.0"; 24 27 25 28 src = fetchFromGitHub { 26 29 owner = "CorsixTH"; 27 30 repo = "CorsixTH"; 28 31 rev = "v${finalAttrs.version}"; 29 - hash = "sha256-WA/VJqHXzBfVUBNtxCVsGBRzSRQ0pvDvAy03ntc0KZE="; 32 + hash = "sha256-D8ks+fiFJxwClqW1aNtGGa5UxAFvuH2f2guwPxOEQwI="; 30 33 }; 31 34 32 35 patches = [ ··· 38 41 buildInputs = let 39 42 luaEnv = lua.withPackages(p: with p; [ luafilesystem lpeg luasec luasocket ]); 40 43 in [ 44 + curl 41 45 ffmpeg 42 46 freetype 43 47 lua ··· 49 53 libiconv 50 54 Cocoa 51 55 CoreVideo 56 + CoreMedia 57 + VideoToolbox 52 58 ]; 53 59 54 60 cmakeFlags = [ "-Wno-dev" ];
+2 -2
pkgs/os-specific/linux/libtraceevent/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libtraceevent"; 5 - version = "1.8.3"; 5 + version = "1.8.4"; 6 6 7 7 src = fetchgit { 8 8 url = "https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git"; 9 9 rev = "libtraceevent-${version}"; 10 - hash = "sha256-yftCaZ3mEPOreENd9Q/te/WqM7etokO+D8RZbB1epSA="; 10 + hash = "sha256-T4NxYVJKl+2YZ6JZ7PvtM4RdTg9DIE+su4KxJwvw7iI="; 11 11 }; 12 12 13 13 postPatch = ''
-2
pkgs/os-specific/linux/paxctl/default.nix
··· 22 22 "MANDIR=share/man/man1" 23 23 ]; 24 24 25 - setupHook = ./setup-hook.sh; 26 - 27 25 meta = with lib; { 28 26 description = "Tool for controlling PaX flags on a per binary basis"; 29 27 mainProgram = "paxctl";
-8
pkgs/os-specific/linux/paxctl/setup-hook.sh
··· 1 - # PaX-mark binaries. 2 - paxmark() { 3 - local flags="$1" 4 - shift 5 - 6 - paxctl -c "$@" 7 - paxctl -zex -${flags} "$@" 8 - }
-2014
pkgs/servers/teleport/14/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "aho-corasick" 13 - version = "0.7.20" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16 - dependencies = [ 17 - "memchr", 18 - ] 19 - 20 - [[package]] 21 - name = "asn1-rs" 22 - version = "0.5.1" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4" 25 - dependencies = [ 26 - "asn1-rs-derive", 27 - "asn1-rs-impl", 28 - "displaydoc", 29 - "nom", 30 - "num-traits", 31 - "rusticata-macros", 32 - "thiserror", 33 - "time", 34 - ] 35 - 36 - [[package]] 37 - name = "asn1-rs-derive" 38 - version = "0.4.0" 39 - source = "registry+https://github.com/rust-lang/crates.io-index" 40 - checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" 41 - dependencies = [ 42 - "proc-macro2", 43 - "quote", 44 - "syn 1.0.107", 45 - "synstructure", 46 - ] 47 - 48 - [[package]] 49 - name = "asn1-rs-impl" 50 - version = "0.1.0" 51 - source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 53 - dependencies = [ 54 - "proc-macro2", 55 - "quote", 56 - "syn 1.0.107", 57 - ] 58 - 59 - [[package]] 60 - name = "atomic-polyfill" 61 - version = "0.1.11" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "e3ff7eb3f316534d83a8a2c3d1674ace8a5a71198eba31e2e2b597833f699b28" 64 - dependencies = [ 65 - "critical-section", 66 - ] 67 - 68 - [[package]] 69 - name = "atty" 70 - version = "0.2.14" 71 - source = "registry+https://github.com/rust-lang/crates.io-index" 72 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 73 - dependencies = [ 74 - "hermit-abi 0.1.19", 75 - "libc", 76 - "winapi", 77 - ] 78 - 79 - [[package]] 80 - name = "autocfg" 81 - version = "1.1.0" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 84 - 85 - [[package]] 86 - name = "base64" 87 - version = "0.13.1" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 90 - 91 - [[package]] 92 - name = "base64ct" 93 - version = "1.5.3" 94 - source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 96 - 97 - [[package]] 98 - name = "bindgen" 99 - version = "0.68.1" 100 - source = "registry+https://github.com/rust-lang/crates.io-index" 101 - checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" 102 - dependencies = [ 103 - "bitflags 2.4.0", 104 - "cexpr", 105 - "clang-sys", 106 - "lazy_static", 107 - "lazycell", 108 - "peeking_take_while", 109 - "proc-macro2", 110 - "quote", 111 - "regex", 112 - "rustc-hash", 113 - "shlex", 114 - "syn 2.0.23", 115 - ] 116 - 117 - [[package]] 118 - name = "bitflags" 119 - version = "1.3.2" 120 - source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 122 - 123 - [[package]] 124 - name = "bitflags" 125 - version = "2.4.0" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 128 - 129 - [[package]] 130 - name = "block-buffer" 131 - version = "0.7.3" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 134 - dependencies = [ 135 - "block-padding", 136 - "byte-tools", 137 - "byteorder", 138 - "generic-array 0.12.4", 139 - ] 140 - 141 - [[package]] 142 - name = "block-padding" 143 - version = "0.1.5" 144 - source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 146 - dependencies = [ 147 - "byte-tools", 148 - ] 149 - 150 - [[package]] 151 - name = "boring" 152 - version = "4.3.0" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "92667e5967bf826198f88dd3e43616973f8902769a6151616a65be1289a3c531" 155 - dependencies = [ 156 - "bitflags 2.4.0", 157 - "boring-sys", 158 - "foreign-types", 159 - "libc", 160 - "once_cell", 161 - ] 162 - 163 - [[package]] 164 - name = "boring-sys" 165 - version = "4.3.0" 166 - source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "f04f5e0e2dc8315f68251391a4ac6da54793525c01d0206b10732b71139768cd" 168 - dependencies = [ 169 - "bindgen", 170 - "cmake", 171 - "fs_extra", 172 - "fslock", 173 - ] 174 - 175 - [[package]] 176 - name = "bufstream" 177 - version = "0.1.4" 178 - source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8" 180 - 181 - [[package]] 182 - name = "bumpalo" 183 - version = "3.11.1" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 186 - 187 - [[package]] 188 - name = "byte-tools" 189 - version = "0.3.1" 190 - source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 192 - 193 - [[package]] 194 - name = "byteorder" 195 - version = "1.4.3" 196 - source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 198 - 199 - [[package]] 200 - name = "cbindgen" 201 - version = "0.25.0" 202 - source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "faeaa693e5a727975a79211b8f35c0cb09b031fdb6eaa4a788bc6713d01488ca" 204 - dependencies = [ 205 - "clap", 206 - "heck", 207 - "indexmap", 208 - "log", 209 - "proc-macro2", 210 - "quote", 211 - "serde", 212 - "serde_json", 213 - "syn 1.0.107", 214 - "tempfile", 215 - "toml", 216 - ] 217 - 218 - [[package]] 219 - name = "cc" 220 - version = "1.0.78" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 223 - 224 - [[package]] 225 - name = "cexpr" 226 - version = "0.6.0" 227 - source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 229 - dependencies = [ 230 - "nom", 231 - ] 232 - 233 - [[package]] 234 - name = "cfg-if" 235 - version = "1.0.0" 236 - source = "registry+https://github.com/rust-lang/crates.io-index" 237 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 238 - 239 - [[package]] 240 - name = "cipher" 241 - version = "0.4.3" 242 - source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 244 - dependencies = [ 245 - "crypto-common", 246 - "inout", 247 - ] 248 - 249 - [[package]] 250 - name = "clang-sys" 251 - version = "1.4.0" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 254 - dependencies = [ 255 - "glob", 256 - "libc", 257 - "libloading", 258 - ] 259 - 260 - [[package]] 261 - name = "clap" 262 - version = "3.2.23" 263 - source = "registry+https://github.com/rust-lang/crates.io-index" 264 - checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 265 - dependencies = [ 266 - "atty", 267 - "bitflags 1.3.2", 268 - "clap_lex", 269 - "indexmap", 270 - "strsim", 271 - "termcolor", 272 - "textwrap", 273 - ] 274 - 275 - [[package]] 276 - name = "clap_lex" 277 - version = "0.2.4" 278 - source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 280 - dependencies = [ 281 - "os_str_bytes", 282 - ] 283 - 284 - [[package]] 285 - name = "cmake" 286 - version = "0.1.49" 287 - source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c" 289 - dependencies = [ 290 - "cc", 291 - ] 292 - 293 - [[package]] 294 - name = "const-oid" 295 - version = "0.7.1" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" 298 - 299 - [[package]] 300 - name = "const-oid" 301 - version = "0.9.2" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" 304 - 305 - [[package]] 306 - name = "crc32fast" 307 - version = "1.3.2" 308 - source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 310 - dependencies = [ 311 - "cfg-if", 312 - ] 313 - 314 - [[package]] 315 - name = "critical-section" 316 - version = "1.1.1" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "6548a0ad5d2549e111e1f6a11a6c2e2d00ce6a3dafe22948d67c2b443f775e52" 319 - 320 - [[package]] 321 - name = "crypto-bigint" 322 - version = "0.3.2" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21" 325 - dependencies = [ 326 - "generic-array 0.14.6", 327 - "subtle 2.4.1", 328 - ] 329 - 330 - [[package]] 331 - name = "crypto-common" 332 - version = "0.1.6" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 335 - dependencies = [ 336 - "generic-array 0.14.6", 337 - "typenum", 338 - ] 339 - 340 - [[package]] 341 - name = "crypto-mac" 342 - version = "0.7.0" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" 345 - dependencies = [ 346 - "generic-array 0.12.4", 347 - "subtle 1.0.0", 348 - ] 349 - 350 - [[package]] 351 - name = "data-encoding" 352 - version = "2.3.3" 353 - source = "registry+https://github.com/rust-lang/crates.io-index" 354 - checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" 355 - 356 - [[package]] 357 - name = "delog" 358 - version = "0.1.6" 359 - source = "registry+https://github.com/rust-lang/crates.io-index" 360 - checksum = "4cd67f90cc14e0a91cf693141453cccf2b74db9d59c40f6be18b79169fe77dfd" 361 - dependencies = [ 362 - "log", 363 - ] 364 - 365 - [[package]] 366 - name = "der" 367 - version = "0.5.1" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" 370 - dependencies = [ 371 - "const-oid 0.7.1", 372 - "crypto-bigint", 373 - "pem-rfc7468 0.3.1", 374 - ] 375 - 376 - [[package]] 377 - name = "der" 378 - version = "0.7.5" 379 - source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "05e58dffcdcc8ee7b22f0c1f71a69243d7c2d9ad87b5a14361f2424a1565c219" 381 - dependencies = [ 382 - "const-oid 0.9.2", 383 - "pem-rfc7468 0.7.0", 384 - "zeroize", 385 - ] 386 - 387 - [[package]] 388 - name = "der-parser" 389 - version = "8.1.0" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1" 392 - dependencies = [ 393 - "asn1-rs", 394 - "displaydoc", 395 - "nom", 396 - "num-bigint 0.4.3", 397 - "num-traits", 398 - "rusticata-macros", 399 - ] 400 - 401 - [[package]] 402 - name = "derivative" 403 - version = "2.2.0" 404 - source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 406 - dependencies = [ 407 - "proc-macro2", 408 - "quote", 409 - "syn 1.0.107", 410 - ] 411 - 412 - [[package]] 413 - name = "digest" 414 - version = "0.8.1" 415 - source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 417 - dependencies = [ 418 - "generic-array 0.12.4", 419 - ] 420 - 421 - [[package]] 422 - name = "digest" 423 - version = "0.10.6" 424 - source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 426 - dependencies = [ 427 - "const-oid 0.9.2", 428 - "crypto-common", 429 - ] 430 - 431 - [[package]] 432 - name = "displaydoc" 433 - version = "0.2.3" 434 - source = "registry+https://github.com/rust-lang/crates.io-index" 435 - checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 436 - dependencies = [ 437 - "proc-macro2", 438 - "quote", 439 - "syn 1.0.107", 440 - ] 441 - 442 - [[package]] 443 - name = "env_logger" 444 - version = "0.10.0" 445 - source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 447 - dependencies = [ 448 - "humantime", 449 - "is-terminal", 450 - "log", 451 - "regex", 452 - "termcolor", 453 - ] 454 - 455 - [[package]] 456 - name = "errno" 457 - version = "0.3.1" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 460 - dependencies = [ 461 - "errno-dragonfly", 462 - "libc", 463 - "windows-sys 0.48.0", 464 - ] 465 - 466 - [[package]] 467 - name = "errno-dragonfly" 468 - version = "0.1.2" 469 - source = "registry+https://github.com/rust-lang/crates.io-index" 470 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 471 - dependencies = [ 472 - "cc", 473 - "libc", 474 - ] 475 - 476 - [[package]] 477 - name = "fake-simd" 478 - version = "0.1.2" 479 - source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 481 - 482 - [[package]] 483 - name = "fastrand" 484 - version = "2.0.0" 485 - source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 487 - 488 - [[package]] 489 - name = "fdeflate" 490 - version = "0.3.0" 491 - source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" 493 - dependencies = [ 494 - "simd-adler32", 495 - ] 496 - 497 - [[package]] 498 - name = "flate2" 499 - version = "1.0.25" 500 - source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 502 - dependencies = [ 503 - "crc32fast", 504 - "miniz_oxide 0.6.2", 505 - ] 506 - 507 - [[package]] 508 - name = "foreign-types" 509 - version = "0.5.0" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 512 - dependencies = [ 513 - "foreign-types-macros", 514 - "foreign-types-shared", 515 - ] 516 - 517 - [[package]] 518 - name = "foreign-types-macros" 519 - version = "0.2.2" 520 - source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "c8469d0d40519bc608ec6863f1cc88f3f1deee15913f2f3b3e573d81ed38cccc" 522 - dependencies = [ 523 - "proc-macro2", 524 - "quote", 525 - "syn 1.0.107", 526 - ] 527 - 528 - [[package]] 529 - name = "foreign-types-shared" 530 - version = "0.3.1" 531 - source = "registry+https://github.com/rust-lang/crates.io-index" 532 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 533 - 534 - [[package]] 535 - name = "fs_extra" 536 - version = "1.3.0" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 539 - 540 - [[package]] 541 - name = "fslock" 542 - version = "0.2.1" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb" 545 - dependencies = [ 546 - "libc", 547 - "winapi", 548 - ] 549 - 550 - [[package]] 551 - name = "generic-array" 552 - version = "0.12.4" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 555 - dependencies = [ 556 - "typenum", 557 - ] 558 - 559 - [[package]] 560 - name = "generic-array" 561 - version = "0.14.6" 562 - source = "registry+https://github.com/rust-lang/crates.io-index" 563 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 564 - dependencies = [ 565 - "typenum", 566 - "version_check", 567 - ] 568 - 569 - [[package]] 570 - name = "gethostname" 571 - version = "0.2.3" 572 - source = "registry+https://github.com/rust-lang/crates.io-index" 573 - checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" 574 - dependencies = [ 575 - "libc", 576 - "winapi", 577 - ] 578 - 579 - [[package]] 580 - name = "getrandom" 581 - version = "0.1.16" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 584 - dependencies = [ 585 - "cfg-if", 586 - "libc", 587 - "wasi 0.9.0+wasi-snapshot-preview1", 588 - ] 589 - 590 - [[package]] 591 - name = "getrandom" 592 - version = "0.2.8" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 595 - dependencies = [ 596 - "cfg-if", 597 - "libc", 598 - "wasi 0.11.0+wasi-snapshot-preview1", 599 - ] 600 - 601 - [[package]] 602 - name = "glob" 603 - version = "0.3.0" 604 - source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 606 - 607 - [[package]] 608 - name = "hash32" 609 - version = "0.2.1" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 612 - dependencies = [ 613 - "byteorder", 614 - ] 615 - 616 - [[package]] 617 - name = "hashbrown" 618 - version = "0.12.3" 619 - source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 621 - 622 - [[package]] 623 - name = "heapless" 624 - version = "0.7.16" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "db04bc24a18b9ea980628ecf00e6c0264f3c1426dac36c00cb49b6fbad8b0743" 627 - dependencies = [ 628 - "atomic-polyfill", 629 - "hash32", 630 - "rustc_version", 631 - "spin 0.9.4", 632 - "stable_deref_trait", 633 - ] 634 - 635 - [[package]] 636 - name = "heck" 637 - version = "0.4.0" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 640 - 641 - [[package]] 642 - name = "hermit-abi" 643 - version = "0.1.19" 644 - source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 646 - dependencies = [ 647 - "libc", 648 - ] 649 - 650 - [[package]] 651 - name = "hermit-abi" 652 - version = "0.2.6" 653 - source = "registry+https://github.com/rust-lang/crates.io-index" 654 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 655 - dependencies = [ 656 - "libc", 657 - ] 658 - 659 - [[package]] 660 - name = "hermit-abi" 661 - version = "0.3.1" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 664 - 665 - [[package]] 666 - name = "hmac" 667 - version = "0.7.1" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" 670 - dependencies = [ 671 - "crypto-mac", 672 - "digest 0.8.1", 673 - ] 674 - 675 - [[package]] 676 - name = "humantime" 677 - version = "2.1.0" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 680 - 681 - [[package]] 682 - name = "indexmap" 683 - version = "1.9.2" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 686 - dependencies = [ 687 - "autocfg", 688 - "hashbrown", 689 - ] 690 - 691 - [[package]] 692 - name = "inout" 693 - version = "0.1.3" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 696 - dependencies = [ 697 - "generic-array 0.14.6", 698 - ] 699 - 700 - [[package]] 701 - name = "io-lifetimes" 702 - version = "1.0.11" 703 - source = "registry+https://github.com/rust-lang/crates.io-index" 704 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 705 - dependencies = [ 706 - "hermit-abi 0.3.1", 707 - "libc", 708 - "windows-sys 0.48.0", 709 - ] 710 - 711 - [[package]] 712 - name = "is-terminal" 713 - version = "0.4.2" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 716 - dependencies = [ 717 - "hermit-abi 0.2.6", 718 - "io-lifetimes", 719 - "rustix 0.36.16", 720 - "windows-sys 0.42.0", 721 - ] 722 - 723 - [[package]] 724 - name = "iso7816" 725 - version = "0.1.1" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "e7e6ac743d509349b7865595ce90bbfcfbe59f42b8ec0db9e76ec361ace3f652" 728 - dependencies = [ 729 - "delog", 730 - "heapless", 731 - ] 732 - 733 - [[package]] 734 - name = "iso7816-tlv" 735 - version = "0.4.3" 736 - source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "d47365efc3b4c252f8a3384445c0f7e8a4e0ae5c22bf3bedd2dd16f9bb45016a" 738 - dependencies = [ 739 - "untrusted 0.9.0", 740 - ] 741 - 742 - [[package]] 743 - name = "itoa" 744 - version = "1.0.5" 745 - source = "registry+https://github.com/rust-lang/crates.io-index" 746 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 747 - 748 - [[package]] 749 - name = "js-sys" 750 - version = "0.3.60" 751 - source = "registry+https://github.com/rust-lang/crates.io-index" 752 - checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 753 - dependencies = [ 754 - "wasm-bindgen", 755 - ] 756 - 757 - [[package]] 758 - name = "lazy_static" 759 - version = "1.4.0" 760 - source = "registry+https://github.com/rust-lang/crates.io-index" 761 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 762 - dependencies = [ 763 - "spin 0.5.2", 764 - ] 765 - 766 - [[package]] 767 - name = "lazycell" 768 - version = "1.3.0" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 771 - 772 - [[package]] 773 - name = "libc" 774 - version = "0.2.147" 775 - source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 777 - 778 - [[package]] 779 - name = "libloading" 780 - version = "0.7.4" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 783 - dependencies = [ 784 - "cfg-if", 785 - "winapi", 786 - ] 787 - 788 - [[package]] 789 - name = "libm" 790 - version = "0.2.6" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" 793 - 794 - [[package]] 795 - name = "linux-raw-sys" 796 - version = "0.1.4" 797 - source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 799 - 800 - [[package]] 801 - name = "linux-raw-sys" 802 - version = "0.4.3" 803 - source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 805 - 806 - [[package]] 807 - name = "lock_api" 808 - version = "0.4.9" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 811 - dependencies = [ 812 - "autocfg", 813 - "scopeguard", 814 - ] 815 - 816 - [[package]] 817 - name = "log" 818 - version = "0.4.20" 819 - source = "registry+https://github.com/rust-lang/crates.io-index" 820 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 821 - 822 - [[package]] 823 - name = "md-5" 824 - version = "0.8.0" 825 - source = "registry+https://github.com/rust-lang/crates.io-index" 826 - checksum = "a18af3dcaf2b0219366cdb4e2af65a6101457b415c3d1a5c71dd9c2b7c77b9c8" 827 - dependencies = [ 828 - "block-buffer", 829 - "digest 0.8.1", 830 - "opaque-debug", 831 - ] 832 - 833 - [[package]] 834 - name = "md4" 835 - version = "0.8.0" 836 - source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "a4030c65cf2aab7ada769cae7d1e7159f8d034d6ded4f39afba037f094bfd9a1" 838 - dependencies = [ 839 - "block-buffer", 840 - "digest 0.8.1", 841 - "fake-simd", 842 - "opaque-debug", 843 - ] 844 - 845 - [[package]] 846 - name = "memchr" 847 - version = "2.5.0" 848 - source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 850 - 851 - [[package]] 852 - name = "minimal-lexical" 853 - version = "0.2.1" 854 - source = "registry+https://github.com/rust-lang/crates.io-index" 855 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 856 - 857 - [[package]] 858 - name = "miniz_oxide" 859 - version = "0.6.2" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 862 - dependencies = [ 863 - "adler", 864 - ] 865 - 866 - [[package]] 867 - name = "miniz_oxide" 868 - version = "0.7.1" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 871 - dependencies = [ 872 - "adler", 873 - "simd-adler32", 874 - ] 875 - 876 - [[package]] 877 - name = "nom" 878 - version = "7.1.1" 879 - source = "registry+https://github.com/rust-lang/crates.io-index" 880 - checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" 881 - dependencies = [ 882 - "memchr", 883 - "minimal-lexical", 884 - ] 885 - 886 - [[package]] 887 - name = "num-bigint" 888 - version = "0.2.6" 889 - source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" 891 - dependencies = [ 892 - "autocfg", 893 - "num-integer", 894 - "num-traits", 895 - ] 896 - 897 - [[package]] 898 - name = "num-bigint" 899 - version = "0.4.3" 900 - source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 902 - dependencies = [ 903 - "autocfg", 904 - "num-integer", 905 - "num-traits", 906 - ] 907 - 908 - [[package]] 909 - name = "num-bigint-dig" 910 - version = "0.8.2" 911 - source = "registry+https://github.com/rust-lang/crates.io-index" 912 - checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905" 913 - dependencies = [ 914 - "byteorder", 915 - "lazy_static", 916 - "libm", 917 - "num-integer", 918 - "num-iter", 919 - "num-traits", 920 - "rand 0.8.5", 921 - "smallvec", 922 - "zeroize", 923 - ] 924 - 925 - [[package]] 926 - name = "num-derive" 927 - version = "0.4.0" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "9e6a0fd4f737c707bd9086cc16c925f294943eb62eb71499e9fd4cf71f8b9f4e" 930 - dependencies = [ 931 - "proc-macro2", 932 - "quote", 933 - "syn 2.0.23", 934 - ] 935 - 936 - [[package]] 937 - name = "num-integer" 938 - version = "0.1.45" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 941 - dependencies = [ 942 - "autocfg", 943 - "num-traits", 944 - ] 945 - 946 - [[package]] 947 - name = "num-iter" 948 - version = "0.1.43" 949 - source = "registry+https://github.com/rust-lang/crates.io-index" 950 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 951 - dependencies = [ 952 - "autocfg", 953 - "num-integer", 954 - "num-traits", 955 - ] 956 - 957 - [[package]] 958 - name = "num-traits" 959 - version = "0.2.16" 960 - source = "registry+https://github.com/rust-lang/crates.io-index" 961 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 962 - dependencies = [ 963 - "autocfg", 964 - "libm", 965 - ] 966 - 967 - [[package]] 968 - name = "num_enum" 969 - version = "0.4.3" 970 - source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "ca565a7df06f3d4b485494f25ba05da1435950f4dc263440eda7a6fa9b8e36e4" 972 - dependencies = [ 973 - "derivative", 974 - "num_enum_derive", 975 - ] 976 - 977 - [[package]] 978 - name = "num_enum_derive" 979 - version = "0.4.3" 980 - source = "registry+https://github.com/rust-lang/crates.io-index" 981 - checksum = "ffa5a33ddddfee04c0283a7653987d634e880347e96b5b2ed64de07efb59db9d" 982 - dependencies = [ 983 - "proc-macro-crate", 984 - "proc-macro2", 985 - "quote", 986 - "syn 1.0.107", 987 - ] 988 - 989 - [[package]] 990 - name = "oid-registry" 991 - version = "0.6.1" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 994 - dependencies = [ 995 - "asn1-rs", 996 - ] 997 - 998 - [[package]] 999 - name = "once_cell" 1000 - version = "1.16.0" 1001 - source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 1003 - 1004 - [[package]] 1005 - name = "opaque-debug" 1006 - version = "0.2.3" 1007 - source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 1009 - 1010 - [[package]] 1011 - name = "os_str_bytes" 1012 - version = "6.4.1" 1013 - source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1015 - 1016 - [[package]] 1017 - name = "peeking_take_while" 1018 - version = "0.1.2" 1019 - source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 1021 - 1022 - [[package]] 1023 - name = "pem-rfc7468" 1024 - version = "0.3.1" 1025 - source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "01de5d978f34aa4b2296576379fcc416034702fd94117c56ffd8a1a767cefb30" 1027 - dependencies = [ 1028 - "base64ct", 1029 - ] 1030 - 1031 - [[package]] 1032 - name = "pem-rfc7468" 1033 - version = "0.7.0" 1034 - source = "registry+https://github.com/rust-lang/crates.io-index" 1035 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1036 - dependencies = [ 1037 - "base64ct", 1038 - ] 1039 - 1040 - [[package]] 1041 - name = "pkcs1" 1042 - version = "0.3.3" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "a78f66c04ccc83dd4486fd46c33896f4e17b24a7a3a6400dedc48ed0ddd72320" 1045 - dependencies = [ 1046 - "der 0.5.1", 1047 - "pkcs8 0.8.0", 1048 - "zeroize", 1049 - ] 1050 - 1051 - [[package]] 1052 - name = "pkcs1" 1053 - version = "0.7.5" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 1056 - dependencies = [ 1057 - "der 0.7.5", 1058 - "pkcs8 0.10.2", 1059 - "spki 0.7.2", 1060 - ] 1061 - 1062 - [[package]] 1063 - name = "pkcs8" 1064 - version = "0.8.0" 1065 - source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0" 1067 - dependencies = [ 1068 - "der 0.5.1", 1069 - "spki 0.5.4", 1070 - "zeroize", 1071 - ] 1072 - 1073 - [[package]] 1074 - name = "pkcs8" 1075 - version = "0.10.2" 1076 - source = "registry+https://github.com/rust-lang/crates.io-index" 1077 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1078 - dependencies = [ 1079 - "der 0.7.5", 1080 - "spki 0.7.2", 1081 - ] 1082 - 1083 - [[package]] 1084 - name = "png" 1085 - version = "0.17.10" 1086 - source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 1088 - dependencies = [ 1089 - "bitflags 1.3.2", 1090 - "crc32fast", 1091 - "fdeflate", 1092 - "flate2", 1093 - "miniz_oxide 0.7.1", 1094 - ] 1095 - 1096 - [[package]] 1097 - name = "ppv-lite86" 1098 - version = "0.2.17" 1099 - source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1101 - 1102 - [[package]] 1103 - name = "proc-macro-crate" 1104 - version = "0.1.5" 1105 - source = "registry+https://github.com/rust-lang/crates.io-index" 1106 - checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 1107 - dependencies = [ 1108 - "toml", 1109 - ] 1110 - 1111 - [[package]] 1112 - name = "proc-macro2" 1113 - version = "1.0.63" 1114 - source = "registry+https://github.com/rust-lang/crates.io-index" 1115 - checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" 1116 - dependencies = [ 1117 - "unicode-ident", 1118 - ] 1119 - 1120 - [[package]] 1121 - name = "quote" 1122 - version = "1.0.29" 1123 - source = "registry+https://github.com/rust-lang/crates.io-index" 1124 - checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 1125 - dependencies = [ 1126 - "proc-macro2", 1127 - ] 1128 - 1129 - [[package]] 1130 - name = "rand" 1131 - version = "0.7.3" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1134 - dependencies = [ 1135 - "getrandom 0.1.16", 1136 - "libc", 1137 - "rand_chacha 0.2.2", 1138 - "rand_core 0.5.1", 1139 - "rand_hc", 1140 - ] 1141 - 1142 - [[package]] 1143 - name = "rand" 1144 - version = "0.8.5" 1145 - source = "registry+https://github.com/rust-lang/crates.io-index" 1146 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1147 - dependencies = [ 1148 - "libc", 1149 - "rand_chacha 0.3.1", 1150 - "rand_core 0.6.4", 1151 - ] 1152 - 1153 - [[package]] 1154 - name = "rand_chacha" 1155 - version = "0.2.2" 1156 - source = "registry+https://github.com/rust-lang/crates.io-index" 1157 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1158 - dependencies = [ 1159 - "ppv-lite86", 1160 - "rand_core 0.5.1", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "rand_chacha" 1165 - version = "0.3.1" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1168 - dependencies = [ 1169 - "ppv-lite86", 1170 - "rand_core 0.6.4", 1171 - ] 1172 - 1173 - [[package]] 1174 - name = "rand_core" 1175 - version = "0.5.1" 1176 - source = "registry+https://github.com/rust-lang/crates.io-index" 1177 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1178 - dependencies = [ 1179 - "getrandom 0.1.16", 1180 - ] 1181 - 1182 - [[package]] 1183 - name = "rand_core" 1184 - version = "0.6.4" 1185 - source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1187 - dependencies = [ 1188 - "getrandom 0.2.8", 1189 - ] 1190 - 1191 - [[package]] 1192 - name = "rand_hc" 1193 - version = "0.2.0" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1196 - dependencies = [ 1197 - "rand_core 0.5.1", 1198 - ] 1199 - 1200 - [[package]] 1201 - name = "rc4" 1202 - version = "0.1.0" 1203 - source = "registry+https://github.com/rust-lang/crates.io-index" 1204 - checksum = "0f1256e23efe6097f27aa82d6ca6889361c001586ae0f6917cbad072f05eb275" 1205 - dependencies = [ 1206 - "cipher", 1207 - ] 1208 - 1209 - [[package]] 1210 - name = "rdp-client" 1211 - version = "0.1.0" 1212 - dependencies = [ 1213 - "bitflags 2.4.0", 1214 - "byteorder", 1215 - "cbindgen", 1216 - "env_logger", 1217 - "iso7816", 1218 - "iso7816-tlv", 1219 - "libc", 1220 - "log", 1221 - "num-derive", 1222 - "num-traits", 1223 - "png", 1224 - "rand 0.8.5", 1225 - "rand_chacha 0.3.1", 1226 - "rdp-rs", 1227 - "rsa 0.9.2", 1228 - "tempfile", 1229 - "utf16string", 1230 - "uuid", 1231 - ] 1232 - 1233 - [[package]] 1234 - name = "rdp-rs" 1235 - version = "0.1.0" 1236 - source = "git+https://github.com/gravitational/rdp-rs?rev=edfb5330a11d11eaf36d65e4300555368b4c6b02#edfb5330a11d11eaf36d65e4300555368b4c6b02" 1237 - dependencies = [ 1238 - "boring", 1239 - "bufstream", 1240 - "byteorder", 1241 - "gethostname", 1242 - "hmac", 1243 - "indexmap", 1244 - "md-5", 1245 - "md4", 1246 - "num-bigint 0.2.6", 1247 - "num_enum", 1248 - "oid-registry", 1249 - "rand 0.7.3", 1250 - "rc4", 1251 - "ring", 1252 - "rsa 0.6.1", 1253 - "rustls", 1254 - "x509-parser", 1255 - "yasna", 1256 - ] 1257 - 1258 - [[package]] 1259 - name = "redox_syscall" 1260 - version = "0.3.5" 1261 - source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1263 - dependencies = [ 1264 - "bitflags 1.3.2", 1265 - ] 1266 - 1267 - [[package]] 1268 - name = "regex" 1269 - version = "1.7.0" 1270 - source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 1272 - dependencies = [ 1273 - "aho-corasick", 1274 - "memchr", 1275 - "regex-syntax", 1276 - ] 1277 - 1278 - [[package]] 1279 - name = "regex-syntax" 1280 - version = "0.6.28" 1281 - source = "registry+https://github.com/rust-lang/crates.io-index" 1282 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1283 - 1284 - [[package]] 1285 - name = "ring" 1286 - version = "0.16.20" 1287 - source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1289 - dependencies = [ 1290 - "cc", 1291 - "libc", 1292 - "once_cell", 1293 - "spin 0.5.2", 1294 - "untrusted 0.7.1", 1295 - "web-sys", 1296 - "winapi", 1297 - ] 1298 - 1299 - [[package]] 1300 - name = "rsa" 1301 - version = "0.6.1" 1302 - source = "registry+https://github.com/rust-lang/crates.io-index" 1303 - checksum = "4cf22754c49613d2b3b119f0e5d46e34a2c628a937e3024b8762de4e7d8c710b" 1304 - dependencies = [ 1305 - "byteorder", 1306 - "digest 0.10.6", 1307 - "num-bigint-dig", 1308 - "num-integer", 1309 - "num-iter", 1310 - "num-traits", 1311 - "pkcs1 0.3.3", 1312 - "pkcs8 0.8.0", 1313 - "rand_core 0.6.4", 1314 - "smallvec", 1315 - "subtle 2.4.1", 1316 - "zeroize", 1317 - ] 1318 - 1319 - [[package]] 1320 - name = "rsa" 1321 - version = "0.9.2" 1322 - source = "registry+https://github.com/rust-lang/crates.io-index" 1323 - checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" 1324 - dependencies = [ 1325 - "byteorder", 1326 - "const-oid 0.9.2", 1327 - "digest 0.10.6", 1328 - "num-bigint-dig", 1329 - "num-integer", 1330 - "num-iter", 1331 - "num-traits", 1332 - "pkcs1 0.7.5", 1333 - "pkcs8 0.10.2", 1334 - "rand_core 0.6.4", 1335 - "signature", 1336 - "spki 0.7.2", 1337 - "subtle 2.4.1", 1338 - "zeroize", 1339 - ] 1340 - 1341 - [[package]] 1342 - name = "rustc-hash" 1343 - version = "1.1.0" 1344 - source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1346 - 1347 - [[package]] 1348 - name = "rustc_version" 1349 - version = "0.4.0" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1352 - dependencies = [ 1353 - "semver", 1354 - ] 1355 - 1356 - [[package]] 1357 - name = "rusticata-macros" 1358 - version = "4.1.0" 1359 - source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 1361 - dependencies = [ 1362 - "nom", 1363 - ] 1364 - 1365 - [[package]] 1366 - name = "rustix" 1367 - version = "0.36.16" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "6da3636faa25820d8648e0e31c5d519bbb01f72fdf57131f0f5f7da5fed36eab" 1370 - dependencies = [ 1371 - "bitflags 1.3.2", 1372 - "errno", 1373 - "io-lifetimes", 1374 - "libc", 1375 - "linux-raw-sys 0.1.4", 1376 - "windows-sys 0.45.0", 1377 - ] 1378 - 1379 - [[package]] 1380 - name = "rustix" 1381 - version = "0.38.4" 1382 - source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" 1384 - dependencies = [ 1385 - "bitflags 2.4.0", 1386 - "errno", 1387 - "libc", 1388 - "linux-raw-sys 0.4.3", 1389 - "windows-sys 0.48.0", 1390 - ] 1391 - 1392 - [[package]] 1393 - name = "rustls" 1394 - version = "0.20.7" 1395 - source = "registry+https://github.com/rust-lang/crates.io-index" 1396 - checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c" 1397 - dependencies = [ 1398 - "log", 1399 - "ring", 1400 - "sct", 1401 - "webpki", 1402 - ] 1403 - 1404 - [[package]] 1405 - name = "ryu" 1406 - version = "1.0.12" 1407 - source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1409 - 1410 - [[package]] 1411 - name = "scopeguard" 1412 - version = "1.1.0" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1415 - 1416 - [[package]] 1417 - name = "sct" 1418 - version = "0.7.0" 1419 - source = "registry+https://github.com/rust-lang/crates.io-index" 1420 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1421 - dependencies = [ 1422 - "ring", 1423 - "untrusted 0.7.1", 1424 - ] 1425 - 1426 - [[package]] 1427 - name = "semver" 1428 - version = "1.0.16" 1429 - source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 1431 - 1432 - [[package]] 1433 - name = "serde" 1434 - version = "1.0.151" 1435 - source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" 1437 - dependencies = [ 1438 - "serde_derive", 1439 - ] 1440 - 1441 - [[package]] 1442 - name = "serde_derive" 1443 - version = "1.0.151" 1444 - source = "registry+https://github.com/rust-lang/crates.io-index" 1445 - checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8" 1446 - dependencies = [ 1447 - "proc-macro2", 1448 - "quote", 1449 - "syn 1.0.107", 1450 - ] 1451 - 1452 - [[package]] 1453 - name = "serde_json" 1454 - version = "1.0.91" 1455 - source = "registry+https://github.com/rust-lang/crates.io-index" 1456 - checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 1457 - dependencies = [ 1458 - "itoa", 1459 - "ryu", 1460 - "serde", 1461 - ] 1462 - 1463 - [[package]] 1464 - name = "shlex" 1465 - version = "1.3.0" 1466 - source = "registry+https://github.com/rust-lang/crates.io-index" 1467 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1468 - 1469 - [[package]] 1470 - name = "signature" 1471 - version = "2.0.0" 1472 - source = "registry+https://github.com/rust-lang/crates.io-index" 1473 - checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" 1474 - dependencies = [ 1475 - "digest 0.10.6", 1476 - "rand_core 0.6.4", 1477 - ] 1478 - 1479 - [[package]] 1480 - name = "simd-adler32" 1481 - version = "0.3.5" 1482 - source = "registry+https://github.com/rust-lang/crates.io-index" 1483 - checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 1484 - 1485 - [[package]] 1486 - name = "smallvec" 1487 - version = "1.10.0" 1488 - source = "registry+https://github.com/rust-lang/crates.io-index" 1489 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1490 - 1491 - [[package]] 1492 - name = "spin" 1493 - version = "0.5.2" 1494 - source = "registry+https://github.com/rust-lang/crates.io-index" 1495 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1496 - 1497 - [[package]] 1498 - name = "spin" 1499 - version = "0.9.4" 1500 - source = "registry+https://github.com/rust-lang/crates.io-index" 1501 - checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 1502 - dependencies = [ 1503 - "lock_api", 1504 - ] 1505 - 1506 - [[package]] 1507 - name = "spki" 1508 - version = "0.5.4" 1509 - source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27" 1511 - dependencies = [ 1512 - "base64ct", 1513 - "der 0.5.1", 1514 - ] 1515 - 1516 - [[package]] 1517 - name = "spki" 1518 - version = "0.7.2" 1519 - source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" 1521 - dependencies = [ 1522 - "base64ct", 1523 - "der 0.7.5", 1524 - ] 1525 - 1526 - [[package]] 1527 - name = "stable_deref_trait" 1528 - version = "1.2.0" 1529 - source = "registry+https://github.com/rust-lang/crates.io-index" 1530 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1531 - 1532 - [[package]] 1533 - name = "strsim" 1534 - version = "0.10.0" 1535 - source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1537 - 1538 - [[package]] 1539 - name = "subtle" 1540 - version = "1.0.0" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" 1543 - 1544 - [[package]] 1545 - name = "subtle" 1546 - version = "2.4.1" 1547 - source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1549 - 1550 - [[package]] 1551 - name = "syn" 1552 - version = "1.0.107" 1553 - source = "registry+https://github.com/rust-lang/crates.io-index" 1554 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 1555 - dependencies = [ 1556 - "proc-macro2", 1557 - "quote", 1558 - "unicode-ident", 1559 - ] 1560 - 1561 - [[package]] 1562 - name = "syn" 1563 - version = "2.0.23" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737" 1566 - dependencies = [ 1567 - "proc-macro2", 1568 - "quote", 1569 - "unicode-ident", 1570 - ] 1571 - 1572 - [[package]] 1573 - name = "synstructure" 1574 - version = "0.12.6" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 1577 - dependencies = [ 1578 - "proc-macro2", 1579 - "quote", 1580 - "syn 1.0.107", 1581 - "unicode-xid", 1582 - ] 1583 - 1584 - [[package]] 1585 - name = "tempfile" 1586 - version = "3.8.0" 1587 - source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 1589 - dependencies = [ 1590 - "cfg-if", 1591 - "fastrand", 1592 - "redox_syscall", 1593 - "rustix 0.38.4", 1594 - "windows-sys 0.48.0", 1595 - ] 1596 - 1597 - [[package]] 1598 - name = "termcolor" 1599 - version = "1.1.3" 1600 - source = "registry+https://github.com/rust-lang/crates.io-index" 1601 - checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1602 - dependencies = [ 1603 - "winapi-util", 1604 - ] 1605 - 1606 - [[package]] 1607 - name = "textwrap" 1608 - version = "0.16.0" 1609 - source = "registry+https://github.com/rust-lang/crates.io-index" 1610 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 1611 - 1612 - [[package]] 1613 - name = "thiserror" 1614 - version = "1.0.38" 1615 - source = "registry+https://github.com/rust-lang/crates.io-index" 1616 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1617 - dependencies = [ 1618 - "thiserror-impl", 1619 - ] 1620 - 1621 - [[package]] 1622 - name = "thiserror-impl" 1623 - version = "1.0.38" 1624 - source = "registry+https://github.com/rust-lang/crates.io-index" 1625 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1626 - dependencies = [ 1627 - "proc-macro2", 1628 - "quote", 1629 - "syn 1.0.107", 1630 - ] 1631 - 1632 - [[package]] 1633 - name = "time" 1634 - version = "0.3.17" 1635 - source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 1637 - dependencies = [ 1638 - "itoa", 1639 - "serde", 1640 - "time-core", 1641 - "time-macros", 1642 - ] 1643 - 1644 - [[package]] 1645 - name = "time-core" 1646 - version = "0.1.0" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 1649 - 1650 - [[package]] 1651 - name = "time-macros" 1652 - version = "0.2.6" 1653 - source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 1655 - dependencies = [ 1656 - "time-core", 1657 - ] 1658 - 1659 - [[package]] 1660 - name = "toml" 1661 - version = "0.5.10" 1662 - source = "registry+https://github.com/rust-lang/crates.io-index" 1663 - checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" 1664 - dependencies = [ 1665 - "serde", 1666 - ] 1667 - 1668 - [[package]] 1669 - name = "typenum" 1670 - version = "1.16.0" 1671 - source = "registry+https://github.com/rust-lang/crates.io-index" 1672 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 1673 - 1674 - [[package]] 1675 - name = "unicode-ident" 1676 - version = "1.0.6" 1677 - source = "registry+https://github.com/rust-lang/crates.io-index" 1678 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 1679 - 1680 - [[package]] 1681 - name = "unicode-xid" 1682 - version = "0.2.4" 1683 - source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 1685 - 1686 - [[package]] 1687 - name = "untrusted" 1688 - version = "0.7.1" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 1691 - 1692 - [[package]] 1693 - name = "untrusted" 1694 - version = "0.9.0" 1695 - source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1697 - 1698 - [[package]] 1699 - name = "utf16string" 1700 - version = "0.2.0" 1701 - source = "registry+https://github.com/rust-lang/crates.io-index" 1702 - checksum = "0b62a1e85e12d5d712bf47a85f426b73d303e2d00a90de5f3004df3596e9d216" 1703 - dependencies = [ 1704 - "byteorder", 1705 - ] 1706 - 1707 - [[package]] 1708 - name = "uuid" 1709 - version = "1.4.1" 1710 - source = "registry+https://github.com/rust-lang/crates.io-index" 1711 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 1712 - dependencies = [ 1713 - "getrandom 0.2.8", 1714 - ] 1715 - 1716 - [[package]] 1717 - name = "version_check" 1718 - version = "0.9.4" 1719 - source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1721 - 1722 - [[package]] 1723 - name = "wasi" 1724 - version = "0.9.0+wasi-snapshot-preview1" 1725 - source = "registry+https://github.com/rust-lang/crates.io-index" 1726 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 1727 - 1728 - [[package]] 1729 - name = "wasi" 1730 - version = "0.11.0+wasi-snapshot-preview1" 1731 - source = "registry+https://github.com/rust-lang/crates.io-index" 1732 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1733 - 1734 - [[package]] 1735 - name = "wasm-bindgen" 1736 - version = "0.2.83" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 1739 - dependencies = [ 1740 - "cfg-if", 1741 - "wasm-bindgen-macro", 1742 - ] 1743 - 1744 - [[package]] 1745 - name = "wasm-bindgen-backend" 1746 - version = "0.2.83" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 1749 - dependencies = [ 1750 - "bumpalo", 1751 - "log", 1752 - "once_cell", 1753 - "proc-macro2", 1754 - "quote", 1755 - "syn 1.0.107", 1756 - "wasm-bindgen-shared", 1757 - ] 1758 - 1759 - [[package]] 1760 - name = "wasm-bindgen-macro" 1761 - version = "0.2.83" 1762 - source = "registry+https://github.com/rust-lang/crates.io-index" 1763 - checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 1764 - dependencies = [ 1765 - "quote", 1766 - "wasm-bindgen-macro-support", 1767 - ] 1768 - 1769 - [[package]] 1770 - name = "wasm-bindgen-macro-support" 1771 - version = "0.2.83" 1772 - source = "registry+https://github.com/rust-lang/crates.io-index" 1773 - checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 1774 - dependencies = [ 1775 - "proc-macro2", 1776 - "quote", 1777 - "syn 1.0.107", 1778 - "wasm-bindgen-backend", 1779 - "wasm-bindgen-shared", 1780 - ] 1781 - 1782 - [[package]] 1783 - name = "wasm-bindgen-shared" 1784 - version = "0.2.83" 1785 - source = "registry+https://github.com/rust-lang/crates.io-index" 1786 - checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 1787 - 1788 - [[package]] 1789 - name = "web-sys" 1790 - version = "0.3.60" 1791 - source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 1793 - dependencies = [ 1794 - "js-sys", 1795 - "wasm-bindgen", 1796 - ] 1797 - 1798 - [[package]] 1799 - name = "webpki" 1800 - version = "0.22.2" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "07ecc0cd7cac091bf682ec5efa18b1cff79d617b84181f38b3951dbe135f607f" 1803 - dependencies = [ 1804 - "ring", 1805 - "untrusted 0.7.1", 1806 - ] 1807 - 1808 - [[package]] 1809 - name = "winapi" 1810 - version = "0.3.9" 1811 - source = "registry+https://github.com/rust-lang/crates.io-index" 1812 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1813 - dependencies = [ 1814 - "winapi-i686-pc-windows-gnu", 1815 - "winapi-x86_64-pc-windows-gnu", 1816 - ] 1817 - 1818 - [[package]] 1819 - name = "winapi-i686-pc-windows-gnu" 1820 - version = "0.4.0" 1821 - source = "registry+https://github.com/rust-lang/crates.io-index" 1822 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1823 - 1824 - [[package]] 1825 - name = "winapi-util" 1826 - version = "0.1.5" 1827 - source = "registry+https://github.com/rust-lang/crates.io-index" 1828 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1829 - dependencies = [ 1830 - "winapi", 1831 - ] 1832 - 1833 - [[package]] 1834 - name = "winapi-x86_64-pc-windows-gnu" 1835 - version = "0.4.0" 1836 - source = "registry+https://github.com/rust-lang/crates.io-index" 1837 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1838 - 1839 - [[package]] 1840 - name = "windows-sys" 1841 - version = "0.42.0" 1842 - source = "registry+https://github.com/rust-lang/crates.io-index" 1843 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1844 - dependencies = [ 1845 - "windows_aarch64_gnullvm 0.42.2", 1846 - "windows_aarch64_msvc 0.42.2", 1847 - "windows_i686_gnu 0.42.2", 1848 - "windows_i686_msvc 0.42.2", 1849 - "windows_x86_64_gnu 0.42.2", 1850 - "windows_x86_64_gnullvm 0.42.2", 1851 - "windows_x86_64_msvc 0.42.2", 1852 - ] 1853 - 1854 - [[package]] 1855 - name = "windows-sys" 1856 - version = "0.45.0" 1857 - source = "registry+https://github.com/rust-lang/crates.io-index" 1858 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1859 - dependencies = [ 1860 - "windows-targets 0.42.2", 1861 - ] 1862 - 1863 - [[package]] 1864 - name = "windows-sys" 1865 - version = "0.48.0" 1866 - source = "registry+https://github.com/rust-lang/crates.io-index" 1867 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1868 - dependencies = [ 1869 - "windows-targets 0.48.0", 1870 - ] 1871 - 1872 - [[package]] 1873 - name = "windows-targets" 1874 - version = "0.42.2" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1877 - dependencies = [ 1878 - "windows_aarch64_gnullvm 0.42.2", 1879 - "windows_aarch64_msvc 0.42.2", 1880 - "windows_i686_gnu 0.42.2", 1881 - "windows_i686_msvc 0.42.2", 1882 - "windows_x86_64_gnu 0.42.2", 1883 - "windows_x86_64_gnullvm 0.42.2", 1884 - "windows_x86_64_msvc 0.42.2", 1885 - ] 1886 - 1887 - [[package]] 1888 - name = "windows-targets" 1889 - version = "0.48.0" 1890 - source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1892 - dependencies = [ 1893 - "windows_aarch64_gnullvm 0.48.0", 1894 - "windows_aarch64_msvc 0.48.0", 1895 - "windows_i686_gnu 0.48.0", 1896 - "windows_i686_msvc 0.48.0", 1897 - "windows_x86_64_gnu 0.48.0", 1898 - "windows_x86_64_gnullvm 0.48.0", 1899 - "windows_x86_64_msvc 0.48.0", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "windows_aarch64_gnullvm" 1904 - version = "0.42.2" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1907 - 1908 - [[package]] 1909 - name = "windows_aarch64_gnullvm" 1910 - version = "0.48.0" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1913 - 1914 - [[package]] 1915 - name = "windows_aarch64_msvc" 1916 - version = "0.42.2" 1917 - source = "registry+https://github.com/rust-lang/crates.io-index" 1918 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1919 - 1920 - [[package]] 1921 - name = "windows_aarch64_msvc" 1922 - version = "0.48.0" 1923 - source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1925 - 1926 - [[package]] 1927 - name = "windows_i686_gnu" 1928 - version = "0.42.2" 1929 - source = "registry+https://github.com/rust-lang/crates.io-index" 1930 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1931 - 1932 - [[package]] 1933 - name = "windows_i686_gnu" 1934 - version = "0.48.0" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1937 - 1938 - [[package]] 1939 - name = "windows_i686_msvc" 1940 - version = "0.42.2" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1943 - 1944 - [[package]] 1945 - name = "windows_i686_msvc" 1946 - version = "0.48.0" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1949 - 1950 - [[package]] 1951 - name = "windows_x86_64_gnu" 1952 - version = "0.42.2" 1953 - source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1955 - 1956 - [[package]] 1957 - name = "windows_x86_64_gnu" 1958 - version = "0.48.0" 1959 - source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1961 - 1962 - [[package]] 1963 - name = "windows_x86_64_gnullvm" 1964 - version = "0.42.2" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1967 - 1968 - [[package]] 1969 - name = "windows_x86_64_gnullvm" 1970 - version = "0.48.0" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1973 - 1974 - [[package]] 1975 - name = "windows_x86_64_msvc" 1976 - version = "0.42.2" 1977 - source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1979 - 1980 - [[package]] 1981 - name = "windows_x86_64_msvc" 1982 - version = "0.48.0" 1983 - source = "registry+https://github.com/rust-lang/crates.io-index" 1984 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1985 - 1986 - [[package]] 1987 - name = "x509-parser" 1988 - version = "0.14.0" 1989 - source = "registry+https://github.com/rust-lang/crates.io-index" 1990 - checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" 1991 - dependencies = [ 1992 - "asn1-rs", 1993 - "base64", 1994 - "data-encoding", 1995 - "der-parser", 1996 - "lazy_static", 1997 - "nom", 1998 - "oid-registry", 1999 - "rusticata-macros", 2000 - "thiserror", 2001 - "time", 2002 - ] 2003 - 2004 - [[package]] 2005 - name = "yasna" 2006 - version = "0.3.2" 2007 - source = "registry+https://github.com/rust-lang/crates.io-index" 2008 - checksum = "0de7bff972b4f2a06c85f6d8454b09df153af7e3a4ec2aac81db1b105b684ddb" 2009 - 2010 - [[package]] 2011 - name = "zeroize" 2012 - version = "1.5.7" 2013 - source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
-13
pkgs/servers/teleport/14/default.nix
··· 1 - args: 2 - import ../generic.nix (args // { 3 - version = "14.3.20"; 4 - hash = "sha256-oGN3t0xt7z3+U7wlhnJu4B8cSSMwONdiHZkv8UY7lkA="; 5 - vendorHash = "sha256-RMTHWrbwKCGlxi9SP+8ccGk8YYqwhC8yWLPDf2Ha5bE="; 6 - yarnHash = "sha256-c5ItZpq9Wp+kE9gw2WQdm5gTvBKA9I+nHAX/pT4Hqhs="; 7 - cargoLock = { 8 - lockFile = ./Cargo.lock; 9 - outputHashes = { 10 - "rdp-rs-0.1.0" = "sha256-U52FVuqo2DH/7f0cQ1qcb1GbFZ97yxExVFMX5cs0zw4="; 11 - }; 12 - }; 13 - })
-1
pkgs/servers/teleport/default.nix
··· 1 1 { callPackages, lib, ... }@args: 2 2 let 3 3 f = args: rec { 4 - teleport_14 = import ./14 args; 5 4 teleport_15 = import ./15 args; 6 5 teleport_16 = import ./16 args; 7 6 teleport = teleport_16;
+3
pkgs/tools/admin/mycli/default.nix
··· 38 38 export LC_ALL="en_US.UTF-8" 39 39 ''; 40 40 41 + # fails at checkphase due to the below test paths 42 + # disabling it specifically does not work, so we disable checking altogether 43 + doCheck = false; 41 44 disabledTestPaths = [ 42 45 "mycli/packages/paramiko_stub/__init__.py" 43 46 ];
+6 -2
pkgs/tools/misc/ncdu/default.nix
··· 2 2 , stdenv 3 3 , fetchurl 4 4 , ncurses 5 + , pkg-config 5 6 , zig 7 + , zstd 6 8 , installShellFiles 7 9 , testers 8 10 , pie ? stdenv.hostPlatform.isDarwin ··· 10 12 11 13 stdenv.mkDerivation (finalAttrs: { 12 14 pname = "ncdu"; 13 - version = "2.5"; 15 + version = "2.6"; 14 16 15 17 src = fetchurl { 16 18 url = "https://dev.yorhel.nl/download/ncdu-${finalAttrs.version}.tar.gz"; 17 - hash = "sha256-f0neJQJKurGvH/IrO4VCwNFY4Bj+DpYHT9lLDh5tMaU="; 19 + hash = "sha256-P0cevTi1bmDauAwn468dgmZmlX8C2ehBmxSdqvet5QU="; 18 20 }; 19 21 20 22 nativeBuildInputs = [ 21 23 zig.hook 22 24 installShellFiles 25 + pkg-config 23 26 ]; 24 27 25 28 buildInputs = [ 26 29 ncurses 30 + zstd 27 31 ]; 28 32 29 33 zigBuildFlags = lib.optional pie "-Dpie=true";
+3 -20
pkgs/tools/package-management/lix/default.nix
··· 63 63 64 64 lix_2_91 = ( 65 65 common { 66 - version = "2.91.0"; 67 - hash = "sha256-Rosl9iA9MybF5Bud4BTAQ9adbY81aGmPfV8dDBGl34s="; 68 - docCargoHash = "sha256-KOn1fXF7k7c/0e5ZCNZwt3YZmjL1oi5A2mhwxQWKaUo="; 69 - 70 - patches = [ 71 - # Fix meson to not use target_machine, fixing cross. This commit is in release-2.91: remove when updating to 2.91.1 (if any). 72 - # https://gerrit.lix.systems/c/lix/+/1781 73 - # https://git.lix.systems/lix-project/lix/commit/ca2b514e20de12b75088b06b8e0e316482516401 74 - (fetchpatch { 75 - url = "https://git.lix.systems/lix-project/lix/commit/ca2b514e20de12b75088b06b8e0e316482516401.patch"; 76 - hash = "sha256-TZauU4RIsn07xv9vZ33amrDvCLMbrtcHs1ozOTLgu98="; 77 - }) 78 - # Fix musl builds. This commit is in release-2.91: remove when updating to 2.91.1 (if any). 79 - # https://gerrit.lix.systems/c/lix/+/1823 80 - # https://git.lix.systems/lix-project/lix/commit/ed51a172c69996fc6f3b7dfaa86015bff50c8ba8 81 - (fetchpatch { 82 - url = "https://git.lix.systems/lix-project/lix/commit/ed51a172c69996fc6f3b7dfaa86015bff50c8ba8.patch"; 83 - hash = "sha256-X59N+tOQ2GN17p9sXvo9OiuEexzB23ieuOvtq2sre5c="; 84 - }) 85 - ]; 66 + version = "2.91.1"; 67 + hash = "sha256-hiGtfzxFkDc9TSYsb96Whg0vnqBVV7CUxyscZNhed0U="; 68 + docCargoHash = "sha256-F6Ld0HfRvW9r5zn8eMTP6djnV/jvwjYQet4Ghp2T90k="; 86 69 } 87 70 ); 88 71
+2
pkgs/top-level/aliases.nix
··· 813 813 kibana = kibana7; 814 814 kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2023-09-10 815 815 kio-admin = libsForQt5.kdeGear.kio-admin; # Added 2023-03-18 816 + kiwitalk = throw "KiwiTalk has been removed because the upstream has been deprecated at the request of Kakao and it's now obsolete."; # Added 2024-10-10 816 817 kodiGBM = kodi-gbm; 817 818 kodiPlain = kodi; 818 819 kodiPlainWayland = kodi-wayland; ··· 1598 1599 teleport_11 = throw "teleport 11 has been removed as it is EOL. Please upgrade to Teleport 12 or later"; # Added 2023-11-27 1599 1600 teleport_12 = throw "teleport 12 has been removed as it is EOL. Please upgrade to Teleport 13 or later"; # Added 2024-02-04 1600 1601 teleport_13 = throw "teleport 13 has been removed as it is EOL. Please upgrade to Teleport 14 or later"; # Added 2024-05-26 1602 + teleport_14 = throw "teleport 14 has been removed as it is EOL. Please upgrade to Teleport 15 or later"; # Added 2024-10-18 1601 1603 teleprompter = throw "teleprompter has been removed. reason: upstream dead and does not work with recent electron versions"; # Added 2024-03-14 1602 1604 temurin-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01 1603 1605 temurin-jre-bin-20 = throw "Temurin 20 has been removed as it has reached its end of life"; # Added 2024-08-01
+8 -24
pkgs/top-level/all-packages.nix
··· 1759 1759 1760 1760 grizzly = callPackage ../tools/misc/grizzly { }; 1761 1761 1762 - guestfs-tools = callPackage ../tools/virtualization/guestfs-tools { 1763 - ocamlPackages = ocaml-ng.ocamlPackages_4_14; 1764 - }; 1762 + guestfs-tools = callPackage ../tools/virtualization/guestfs-tools { }; 1765 1763 1766 1764 fabs = callPackage ../tools/backup/fabs { }; 1767 1765 ··· 12733 12731 12734 12732 inherit (callPackages ../servers/teleport { 12735 12733 inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit; 12736 - }) teleport_14 teleport_15 teleport_16 teleport; 12734 + }) teleport_15 teleport_16 teleport; 12737 12735 12738 12736 telepresence = callPackage ../tools/networking/telepresence { 12739 12737 pythonPackages = python3Packages; ··· 21010 21008 21011 21009 libgudev = callPackage ../development/libraries/libgudev { }; 21012 21010 21013 - libguestfs-appliance = callPackage ../development/libraries/libguestfs/appliance.nix { }; 21014 - libguestfs = callPackage ../development/libraries/libguestfs { 21015 - autoreconfHook = buildPackages.autoreconfHook264; 21016 - ocamlPackages = ocaml-ng.ocamlPackages_4_14; 21017 - }; 21018 - libguestfs-with-appliance = libguestfs.override { 21019 - appliance = libguestfs-appliance; 21020 - autoreconfHook = buildPackages.autoreconfHook264; 21021 - }; 21022 - 21023 - 21024 21011 libhangul = callPackage ../development/libraries/libhangul { }; 21025 21012 21026 21013 libharu = callPackage ../development/libraries/libharu { }; ··· 22420 22407 libressl_3_6 22421 22408 libressl_3_7 22422 22409 libressl_3_8 22423 - libressl_3_9; 22410 + libressl_3_9 22411 + libressl_4_0; 22424 22412 22425 - libressl = libressl_3_9; 22413 + libressl = libressl_4_0; 22426 22414 22427 22415 boringssl = callPackage ../development/libraries/boringssl { }; 22428 22416 ··· 29029 29017 29030 29018 icesl = callPackage ../applications/misc/icesl { }; 29031 29019 29032 - input-leap = libsForQt5.callPackage ../applications/misc/input-leap { 29020 + input-leap = qt6Packages.callPackage ../applications/misc/input-leap { 29033 29021 avahi = avahi.override { withLibdnssdCompat = true; }; 29034 29022 }; 29035 29023 ··· 30414 30402 30415 30403 kitsas = libsForQt5.callPackage ../applications/office/kitsas { }; 30416 30404 30417 - kiwitalk = callPackage ../by-name/ki/kiwitalk/package.nix { pnpm = pnpm_8; }; 30418 - 30419 30405 kiwix = libsForQt5.callPackage ../applications/misc/kiwix { }; 30420 30406 30421 30407 kiwix-tools = callPackage ../applications/misc/kiwix/tools.nix { }; ··· 31527 31513 31528 31514 netcoredbg = callPackage ../development/tools/misc/netcoredbg { }; 31529 31515 31530 - ncdu = callPackage ../tools/misc/ncdu { 31531 - zig = buildPackages.zig_0_12; 31532 - }; 31516 + ncdu = callPackage ../tools/misc/ncdu { }; 31533 31517 31534 31518 ncdu_1 = callPackage ../tools/misc/ncdu/1.nix { }; 31535 31519 ··· 34245 34229 colobot = callPackage ../games/colobot { }; 34246 34230 34247 34231 corsix-th = callPackage ../games/corsix-th { 34248 - inherit (darwin.apple_sdk.frameworks) Cocoa CoreVideo; 34232 + inherit (darwin.apple_sdk.frameworks) Cocoa CoreVideo CoreMedia VideoToolbox; 34249 34233 }; 34250 34234 34251 34235 enigma = callPackage ../games/enigma { };