Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 0de22f66 b84d283f

+7640 -185
+2 -1
nixos/tests/lemmy.nix
··· 51 52 with subtest("the backend starts and responds"): 53 server.wait_for_open_port(${toString backendPort}) 54 - server.succeed("curl --fail localhost:${toString backendPort}/api/v3/site") 55 56 with subtest("the UI starts and responds"): 57 server.wait_for_unit("lemmy-ui.service")
··· 51 52 with subtest("the backend starts and responds"): 53 server.wait_for_open_port(${toString backendPort}) 54 + # wait until succeeds, it just needs few seconds for migrations, but lets give it 10s max 55 + server.wait_until_succeeds("curl --fail localhost:${toString backendPort}/api/v3/site", 10) 56 57 with subtest("the UI starts and responds"): 58 server.wait_for_unit("lemmy-ui.service")
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 30 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 31 32 sha256 = { 33 - x86_64-linux = "0nffz9xqm1iny7sqi1pkmnfcski15qsycw9gxir18j51kfzz50wf"; 34 - x86_64-darwin = "082m2wwd67ayjadlywqimnmdm8imw6lz0rd8rnwjd2sjksxnrsk8"; 35 - aarch64-linux = "0wlm8ajm1xw8lpmnbkzkgvaakfa9gacwi7m2fdyc4822rq7fn09b"; 36 - aarch64-darwin = "1rgcljj97f551yr0q5f0vxdkvbhxrbyqrw85gb6qfxpg5d0l7y4f"; 37 - armv7l-linux = "1wpslrysi8a6rnx99lq16zx277lnmqjp02q6gxmkpcvrvw27m6yj"; 38 }.${system} or throwSystem; 39 in 40 callPackage ./generic.nix rec { 41 # Please backport all compatible updates to the stable release. 42 # This is important for the extension ecosystem. 43 - version = "1.86.1"; 44 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 45 46 # This is used for VS Code - Remote SSH test 47 - rev = "31c37ee8f63491495ac49e43b8544550fbae4533"; 48 49 executableName = "code" + lib.optionalString isInsiders "-insiders"; 50 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 68 src = fetchurl { 69 name = "vscode-server-${rev}.tar.gz"; 70 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 71 - sha256 = "1hq6i51d1dhpippc8gmhygw3kj9cx021y54ga58l5b80wvg2cf1y"; 72 }; 73 }; 74
··· 30 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 31 32 sha256 = { 33 + x86_64-linux = "17fzqq44p7ix4ihkg8nq582njjy96a8zz8vz9hl62hdxxg3llgfg"; 34 + x86_64-darwin = "12vbkzv2l02wifcjd7amq583vlv0iqixpa2kf5swhl0arww1viqa"; 35 + aarch64-linux = "1myv8zy2cycsmnp8xhjbm2lpcad3hj9zh79ywcinc50yncwj6wdl"; 36 + aarch64-darwin = "0vvbwcbxf0fmcfyk2y231qd8lxaj869ap865zps6wcdjqr5wnbdq"; 37 + armv7l-linux = "04gy6ls3gnbdcg4998widy9b9h04rx1gzp6iml6pi73li1cmfawz"; 38 }.${system} or throwSystem; 39 in 40 callPackage ./generic.nix rec { 41 # Please backport all compatible updates to the stable release. 42 # This is important for the extension ecosystem. 43 + version = "1.86.2"; 44 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 45 46 # This is used for VS Code - Remote SSH test 47 + rev = "903b1e9d8990623e3d7da1df3d33db3e42d80eda"; 48 49 executableName = "code" + lib.optionalString isInsiders "-insiders"; 50 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 68 src = fetchurl { 69 name = "vscode-server-${rev}.tar.gz"; 70 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 71 + sha256 = "06jv2kzxy7p7y7294c4sq6fk6slwk4gfw6jqh79avnq0riy669gv"; 72 }; 73 }; 74
+3 -3
pkgs/applications/misc/dasel/default.nix
··· 6 7 buildGoModule rec { 8 pname = "dasel"; 9 - version = "2.5.0"; 10 11 src = fetchFromGitHub { 12 owner = "TomWright"; 13 repo = "dasel"; 14 rev = "v${version}"; 15 - hash = "sha256-frd4jNn5uruz9oX40ly/AR5I/uKRIfQ8IjOlIvlsOlY="; 16 }; 17 18 - vendorHash = "sha256-B3d+pbk0smBXqcJnac5he0TZPLiT1cLtz02OAGfqhC0="; 19 20 ldflags = [ 21 "-s" "-w" "-X github.com/tomwright/dasel/v2/internal.Version=${version}"
··· 6 7 buildGoModule rec { 8 pname = "dasel"; 9 + version = "2.6.0"; 10 11 src = fetchFromGitHub { 12 owner = "TomWright"; 13 repo = "dasel"; 14 rev = "v${version}"; 15 + hash = "sha256-4SINZXjTILJDmjv6ubuAhBzBmrXY0gJ0huNM3Y0O7Go="; 16 }; 17 18 + vendorHash = "sha256-G9IdTMF5Lnwq38rdJtuvUjD4RBaSmCYs3g+ETz29Mec="; 19 20 ldflags = [ 21 "-s" "-w" "-X github.com/tomwright/dasel/v2/internal.Version=${version}"
+7 -7
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 { 2 - "packageVersion": "122.0-2", 3 "source": { 4 - "rev": "122.0-2", 5 - "sha256": "139vqa0czhbsg8naz75pcf5d8dql30slwrn4l8hkr4r1s1mslyq1" 6 }, 7 "settings": { 8 - "rev": "fe568fa26d52fa917c89d735468a17b990a23e2c", 9 - "sha256": "1gska84ib386a1021r1n54mb1a47bqn459v5n26g4wqx3xrma48n" 10 }, 11 "firefox": { 12 - "version": "122.0", 13 - "sha512": "619b735c16970207f3f8fb31dd2350a5e665a802c30501c89aee4817b8b0f7f466da93c66ab238e94967587e538e6858934b18164ff312dbdbfbc3b2bf8bd824" 14 } 15 }
··· 1 { 2 + "packageVersion": "122.0.1-2", 3 "source": { 4 + "rev": "122.0.1-2", 5 + "sha256": "0bp9x5hvjhdvrb5niyx4si7in116l37y5km7a207z7zl1z5d3q16" 6 }, 7 "settings": { 8 + "rev": "c242d6d6c77948451af5bd52125a8a81259a7a77", 9 + "sha256": "1s56a4a8wz92gh1cxk8qny3qzvmanl6q34yp049f18c4zrk23lax" 10 }, 11 "firefox": { 12 + "version": "122.0.1", 13 + "sha512": "1d4fe1ed351edd748ede2ef6448798a32de9ed7a075a54a7ed5f7baa7b0c4c7f932c2e29f443c9066829e39f22a1dc94be5d00cc994193e949b72aa4a1c8ba41" 14 } 15 }
+10 -4
pkgs/applications/networking/cluster/kubectl-klock/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "kubectl-klock"; 5 - version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "applejag"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-fR97rTMFwtqVH9wqKy1+EzKKg753c18v8VDCQ2Y69+s="; 12 }; 13 14 - vendorHash = "sha256-AkYKKM4PR/msG44MwdSq6XAf6EvdtJHoXyw7Xj7MXso="; 15 16 meta = with lib; { 17 description = "A kubectl plugin to render watch output in a more readable fashion";
··· 1 + { lib, buildGoModule, fetchFromGitHub, makeWrapper }: 2 3 buildGoModule rec { 4 pname = "kubectl-klock"; 5 + version = "0.5.1"; 6 + 7 + nativeBuildInputs = [ makeWrapper ]; 8 9 src = fetchFromGitHub { 10 owner = "applejag"; 11 repo = pname; 12 rev = "v${version}"; 13 + hash = "sha256-q7Wq1mTjOB7tT66+LWIwwqltQcQSHD/VHLO7nCTZTQ0="; 14 }; 15 16 + vendorHash = "sha256-3CJ/tmFFkmq6wHxbqk8u+GxxbSrUpB/JD5s/S7hegB8="; 17 + 18 + postInstall = '' 19 + makeWrapper $out/bin/kubectl-klock $out/bin/kubectl_complete-klock --add-flags __complete 20 + ''; 21 22 meta = with lib; { 23 description = "A kubectl plugin to render watch output in a more readable fashion";
+2 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 20 21 buildGoModule rec { 22 pname = "kubernetes"; 23 - version = "1.28.4"; 24 25 src = fetchFromGitHub { 26 owner = "kubernetes"; 27 repo = "kubernetes"; 28 rev = "v${version}"; 29 - hash = "sha256-aaGcAIyy0hFJGFfOq5FaF0qAlygXcs2WcwgvMe5dkbo="; 30 }; 31 32 vendorHash = null;
··· 20 21 buildGoModule rec { 22 pname = "kubernetes"; 23 + version = "1.29.2"; 24 25 src = fetchFromGitHub { 26 owner = "kubernetes"; 27 repo = "kubernetes"; 28 rev = "v${version}"; 29 + hash = "sha256-DFQaDlp8CqN0jKTVO5N9ZQYyM2gm/VnQfO4/bfvYrTE="; 30 }; 31 32 vendorHash = null;
+3 -3
pkgs/applications/networking/cluster/werf/default.nix
··· 10 11 buildGoModule rec { 12 pname = "werf"; 13 - version = "1.2.289"; 14 15 src = fetchFromGitHub { 16 owner = "werf"; 17 repo = "werf"; 18 rev = "v${version}"; 19 - hash = "sha256-0BinJVTjD8iDlhK50qVODQIKj1KDwhgOMg3HHstYHeg="; 20 }; 21 22 - vendorHash = "sha256-YHLa0hTXCswkvVxyNp5ezqyEu18Jfnl9n7JMdqMeBSA="; 23 24 proxyVendor = true; 25
··· 10 11 buildGoModule rec { 12 pname = "werf"; 13 + version = "1.2.290"; 14 15 src = fetchFromGitHub { 16 owner = "werf"; 17 repo = "werf"; 18 rev = "v${version}"; 19 + hash = "sha256-pXmFpXpab6YKgujMGqP6xt5iRt/7CrG3wbpBeQ9Ty6c="; 20 }; 21 22 + vendorHash = "sha256-yz0H/016NR+CwVbVfXPAIayacPprcf+MKptbG5fHwVY="; 23 24 proxyVendor = true; 25
+2 -2
pkgs/applications/science/biology/last/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "last"; 12 - version = "1540"; 13 14 src = fetchFromGitLab { 15 owner = "mcfrith"; 16 repo = "last"; 17 rev = "refs/tags/${version}"; 18 - hash = "sha256-oGGpPWWQ5EVK9n5BLQwt1Wch2Xn24B+NrKg6+VrsUMY="; 19 }; 20 21 nativeBuildInputs = [
··· 9 10 stdenv.mkDerivation rec { 11 pname = "last"; 12 + version = "1541"; 13 14 src = fetchFromGitLab { 15 owner = "mcfrith"; 16 repo = "last"; 17 rev = "refs/tags/${version}"; 18 + hash = "sha256-gEesPeGY2RozoViZpBWNTXFJriKVb/r0Efw9XEXwXmM="; 19 }; 20 21 nativeBuildInputs = [
+2 -2
pkgs/applications/version-management/gh/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 - version = "2.43.1"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - hash = "sha256-FPKYp3tdYXncHjfo6E6tRnEG9AQ0RU6FaezwMlTOCtA="; 12 }; 13 14 vendorHash = "sha256-r1zcwBz/mJOv1RU4Ilgg73yH37xu7a/BmqgAkiODq0I=";
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 + version = "2.44.0"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + hash = "sha256-5UESwrEDQpwQSGCKE6WjAGAQvJXACxIt2lw3fZvhAb4="; 12 }; 13 14 vendorHash = "sha256-r1zcwBz/mJOv1RU4Ilgg73yH37xu7a/BmqgAkiODq0I=";
-45
pkgs/applications/video/crunchy-cli/default.nix
··· 1 - { lib 2 - , stdenv 3 - , clangStdenv 4 - , darwin 5 - , xcbuild 6 - , openssl 7 - , pkg-config 8 - , rustPlatform 9 - , fetchFromGitHub 10 - }: 11 - 12 - rustPlatform.buildRustPackage.override { stdenv = clangStdenv; } rec { 13 - pname = "crunchy-cli"; 14 - version = "3.0.0-dev.10"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "crunchy-labs"; 18 - repo = pname; 19 - rev = "v${version}"; 20 - hash = "sha256-uc19SmVfa5BZYDidlEgV6GNvcm9Dj0mSjdwHP5S+O4A="; 21 - }; 22 - 23 - cargoHash = "sha256-H3D55qMUAF6t45mRbGZl+DORAl1H1a7AOe+lQP0WUUQ="; 24 - 25 - nativeBuildInputs = [ 26 - pkg-config 27 - ] ++ lib.optionals stdenv.isDarwin [ 28 - xcbuild 29 - ]; 30 - 31 - buildInputs = [ 32 - openssl 33 - ] ++ lib.optionals stdenv.isDarwin [ 34 - darwin.apple_sdk.frameworks.Security 35 - ]; 36 - 37 - meta = with lib; { 38 - description = "A pure Rust written Crunchyroll cli client and downloader"; 39 - homepage = "https://github.com/crunchy-labs/crunchy-cli"; 40 - license = with licenses; [ gpl3 ]; 41 - maintainers = with maintainers; [ stepbrobd ]; 42 - mainProgram = "crunchy-cli"; 43 - }; 44 - } 45 -
···
+2354
pkgs/by-name/cr/crunchy-cli/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 = "aho-corasick" 33 + version = "1.1.2" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 36 + dependencies = [ 37 + "memchr", 38 + ] 39 + 40 + [[package]] 41 + name = "android-tzdata" 42 + version = "0.1.1" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 45 + 46 + [[package]] 47 + name = "android_system_properties" 48 + version = "0.1.5" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 51 + dependencies = [ 52 + "libc", 53 + ] 54 + 55 + [[package]] 56 + name = "anstream" 57 + version = "0.6.7" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" 60 + dependencies = [ 61 + "anstyle", 62 + "anstyle-parse", 63 + "anstyle-query", 64 + "anstyle-wincon", 65 + "colorchoice", 66 + "utf8parse", 67 + ] 68 + 69 + [[package]] 70 + name = "anstyle" 71 + version = "1.0.4" 72 + source = "registry+https://github.com/rust-lang/crates.io-index" 73 + checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 74 + 75 + [[package]] 76 + name = "anstyle-parse" 77 + version = "0.2.3" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 80 + dependencies = [ 81 + "utf8parse", 82 + ] 83 + 84 + [[package]] 85 + name = "anstyle-query" 86 + version = "1.0.2" 87 + source = "registry+https://github.com/rust-lang/crates.io-index" 88 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 89 + dependencies = [ 90 + "windows-sys 0.52.0", 91 + ] 92 + 93 + [[package]] 94 + name = "anstyle-wincon" 95 + version = "3.0.2" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 98 + dependencies = [ 99 + "anstyle", 100 + "windows-sys 0.52.0", 101 + ] 102 + 103 + [[package]] 104 + name = "anyhow" 105 + version = "1.0.79" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 108 + 109 + [[package]] 110 + name = "async-speed-limit" 111 + version = "0.4.1" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "97d287ccbfb44ae20287d2f9c72ad9e560d50810883870697db5b320c541f183" 114 + dependencies = [ 115 + "futures-core", 116 + "futures-io", 117 + "futures-timer", 118 + "pin-project-lite", 119 + ] 120 + 121 + [[package]] 122 + name = "async-trait" 123 + version = "0.1.77" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 126 + dependencies = [ 127 + "proc-macro2", 128 + "quote", 129 + "syn", 130 + ] 131 + 132 + [[package]] 133 + name = "autocfg" 134 + version = "1.1.0" 135 + source = "registry+https://github.com/rust-lang/crates.io-index" 136 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 137 + 138 + [[package]] 139 + name = "backtrace" 140 + version = "0.3.69" 141 + source = "registry+https://github.com/rust-lang/crates.io-index" 142 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 143 + dependencies = [ 144 + "addr2line", 145 + "cc", 146 + "cfg-if", 147 + "libc", 148 + "miniz_oxide", 149 + "object", 150 + "rustc-demangle", 151 + ] 152 + 153 + [[package]] 154 + name = "base64" 155 + version = "0.21.7" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 158 + 159 + [[package]] 160 + name = "base64-serde" 161 + version = "0.7.0" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" 164 + dependencies = [ 165 + "base64", 166 + "serde", 167 + ] 168 + 169 + [[package]] 170 + name = "bitflags" 171 + version = "1.3.2" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 174 + 175 + [[package]] 176 + name = "bitflags" 177 + version = "2.4.1" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 180 + 181 + [[package]] 182 + name = "block-padding" 183 + version = "0.3.3" 184 + source = "registry+https://github.com/rust-lang/crates.io-index" 185 + checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 186 + dependencies = [ 187 + "generic-array", 188 + ] 189 + 190 + [[package]] 191 + name = "bumpalo" 192 + version = "3.14.0" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 195 + 196 + [[package]] 197 + name = "bytes" 198 + version = "1.5.0" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 201 + 202 + [[package]] 203 + name = "cbc" 204 + version = "0.1.2" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 207 + dependencies = [ 208 + "cipher", 209 + ] 210 + 211 + [[package]] 212 + name = "cc" 213 + version = "1.0.83" 214 + source = "registry+https://github.com/rust-lang/crates.io-index" 215 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 216 + dependencies = [ 217 + "libc", 218 + ] 219 + 220 + [[package]] 221 + name = "cfg-if" 222 + version = "1.0.0" 223 + source = "registry+https://github.com/rust-lang/crates.io-index" 224 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 225 + 226 + [[package]] 227 + name = "chrono" 228 + version = "0.4.31" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 231 + dependencies = [ 232 + "android-tzdata", 233 + "iana-time-zone", 234 + "js-sys", 235 + "num-traits", 236 + "serde", 237 + "wasm-bindgen", 238 + "windows-targets 0.48.5", 239 + ] 240 + 241 + [[package]] 242 + name = "cipher" 243 + version = "0.4.4" 244 + source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 246 + dependencies = [ 247 + "crypto-common", 248 + "inout", 249 + ] 250 + 251 + [[package]] 252 + name = "clap" 253 + version = "4.4.16" 254 + source = "registry+https://github.com/rust-lang/crates.io-index" 255 + checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445" 256 + dependencies = [ 257 + "clap_builder", 258 + "clap_derive", 259 + ] 260 + 261 + [[package]] 262 + name = "clap_builder" 263 + version = "4.4.16" 264 + source = "registry+https://github.com/rust-lang/crates.io-index" 265 + checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb" 266 + dependencies = [ 267 + "anstream", 268 + "anstyle", 269 + "clap_lex", 270 + "strsim", 271 + ] 272 + 273 + [[package]] 274 + name = "clap_complete" 275 + version = "4.4.6" 276 + source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd" 278 + dependencies = [ 279 + "clap", 280 + ] 281 + 282 + [[package]] 283 + name = "clap_derive" 284 + version = "4.4.7" 285 + source = "registry+https://github.com/rust-lang/crates.io-index" 286 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 287 + dependencies = [ 288 + "heck", 289 + "proc-macro2", 290 + "quote", 291 + "syn", 292 + ] 293 + 294 + [[package]] 295 + name = "clap_lex" 296 + version = "0.6.0" 297 + source = "registry+https://github.com/rust-lang/crates.io-index" 298 + checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 299 + 300 + [[package]] 301 + name = "clap_mangen" 302 + version = "0.2.17" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "4a7c2b01e5e779c19f46a94bbd398f33ae63b0f78c07108351fb4536845bb7fd" 305 + dependencies = [ 306 + "clap", 307 + "roff", 308 + ] 309 + 310 + [[package]] 311 + name = "colorchoice" 312 + version = "1.0.0" 313 + source = "registry+https://github.com/rust-lang/crates.io-index" 314 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 315 + 316 + [[package]] 317 + name = "console" 318 + version = "0.15.8" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 321 + dependencies = [ 322 + "encode_unicode", 323 + "lazy_static", 324 + "libc", 325 + "unicode-width", 326 + "windows-sys 0.52.0", 327 + ] 328 + 329 + [[package]] 330 + name = "cookie" 331 + version = "0.16.2" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 334 + dependencies = [ 335 + "percent-encoding", 336 + "time", 337 + "version_check", 338 + ] 339 + 340 + [[package]] 341 + name = "cookie_store" 342 + version = "0.16.2" 343 + source = "registry+https://github.com/rust-lang/crates.io-index" 344 + checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa" 345 + dependencies = [ 346 + "cookie", 347 + "idna 0.2.3", 348 + "log", 349 + "publicsuffix", 350 + "serde", 351 + "serde_derive", 352 + "serde_json", 353 + "time", 354 + "url", 355 + ] 356 + 357 + [[package]] 358 + name = "core-foundation" 359 + version = "0.9.4" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 362 + dependencies = [ 363 + "core-foundation-sys", 364 + "libc", 365 + ] 366 + 367 + [[package]] 368 + name = "core-foundation-sys" 369 + version = "0.8.6" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 372 + 373 + [[package]] 374 + name = "cpufeatures" 375 + version = "0.2.12" 376 + source = "registry+https://github.com/rust-lang/crates.io-index" 377 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 378 + dependencies = [ 379 + "libc", 380 + ] 381 + 382 + [[package]] 383 + name = "crunchy-cli" 384 + version = "3.2.5" 385 + dependencies = [ 386 + "chrono", 387 + "clap", 388 + "clap_complete", 389 + "clap_mangen", 390 + "crunchy-cli-core", 391 + "native-tls", 392 + "tokio", 393 + ] 394 + 395 + [[package]] 396 + name = "crunchy-cli-core" 397 + version = "3.2.5" 398 + dependencies = [ 399 + "anyhow", 400 + "async-speed-limit", 401 + "chrono", 402 + "clap", 403 + "crunchyroll-rs", 404 + "ctrlc", 405 + "derive_setters", 406 + "dialoguer", 407 + "dirs", 408 + "fs2", 409 + "futures-util", 410 + "http", 411 + "indicatif", 412 + "lazy_static", 413 + "log", 414 + "nix", 415 + "num_cpus", 416 + "regex", 417 + "reqwest", 418 + "rustls-native-certs", 419 + "serde", 420 + "serde_json", 421 + "serde_plain", 422 + "shlex", 423 + "sys-locale", 424 + "tempfile", 425 + "tokio", 426 + "tokio-util", 427 + "tower-service", 428 + ] 429 + 430 + [[package]] 431 + name = "crunchyroll-rs" 432 + version = "0.8.2" 433 + source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "828ff3c0f11de8f8afda7dc3bd24e206e1b13cee6abfd87856123305864681d2" 435 + dependencies = [ 436 + "aes", 437 + "async-trait", 438 + "cbc", 439 + "chrono", 440 + "crunchyroll-rs-internal", 441 + "dash-mpd", 442 + "futures-util", 443 + "lazy_static", 444 + "m3u8-rs", 445 + "regex", 446 + "reqwest", 447 + "rustls", 448 + "serde", 449 + "serde_json", 450 + "serde_urlencoded", 451 + "smart-default", 452 + "tokio", 453 + "tower-service", 454 + "webpki-roots 0.26.0", 455 + ] 456 + 457 + [[package]] 458 + name = "crunchyroll-rs-internal" 459 + version = "0.8.2" 460 + source = "registry+https://github.com/rust-lang/crates.io-index" 461 + checksum = "c7051a39e25a19ef0aa753e7da179787a3db0fb8a01977a7e22cd288f7ff0e27" 462 + dependencies = [ 463 + "darling", 464 + "quote", 465 + "syn", 466 + ] 467 + 468 + [[package]] 469 + name = "crypto-common" 470 + version = "0.1.6" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 473 + dependencies = [ 474 + "generic-array", 475 + "typenum", 476 + ] 477 + 478 + [[package]] 479 + name = "ctrlc" 480 + version = "3.4.2" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" 483 + dependencies = [ 484 + "nix", 485 + "windows-sys 0.52.0", 486 + ] 487 + 488 + [[package]] 489 + name = "darling" 490 + version = "0.20.3" 491 + source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 493 + dependencies = [ 494 + "darling_core", 495 + "darling_macro", 496 + ] 497 + 498 + [[package]] 499 + name = "darling_core" 500 + version = "0.20.3" 501 + source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 503 + dependencies = [ 504 + "fnv", 505 + "ident_case", 506 + "proc-macro2", 507 + "quote", 508 + "strsim", 509 + "syn", 510 + ] 511 + 512 + [[package]] 513 + name = "darling_macro" 514 + version = "0.20.3" 515 + source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 517 + dependencies = [ 518 + "darling_core", 519 + "quote", 520 + "syn", 521 + ] 522 + 523 + [[package]] 524 + name = "dash-mpd" 525 + version = "0.14.7" 526 + source = "registry+https://github.com/rust-lang/crates.io-index" 527 + checksum = "7cf94350e05e27c941b8cfc06bffeec3afcac11f42df289378ddf43e192d2e15" 528 + dependencies = [ 529 + "base64", 530 + "base64-serde", 531 + "chrono", 532 + "fs-err", 533 + "iso8601", 534 + "lazy_static", 535 + "num-traits", 536 + "quick-xml", 537 + "regex", 538 + "serde", 539 + "serde_path_to_error", 540 + "serde_with", 541 + "thiserror", 542 + "tokio", 543 + "tracing", 544 + "url", 545 + "xattr", 546 + ] 547 + 548 + [[package]] 549 + name = "deranged" 550 + version = "0.3.11" 551 + source = "registry+https://github.com/rust-lang/crates.io-index" 552 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 553 + dependencies = [ 554 + "powerfmt", 555 + "serde", 556 + ] 557 + 558 + [[package]] 559 + name = "derive_setters" 560 + version = "0.1.6" 561 + source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "4e8ef033054e131169b8f0f9a7af8f5533a9436fadf3c500ed547f730f07090d" 563 + dependencies = [ 564 + "darling", 565 + "proc-macro2", 566 + "quote", 567 + "syn", 568 + ] 569 + 570 + [[package]] 571 + name = "dialoguer" 572 + version = "0.11.0" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" 575 + dependencies = [ 576 + "console", 577 + "shell-words", 578 + "thiserror", 579 + ] 580 + 581 + [[package]] 582 + name = "dirs" 583 + version = "5.0.1" 584 + source = "registry+https://github.com/rust-lang/crates.io-index" 585 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 586 + dependencies = [ 587 + "dirs-sys", 588 + ] 589 + 590 + [[package]] 591 + name = "dirs-sys" 592 + version = "0.4.1" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 595 + dependencies = [ 596 + "libc", 597 + "option-ext", 598 + "redox_users", 599 + "windows-sys 0.48.0", 600 + ] 601 + 602 + [[package]] 603 + name = "either" 604 + version = "1.9.0" 605 + source = "registry+https://github.com/rust-lang/crates.io-index" 606 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 607 + 608 + [[package]] 609 + name = "encode_unicode" 610 + version = "0.3.6" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 613 + 614 + [[package]] 615 + name = "encoding_rs" 616 + version = "0.8.33" 617 + source = "registry+https://github.com/rust-lang/crates.io-index" 618 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 619 + dependencies = [ 620 + "cfg-if", 621 + ] 622 + 623 + [[package]] 624 + name = "equivalent" 625 + version = "1.0.1" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 628 + 629 + [[package]] 630 + name = "errno" 631 + version = "0.3.8" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 634 + dependencies = [ 635 + "libc", 636 + "windows-sys 0.52.0", 637 + ] 638 + 639 + [[package]] 640 + name = "fastrand" 641 + version = "2.0.1" 642 + source = "registry+https://github.com/rust-lang/crates.io-index" 643 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 644 + 645 + [[package]] 646 + name = "fnv" 647 + version = "1.0.7" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 650 + 651 + [[package]] 652 + name = "foreign-types" 653 + version = "0.3.2" 654 + source = "registry+https://github.com/rust-lang/crates.io-index" 655 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 656 + dependencies = [ 657 + "foreign-types-shared", 658 + ] 659 + 660 + [[package]] 661 + name = "foreign-types-shared" 662 + version = "0.1.1" 663 + source = "registry+https://github.com/rust-lang/crates.io-index" 664 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 665 + 666 + [[package]] 667 + name = "form_urlencoded" 668 + version = "1.2.1" 669 + source = "registry+https://github.com/rust-lang/crates.io-index" 670 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 671 + dependencies = [ 672 + "percent-encoding", 673 + ] 674 + 675 + [[package]] 676 + name = "fs-err" 677 + version = "2.11.0" 678 + source = "registry+https://github.com/rust-lang/crates.io-index" 679 + checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 680 + dependencies = [ 681 + "autocfg", 682 + ] 683 + 684 + [[package]] 685 + name = "fs2" 686 + version = "0.4.3" 687 + source = "registry+https://github.com/rust-lang/crates.io-index" 688 + checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 689 + dependencies = [ 690 + "libc", 691 + "winapi", 692 + ] 693 + 694 + [[package]] 695 + name = "futures-channel" 696 + version = "0.3.30" 697 + source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 699 + dependencies = [ 700 + "futures-core", 701 + ] 702 + 703 + [[package]] 704 + name = "futures-core" 705 + version = "0.3.30" 706 + source = "registry+https://github.com/rust-lang/crates.io-index" 707 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 708 + 709 + [[package]] 710 + name = "futures-io" 711 + version = "0.3.30" 712 + source = "registry+https://github.com/rust-lang/crates.io-index" 713 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 714 + 715 + [[package]] 716 + name = "futures-macro" 717 + version = "0.3.30" 718 + source = "registry+https://github.com/rust-lang/crates.io-index" 719 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 720 + dependencies = [ 721 + "proc-macro2", 722 + "quote", 723 + "syn", 724 + ] 725 + 726 + [[package]] 727 + name = "futures-sink" 728 + version = "0.3.30" 729 + source = "registry+https://github.com/rust-lang/crates.io-index" 730 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 731 + 732 + [[package]] 733 + name = "futures-task" 734 + version = "0.3.30" 735 + source = "registry+https://github.com/rust-lang/crates.io-index" 736 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 737 + 738 + [[package]] 739 + name = "futures-timer" 740 + version = "3.0.2" 741 + source = "registry+https://github.com/rust-lang/crates.io-index" 742 + checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" 743 + 744 + [[package]] 745 + name = "futures-util" 746 + version = "0.3.30" 747 + source = "registry+https://github.com/rust-lang/crates.io-index" 748 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 749 + dependencies = [ 750 + "futures-core", 751 + "futures-io", 752 + "futures-macro", 753 + "futures-sink", 754 + "futures-task", 755 + "memchr", 756 + "pin-project-lite", 757 + "pin-utils", 758 + "slab", 759 + ] 760 + 761 + [[package]] 762 + name = "generic-array" 763 + version = "0.14.7" 764 + source = "registry+https://github.com/rust-lang/crates.io-index" 765 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 766 + dependencies = [ 767 + "typenum", 768 + "version_check", 769 + ] 770 + 771 + [[package]] 772 + name = "getrandom" 773 + version = "0.2.12" 774 + source = "registry+https://github.com/rust-lang/crates.io-index" 775 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 776 + dependencies = [ 777 + "cfg-if", 778 + "libc", 779 + "wasi", 780 + ] 781 + 782 + [[package]] 783 + name = "gimli" 784 + version = "0.28.1" 785 + source = "registry+https://github.com/rust-lang/crates.io-index" 786 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 787 + 788 + [[package]] 789 + name = "h2" 790 + version = "0.3.23" 791 + source = "registry+https://github.com/rust-lang/crates.io-index" 792 + checksum = "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7" 793 + dependencies = [ 794 + "bytes", 795 + "fnv", 796 + "futures-core", 797 + "futures-sink", 798 + "futures-util", 799 + "http", 800 + "indexmap 2.1.0", 801 + "slab", 802 + "tokio", 803 + "tokio-util", 804 + "tracing", 805 + ] 806 + 807 + [[package]] 808 + name = "hashbrown" 809 + version = "0.12.3" 810 + source = "registry+https://github.com/rust-lang/crates.io-index" 811 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 812 + 813 + [[package]] 814 + name = "hashbrown" 815 + version = "0.14.3" 816 + source = "registry+https://github.com/rust-lang/crates.io-index" 817 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 818 + 819 + [[package]] 820 + name = "heck" 821 + version = "0.4.1" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 824 + 825 + [[package]] 826 + name = "hermit-abi" 827 + version = "0.3.3" 828 + source = "registry+https://github.com/rust-lang/crates.io-index" 829 + checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 830 + 831 + [[package]] 832 + name = "hex" 833 + version = "0.4.3" 834 + source = "registry+https://github.com/rust-lang/crates.io-index" 835 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 836 + 837 + [[package]] 838 + name = "http" 839 + version = "0.2.11" 840 + source = "registry+https://github.com/rust-lang/crates.io-index" 841 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 842 + dependencies = [ 843 + "bytes", 844 + "fnv", 845 + "itoa", 846 + ] 847 + 848 + [[package]] 849 + name = "http-body" 850 + version = "0.4.6" 851 + source = "registry+https://github.com/rust-lang/crates.io-index" 852 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 853 + dependencies = [ 854 + "bytes", 855 + "http", 856 + "pin-project-lite", 857 + ] 858 + 859 + [[package]] 860 + name = "httparse" 861 + version = "1.8.0" 862 + source = "registry+https://github.com/rust-lang/crates.io-index" 863 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 864 + 865 + [[package]] 866 + name = "httpdate" 867 + version = "1.0.3" 868 + source = "registry+https://github.com/rust-lang/crates.io-index" 869 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 870 + 871 + [[package]] 872 + name = "hyper" 873 + version = "0.14.28" 874 + source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 876 + dependencies = [ 877 + "bytes", 878 + "futures-channel", 879 + "futures-core", 880 + "futures-util", 881 + "h2", 882 + "http", 883 + "http-body", 884 + "httparse", 885 + "httpdate", 886 + "itoa", 887 + "pin-project-lite", 888 + "socket2", 889 + "tokio", 890 + "tower-service", 891 + "tracing", 892 + "want", 893 + ] 894 + 895 + [[package]] 896 + name = "hyper-rustls" 897 + version = "0.24.2" 898 + source = "registry+https://github.com/rust-lang/crates.io-index" 899 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 900 + dependencies = [ 901 + "futures-util", 902 + "http", 903 + "hyper", 904 + "rustls", 905 + "tokio", 906 + "tokio-rustls", 907 + ] 908 + 909 + [[package]] 910 + name = "hyper-tls" 911 + version = "0.5.0" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 914 + dependencies = [ 915 + "bytes", 916 + "hyper", 917 + "native-tls", 918 + "tokio", 919 + "tokio-native-tls", 920 + ] 921 + 922 + [[package]] 923 + name = "iana-time-zone" 924 + version = "0.1.59" 925 + source = "registry+https://github.com/rust-lang/crates.io-index" 926 + checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" 927 + dependencies = [ 928 + "android_system_properties", 929 + "core-foundation-sys", 930 + "iana-time-zone-haiku", 931 + "js-sys", 932 + "wasm-bindgen", 933 + "windows-core", 934 + ] 935 + 936 + [[package]] 937 + name = "iana-time-zone-haiku" 938 + version = "0.1.2" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 941 + dependencies = [ 942 + "cc", 943 + ] 944 + 945 + [[package]] 946 + name = "ident_case" 947 + version = "1.0.1" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 950 + 951 + [[package]] 952 + name = "idna" 953 + version = "0.2.3" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 956 + dependencies = [ 957 + "matches", 958 + "unicode-bidi", 959 + "unicode-normalization", 960 + ] 961 + 962 + [[package]] 963 + name = "idna" 964 + version = "0.3.0" 965 + source = "registry+https://github.com/rust-lang/crates.io-index" 966 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 967 + dependencies = [ 968 + "unicode-bidi", 969 + "unicode-normalization", 970 + ] 971 + 972 + [[package]] 973 + name = "idna" 974 + version = "0.5.0" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 977 + dependencies = [ 978 + "unicode-bidi", 979 + "unicode-normalization", 980 + ] 981 + 982 + [[package]] 983 + name = "indexmap" 984 + version = "1.9.3" 985 + source = "registry+https://github.com/rust-lang/crates.io-index" 986 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 987 + dependencies = [ 988 + "autocfg", 989 + "hashbrown 0.12.3", 990 + "serde", 991 + ] 992 + 993 + [[package]] 994 + name = "indexmap" 995 + version = "2.1.0" 996 + source = "registry+https://github.com/rust-lang/crates.io-index" 997 + checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 998 + dependencies = [ 999 + "equivalent", 1000 + "hashbrown 0.14.3", 1001 + "serde", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "indicatif" 1006 + version = "0.17.7" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" 1009 + dependencies = [ 1010 + "console", 1011 + "instant", 1012 + "number_prefix", 1013 + "portable-atomic", 1014 + "unicode-width", 1015 + ] 1016 + 1017 + [[package]] 1018 + name = "inout" 1019 + version = "0.1.3" 1020 + source = "registry+https://github.com/rust-lang/crates.io-index" 1021 + checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1022 + dependencies = [ 1023 + "block-padding", 1024 + "generic-array", 1025 + ] 1026 + 1027 + [[package]] 1028 + name = "instant" 1029 + version = "0.1.12" 1030 + source = "registry+https://github.com/rust-lang/crates.io-index" 1031 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1032 + dependencies = [ 1033 + "cfg-if", 1034 + ] 1035 + 1036 + [[package]] 1037 + name = "ipnet" 1038 + version = "2.9.0" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1041 + 1042 + [[package]] 1043 + name = "iso8601" 1044 + version = "0.6.1" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" 1047 + dependencies = [ 1048 + "nom", 1049 + ] 1050 + 1051 + [[package]] 1052 + name = "itoa" 1053 + version = "1.0.10" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1056 + 1057 + [[package]] 1058 + name = "js-sys" 1059 + version = "0.3.67" 1060 + source = "registry+https://github.com/rust-lang/crates.io-index" 1061 + checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1062 + dependencies = [ 1063 + "wasm-bindgen", 1064 + ] 1065 + 1066 + [[package]] 1067 + name = "lazy_static" 1068 + version = "1.4.0" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1071 + 1072 + [[package]] 1073 + name = "libc" 1074 + version = "0.2.152" 1075 + source = "registry+https://github.com/rust-lang/crates.io-index" 1076 + checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" 1077 + 1078 + [[package]] 1079 + name = "libredox" 1080 + version = "0.0.1" 1081 + source = "registry+https://github.com/rust-lang/crates.io-index" 1082 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1083 + dependencies = [ 1084 + "bitflags 2.4.1", 1085 + "libc", 1086 + "redox_syscall", 1087 + ] 1088 + 1089 + [[package]] 1090 + name = "linux-raw-sys" 1091 + version = "0.4.12" 1092 + source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1094 + 1095 + [[package]] 1096 + name = "log" 1097 + version = "0.4.20" 1098 + source = "registry+https://github.com/rust-lang/crates.io-index" 1099 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1100 + 1101 + [[package]] 1102 + name = "m3u8-rs" 1103 + version = "5.0.5" 1104 + source = "registry+https://github.com/rust-lang/crates.io-index" 1105 + checksum = "0c1d7ba86f7ea62f17f4310c55e93244619ddc7dadfc7e565de1967e4e41e6e7" 1106 + dependencies = [ 1107 + "chrono", 1108 + "nom", 1109 + ] 1110 + 1111 + [[package]] 1112 + name = "matches" 1113 + version = "0.1.10" 1114 + source = "registry+https://github.com/rust-lang/crates.io-index" 1115 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1116 + 1117 + [[package]] 1118 + name = "memchr" 1119 + version = "2.7.1" 1120 + source = "registry+https://github.com/rust-lang/crates.io-index" 1121 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1122 + 1123 + [[package]] 1124 + name = "mime" 1125 + version = "0.3.17" 1126 + source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1128 + 1129 + [[package]] 1130 + name = "minimal-lexical" 1131 + version = "0.2.1" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1134 + 1135 + [[package]] 1136 + name = "miniz_oxide" 1137 + version = "0.7.1" 1138 + source = "registry+https://github.com/rust-lang/crates.io-index" 1139 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1140 + dependencies = [ 1141 + "adler", 1142 + ] 1143 + 1144 + [[package]] 1145 + name = "mio" 1146 + version = "0.8.10" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 1149 + dependencies = [ 1150 + "libc", 1151 + "wasi", 1152 + "windows-sys 0.48.0", 1153 + ] 1154 + 1155 + [[package]] 1156 + name = "native-tls" 1157 + version = "0.2.11" 1158 + source = "git+https://github.com/crunchy-labs/rust-not-so-native-tls.git?rev=fdba246#fdba246a79986607cbdf573733445498bb6da2a9" 1159 + dependencies = [ 1160 + "libc", 1161 + "log", 1162 + "openssl", 1163 + "openssl-probe", 1164 + "openssl-sys", 1165 + "schannel", 1166 + "security-framework", 1167 + "security-framework-sys", 1168 + "tempfile", 1169 + ] 1170 + 1171 + [[package]] 1172 + name = "nix" 1173 + version = "0.27.1" 1174 + source = "registry+https://github.com/rust-lang/crates.io-index" 1175 + checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1176 + dependencies = [ 1177 + "bitflags 2.4.1", 1178 + "cfg-if", 1179 + "libc", 1180 + ] 1181 + 1182 + [[package]] 1183 + name = "nom" 1184 + version = "7.1.3" 1185 + source = "registry+https://github.com/rust-lang/crates.io-index" 1186 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1187 + dependencies = [ 1188 + "memchr", 1189 + "minimal-lexical", 1190 + ] 1191 + 1192 + [[package]] 1193 + name = "num-traits" 1194 + version = "0.2.17" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1197 + dependencies = [ 1198 + "autocfg", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "num_cpus" 1203 + version = "1.16.0" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1206 + dependencies = [ 1207 + "hermit-abi", 1208 + "libc", 1209 + ] 1210 + 1211 + [[package]] 1212 + name = "number_prefix" 1213 + version = "0.4.0" 1214 + source = "registry+https://github.com/rust-lang/crates.io-index" 1215 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1216 + 1217 + [[package]] 1218 + name = "object" 1219 + version = "0.32.2" 1220 + source = "registry+https://github.com/rust-lang/crates.io-index" 1221 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1222 + dependencies = [ 1223 + "memchr", 1224 + ] 1225 + 1226 + [[package]] 1227 + name = "once_cell" 1228 + version = "1.19.0" 1229 + source = "registry+https://github.com/rust-lang/crates.io-index" 1230 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1231 + 1232 + [[package]] 1233 + name = "openssl" 1234 + version = "0.10.62" 1235 + source = "registry+https://github.com/rust-lang/crates.io-index" 1236 + checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" 1237 + dependencies = [ 1238 + "bitflags 2.4.1", 1239 + "cfg-if", 1240 + "foreign-types", 1241 + "libc", 1242 + "once_cell", 1243 + "openssl-macros", 1244 + "openssl-sys", 1245 + ] 1246 + 1247 + [[package]] 1248 + name = "openssl-macros" 1249 + version = "0.1.1" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1252 + dependencies = [ 1253 + "proc-macro2", 1254 + "quote", 1255 + "syn", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "openssl-probe" 1260 + version = "0.1.5" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1263 + 1264 + [[package]] 1265 + name = "openssl-src" 1266 + version = "300.2.1+3.2.0" 1267 + source = "registry+https://github.com/rust-lang/crates.io-index" 1268 + checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3" 1269 + dependencies = [ 1270 + "cc", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "openssl-sys" 1275 + version = "0.9.98" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" 1278 + dependencies = [ 1279 + "cc", 1280 + "libc", 1281 + "openssl-src", 1282 + "pkg-config", 1283 + "vcpkg", 1284 + ] 1285 + 1286 + [[package]] 1287 + name = "option-ext" 1288 + version = "0.2.0" 1289 + source = "registry+https://github.com/rust-lang/crates.io-index" 1290 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1291 + 1292 + [[package]] 1293 + name = "percent-encoding" 1294 + version = "2.3.1" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1297 + 1298 + [[package]] 1299 + name = "pin-project-lite" 1300 + version = "0.2.13" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1303 + 1304 + [[package]] 1305 + name = "pin-utils" 1306 + version = "0.1.0" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1309 + 1310 + [[package]] 1311 + name = "pkg-config" 1312 + version = "0.3.28" 1313 + source = "registry+https://github.com/rust-lang/crates.io-index" 1314 + checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" 1315 + 1316 + [[package]] 1317 + name = "portable-atomic" 1318 + version = "1.6.0" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 1321 + 1322 + [[package]] 1323 + name = "powerfmt" 1324 + version = "0.2.0" 1325 + source = "registry+https://github.com/rust-lang/crates.io-index" 1326 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1327 + 1328 + [[package]] 1329 + name = "proc-macro2" 1330 + version = "1.0.76" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" 1333 + dependencies = [ 1334 + "unicode-ident", 1335 + ] 1336 + 1337 + [[package]] 1338 + name = "psl-types" 1339 + version = "2.0.11" 1340 + source = "registry+https://github.com/rust-lang/crates.io-index" 1341 + checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" 1342 + 1343 + [[package]] 1344 + name = "publicsuffix" 1345 + version = "2.2.3" 1346 + source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" 1348 + dependencies = [ 1349 + "idna 0.3.0", 1350 + "psl-types", 1351 + ] 1352 + 1353 + [[package]] 1354 + name = "quick-xml" 1355 + version = "0.31.0" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1358 + dependencies = [ 1359 + "memchr", 1360 + "serde", 1361 + ] 1362 + 1363 + [[package]] 1364 + name = "quote" 1365 + version = "1.0.35" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 1368 + dependencies = [ 1369 + "proc-macro2", 1370 + ] 1371 + 1372 + [[package]] 1373 + name = "redox_syscall" 1374 + version = "0.4.1" 1375 + source = "registry+https://github.com/rust-lang/crates.io-index" 1376 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 1377 + dependencies = [ 1378 + "bitflags 1.3.2", 1379 + ] 1380 + 1381 + [[package]] 1382 + name = "redox_users" 1383 + version = "0.4.4" 1384 + source = "registry+https://github.com/rust-lang/crates.io-index" 1385 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 1386 + dependencies = [ 1387 + "getrandom", 1388 + "libredox", 1389 + "thiserror", 1390 + ] 1391 + 1392 + [[package]] 1393 + name = "regex" 1394 + version = "1.10.2" 1395 + source = "registry+https://github.com/rust-lang/crates.io-index" 1396 + checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 1397 + dependencies = [ 1398 + "aho-corasick", 1399 + "memchr", 1400 + "regex-automata", 1401 + "regex-syntax", 1402 + ] 1403 + 1404 + [[package]] 1405 + name = "regex-automata" 1406 + version = "0.4.3" 1407 + source = "registry+https://github.com/rust-lang/crates.io-index" 1408 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 1409 + dependencies = [ 1410 + "aho-corasick", 1411 + "memchr", 1412 + "regex-syntax", 1413 + ] 1414 + 1415 + [[package]] 1416 + name = "regex-syntax" 1417 + version = "0.8.2" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 1420 + 1421 + [[package]] 1422 + name = "reqwest" 1423 + version = "0.11.23" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 1426 + dependencies = [ 1427 + "base64", 1428 + "bytes", 1429 + "cookie", 1430 + "cookie_store", 1431 + "encoding_rs", 1432 + "futures-core", 1433 + "futures-util", 1434 + "h2", 1435 + "http", 1436 + "http-body", 1437 + "hyper", 1438 + "hyper-rustls", 1439 + "hyper-tls", 1440 + "ipnet", 1441 + "js-sys", 1442 + "log", 1443 + "mime", 1444 + "native-tls", 1445 + "once_cell", 1446 + "percent-encoding", 1447 + "pin-project-lite", 1448 + "rustls", 1449 + "rustls-pemfile", 1450 + "serde", 1451 + "serde_json", 1452 + "serde_urlencoded", 1453 + "system-configuration", 1454 + "tokio", 1455 + "tokio-native-tls", 1456 + "tokio-rustls", 1457 + "tokio-socks", 1458 + "tokio-util", 1459 + "tower-service", 1460 + "url", 1461 + "wasm-bindgen", 1462 + "wasm-bindgen-futures", 1463 + "wasm-streams", 1464 + "web-sys", 1465 + "webpki-roots 0.25.3", 1466 + "winreg", 1467 + ] 1468 + 1469 + [[package]] 1470 + name = "ring" 1471 + version = "0.17.7" 1472 + source = "registry+https://github.com/rust-lang/crates.io-index" 1473 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 1474 + dependencies = [ 1475 + "cc", 1476 + "getrandom", 1477 + "libc", 1478 + "spin", 1479 + "untrusted", 1480 + "windows-sys 0.48.0", 1481 + ] 1482 + 1483 + [[package]] 1484 + name = "roff" 1485 + version = "0.2.1" 1486 + source = "registry+https://github.com/rust-lang/crates.io-index" 1487 + checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" 1488 + 1489 + [[package]] 1490 + name = "rustc-demangle" 1491 + version = "0.1.23" 1492 + source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1494 + 1495 + [[package]] 1496 + name = "rustix" 1497 + version = "0.38.30" 1498 + source = "registry+https://github.com/rust-lang/crates.io-index" 1499 + checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" 1500 + dependencies = [ 1501 + "bitflags 2.4.1", 1502 + "errno", 1503 + "libc", 1504 + "linux-raw-sys", 1505 + "windows-sys 0.52.0", 1506 + ] 1507 + 1508 + [[package]] 1509 + name = "rustls" 1510 + version = "0.21.10" 1511 + source = "registry+https://github.com/rust-lang/crates.io-index" 1512 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 1513 + dependencies = [ 1514 + "log", 1515 + "ring", 1516 + "rustls-webpki", 1517 + "sct", 1518 + ] 1519 + 1520 + [[package]] 1521 + name = "rustls-native-certs" 1522 + version = "0.6.3" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 1525 + dependencies = [ 1526 + "openssl-probe", 1527 + "rustls-pemfile", 1528 + "schannel", 1529 + "security-framework", 1530 + ] 1531 + 1532 + [[package]] 1533 + name = "rustls-pemfile" 1534 + version = "1.0.4" 1535 + source = "registry+https://github.com/rust-lang/crates.io-index" 1536 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 1537 + dependencies = [ 1538 + "base64", 1539 + ] 1540 + 1541 + [[package]] 1542 + name = "rustls-pki-types" 1543 + version = "1.1.0" 1544 + source = "registry+https://github.com/rust-lang/crates.io-index" 1545 + checksum = "9e9d979b3ce68192e42760c7810125eb6cf2ea10efae545a156063e61f314e2a" 1546 + 1547 + [[package]] 1548 + name = "rustls-webpki" 1549 + version = "0.101.7" 1550 + source = "registry+https://github.com/rust-lang/crates.io-index" 1551 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 1552 + dependencies = [ 1553 + "ring", 1554 + "untrusted", 1555 + ] 1556 + 1557 + [[package]] 1558 + name = "ryu" 1559 + version = "1.0.16" 1560 + source = "registry+https://github.com/rust-lang/crates.io-index" 1561 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1562 + 1563 + [[package]] 1564 + name = "schannel" 1565 + version = "0.1.23" 1566 + source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 1568 + dependencies = [ 1569 + "windows-sys 0.52.0", 1570 + ] 1571 + 1572 + [[package]] 1573 + name = "sct" 1574 + version = "0.7.1" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 1577 + dependencies = [ 1578 + "ring", 1579 + "untrusted", 1580 + ] 1581 + 1582 + [[package]] 1583 + name = "security-framework" 1584 + version = "2.9.2" 1585 + source = "registry+https://github.com/rust-lang/crates.io-index" 1586 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 1587 + dependencies = [ 1588 + "bitflags 1.3.2", 1589 + "core-foundation", 1590 + "core-foundation-sys", 1591 + "libc", 1592 + "security-framework-sys", 1593 + ] 1594 + 1595 + [[package]] 1596 + name = "security-framework-sys" 1597 + version = "2.9.1" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 1600 + dependencies = [ 1601 + "core-foundation-sys", 1602 + "libc", 1603 + ] 1604 + 1605 + [[package]] 1606 + name = "serde" 1607 + version = "1.0.195" 1608 + source = "registry+https://github.com/rust-lang/crates.io-index" 1609 + checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" 1610 + dependencies = [ 1611 + "serde_derive", 1612 + ] 1613 + 1614 + [[package]] 1615 + name = "serde_derive" 1616 + version = "1.0.195" 1617 + source = "registry+https://github.com/rust-lang/crates.io-index" 1618 + checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" 1619 + dependencies = [ 1620 + "proc-macro2", 1621 + "quote", 1622 + "syn", 1623 + ] 1624 + 1625 + [[package]] 1626 + name = "serde_json" 1627 + version = "1.0.111" 1628 + source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" 1630 + dependencies = [ 1631 + "itoa", 1632 + "ryu", 1633 + "serde", 1634 + ] 1635 + 1636 + [[package]] 1637 + name = "serde_path_to_error" 1638 + version = "0.1.15" 1639 + source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" 1641 + dependencies = [ 1642 + "itoa", 1643 + "serde", 1644 + ] 1645 + 1646 + [[package]] 1647 + name = "serde_plain" 1648 + version = "1.0.2" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 1651 + dependencies = [ 1652 + "serde", 1653 + ] 1654 + 1655 + [[package]] 1656 + name = "serde_urlencoded" 1657 + version = "0.7.1" 1658 + source = "registry+https://github.com/rust-lang/crates.io-index" 1659 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1660 + dependencies = [ 1661 + "form_urlencoded", 1662 + "itoa", 1663 + "ryu", 1664 + "serde", 1665 + ] 1666 + 1667 + [[package]] 1668 + name = "serde_with" 1669 + version = "3.4.0" 1670 + source = "registry+https://github.com/rust-lang/crates.io-index" 1671 + checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 1672 + dependencies = [ 1673 + "base64", 1674 + "chrono", 1675 + "hex", 1676 + "indexmap 1.9.3", 1677 + "indexmap 2.1.0", 1678 + "serde", 1679 + "serde_json", 1680 + "serde_with_macros", 1681 + "time", 1682 + ] 1683 + 1684 + [[package]] 1685 + name = "serde_with_macros" 1686 + version = "3.4.0" 1687 + source = "registry+https://github.com/rust-lang/crates.io-index" 1688 + checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 1689 + dependencies = [ 1690 + "darling", 1691 + "proc-macro2", 1692 + "quote", 1693 + "syn", 1694 + ] 1695 + 1696 + [[package]] 1697 + name = "shell-words" 1698 + version = "1.1.0" 1699 + source = "registry+https://github.com/rust-lang/crates.io-index" 1700 + checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 1701 + 1702 + [[package]] 1703 + name = "shlex" 1704 + version = "1.2.0" 1705 + source = "registry+https://github.com/rust-lang/crates.io-index" 1706 + checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 1707 + 1708 + [[package]] 1709 + name = "slab" 1710 + version = "0.4.9" 1711 + source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1713 + dependencies = [ 1714 + "autocfg", 1715 + ] 1716 + 1717 + [[package]] 1718 + name = "smart-default" 1719 + version = "0.7.1" 1720 + source = "registry+https://github.com/rust-lang/crates.io-index" 1721 + checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1" 1722 + dependencies = [ 1723 + "proc-macro2", 1724 + "quote", 1725 + "syn", 1726 + ] 1727 + 1728 + [[package]] 1729 + name = "socket2" 1730 + version = "0.5.5" 1731 + source = "registry+https://github.com/rust-lang/crates.io-index" 1732 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 1733 + dependencies = [ 1734 + "libc", 1735 + "windows-sys 0.48.0", 1736 + ] 1737 + 1738 + [[package]] 1739 + name = "spin" 1740 + version = "0.9.8" 1741 + source = "registry+https://github.com/rust-lang/crates.io-index" 1742 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1743 + 1744 + [[package]] 1745 + name = "strsim" 1746 + version = "0.10.0" 1747 + source = "registry+https://github.com/rust-lang/crates.io-index" 1748 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1749 + 1750 + [[package]] 1751 + name = "syn" 1752 + version = "2.0.48" 1753 + source = "registry+https://github.com/rust-lang/crates.io-index" 1754 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 1755 + dependencies = [ 1756 + "proc-macro2", 1757 + "quote", 1758 + "unicode-ident", 1759 + ] 1760 + 1761 + [[package]] 1762 + name = "sys-locale" 1763 + version = "0.3.1" 1764 + source = "registry+https://github.com/rust-lang/crates.io-index" 1765 + checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 1766 + dependencies = [ 1767 + "libc", 1768 + ] 1769 + 1770 + [[package]] 1771 + name = "system-configuration" 1772 + version = "0.5.1" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 1775 + dependencies = [ 1776 + "bitflags 1.3.2", 1777 + "core-foundation", 1778 + "system-configuration-sys", 1779 + ] 1780 + 1781 + [[package]] 1782 + name = "system-configuration-sys" 1783 + version = "0.5.0" 1784 + source = "registry+https://github.com/rust-lang/crates.io-index" 1785 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 1786 + dependencies = [ 1787 + "core-foundation-sys", 1788 + "libc", 1789 + ] 1790 + 1791 + [[package]] 1792 + name = "tempfile" 1793 + version = "3.9.0" 1794 + source = "registry+https://github.com/rust-lang/crates.io-index" 1795 + checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 1796 + dependencies = [ 1797 + "cfg-if", 1798 + "fastrand", 1799 + "redox_syscall", 1800 + "rustix", 1801 + "windows-sys 0.52.0", 1802 + ] 1803 + 1804 + [[package]] 1805 + name = "thiserror" 1806 + version = "1.0.56" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" 1809 + dependencies = [ 1810 + "thiserror-impl", 1811 + ] 1812 + 1813 + [[package]] 1814 + name = "thiserror-impl" 1815 + version = "1.0.56" 1816 + source = "registry+https://github.com/rust-lang/crates.io-index" 1817 + checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" 1818 + dependencies = [ 1819 + "proc-macro2", 1820 + "quote", 1821 + "syn", 1822 + ] 1823 + 1824 + [[package]] 1825 + name = "time" 1826 + version = "0.3.31" 1827 + source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 1829 + dependencies = [ 1830 + "deranged", 1831 + "itoa", 1832 + "powerfmt", 1833 + "serde", 1834 + "time-core", 1835 + "time-macros", 1836 + ] 1837 + 1838 + [[package]] 1839 + name = "time-core" 1840 + version = "0.1.2" 1841 + source = "registry+https://github.com/rust-lang/crates.io-index" 1842 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1843 + 1844 + [[package]] 1845 + name = "time-macros" 1846 + version = "0.2.16" 1847 + source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 1849 + dependencies = [ 1850 + "time-core", 1851 + ] 1852 + 1853 + [[package]] 1854 + name = "tinyvec" 1855 + version = "1.6.0" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1858 + dependencies = [ 1859 + "tinyvec_macros", 1860 + ] 1861 + 1862 + [[package]] 1863 + name = "tinyvec_macros" 1864 + version = "0.1.1" 1865 + source = "registry+https://github.com/rust-lang/crates.io-index" 1866 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1867 + 1868 + [[package]] 1869 + name = "tokio" 1870 + version = "1.35.1" 1871 + source = "registry+https://github.com/rust-lang/crates.io-index" 1872 + checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 1873 + dependencies = [ 1874 + "backtrace", 1875 + "bytes", 1876 + "libc", 1877 + "mio", 1878 + "num_cpus", 1879 + "pin-project-lite", 1880 + "socket2", 1881 + "tokio-macros", 1882 + "windows-sys 0.48.0", 1883 + ] 1884 + 1885 + [[package]] 1886 + name = "tokio-macros" 1887 + version = "2.2.0" 1888 + source = "registry+https://github.com/rust-lang/crates.io-index" 1889 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 1890 + dependencies = [ 1891 + "proc-macro2", 1892 + "quote", 1893 + "syn", 1894 + ] 1895 + 1896 + [[package]] 1897 + name = "tokio-native-tls" 1898 + version = "0.3.1" 1899 + source = "registry+https://github.com/rust-lang/crates.io-index" 1900 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1901 + dependencies = [ 1902 + "native-tls", 1903 + "tokio", 1904 + ] 1905 + 1906 + [[package]] 1907 + name = "tokio-rustls" 1908 + version = "0.24.1" 1909 + source = "registry+https://github.com/rust-lang/crates.io-index" 1910 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 1911 + dependencies = [ 1912 + "rustls", 1913 + "tokio", 1914 + ] 1915 + 1916 + [[package]] 1917 + name = "tokio-socks" 1918 + version = "0.5.1" 1919 + source = "registry+https://github.com/rust-lang/crates.io-index" 1920 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 1921 + dependencies = [ 1922 + "either", 1923 + "futures-util", 1924 + "thiserror", 1925 + "tokio", 1926 + ] 1927 + 1928 + [[package]] 1929 + name = "tokio-util" 1930 + version = "0.7.10" 1931 + source = "registry+https://github.com/rust-lang/crates.io-index" 1932 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 1933 + dependencies = [ 1934 + "bytes", 1935 + "futures-core", 1936 + "futures-sink", 1937 + "pin-project-lite", 1938 + "tokio", 1939 + "tracing", 1940 + ] 1941 + 1942 + [[package]] 1943 + name = "tower-service" 1944 + version = "0.3.2" 1945 + source = "registry+https://github.com/rust-lang/crates.io-index" 1946 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 1947 + 1948 + [[package]] 1949 + name = "tracing" 1950 + version = "0.1.40" 1951 + source = "registry+https://github.com/rust-lang/crates.io-index" 1952 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1953 + dependencies = [ 1954 + "pin-project-lite", 1955 + "tracing-attributes", 1956 + "tracing-core", 1957 + ] 1958 + 1959 + [[package]] 1960 + name = "tracing-attributes" 1961 + version = "0.1.27" 1962 + source = "registry+https://github.com/rust-lang/crates.io-index" 1963 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 1964 + dependencies = [ 1965 + "proc-macro2", 1966 + "quote", 1967 + "syn", 1968 + ] 1969 + 1970 + [[package]] 1971 + name = "tracing-core" 1972 + version = "0.1.32" 1973 + source = "registry+https://github.com/rust-lang/crates.io-index" 1974 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1975 + dependencies = [ 1976 + "once_cell", 1977 + ] 1978 + 1979 + [[package]] 1980 + name = "try-lock" 1981 + version = "0.2.5" 1982 + source = "registry+https://github.com/rust-lang/crates.io-index" 1983 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1984 + 1985 + [[package]] 1986 + name = "typenum" 1987 + version = "1.17.0" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 1990 + 1991 + [[package]] 1992 + name = "unicode-bidi" 1993 + version = "0.3.14" 1994 + source = "registry+https://github.com/rust-lang/crates.io-index" 1995 + checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 1996 + 1997 + [[package]] 1998 + name = "unicode-ident" 1999 + version = "1.0.12" 2000 + source = "registry+https://github.com/rust-lang/crates.io-index" 2001 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2002 + 2003 + [[package]] 2004 + name = "unicode-normalization" 2005 + version = "0.1.22" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2008 + dependencies = [ 2009 + "tinyvec", 2010 + ] 2011 + 2012 + [[package]] 2013 + name = "unicode-width" 2014 + version = "0.1.11" 2015 + source = "registry+https://github.com/rust-lang/crates.io-index" 2016 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 2017 + 2018 + [[package]] 2019 + name = "untrusted" 2020 + version = "0.9.0" 2021 + source = "registry+https://github.com/rust-lang/crates.io-index" 2022 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2023 + 2024 + [[package]] 2025 + name = "url" 2026 + version = "2.5.0" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 2029 + dependencies = [ 2030 + "form_urlencoded", 2031 + "idna 0.5.0", 2032 + "percent-encoding", 2033 + ] 2034 + 2035 + [[package]] 2036 + name = "utf8parse" 2037 + version = "0.2.1" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2040 + 2041 + [[package]] 2042 + name = "vcpkg" 2043 + version = "0.2.15" 2044 + source = "registry+https://github.com/rust-lang/crates.io-index" 2045 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2046 + 2047 + [[package]] 2048 + name = "version_check" 2049 + version = "0.9.4" 2050 + source = "registry+https://github.com/rust-lang/crates.io-index" 2051 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2052 + 2053 + [[package]] 2054 + name = "want" 2055 + version = "0.3.1" 2056 + source = "registry+https://github.com/rust-lang/crates.io-index" 2057 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2058 + dependencies = [ 2059 + "try-lock", 2060 + ] 2061 + 2062 + [[package]] 2063 + name = "wasi" 2064 + version = "0.11.0+wasi-snapshot-preview1" 2065 + source = "registry+https://github.com/rust-lang/crates.io-index" 2066 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2067 + 2068 + [[package]] 2069 + name = "wasm-bindgen" 2070 + version = "0.2.90" 2071 + source = "registry+https://github.com/rust-lang/crates.io-index" 2072 + checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 2073 + dependencies = [ 2074 + "cfg-if", 2075 + "wasm-bindgen-macro", 2076 + ] 2077 + 2078 + [[package]] 2079 + name = "wasm-bindgen-backend" 2080 + version = "0.2.90" 2081 + source = "registry+https://github.com/rust-lang/crates.io-index" 2082 + checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 2083 + dependencies = [ 2084 + "bumpalo", 2085 + "log", 2086 + "once_cell", 2087 + "proc-macro2", 2088 + "quote", 2089 + "syn", 2090 + "wasm-bindgen-shared", 2091 + ] 2092 + 2093 + [[package]] 2094 + name = "wasm-bindgen-futures" 2095 + version = "0.4.40" 2096 + source = "registry+https://github.com/rust-lang/crates.io-index" 2097 + checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 2098 + dependencies = [ 2099 + "cfg-if", 2100 + "js-sys", 2101 + "wasm-bindgen", 2102 + "web-sys", 2103 + ] 2104 + 2105 + [[package]] 2106 + name = "wasm-bindgen-macro" 2107 + version = "0.2.90" 2108 + source = "registry+https://github.com/rust-lang/crates.io-index" 2109 + checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 2110 + dependencies = [ 2111 + "quote", 2112 + "wasm-bindgen-macro-support", 2113 + ] 2114 + 2115 + [[package]] 2116 + name = "wasm-bindgen-macro-support" 2117 + version = "0.2.90" 2118 + source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 2120 + dependencies = [ 2121 + "proc-macro2", 2122 + "quote", 2123 + "syn", 2124 + "wasm-bindgen-backend", 2125 + "wasm-bindgen-shared", 2126 + ] 2127 + 2128 + [[package]] 2129 + name = "wasm-bindgen-shared" 2130 + version = "0.2.90" 2131 + source = "registry+https://github.com/rust-lang/crates.io-index" 2132 + checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 2133 + 2134 + [[package]] 2135 + name = "wasm-streams" 2136 + version = "0.3.0" 2137 + source = "registry+https://github.com/rust-lang/crates.io-index" 2138 + checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 2139 + dependencies = [ 2140 + "futures-util", 2141 + "js-sys", 2142 + "wasm-bindgen", 2143 + "wasm-bindgen-futures", 2144 + "web-sys", 2145 + ] 2146 + 2147 + [[package]] 2148 + name = "web-sys" 2149 + version = "0.3.67" 2150 + source = "registry+https://github.com/rust-lang/crates.io-index" 2151 + checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 2152 + dependencies = [ 2153 + "js-sys", 2154 + "wasm-bindgen", 2155 + ] 2156 + 2157 + [[package]] 2158 + name = "webpki-roots" 2159 + version = "0.25.3" 2160 + source = "registry+https://github.com/rust-lang/crates.io-index" 2161 + checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 2162 + 2163 + [[package]] 2164 + name = "webpki-roots" 2165 + version = "0.26.0" 2166 + source = "registry+https://github.com/rust-lang/crates.io-index" 2167 + checksum = "0de2cfda980f21be5a7ed2eadb3e6fe074d56022bea2cdeb1a62eb220fc04188" 2168 + dependencies = [ 2169 + "rustls-pki-types", 2170 + ] 2171 + 2172 + [[package]] 2173 + name = "winapi" 2174 + version = "0.3.9" 2175 + source = "registry+https://github.com/rust-lang/crates.io-index" 2176 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2177 + dependencies = [ 2178 + "winapi-i686-pc-windows-gnu", 2179 + "winapi-x86_64-pc-windows-gnu", 2180 + ] 2181 + 2182 + [[package]] 2183 + name = "winapi-i686-pc-windows-gnu" 2184 + version = "0.4.0" 2185 + source = "registry+https://github.com/rust-lang/crates.io-index" 2186 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2187 + 2188 + [[package]] 2189 + name = "winapi-x86_64-pc-windows-gnu" 2190 + version = "0.4.0" 2191 + source = "registry+https://github.com/rust-lang/crates.io-index" 2192 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2193 + 2194 + [[package]] 2195 + name = "windows-core" 2196 + version = "0.52.0" 2197 + source = "registry+https://github.com/rust-lang/crates.io-index" 2198 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2199 + dependencies = [ 2200 + "windows-targets 0.52.0", 2201 + ] 2202 + 2203 + [[package]] 2204 + name = "windows-sys" 2205 + version = "0.48.0" 2206 + source = "registry+https://github.com/rust-lang/crates.io-index" 2207 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2208 + dependencies = [ 2209 + "windows-targets 0.48.5", 2210 + ] 2211 + 2212 + [[package]] 2213 + name = "windows-sys" 2214 + version = "0.52.0" 2215 + source = "registry+https://github.com/rust-lang/crates.io-index" 2216 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2217 + dependencies = [ 2218 + "windows-targets 0.52.0", 2219 + ] 2220 + 2221 + [[package]] 2222 + name = "windows-targets" 2223 + version = "0.48.5" 2224 + source = "registry+https://github.com/rust-lang/crates.io-index" 2225 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2226 + dependencies = [ 2227 + "windows_aarch64_gnullvm 0.48.5", 2228 + "windows_aarch64_msvc 0.48.5", 2229 + "windows_i686_gnu 0.48.5", 2230 + "windows_i686_msvc 0.48.5", 2231 + "windows_x86_64_gnu 0.48.5", 2232 + "windows_x86_64_gnullvm 0.48.5", 2233 + "windows_x86_64_msvc 0.48.5", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "windows-targets" 2238 + version = "0.52.0" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 2241 + dependencies = [ 2242 + "windows_aarch64_gnullvm 0.52.0", 2243 + "windows_aarch64_msvc 0.52.0", 2244 + "windows_i686_gnu 0.52.0", 2245 + "windows_i686_msvc 0.52.0", 2246 + "windows_x86_64_gnu 0.52.0", 2247 + "windows_x86_64_gnullvm 0.52.0", 2248 + "windows_x86_64_msvc 0.52.0", 2249 + ] 2250 + 2251 + [[package]] 2252 + name = "windows_aarch64_gnullvm" 2253 + version = "0.48.5" 2254 + source = "registry+https://github.com/rust-lang/crates.io-index" 2255 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2256 + 2257 + [[package]] 2258 + name = "windows_aarch64_gnullvm" 2259 + version = "0.52.0" 2260 + source = "registry+https://github.com/rust-lang/crates.io-index" 2261 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 2262 + 2263 + [[package]] 2264 + name = "windows_aarch64_msvc" 2265 + version = "0.48.5" 2266 + source = "registry+https://github.com/rust-lang/crates.io-index" 2267 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2268 + 2269 + [[package]] 2270 + name = "windows_aarch64_msvc" 2271 + version = "0.52.0" 2272 + source = "registry+https://github.com/rust-lang/crates.io-index" 2273 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 2274 + 2275 + [[package]] 2276 + name = "windows_i686_gnu" 2277 + version = "0.48.5" 2278 + source = "registry+https://github.com/rust-lang/crates.io-index" 2279 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2280 + 2281 + [[package]] 2282 + name = "windows_i686_gnu" 2283 + version = "0.52.0" 2284 + source = "registry+https://github.com/rust-lang/crates.io-index" 2285 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 2286 + 2287 + [[package]] 2288 + name = "windows_i686_msvc" 2289 + version = "0.48.5" 2290 + source = "registry+https://github.com/rust-lang/crates.io-index" 2291 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2292 + 2293 + [[package]] 2294 + name = "windows_i686_msvc" 2295 + version = "0.52.0" 2296 + source = "registry+https://github.com/rust-lang/crates.io-index" 2297 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 2298 + 2299 + [[package]] 2300 + name = "windows_x86_64_gnu" 2301 + version = "0.48.5" 2302 + source = "registry+https://github.com/rust-lang/crates.io-index" 2303 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2304 + 2305 + [[package]] 2306 + name = "windows_x86_64_gnu" 2307 + version = "0.52.0" 2308 + source = "registry+https://github.com/rust-lang/crates.io-index" 2309 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 2310 + 2311 + [[package]] 2312 + name = "windows_x86_64_gnullvm" 2313 + version = "0.48.5" 2314 + source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2316 + 2317 + [[package]] 2318 + name = "windows_x86_64_gnullvm" 2319 + version = "0.52.0" 2320 + source = "registry+https://github.com/rust-lang/crates.io-index" 2321 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 2322 + 2323 + [[package]] 2324 + name = "windows_x86_64_msvc" 2325 + version = "0.48.5" 2326 + source = "registry+https://github.com/rust-lang/crates.io-index" 2327 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2328 + 2329 + [[package]] 2330 + name = "windows_x86_64_msvc" 2331 + version = "0.52.0" 2332 + source = "registry+https://github.com/rust-lang/crates.io-index" 2333 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 2334 + 2335 + [[package]] 2336 + name = "winreg" 2337 + version = "0.50.0" 2338 + source = "registry+https://github.com/rust-lang/crates.io-index" 2339 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 2340 + dependencies = [ 2341 + "cfg-if", 2342 + "windows-sys 0.48.0", 2343 + ] 2344 + 2345 + [[package]] 2346 + name = "xattr" 2347 + version = "1.2.0" 2348 + source = "registry+https://github.com/rust-lang/crates.io-index" 2349 + checksum = "914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1" 2350 + dependencies = [ 2351 + "libc", 2352 + "linux-raw-sys", 2353 + "rustix", 2354 + ]
+49
pkgs/by-name/cr/crunchy-cli/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , darwin 4 + , fetchFromGitHub 5 + , openssl 6 + , pkg-config 7 + , rustPlatform 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "crunchy-cli"; 12 + version = "3.2.5"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "crunchy-labs"; 16 + repo = "crunchy-cli"; 17 + rev = "v${version}"; 18 + hash = "sha256-hzmTwUd+bQwr+5UtXKMalJZUDxOC5nhXNTXbYZN8xtA="; 19 + }; 20 + 21 + cargoLock = { 22 + lockFile = ./Cargo.lock; 23 + outputHashes = { 24 + "native-tls-0.2.11" = "sha256-+NeXsxuThKNOzVLBItKcuTAM/0zR/BzJGMKkuq99gBM="; 25 + }; 26 + }; 27 + 28 + nativeBuildInputs = lib.optionals stdenv.isLinux [ 29 + pkg-config 30 + ]; 31 + 32 + buildInputs = lib.optionals stdenv.isLinux [ 33 + openssl 34 + ] ++ lib.optionals stdenv.isDarwin [ 35 + darwin.apple_sdk.frameworks.SystemConfiguration 36 + ]; 37 + 38 + env = { 39 + OPENSSL_NO_VENDOR = true; 40 + }; 41 + 42 + meta = with lib; { 43 + description = "Command-line downloader for Crunchyroll"; 44 + homepage = "https://github.com/crunchy-labs/crunchy-cli"; 45 + license = licenses.mit; 46 + maintainers = with maintainers; [ stepbrobd ]; 47 + mainProgram = "crunchy-cli"; 48 + }; 49 + }
+8 -4
pkgs/by-name/qu/quicktype/package.nix
··· 1 - { lib, buildNpmPackage, fetchFromGitHub, jq }: 2 3 buildNpmPackage rec { 4 pname = "quicktype"; 5 - version = "23.0.81"; # version from https://npm.im/quicktype 6 7 src = fetchFromGitHub { 8 owner = "glideapps"; 9 repo = "quicktype"; 10 - rev = "838c5e0e63a50d7c7790dc81118e664480fc4a80"; # version not tagged 11 - hash = "sha256-+VMkfkBSomxxlkuOeMqBCySe7VCx2K5bIdF/tmVgK/Y="; 12 }; 13 14 postPatch = '' ··· 20 postInstall = '' 21 mv packages/ $out/lib/node_modules/quicktype/ 22 ''; 23 24 meta = with lib; { 25 description = "Generate types and converters from JSON, Schema, and GraphQL";
··· 1 + { lib, buildNpmPackage, fetchFromGitHub, jq, quicktype, testers }: 2 3 buildNpmPackage rec { 4 pname = "quicktype"; 5 + version = "23.0.104"; # version from https://npm.im/quicktype 6 7 src = fetchFromGitHub { 8 owner = "glideapps"; 9 repo = "quicktype"; 10 + rev = "916cd94a9d4fdeab870b6a12f42ad43ebaedf314"; # version not tagged 11 + hash = "sha256-PI9YgFVy7Mlln9+7IAU9vzyvK606PuAJ32st3NDwXIw="; 12 }; 13 14 postPatch = '' ··· 20 postInstall = '' 21 mv packages/ $out/lib/node_modules/quicktype/ 22 ''; 23 + 24 + passthru.tests = { 25 + version = testers.testVersion { package = quicktype; }; 26 + }; 27 28 meta = with lib; { 29 description = "Generate types and converters from JSON, Schema, and GraphQL";
+5003
pkgs/by-name/uv/uv/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 = "ahash" 22 + version = "0.7.8" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 + dependencies = [ 26 + "getrandom", 27 + "once_cell", 28 + "version_check", 29 + ] 30 + 31 + [[package]] 32 + name = "aho-corasick" 33 + version = "1.1.2" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 36 + dependencies = [ 37 + "memchr", 38 + ] 39 + 40 + [[package]] 41 + name = "alloc-no-stdlib" 42 + version = "2.0.4" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 45 + 46 + [[package]] 47 + name = "alloc-stdlib" 48 + version = "0.2.2" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 51 + dependencies = [ 52 + "alloc-no-stdlib", 53 + ] 54 + 55 + [[package]] 56 + name = "android-tzdata" 57 + version = "0.1.1" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 60 + 61 + [[package]] 62 + name = "android_system_properties" 63 + version = "0.1.5" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 66 + dependencies = [ 67 + "libc", 68 + ] 69 + 70 + [[package]] 71 + name = "anes" 72 + version = "0.1.6" 73 + source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 75 + 76 + [[package]] 77 + name = "anstream" 78 + version = "0.6.11" 79 + source = "registry+https://github.com/rust-lang/crates.io-index" 80 + checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 81 + dependencies = [ 82 + "anstyle", 83 + "anstyle-parse", 84 + "anstyle-query", 85 + "anstyle-wincon", 86 + "colorchoice", 87 + "utf8parse", 88 + ] 89 + 90 + [[package]] 91 + name = "anstyle" 92 + version = "1.0.6" 93 + source = "registry+https://github.com/rust-lang/crates.io-index" 94 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 95 + 96 + [[package]] 97 + name = "anstyle-parse" 98 + version = "0.2.3" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 101 + dependencies = [ 102 + "utf8parse", 103 + ] 104 + 105 + [[package]] 106 + name = "anstyle-query" 107 + version = "1.0.2" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 110 + dependencies = [ 111 + "windows-sys 0.52.0", 112 + ] 113 + 114 + [[package]] 115 + name = "anstyle-wincon" 116 + version = "3.0.2" 117 + source = "registry+https://github.com/rust-lang/crates.io-index" 118 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 119 + dependencies = [ 120 + "anstyle", 121 + "windows-sys 0.52.0", 122 + ] 123 + 124 + [[package]] 125 + name = "anyhow" 126 + version = "1.0.79" 127 + source = "registry+https://github.com/rust-lang/crates.io-index" 128 + checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" 129 + 130 + [[package]] 131 + name = "arc-swap" 132 + version = "1.6.0" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 135 + 136 + [[package]] 137 + name = "arrayref" 138 + version = "0.3.7" 139 + source = "registry+https://github.com/rust-lang/crates.io-index" 140 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 141 + 142 + [[package]] 143 + name = "arrayvec" 144 + version = "0.7.4" 145 + source = "registry+https://github.com/rust-lang/crates.io-index" 146 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 147 + 148 + [[package]] 149 + name = "assert_cmd" 150 + version = "2.0.13" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467" 153 + dependencies = [ 154 + "anstyle", 155 + "bstr", 156 + "doc-comment", 157 + "predicates", 158 + "predicates-core", 159 + "predicates-tree", 160 + "wait-timeout", 161 + ] 162 + 163 + [[package]] 164 + name = "assert_fs" 165 + version = "1.1.1" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "2cd762e110c8ed629b11b6cde59458cc1c71de78ebbcc30099fc8e0403a2a2ec" 168 + dependencies = [ 169 + "anstyle", 170 + "doc-comment", 171 + "globwalk", 172 + "predicates", 173 + "predicates-core", 174 + "predicates-tree", 175 + "tempfile", 176 + ] 177 + 178 + [[package]] 179 + name = "async-compression" 180 + version = "0.4.6" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c" 183 + dependencies = [ 184 + "brotli", 185 + "flate2", 186 + "futures-core", 187 + "futures-io", 188 + "memchr", 189 + "pin-project-lite", 190 + "tokio", 191 + ] 192 + 193 + [[package]] 194 + name = "async-trait" 195 + version = "0.1.77" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" 198 + dependencies = [ 199 + "proc-macro2", 200 + "quote", 201 + "syn 2.0.48", 202 + ] 203 + 204 + [[package]] 205 + name = "async_http_range_reader" 206 + version = "0.5.0" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "ea8c52f8b749ec4e8665041001a31208afdae9ef88916d2edf1610deb8b3616e" 209 + dependencies = [ 210 + "bisection", 211 + "futures", 212 + "http-content-range", 213 + "itertools 0.12.1", 214 + "memmap2 0.9.4", 215 + "reqwest", 216 + "thiserror", 217 + "tokio", 218 + "tokio-stream", 219 + "tokio-util", 220 + "tracing", 221 + ] 222 + 223 + [[package]] 224 + name = "async_zip" 225 + version = "0.0.16" 226 + source = "git+https://github.com/charliermarsh/rs-async-zip?rev=d76801da0943de985254fc6255c0e476b57c5836#d76801da0943de985254fc6255c0e476b57c5836" 227 + dependencies = [ 228 + "async-compression", 229 + "crc32fast", 230 + "futures-lite", 231 + "pin-project", 232 + "thiserror", 233 + "tokio", 234 + "tokio-util", 235 + ] 236 + 237 + [[package]] 238 + name = "autocfg" 239 + version = "1.1.0" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 242 + 243 + [[package]] 244 + name = "backtrace" 245 + version = "0.3.69" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 248 + dependencies = [ 249 + "addr2line", 250 + "cc", 251 + "cfg-if", 252 + "libc", 253 + "miniz_oxide", 254 + "object", 255 + "rustc-demangle", 256 + ] 257 + 258 + [[package]] 259 + name = "backtrace-ext" 260 + version = "0.2.1" 261 + source = "registry+https://github.com/rust-lang/crates.io-index" 262 + checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50" 263 + dependencies = [ 264 + "backtrace", 265 + ] 266 + 267 + [[package]] 268 + name = "base64" 269 + version = "0.13.1" 270 + source = "registry+https://github.com/rust-lang/crates.io-index" 271 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 272 + 273 + [[package]] 274 + name = "base64" 275 + version = "0.21.7" 276 + source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 278 + 279 + [[package]] 280 + name = "bench" 281 + version = "0.0.0" 282 + dependencies = [ 283 + "criterion", 284 + "distribution-filename", 285 + "platform-tags", 286 + ] 287 + 288 + [[package]] 289 + name = "bisection" 290 + version = "0.1.0" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "021e079a1bab0ecce6cf4b4b74c0c37afa4a697136eb3b127875c84a8f04a8c3" 293 + 294 + [[package]] 295 + name = "bitflags" 296 + version = "1.3.2" 297 + source = "registry+https://github.com/rust-lang/crates.io-index" 298 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 299 + 300 + [[package]] 301 + name = "bitflags" 302 + version = "2.4.2" 303 + source = "registry+https://github.com/rust-lang/crates.io-index" 304 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 305 + 306 + [[package]] 307 + name = "bitvec" 308 + version = "1.0.1" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 311 + dependencies = [ 312 + "funty", 313 + "radium", 314 + "tap", 315 + "wyz", 316 + ] 317 + 318 + [[package]] 319 + name = "block-buffer" 320 + version = "0.10.4" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 323 + dependencies = [ 324 + "generic-array", 325 + ] 326 + 327 + [[package]] 328 + name = "brotli" 329 + version = "3.4.0" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 332 + dependencies = [ 333 + "alloc-no-stdlib", 334 + "alloc-stdlib", 335 + "brotli-decompressor", 336 + ] 337 + 338 + [[package]] 339 + name = "brotli-decompressor" 340 + version = "2.5.1" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 343 + dependencies = [ 344 + "alloc-no-stdlib", 345 + "alloc-stdlib", 346 + ] 347 + 348 + [[package]] 349 + name = "bstr" 350 + version = "1.9.0" 351 + source = "registry+https://github.com/rust-lang/crates.io-index" 352 + checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc" 353 + dependencies = [ 354 + "memchr", 355 + "regex-automata 0.4.5", 356 + "serde", 357 + ] 358 + 359 + [[package]] 360 + name = "bumpalo" 361 + version = "3.14.0" 362 + source = "registry+https://github.com/rust-lang/crates.io-index" 363 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 364 + 365 + [[package]] 366 + name = "bytecheck" 367 + version = "0.6.12" 368 + source = "registry+https://github.com/rust-lang/crates.io-index" 369 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 370 + dependencies = [ 371 + "bytecheck_derive", 372 + "ptr_meta", 373 + "simdutf8", 374 + ] 375 + 376 + [[package]] 377 + name = "bytecheck_derive" 378 + version = "0.6.12" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 381 + dependencies = [ 382 + "proc-macro2", 383 + "quote", 384 + "syn 1.0.109", 385 + ] 386 + 387 + [[package]] 388 + name = "bytemuck" 389 + version = "1.14.3" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" 392 + 393 + [[package]] 394 + name = "byteorder" 395 + version = "1.5.0" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 398 + 399 + [[package]] 400 + name = "bytes" 401 + version = "1.5.0" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 404 + 405 + [[package]] 406 + name = "cache-key" 407 + version = "0.0.1" 408 + dependencies = [ 409 + "hex", 410 + "seahash", 411 + "url", 412 + ] 413 + 414 + [[package]] 415 + name = "cachedir" 416 + version = "0.3.1" 417 + source = "registry+https://github.com/rust-lang/crates.io-index" 418 + checksum = "4703f3937077db8fa35bee3c8789343c1aec2585f0146f09d658d4ccc0e8d873" 419 + dependencies = [ 420 + "tempfile", 421 + ] 422 + 423 + [[package]] 424 + name = "camino" 425 + version = "1.1.6" 426 + source = "registry+https://github.com/rust-lang/crates.io-index" 427 + checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" 428 + dependencies = [ 429 + "serde", 430 + ] 431 + 432 + [[package]] 433 + name = "cargo-util" 434 + version = "0.2.9" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "74862c3c6e53a1c1f8f0178f9d38ab41e49746cd3a7cafc239b3d0248fd4e342" 437 + dependencies = [ 438 + "anyhow", 439 + "core-foundation", 440 + "filetime", 441 + "hex", 442 + "ignore", 443 + "jobserver", 444 + "libc", 445 + "miow", 446 + "same-file", 447 + "sha2", 448 + "shell-escape", 449 + "tempfile", 450 + "tracing", 451 + "walkdir", 452 + "windows-sys 0.52.0", 453 + ] 454 + 455 + [[package]] 456 + name = "cast" 457 + version = "0.3.0" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 460 + 461 + [[package]] 462 + name = "cc" 463 + version = "1.0.83" 464 + source = "registry+https://github.com/rust-lang/crates.io-index" 465 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 466 + dependencies = [ 467 + "jobserver", 468 + "libc", 469 + ] 470 + 471 + [[package]] 472 + name = "cfg-if" 473 + version = "1.0.0" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 476 + 477 + [[package]] 478 + name = "charset" 479 + version = "0.1.3" 480 + source = "registry+https://github.com/rust-lang/crates.io-index" 481 + checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46" 482 + dependencies = [ 483 + "base64 0.13.1", 484 + "encoding_rs", 485 + ] 486 + 487 + [[package]] 488 + name = "chrono" 489 + version = "0.4.34" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 492 + dependencies = [ 493 + "android-tzdata", 494 + "iana-time-zone", 495 + "js-sys", 496 + "num-traits", 497 + "serde", 498 + "wasm-bindgen", 499 + "windows-targets 0.52.0", 500 + ] 501 + 502 + [[package]] 503 + name = "ciborium" 504 + version = "0.2.2" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 507 + dependencies = [ 508 + "ciborium-io", 509 + "ciborium-ll", 510 + "serde", 511 + ] 512 + 513 + [[package]] 514 + name = "ciborium-io" 515 + version = "0.2.2" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 518 + 519 + [[package]] 520 + name = "ciborium-ll" 521 + version = "0.2.2" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 524 + dependencies = [ 525 + "ciborium-io", 526 + "half", 527 + ] 528 + 529 + [[package]] 530 + name = "clap" 531 + version = "4.5.0" 532 + source = "registry+https://github.com/rust-lang/crates.io-index" 533 + checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" 534 + dependencies = [ 535 + "clap_builder", 536 + "clap_derive", 537 + ] 538 + 539 + [[package]] 540 + name = "clap_builder" 541 + version = "4.5.0" 542 + source = "registry+https://github.com/rust-lang/crates.io-index" 543 + checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" 544 + dependencies = [ 545 + "anstream", 546 + "anstyle", 547 + "clap_lex", 548 + "strsim", 549 + ] 550 + 551 + [[package]] 552 + name = "clap_derive" 553 + version = "4.5.0" 554 + source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" 556 + dependencies = [ 557 + "heck", 558 + "proc-macro2", 559 + "quote", 560 + "syn 2.0.48", 561 + ] 562 + 563 + [[package]] 564 + name = "clap_lex" 565 + version = "0.7.0" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 568 + 569 + [[package]] 570 + name = "cmake" 571 + version = "0.1.50" 572 + source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 574 + dependencies = [ 575 + "cc", 576 + ] 577 + 578 + [[package]] 579 + name = "color_quant" 580 + version = "1.1.0" 581 + source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 583 + 584 + [[package]] 585 + name = "colorchoice" 586 + version = "1.0.0" 587 + source = "registry+https://github.com/rust-lang/crates.io-index" 588 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 589 + 590 + [[package]] 591 + name = "configparser" 592 + version = "3.0.4" 593 + source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "4ec6d3da8e550377a85339063af6e3735f4b1d9392108da4e083a1b3b9820288" 595 + 596 + [[package]] 597 + name = "console" 598 + version = "0.15.8" 599 + source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 601 + dependencies = [ 602 + "encode_unicode", 603 + "lazy_static", 604 + "libc", 605 + "unicode-width", 606 + "windows-sys 0.52.0", 607 + ] 608 + 609 + [[package]] 610 + name = "core-foundation" 611 + version = "0.9.4" 612 + source = "registry+https://github.com/rust-lang/crates.io-index" 613 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 614 + dependencies = [ 615 + "core-foundation-sys", 616 + "libc", 617 + ] 618 + 619 + [[package]] 620 + name = "core-foundation-sys" 621 + version = "0.8.6" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 624 + 625 + [[package]] 626 + name = "cpufeatures" 627 + version = "0.2.12" 628 + source = "registry+https://github.com/rust-lang/crates.io-index" 629 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 630 + dependencies = [ 631 + "libc", 632 + ] 633 + 634 + [[package]] 635 + name = "crc32fast" 636 + version = "1.4.0" 637 + source = "registry+https://github.com/rust-lang/crates.io-index" 638 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 639 + dependencies = [ 640 + "cfg-if", 641 + ] 642 + 643 + [[package]] 644 + name = "criterion" 645 + version = "0.5.1" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 648 + dependencies = [ 649 + "anes", 650 + "cast", 651 + "ciborium", 652 + "clap", 653 + "criterion-plot", 654 + "is-terminal", 655 + "itertools 0.10.5", 656 + "num-traits", 657 + "once_cell", 658 + "oorandom", 659 + "regex", 660 + "serde", 661 + "serde_derive", 662 + "serde_json", 663 + "tinytemplate", 664 + "walkdir", 665 + ] 666 + 667 + [[package]] 668 + name = "criterion-plot" 669 + version = "0.5.0" 670 + source = "registry+https://github.com/rust-lang/crates.io-index" 671 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 672 + dependencies = [ 673 + "cast", 674 + "itertools 0.10.5", 675 + ] 676 + 677 + [[package]] 678 + name = "crossbeam-deque" 679 + version = "0.8.5" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 682 + dependencies = [ 683 + "crossbeam-epoch", 684 + "crossbeam-utils", 685 + ] 686 + 687 + [[package]] 688 + name = "crossbeam-epoch" 689 + version = "0.9.18" 690 + source = "registry+https://github.com/rust-lang/crates.io-index" 691 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 692 + dependencies = [ 693 + "crossbeam-utils", 694 + ] 695 + 696 + [[package]] 697 + name = "crossbeam-utils" 698 + version = "0.8.19" 699 + source = "registry+https://github.com/rust-lang/crates.io-index" 700 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 701 + 702 + [[package]] 703 + name = "crunchy" 704 + version = "0.2.2" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 707 + 708 + [[package]] 709 + name = "crypto-common" 710 + version = "0.1.6" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 713 + dependencies = [ 714 + "generic-array", 715 + "typenum", 716 + ] 717 + 718 + [[package]] 719 + name = "csv" 720 + version = "1.3.0" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 723 + dependencies = [ 724 + "csv-core", 725 + "itoa", 726 + "ryu", 727 + "serde", 728 + ] 729 + 730 + [[package]] 731 + name = "csv-core" 732 + version = "0.1.11" 733 + source = "registry+https://github.com/rust-lang/crates.io-index" 734 + checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 735 + dependencies = [ 736 + "memchr", 737 + ] 738 + 739 + [[package]] 740 + name = "ctrlc" 741 + version = "3.4.2" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b" 744 + dependencies = [ 745 + "nix", 746 + "windows-sys 0.52.0", 747 + ] 748 + 749 + [[package]] 750 + name = "dashmap" 751 + version = "5.5.3" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 754 + dependencies = [ 755 + "cfg-if", 756 + "hashbrown 0.14.3", 757 + "lock_api", 758 + "once_cell", 759 + "parking_lot_core 0.9.9", 760 + ] 761 + 762 + [[package]] 763 + name = "data-encoding" 764 + version = "2.5.0" 765 + source = "registry+https://github.com/rust-lang/crates.io-index" 766 + checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 767 + 768 + [[package]] 769 + name = "data-url" 770 + version = "0.2.0" 771 + source = "registry+https://github.com/rust-lang/crates.io-index" 772 + checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" 773 + 774 + [[package]] 775 + name = "deranged" 776 + version = "0.3.11" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 779 + dependencies = [ 780 + "powerfmt", 781 + ] 782 + 783 + [[package]] 784 + name = "derivative" 785 + version = "2.2.0" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 788 + dependencies = [ 789 + "proc-macro2", 790 + "quote", 791 + "syn 1.0.109", 792 + ] 793 + 794 + [[package]] 795 + name = "difflib" 796 + version = "0.4.0" 797 + source = "registry+https://github.com/rust-lang/crates.io-index" 798 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 799 + 800 + [[package]] 801 + name = "digest" 802 + version = "0.10.7" 803 + source = "registry+https://github.com/rust-lang/crates.io-index" 804 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 805 + dependencies = [ 806 + "block-buffer", 807 + "crypto-common", 808 + "subtle", 809 + ] 810 + 811 + [[package]] 812 + name = "directories" 813 + version = "5.0.1" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" 816 + dependencies = [ 817 + "dirs-sys", 818 + ] 819 + 820 + [[package]] 821 + name = "dirs-sys" 822 + version = "0.4.1" 823 + source = "registry+https://github.com/rust-lang/crates.io-index" 824 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 825 + dependencies = [ 826 + "libc", 827 + "option-ext", 828 + "redox_users", 829 + "windows-sys 0.48.0", 830 + ] 831 + 832 + [[package]] 833 + name = "distribution-filename" 834 + version = "0.0.1" 835 + dependencies = [ 836 + "insta", 837 + "pep440_rs 0.4.0", 838 + "platform-tags", 839 + "rkyv", 840 + "serde", 841 + "thiserror", 842 + "url", 843 + "uv-normalize", 844 + ] 845 + 846 + [[package]] 847 + name = "distribution-types" 848 + version = "0.0.1" 849 + dependencies = [ 850 + "anyhow", 851 + "cache-key", 852 + "data-encoding", 853 + "distribution-filename", 854 + "fs-err", 855 + "once_cell", 856 + "pep440_rs 0.4.0", 857 + "pep508_rs", 858 + "platform-tags", 859 + "pypi-types", 860 + "rkyv", 861 + "rustc-hash", 862 + "serde", 863 + "serde_json", 864 + "sha2", 865 + "thiserror", 866 + "url", 867 + "uv-fs", 868 + "uv-git", 869 + "uv-normalize", 870 + ] 871 + 872 + [[package]] 873 + name = "doc-comment" 874 + version = "0.3.3" 875 + source = "registry+https://github.com/rust-lang/crates.io-index" 876 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 877 + 878 + [[package]] 879 + name = "dunce" 880 + version = "1.0.4" 881 + source = "registry+https://github.com/rust-lang/crates.io-index" 882 + checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 883 + 884 + [[package]] 885 + name = "either" 886 + version = "1.10.0" 887 + source = "registry+https://github.com/rust-lang/crates.io-index" 888 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 889 + 890 + [[package]] 891 + name = "encode_unicode" 892 + version = "0.3.6" 893 + source = "registry+https://github.com/rust-lang/crates.io-index" 894 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 895 + 896 + [[package]] 897 + name = "encoding_rs" 898 + version = "0.8.33" 899 + source = "registry+https://github.com/rust-lang/crates.io-index" 900 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 901 + dependencies = [ 902 + "cfg-if", 903 + ] 904 + 905 + [[package]] 906 + name = "equivalent" 907 + version = "1.0.1" 908 + source = "registry+https://github.com/rust-lang/crates.io-index" 909 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 910 + 911 + [[package]] 912 + name = "errno" 913 + version = "0.3.8" 914 + source = "registry+https://github.com/rust-lang/crates.io-index" 915 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 916 + dependencies = [ 917 + "libc", 918 + "windows-sys 0.52.0", 919 + ] 920 + 921 + [[package]] 922 + name = "fastrand" 923 + version = "2.0.1" 924 + source = "registry+https://github.com/rust-lang/crates.io-index" 925 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 926 + 927 + [[package]] 928 + name = "fdeflate" 929 + version = "0.3.4" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 932 + dependencies = [ 933 + "simd-adler32", 934 + ] 935 + 936 + [[package]] 937 + name = "filetime" 938 + version = "0.2.23" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 941 + dependencies = [ 942 + "cfg-if", 943 + "libc", 944 + "redox_syscall 0.4.1", 945 + "windows-sys 0.52.0", 946 + ] 947 + 948 + [[package]] 949 + name = "fixedbitset" 950 + version = "0.4.2" 951 + source = "registry+https://github.com/rust-lang/crates.io-index" 952 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 953 + 954 + [[package]] 955 + name = "flate2" 956 + version = "1.0.28" 957 + source = "registry+https://github.com/rust-lang/crates.io-index" 958 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 959 + dependencies = [ 960 + "crc32fast", 961 + "libz-ng-sys", 962 + "miniz_oxide", 963 + ] 964 + 965 + [[package]] 966 + name = "float-cmp" 967 + version = "0.9.0" 968 + source = "registry+https://github.com/rust-lang/crates.io-index" 969 + checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 970 + dependencies = [ 971 + "num-traits", 972 + ] 973 + 974 + [[package]] 975 + name = "fnv" 976 + version = "1.0.7" 977 + source = "registry+https://github.com/rust-lang/crates.io-index" 978 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 979 + 980 + [[package]] 981 + name = "fontconfig-parser" 982 + version = "0.5.6" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d" 985 + dependencies = [ 986 + "roxmltree 0.19.0", 987 + ] 988 + 989 + [[package]] 990 + name = "fontdb" 991 + version = "0.12.0" 992 + source = "registry+https://github.com/rust-lang/crates.io-index" 993 + checksum = "ff20bef7942a72af07104346154a70a70b089c572e454b41bef6eb6cb10e9c06" 994 + dependencies = [ 995 + "fontconfig-parser", 996 + "log", 997 + "memmap2 0.5.10", 998 + "ttf-parser", 999 + ] 1000 + 1001 + [[package]] 1002 + name = "form_urlencoded" 1003 + version = "1.2.1" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1006 + dependencies = [ 1007 + "percent-encoding", 1008 + ] 1009 + 1010 + [[package]] 1011 + name = "fs-err" 1012 + version = "2.11.0" 1013 + source = "registry+https://github.com/rust-lang/crates.io-index" 1014 + checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 1015 + dependencies = [ 1016 + "autocfg", 1017 + "tokio", 1018 + ] 1019 + 1020 + [[package]] 1021 + name = "fs2" 1022 + version = "0.4.3" 1023 + source = "registry+https://github.com/rust-lang/crates.io-index" 1024 + checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 1025 + dependencies = [ 1026 + "libc", 1027 + "winapi", 1028 + ] 1029 + 1030 + [[package]] 1031 + name = "funty" 1032 + version = "2.0.0" 1033 + source = "registry+https://github.com/rust-lang/crates.io-index" 1034 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1035 + 1036 + [[package]] 1037 + name = "futures" 1038 + version = "0.3.30" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1041 + dependencies = [ 1042 + "futures-channel", 1043 + "futures-core", 1044 + "futures-executor", 1045 + "futures-io", 1046 + "futures-sink", 1047 + "futures-task", 1048 + "futures-util", 1049 + ] 1050 + 1051 + [[package]] 1052 + name = "futures-channel" 1053 + version = "0.3.30" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1056 + dependencies = [ 1057 + "futures-core", 1058 + "futures-sink", 1059 + ] 1060 + 1061 + [[package]] 1062 + name = "futures-core" 1063 + version = "0.3.30" 1064 + source = "registry+https://github.com/rust-lang/crates.io-index" 1065 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1066 + 1067 + [[package]] 1068 + name = "futures-executor" 1069 + version = "0.3.30" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1072 + dependencies = [ 1073 + "futures-core", 1074 + "futures-task", 1075 + "futures-util", 1076 + ] 1077 + 1078 + [[package]] 1079 + name = "futures-io" 1080 + version = "0.3.30" 1081 + source = "registry+https://github.com/rust-lang/crates.io-index" 1082 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1083 + 1084 + [[package]] 1085 + name = "futures-lite" 1086 + version = "2.2.0" 1087 + source = "registry+https://github.com/rust-lang/crates.io-index" 1088 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 1089 + dependencies = [ 1090 + "fastrand", 1091 + "futures-core", 1092 + "futures-io", 1093 + "parking", 1094 + "pin-project-lite", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "futures-macro" 1099 + version = "0.3.30" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1102 + dependencies = [ 1103 + "proc-macro2", 1104 + "quote", 1105 + "syn 2.0.48", 1106 + ] 1107 + 1108 + [[package]] 1109 + name = "futures-sink" 1110 + version = "0.3.30" 1111 + source = "registry+https://github.com/rust-lang/crates.io-index" 1112 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1113 + 1114 + [[package]] 1115 + name = "futures-task" 1116 + version = "0.3.30" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1119 + 1120 + [[package]] 1121 + name = "futures-util" 1122 + version = "0.3.30" 1123 + source = "registry+https://github.com/rust-lang/crates.io-index" 1124 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1125 + dependencies = [ 1126 + "futures-channel", 1127 + "futures-core", 1128 + "futures-io", 1129 + "futures-macro", 1130 + "futures-sink", 1131 + "futures-task", 1132 + "memchr", 1133 + "pin-project-lite", 1134 + "pin-utils", 1135 + "slab", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "generic-array" 1140 + version = "0.14.7" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1143 + dependencies = [ 1144 + "typenum", 1145 + "version_check", 1146 + ] 1147 + 1148 + [[package]] 1149 + name = "getrandom" 1150 + version = "0.2.12" 1151 + source = "registry+https://github.com/rust-lang/crates.io-index" 1152 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1153 + dependencies = [ 1154 + "cfg-if", 1155 + "js-sys", 1156 + "libc", 1157 + "wasi", 1158 + "wasm-bindgen", 1159 + ] 1160 + 1161 + [[package]] 1162 + name = "gif" 1163 + version = "0.12.0" 1164 + source = "registry+https://github.com/rust-lang/crates.io-index" 1165 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 1166 + dependencies = [ 1167 + "color_quant", 1168 + "weezl", 1169 + ] 1170 + 1171 + [[package]] 1172 + name = "gimli" 1173 + version = "0.28.1" 1174 + source = "registry+https://github.com/rust-lang/crates.io-index" 1175 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1176 + 1177 + [[package]] 1178 + name = "git2" 1179 + version = "0.18.2" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "1b3ba52851e73b46a4c3df1d89343741112003f0f6f13beb0dfac9e457c3fdcd" 1182 + dependencies = [ 1183 + "bitflags 2.4.2", 1184 + "libc", 1185 + "libgit2-sys", 1186 + "log", 1187 + "openssl-probe", 1188 + "openssl-sys", 1189 + "url", 1190 + ] 1191 + 1192 + [[package]] 1193 + name = "glob" 1194 + version = "0.3.1" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1197 + 1198 + [[package]] 1199 + name = "globset" 1200 + version = "0.4.14" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 1203 + dependencies = [ 1204 + "aho-corasick", 1205 + "bstr", 1206 + "log", 1207 + "regex-automata 0.4.5", 1208 + "regex-syntax 0.8.2", 1209 + ] 1210 + 1211 + [[package]] 1212 + name = "globwalk" 1213 + version = "0.9.1" 1214 + source = "registry+https://github.com/rust-lang/crates.io-index" 1215 + checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757" 1216 + dependencies = [ 1217 + "bitflags 2.4.2", 1218 + "ignore", 1219 + "walkdir", 1220 + ] 1221 + 1222 + [[package]] 1223 + name = "goblin" 1224 + version = "0.8.0" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "bb07a4ffed2093b118a525b1d8f5204ae274faed5604537caf7135d0f18d9887" 1227 + dependencies = [ 1228 + "log", 1229 + "plain", 1230 + "scroll", 1231 + ] 1232 + 1233 + [[package]] 1234 + name = "gourgeist" 1235 + version = "0.0.4" 1236 + dependencies = [ 1237 + "anstream", 1238 + "camino", 1239 + "clap", 1240 + "directories", 1241 + "fs-err", 1242 + "platform-host", 1243 + "serde", 1244 + "serde_json", 1245 + "tempfile", 1246 + "thiserror", 1247 + "tracing", 1248 + "tracing-subscriber", 1249 + "uv-cache", 1250 + "uv-interpreter", 1251 + "which", 1252 + ] 1253 + 1254 + [[package]] 1255 + name = "h2" 1256 + version = "0.3.24" 1257 + source = "registry+https://github.com/rust-lang/crates.io-index" 1258 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 1259 + dependencies = [ 1260 + "bytes", 1261 + "fnv", 1262 + "futures-core", 1263 + "futures-sink", 1264 + "futures-util", 1265 + "http", 1266 + "indexmap 2.2.3", 1267 + "slab", 1268 + "tokio", 1269 + "tokio-util", 1270 + "tracing", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "half" 1275 + version = "2.3.1" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 1278 + dependencies = [ 1279 + "cfg-if", 1280 + "crunchy", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "hashbrown" 1285 + version = "0.12.3" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1288 + dependencies = [ 1289 + "ahash", 1290 + ] 1291 + 1292 + [[package]] 1293 + name = "hashbrown" 1294 + version = "0.14.3" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1297 + 1298 + [[package]] 1299 + name = "heck" 1300 + version = "0.4.1" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1303 + 1304 + [[package]] 1305 + name = "hermit-abi" 1306 + version = "0.3.6" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd" 1309 + 1310 + [[package]] 1311 + name = "hex" 1312 + version = "0.4.3" 1313 + source = "registry+https://github.com/rust-lang/crates.io-index" 1314 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1315 + 1316 + [[package]] 1317 + name = "hmac" 1318 + version = "0.12.1" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1321 + dependencies = [ 1322 + "digest", 1323 + ] 1324 + 1325 + [[package]] 1326 + name = "home" 1327 + version = "0.5.9" 1328 + source = "registry+https://github.com/rust-lang/crates.io-index" 1329 + checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1330 + dependencies = [ 1331 + "windows-sys 0.52.0", 1332 + ] 1333 + 1334 + [[package]] 1335 + name = "html-escape" 1336 + version = "0.2.13" 1337 + source = "registry+https://github.com/rust-lang/crates.io-index" 1338 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1339 + dependencies = [ 1340 + "utf8-width", 1341 + ] 1342 + 1343 + [[package]] 1344 + name = "http" 1345 + version = "0.2.11" 1346 + source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1348 + dependencies = [ 1349 + "bytes", 1350 + "fnv", 1351 + "itoa", 1352 + ] 1353 + 1354 + [[package]] 1355 + name = "http-body" 1356 + version = "0.4.6" 1357 + source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1359 + dependencies = [ 1360 + "bytes", 1361 + "http", 1362 + "pin-project-lite", 1363 + ] 1364 + 1365 + [[package]] 1366 + name = "http-content-range" 1367 + version = "0.1.2" 1368 + source = "registry+https://github.com/rust-lang/crates.io-index" 1369 + checksum = "9f0d1a8ef218a86416107794b34cc446958d9203556c312bb41eab4c924c1d2e" 1370 + 1371 + [[package]] 1372 + name = "httparse" 1373 + version = "1.8.0" 1374 + source = "registry+https://github.com/rust-lang/crates.io-index" 1375 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1376 + 1377 + [[package]] 1378 + name = "httpdate" 1379 + version = "1.0.3" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1382 + 1383 + [[package]] 1384 + name = "hyper" 1385 + version = "0.14.28" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 1388 + dependencies = [ 1389 + "bytes", 1390 + "futures-channel", 1391 + "futures-core", 1392 + "futures-util", 1393 + "h2", 1394 + "http", 1395 + "http-body", 1396 + "httparse", 1397 + "httpdate", 1398 + "itoa", 1399 + "pin-project-lite", 1400 + "socket2", 1401 + "tokio", 1402 + "tower-service", 1403 + "tracing", 1404 + "want", 1405 + ] 1406 + 1407 + [[package]] 1408 + name = "hyper-rustls" 1409 + version = "0.24.2" 1410 + source = "registry+https://github.com/rust-lang/crates.io-index" 1411 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 1412 + dependencies = [ 1413 + "futures-util", 1414 + "http", 1415 + "hyper", 1416 + "rustls", 1417 + "tokio", 1418 + "tokio-rustls", 1419 + ] 1420 + 1421 + [[package]] 1422 + name = "iana-time-zone" 1423 + version = "0.1.60" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 1426 + dependencies = [ 1427 + "android_system_properties", 1428 + "core-foundation-sys", 1429 + "iana-time-zone-haiku", 1430 + "js-sys", 1431 + "wasm-bindgen", 1432 + "windows-core", 1433 + ] 1434 + 1435 + [[package]] 1436 + name = "iana-time-zone-haiku" 1437 + version = "0.1.2" 1438 + source = "registry+https://github.com/rust-lang/crates.io-index" 1439 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1440 + dependencies = [ 1441 + "cc", 1442 + ] 1443 + 1444 + [[package]] 1445 + name = "idna" 1446 + version = "0.5.0" 1447 + source = "registry+https://github.com/rust-lang/crates.io-index" 1448 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1449 + dependencies = [ 1450 + "unicode-bidi", 1451 + "unicode-normalization", 1452 + ] 1453 + 1454 + [[package]] 1455 + name = "ignore" 1456 + version = "0.4.22" 1457 + source = "registry+https://github.com/rust-lang/crates.io-index" 1458 + checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 1459 + dependencies = [ 1460 + "crossbeam-deque", 1461 + "globset", 1462 + "log", 1463 + "memchr", 1464 + "regex-automata 0.4.5", 1465 + "same-file", 1466 + "walkdir", 1467 + "winapi-util", 1468 + ] 1469 + 1470 + [[package]] 1471 + name = "imagesize" 1472 + version = "0.11.0" 1473 + source = "registry+https://github.com/rust-lang/crates.io-index" 1474 + checksum = "b72ad49b554c1728b1e83254a1b1565aea4161e28dabbfa171fc15fe62299caf" 1475 + 1476 + [[package]] 1477 + name = "indexmap" 1478 + version = "1.9.3" 1479 + source = "registry+https://github.com/rust-lang/crates.io-index" 1480 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1481 + dependencies = [ 1482 + "autocfg", 1483 + "hashbrown 0.12.3", 1484 + ] 1485 + 1486 + [[package]] 1487 + name = "indexmap" 1488 + version = "2.2.3" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177" 1491 + dependencies = [ 1492 + "equivalent", 1493 + "hashbrown 0.14.3", 1494 + "serde", 1495 + ] 1496 + 1497 + [[package]] 1498 + name = "indicatif" 1499 + version = "0.17.8" 1500 + source = "registry+https://github.com/rust-lang/crates.io-index" 1501 + checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 1502 + dependencies = [ 1503 + "console", 1504 + "instant", 1505 + "number_prefix", 1506 + "portable-atomic", 1507 + "unicode-width", 1508 + "vt100", 1509 + ] 1510 + 1511 + [[package]] 1512 + name = "indoc" 1513 + version = "2.0.4" 1514 + source = "registry+https://github.com/rust-lang/crates.io-index" 1515 + checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" 1516 + 1517 + [[package]] 1518 + name = "insta" 1519 + version = "1.34.0" 1520 + source = "registry+https://github.com/rust-lang/crates.io-index" 1521 + checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" 1522 + dependencies = [ 1523 + "console", 1524 + "lazy_static", 1525 + "linked-hash-map", 1526 + "regex", 1527 + "similar", 1528 + "yaml-rust", 1529 + ] 1530 + 1531 + [[package]] 1532 + name = "install-wheel-rs" 1533 + version = "0.0.1" 1534 + dependencies = [ 1535 + "clap", 1536 + "configparser", 1537 + "csv", 1538 + "data-encoding", 1539 + "distribution-filename", 1540 + "fs-err", 1541 + "fs2", 1542 + "goblin", 1543 + "indoc", 1544 + "mailparse", 1545 + "once_cell", 1546 + "pep440_rs 0.4.0", 1547 + "platform-host", 1548 + "platform-info", 1549 + "plist", 1550 + "pyo3", 1551 + "pypi-types", 1552 + "rayon", 1553 + "reflink-copy", 1554 + "regex", 1555 + "rustc-hash", 1556 + "serde", 1557 + "serde_json", 1558 + "sha2", 1559 + "target-lexicon", 1560 + "tempfile", 1561 + "thiserror", 1562 + "tracing", 1563 + "tracing-subscriber", 1564 + "url", 1565 + "uv-fs", 1566 + "uv-normalize", 1567 + "walkdir", 1568 + "zip", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "instant" 1573 + version = "0.1.12" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1576 + dependencies = [ 1577 + "cfg-if", 1578 + "js-sys", 1579 + "wasm-bindgen", 1580 + "web-sys", 1581 + ] 1582 + 1583 + [[package]] 1584 + name = "ipnet" 1585 + version = "2.9.0" 1586 + source = "registry+https://github.com/rust-lang/crates.io-index" 1587 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1588 + 1589 + [[package]] 1590 + name = "is-terminal" 1591 + version = "0.4.12" 1592 + source = "registry+https://github.com/rust-lang/crates.io-index" 1593 + checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 1594 + dependencies = [ 1595 + "hermit-abi", 1596 + "libc", 1597 + "windows-sys 0.52.0", 1598 + ] 1599 + 1600 + [[package]] 1601 + name = "is_ci" 1602 + version = "1.2.0" 1603 + source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 1605 + 1606 + [[package]] 1607 + name = "itertools" 1608 + version = "0.10.5" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1611 + dependencies = [ 1612 + "either", 1613 + ] 1614 + 1615 + [[package]] 1616 + name = "itertools" 1617 + version = "0.12.1" 1618 + source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1620 + dependencies = [ 1621 + "either", 1622 + ] 1623 + 1624 + [[package]] 1625 + name = "itoa" 1626 + version = "1.0.10" 1627 + source = "registry+https://github.com/rust-lang/crates.io-index" 1628 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 1629 + 1630 + [[package]] 1631 + name = "jobserver" 1632 + version = "0.1.28" 1633 + source = "registry+https://github.com/rust-lang/crates.io-index" 1634 + checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" 1635 + dependencies = [ 1636 + "libc", 1637 + ] 1638 + 1639 + [[package]] 1640 + name = "jpeg-decoder" 1641 + version = "0.3.1" 1642 + source = "registry+https://github.com/rust-lang/crates.io-index" 1643 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 1644 + 1645 + [[package]] 1646 + name = "js-sys" 1647 + version = "0.3.68" 1648 + source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 1650 + dependencies = [ 1651 + "wasm-bindgen", 1652 + ] 1653 + 1654 + [[package]] 1655 + name = "junction" 1656 + version = "1.0.0" 1657 + source = "registry+https://github.com/rust-lang/crates.io-index" 1658 + checksum = "ca39ef0d69b18e6a2fd14c2f0a1d593200f4a4ed949b240b5917ab51fac754cb" 1659 + dependencies = [ 1660 + "scopeguard", 1661 + "winapi", 1662 + ] 1663 + 1664 + [[package]] 1665 + name = "kurbo" 1666 + version = "0.8.3" 1667 + source = "registry+https://github.com/rust-lang/crates.io-index" 1668 + checksum = "7a53776d271cfb873b17c618af0298445c88afc52837f3e948fa3fafd131f449" 1669 + dependencies = [ 1670 + "arrayvec", 1671 + ] 1672 + 1673 + [[package]] 1674 + name = "kurbo" 1675 + version = "0.9.5" 1676 + source = "registry+https://github.com/rust-lang/crates.io-index" 1677 + checksum = "bd85a5776cd9500c2e2059c8c76c3b01528566b7fcbaf8098b55a33fc298849b" 1678 + dependencies = [ 1679 + "arrayvec", 1680 + ] 1681 + 1682 + [[package]] 1683 + name = "lazy_static" 1684 + version = "1.4.0" 1685 + source = "registry+https://github.com/rust-lang/crates.io-index" 1686 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1687 + 1688 + [[package]] 1689 + name = "libc" 1690 + version = "0.2.153" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 1693 + 1694 + [[package]] 1695 + name = "libgit2-sys" 1696 + version = "0.16.2+1.7.2" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "ee4126d8b4ee5c9d9ea891dd875cfdc1e9d0950437179104b183d7d8a74d24e8" 1699 + dependencies = [ 1700 + "cc", 1701 + "libc", 1702 + "libssh2-sys", 1703 + "libz-sys", 1704 + "openssl-sys", 1705 + "pkg-config", 1706 + ] 1707 + 1708 + [[package]] 1709 + name = "libmimalloc-sys" 1710 + version = "0.1.35" 1711 + source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664" 1713 + dependencies = [ 1714 + "cc", 1715 + "libc", 1716 + ] 1717 + 1718 + [[package]] 1719 + name = "libredox" 1720 + version = "0.0.1" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 1723 + dependencies = [ 1724 + "bitflags 2.4.2", 1725 + "libc", 1726 + "redox_syscall 0.4.1", 1727 + ] 1728 + 1729 + [[package]] 1730 + name = "libssh2-sys" 1731 + version = "0.3.0" 1732 + source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" 1734 + dependencies = [ 1735 + "cc", 1736 + "libc", 1737 + "libz-sys", 1738 + "openssl-sys", 1739 + "pkg-config", 1740 + "vcpkg", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "libz-ng-sys" 1745 + version = "1.1.15" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "c6409efc61b12687963e602df8ecf70e8ddacf95bc6576bcf16e3ac6328083c5" 1748 + dependencies = [ 1749 + "cmake", 1750 + "libc", 1751 + ] 1752 + 1753 + [[package]] 1754 + name = "libz-sys" 1755 + version = "1.1.15" 1756 + source = "registry+https://github.com/rust-lang/crates.io-index" 1757 + checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" 1758 + dependencies = [ 1759 + "cc", 1760 + "libc", 1761 + "pkg-config", 1762 + "vcpkg", 1763 + ] 1764 + 1765 + [[package]] 1766 + name = "line-wrap" 1767 + version = "0.1.1" 1768 + source = "registry+https://github.com/rust-lang/crates.io-index" 1769 + checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1770 + dependencies = [ 1771 + "safemem", 1772 + ] 1773 + 1774 + [[package]] 1775 + name = "linked-hash-map" 1776 + version = "0.5.6" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1779 + 1780 + [[package]] 1781 + name = "linux-raw-sys" 1782 + version = "0.4.13" 1783 + source = "registry+https://github.com/rust-lang/crates.io-index" 1784 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 1785 + 1786 + [[package]] 1787 + name = "lock_api" 1788 + version = "0.4.11" 1789 + source = "registry+https://github.com/rust-lang/crates.io-index" 1790 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1791 + dependencies = [ 1792 + "autocfg", 1793 + "scopeguard", 1794 + ] 1795 + 1796 + [[package]] 1797 + name = "log" 1798 + version = "0.4.20" 1799 + source = "registry+https://github.com/rust-lang/crates.io-index" 1800 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1801 + 1802 + [[package]] 1803 + name = "mailparse" 1804 + version = "0.14.1" 1805 + source = "registry+https://github.com/rust-lang/crates.io-index" 1806 + checksum = "2d096594926cab442e054e047eb8c1402f7d5b2272573b97ba68aa40629f9757" 1807 + dependencies = [ 1808 + "charset", 1809 + "data-encoding", 1810 + "quoted_printable", 1811 + ] 1812 + 1813 + [[package]] 1814 + name = "matchers" 1815 + version = "0.1.0" 1816 + source = "registry+https://github.com/rust-lang/crates.io-index" 1817 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1818 + dependencies = [ 1819 + "regex-automata 0.1.10", 1820 + ] 1821 + 1822 + [[package]] 1823 + name = "memchr" 1824 + version = "2.7.1" 1825 + source = "registry+https://github.com/rust-lang/crates.io-index" 1826 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 1827 + 1828 + [[package]] 1829 + name = "memmap2" 1830 + version = "0.5.10" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1833 + dependencies = [ 1834 + "libc", 1835 + ] 1836 + 1837 + [[package]] 1838 + name = "memmap2" 1839 + version = "0.9.4" 1840 + source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1842 + dependencies = [ 1843 + "libc", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "memoffset" 1848 + version = "0.9.0" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1851 + dependencies = [ 1852 + "autocfg", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "miette" 1857 + version = "6.0.1" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "337e1043bbc086dac9d9674983bef52ac991ce150e09b5b8e35c5a73dd83f66c" 1860 + dependencies = [ 1861 + "backtrace", 1862 + "backtrace-ext", 1863 + "miette-derive", 1864 + "owo-colors 3.5.0", 1865 + "supports-color", 1866 + "supports-hyperlinks", 1867 + "supports-unicode", 1868 + "terminal_size", 1869 + "textwrap", 1870 + "thiserror", 1871 + "unicode-width", 1872 + ] 1873 + 1874 + [[package]] 1875 + name = "miette-derive" 1876 + version = "6.0.1" 1877 + source = "registry+https://github.com/rust-lang/crates.io-index" 1878 + checksum = "71e622f2a0dd84cbca79bc6c3c33f4fd7dc69faf992216516aacc1d136102800" 1879 + dependencies = [ 1880 + "proc-macro2", 1881 + "quote", 1882 + "syn 2.0.48", 1883 + ] 1884 + 1885 + [[package]] 1886 + name = "mimalloc" 1887 + version = "0.1.39" 1888 + source = "registry+https://github.com/rust-lang/crates.io-index" 1889 + checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c" 1890 + dependencies = [ 1891 + "libmimalloc-sys", 1892 + ] 1893 + 1894 + [[package]] 1895 + name = "mime" 1896 + version = "0.3.17" 1897 + source = "registry+https://github.com/rust-lang/crates.io-index" 1898 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1899 + 1900 + [[package]] 1901 + name = "mime_guess" 1902 + version = "2.0.4" 1903 + source = "registry+https://github.com/rust-lang/crates.io-index" 1904 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1905 + dependencies = [ 1906 + "mime", 1907 + "unicase", 1908 + ] 1909 + 1910 + [[package]] 1911 + name = "miniz_oxide" 1912 + version = "0.7.2" 1913 + source = "registry+https://github.com/rust-lang/crates.io-index" 1914 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1915 + dependencies = [ 1916 + "adler", 1917 + "simd-adler32", 1918 + ] 1919 + 1920 + [[package]] 1921 + name = "mio" 1922 + version = "0.8.10" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 1925 + dependencies = [ 1926 + "libc", 1927 + "wasi", 1928 + "windows-sys 0.48.0", 1929 + ] 1930 + 1931 + [[package]] 1932 + name = "miow" 1933 + version = "0.6.0" 1934 + source = "registry+https://github.com/rust-lang/crates.io-index" 1935 + checksum = "359f76430b20a79f9e20e115b3428614e654f04fab314482fc0fda0ebd3c6044" 1936 + dependencies = [ 1937 + "windows-sys 0.48.0", 1938 + ] 1939 + 1940 + [[package]] 1941 + name = "nanoid" 1942 + version = "0.4.0" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8" 1945 + dependencies = [ 1946 + "rand", 1947 + ] 1948 + 1949 + [[package]] 1950 + name = "nix" 1951 + version = "0.27.1" 1952 + source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 1954 + dependencies = [ 1955 + "bitflags 2.4.2", 1956 + "cfg-if", 1957 + "libc", 1958 + ] 1959 + 1960 + [[package]] 1961 + name = "normalize-line-endings" 1962 + version = "0.3.0" 1963 + source = "registry+https://github.com/rust-lang/crates.io-index" 1964 + checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 1965 + 1966 + [[package]] 1967 + name = "nu-ansi-term" 1968 + version = "0.46.0" 1969 + source = "registry+https://github.com/rust-lang/crates.io-index" 1970 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1971 + dependencies = [ 1972 + "overload", 1973 + "winapi", 1974 + ] 1975 + 1976 + [[package]] 1977 + name = "nu-ansi-term" 1978 + version = "0.49.0" 1979 + source = "registry+https://github.com/rust-lang/crates.io-index" 1980 + checksum = "c073d3c1930d0751774acf49e66653acecb416c3a54c6ec095a9b11caddb5a68" 1981 + dependencies = [ 1982 + "windows-sys 0.48.0", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "num-conv" 1987 + version = "0.1.0" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1990 + 1991 + [[package]] 1992 + name = "num-traits" 1993 + version = "0.2.18" 1994 + source = "registry+https://github.com/rust-lang/crates.io-index" 1995 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1996 + dependencies = [ 1997 + "autocfg", 1998 + ] 1999 + 2000 + [[package]] 2001 + name = "num_cpus" 2002 + version = "1.16.0" 2003 + source = "registry+https://github.com/rust-lang/crates.io-index" 2004 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2005 + dependencies = [ 2006 + "hermit-abi", 2007 + "libc", 2008 + ] 2009 + 2010 + [[package]] 2011 + name = "number_prefix" 2012 + version = "0.4.0" 2013 + source = "registry+https://github.com/rust-lang/crates.io-index" 2014 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2015 + 2016 + [[package]] 2017 + name = "object" 2018 + version = "0.32.2" 2019 + source = "registry+https://github.com/rust-lang/crates.io-index" 2020 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2021 + dependencies = [ 2022 + "memchr", 2023 + ] 2024 + 2025 + [[package]] 2026 + name = "once-map" 2027 + version = "0.0.1" 2028 + dependencies = [ 2029 + "dashmap", 2030 + "tokio", 2031 + ] 2032 + 2033 + [[package]] 2034 + name = "once_cell" 2035 + version = "1.19.0" 2036 + source = "registry+https://github.com/rust-lang/crates.io-index" 2037 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2038 + 2039 + [[package]] 2040 + name = "oorandom" 2041 + version = "11.1.3" 2042 + source = "registry+https://github.com/rust-lang/crates.io-index" 2043 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 2044 + 2045 + [[package]] 2046 + name = "openssl-probe" 2047 + version = "0.1.5" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2050 + 2051 + [[package]] 2052 + name = "openssl-src" 2053 + version = "300.2.3+3.2.1" 2054 + source = "registry+https://github.com/rust-lang/crates.io-index" 2055 + checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843" 2056 + dependencies = [ 2057 + "cc", 2058 + ] 2059 + 2060 + [[package]] 2061 + name = "openssl-sys" 2062 + version = "0.9.99" 2063 + source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae" 2065 + dependencies = [ 2066 + "cc", 2067 + "libc", 2068 + "openssl-src", 2069 + "pkg-config", 2070 + "vcpkg", 2071 + ] 2072 + 2073 + [[package]] 2074 + name = "option-ext" 2075 + version = "0.2.0" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2078 + 2079 + [[package]] 2080 + name = "overload" 2081 + version = "0.1.1" 2082 + source = "registry+https://github.com/rust-lang/crates.io-index" 2083 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2084 + 2085 + [[package]] 2086 + name = "owo-colors" 2087 + version = "3.5.0" 2088 + source = "registry+https://github.com/rust-lang/crates.io-index" 2089 + checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 2090 + 2091 + [[package]] 2092 + name = "owo-colors" 2093 + version = "4.0.0" 2094 + source = "registry+https://github.com/rust-lang/crates.io-index" 2095 + checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" 2096 + 2097 + [[package]] 2098 + name = "parking" 2099 + version = "2.2.0" 2100 + source = "registry+https://github.com/rust-lang/crates.io-index" 2101 + checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2102 + 2103 + [[package]] 2104 + name = "parking_lot" 2105 + version = "0.11.2" 2106 + source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 2108 + dependencies = [ 2109 + "instant", 2110 + "lock_api", 2111 + "parking_lot_core 0.8.6", 2112 + ] 2113 + 2114 + [[package]] 2115 + name = "parking_lot" 2116 + version = "0.12.1" 2117 + source = "registry+https://github.com/rust-lang/crates.io-index" 2118 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2119 + dependencies = [ 2120 + "lock_api", 2121 + "parking_lot_core 0.9.9", 2122 + ] 2123 + 2124 + [[package]] 2125 + name = "parking_lot_core" 2126 + version = "0.8.6" 2127 + source = "registry+https://github.com/rust-lang/crates.io-index" 2128 + checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 2129 + dependencies = [ 2130 + "cfg-if", 2131 + "instant", 2132 + "libc", 2133 + "redox_syscall 0.2.16", 2134 + "smallvec", 2135 + "winapi", 2136 + ] 2137 + 2138 + [[package]] 2139 + name = "parking_lot_core" 2140 + version = "0.9.9" 2141 + source = "registry+https://github.com/rust-lang/crates.io-index" 2142 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2143 + dependencies = [ 2144 + "cfg-if", 2145 + "libc", 2146 + "redox_syscall 0.4.1", 2147 + "smallvec", 2148 + "windows-targets 0.48.5", 2149 + ] 2150 + 2151 + [[package]] 2152 + name = "paste" 2153 + version = "1.0.14" 2154 + source = "registry+https://github.com/rust-lang/crates.io-index" 2155 + checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2156 + 2157 + [[package]] 2158 + name = "pep440_rs" 2159 + version = "0.3.12" 2160 + source = "registry+https://github.com/rust-lang/crates.io-index" 2161 + checksum = "887f66cc62717ea72caac4f1eb4e6f392224da3ffff3f40ec13ab427802746d6" 2162 + dependencies = [ 2163 + "lazy_static", 2164 + "regex", 2165 + "serde", 2166 + "unicode-width", 2167 + ] 2168 + 2169 + [[package]] 2170 + name = "pep440_rs" 2171 + version = "0.4.0" 2172 + dependencies = [ 2173 + "indoc", 2174 + "once_cell", 2175 + "pubgrub", 2176 + "pyo3", 2177 + "rkyv", 2178 + "serde", 2179 + "tracing", 2180 + "unicode-width", 2181 + "unscanny", 2182 + ] 2183 + 2184 + [[package]] 2185 + name = "pep508_rs" 2186 + version = "0.2.3" 2187 + dependencies = [ 2188 + "derivative", 2189 + "indoc", 2190 + "log", 2191 + "once_cell", 2192 + "pep440_rs 0.4.0", 2193 + "pyo3", 2194 + "pyo3-log", 2195 + "regex", 2196 + "rkyv", 2197 + "serde", 2198 + "serde_json", 2199 + "testing_logger", 2200 + "thiserror", 2201 + "tracing", 2202 + "unicode-width", 2203 + "url", 2204 + "uv-fs", 2205 + "uv-normalize", 2206 + ] 2207 + 2208 + [[package]] 2209 + name = "percent-encoding" 2210 + version = "2.3.1" 2211 + source = "registry+https://github.com/rust-lang/crates.io-index" 2212 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2213 + 2214 + [[package]] 2215 + name = "petgraph" 2216 + version = "0.6.4" 2217 + source = "registry+https://github.com/rust-lang/crates.io-index" 2218 + checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 2219 + dependencies = [ 2220 + "fixedbitset", 2221 + "indexmap 2.2.3", 2222 + ] 2223 + 2224 + [[package]] 2225 + name = "pico-args" 2226 + version = "0.5.0" 2227 + source = "registry+https://github.com/rust-lang/crates.io-index" 2228 + checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 2229 + 2230 + [[package]] 2231 + name = "pin-project" 2232 + version = "1.1.4" 2233 + source = "registry+https://github.com/rust-lang/crates.io-index" 2234 + checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0" 2235 + dependencies = [ 2236 + "pin-project-internal", 2237 + ] 2238 + 2239 + [[package]] 2240 + name = "pin-project-internal" 2241 + version = "1.1.4" 2242 + source = "registry+https://github.com/rust-lang/crates.io-index" 2243 + checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690" 2244 + dependencies = [ 2245 + "proc-macro2", 2246 + "quote", 2247 + "syn 2.0.48", 2248 + ] 2249 + 2250 + [[package]] 2251 + name = "pin-project-lite" 2252 + version = "0.2.13" 2253 + source = "registry+https://github.com/rust-lang/crates.io-index" 2254 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2255 + 2256 + [[package]] 2257 + name = "pin-utils" 2258 + version = "0.1.0" 2259 + source = "registry+https://github.com/rust-lang/crates.io-index" 2260 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2261 + 2262 + [[package]] 2263 + name = "pkg-config" 2264 + version = "0.3.30" 2265 + source = "registry+https://github.com/rust-lang/crates.io-index" 2266 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 2267 + 2268 + [[package]] 2269 + name = "plain" 2270 + version = "0.2.3" 2271 + source = "registry+https://github.com/rust-lang/crates.io-index" 2272 + checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 2273 + 2274 + [[package]] 2275 + name = "platform-host" 2276 + version = "0.0.1" 2277 + dependencies = [ 2278 + "fs-err", 2279 + "goblin", 2280 + "once_cell", 2281 + "platform-info", 2282 + "plist", 2283 + "regex", 2284 + "serde", 2285 + "target-lexicon", 2286 + "thiserror", 2287 + "tracing", 2288 + ] 2289 + 2290 + [[package]] 2291 + name = "platform-info" 2292 + version = "2.0.2" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "d6259c4860e53bf665016f1b2f46a8859cadfa717581dc9d597ae4069de6300f" 2295 + dependencies = [ 2296 + "libc", 2297 + "winapi", 2298 + ] 2299 + 2300 + [[package]] 2301 + name = "platform-tags" 2302 + version = "0.0.1" 2303 + dependencies = [ 2304 + "platform-host", 2305 + "rustc-hash", 2306 + "thiserror", 2307 + ] 2308 + 2309 + [[package]] 2310 + name = "plist" 2311 + version = "1.6.0" 2312 + source = "registry+https://github.com/rust-lang/crates.io-index" 2313 + checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef" 2314 + dependencies = [ 2315 + "base64 0.21.7", 2316 + "indexmap 2.2.3", 2317 + "line-wrap", 2318 + "quick-xml", 2319 + "serde", 2320 + "time", 2321 + ] 2322 + 2323 + [[package]] 2324 + name = "png" 2325 + version = "0.17.11" 2326 + source = "registry+https://github.com/rust-lang/crates.io-index" 2327 + checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 2328 + dependencies = [ 2329 + "bitflags 1.3.2", 2330 + "crc32fast", 2331 + "fdeflate", 2332 + "flate2", 2333 + "miniz_oxide", 2334 + ] 2335 + 2336 + [[package]] 2337 + name = "poloto" 2338 + version = "19.1.2" 2339 + source = "registry+https://github.com/rust-lang/crates.io-index" 2340 + checksum = "164dbd541c9832e92fa34452e9c2e98b515a548a3f8549fb2402fe1cd5e46b96" 2341 + dependencies = [ 2342 + "tagu", 2343 + ] 2344 + 2345 + [[package]] 2346 + name = "portable-atomic" 2347 + version = "1.6.0" 2348 + source = "registry+https://github.com/rust-lang/crates.io-index" 2349 + checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 2350 + 2351 + [[package]] 2352 + name = "powerfmt" 2353 + version = "0.2.0" 2354 + source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2356 + 2357 + [[package]] 2358 + name = "ppv-lite86" 2359 + version = "0.2.17" 2360 + source = "registry+https://github.com/rust-lang/crates.io-index" 2361 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2362 + 2363 + [[package]] 2364 + name = "predicates" 2365 + version = "3.1.0" 2366 + source = "registry+https://github.com/rust-lang/crates.io-index" 2367 + checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" 2368 + dependencies = [ 2369 + "anstyle", 2370 + "difflib", 2371 + "float-cmp", 2372 + "normalize-line-endings", 2373 + "predicates-core", 2374 + "regex", 2375 + ] 2376 + 2377 + [[package]] 2378 + name = "predicates-core" 2379 + version = "1.0.6" 2380 + source = "registry+https://github.com/rust-lang/crates.io-index" 2381 + checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 2382 + 2383 + [[package]] 2384 + name = "predicates-tree" 2385 + version = "1.0.9" 2386 + source = "registry+https://github.com/rust-lang/crates.io-index" 2387 + checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 2388 + dependencies = [ 2389 + "predicates-core", 2390 + "termtree", 2391 + ] 2392 + 2393 + [[package]] 2394 + name = "priority-queue" 2395 + version = "1.4.0" 2396 + source = "registry+https://github.com/rust-lang/crates.io-index" 2397 + checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785" 2398 + dependencies = [ 2399 + "autocfg", 2400 + "indexmap 1.9.3", 2401 + ] 2402 + 2403 + [[package]] 2404 + name = "proc-macro2" 2405 + version = "1.0.78" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 2408 + dependencies = [ 2409 + "unicode-ident", 2410 + ] 2411 + 2412 + [[package]] 2413 + name = "ptr_meta" 2414 + version = "0.1.4" 2415 + source = "registry+https://github.com/rust-lang/crates.io-index" 2416 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 2417 + dependencies = [ 2418 + "ptr_meta_derive", 2419 + ] 2420 + 2421 + [[package]] 2422 + name = "ptr_meta_derive" 2423 + version = "0.1.4" 2424 + source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 2426 + dependencies = [ 2427 + "proc-macro2", 2428 + "quote", 2429 + "syn 1.0.109", 2430 + ] 2431 + 2432 + [[package]] 2433 + name = "pubgrub" 2434 + version = "0.2.1" 2435 + source = "git+https://github.com/zanieb/pubgrub?rev=9b6d89cb8a0c7902815c8b2ae99106ba322ffb14#9b6d89cb8a0c7902815c8b2ae99106ba322ffb14" 2436 + dependencies = [ 2437 + "indexmap 2.2.3", 2438 + "log", 2439 + "priority-queue", 2440 + "rustc-hash", 2441 + "thiserror", 2442 + ] 2443 + 2444 + [[package]] 2445 + name = "pyo3" 2446 + version = "0.20.2" 2447 + source = "registry+https://github.com/rust-lang/crates.io-index" 2448 + checksum = "9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0" 2449 + dependencies = [ 2450 + "cfg-if", 2451 + "indoc", 2452 + "libc", 2453 + "memoffset", 2454 + "parking_lot 0.12.1", 2455 + "pyo3-build-config", 2456 + "pyo3-ffi", 2457 + "pyo3-macros", 2458 + "unindent", 2459 + ] 2460 + 2461 + [[package]] 2462 + name = "pyo3-build-config" 2463 + version = "0.20.2" 2464 + source = "registry+https://github.com/rust-lang/crates.io-index" 2465 + checksum = "07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be" 2466 + dependencies = [ 2467 + "once_cell", 2468 + "target-lexicon", 2469 + ] 2470 + 2471 + [[package]] 2472 + name = "pyo3-ffi" 2473 + version = "0.20.2" 2474 + source = "registry+https://github.com/rust-lang/crates.io-index" 2475 + checksum = "dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1" 2476 + dependencies = [ 2477 + "libc", 2478 + "pyo3-build-config", 2479 + ] 2480 + 2481 + [[package]] 2482 + name = "pyo3-log" 2483 + version = "0.9.0" 2484 + source = "registry+https://github.com/rust-lang/crates.io-index" 2485 + checksum = "4c10808ee7250403bedb24bc30c32493e93875fef7ba3e4292226fe924f398bd" 2486 + dependencies = [ 2487 + "arc-swap", 2488 + "log", 2489 + "pyo3", 2490 + ] 2491 + 2492 + [[package]] 2493 + name = "pyo3-macros" 2494 + version = "0.20.2" 2495 + source = "registry+https://github.com/rust-lang/crates.io-index" 2496 + checksum = "05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3" 2497 + dependencies = [ 2498 + "proc-macro2", 2499 + "pyo3-macros-backend", 2500 + "quote", 2501 + "syn 2.0.48", 2502 + ] 2503 + 2504 + [[package]] 2505 + name = "pyo3-macros-backend" 2506 + version = "0.20.2" 2507 + source = "registry+https://github.com/rust-lang/crates.io-index" 2508 + checksum = "0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f" 2509 + dependencies = [ 2510 + "heck", 2511 + "proc-macro2", 2512 + "quote", 2513 + "syn 2.0.48", 2514 + ] 2515 + 2516 + [[package]] 2517 + name = "pypi-types" 2518 + version = "0.0.1" 2519 + dependencies = [ 2520 + "chrono", 2521 + "indoc", 2522 + "insta", 2523 + "mailparse", 2524 + "once_cell", 2525 + "pep440_rs 0.4.0", 2526 + "pep508_rs", 2527 + "regex", 2528 + "rkyv", 2529 + "serde", 2530 + "serde_json", 2531 + "tempfile", 2532 + "test-case", 2533 + "thiserror", 2534 + "tracing", 2535 + "url", 2536 + "uv-normalize", 2537 + ] 2538 + 2539 + [[package]] 2540 + name = "pyproject-toml" 2541 + version = "0.8.1" 2542 + source = "registry+https://github.com/rust-lang/crates.io-index" 2543 + checksum = "46d4a5e69187f23a29f8aa0ea57491d104ba541bc55f76552c2a74962aa20e04" 2544 + dependencies = [ 2545 + "indexmap 2.2.3", 2546 + "pep440_rs 0.3.12", 2547 + "pep508_rs", 2548 + "serde", 2549 + "toml", 2550 + ] 2551 + 2552 + [[package]] 2553 + name = "quick-xml" 2554 + version = "0.31.0" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 2557 + dependencies = [ 2558 + "memchr", 2559 + ] 2560 + 2561 + [[package]] 2562 + name = "quote" 2563 + version = "1.0.35" 2564 + source = "registry+https://github.com/rust-lang/crates.io-index" 2565 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 2566 + dependencies = [ 2567 + "proc-macro2", 2568 + ] 2569 + 2570 + [[package]] 2571 + name = "quoted_printable" 2572 + version = "0.5.0" 2573 + source = "registry+https://github.com/rust-lang/crates.io-index" 2574 + checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0" 2575 + 2576 + [[package]] 2577 + name = "radium" 2578 + version = "0.7.0" 2579 + source = "registry+https://github.com/rust-lang/crates.io-index" 2580 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2581 + 2582 + [[package]] 2583 + name = "rand" 2584 + version = "0.8.5" 2585 + source = "registry+https://github.com/rust-lang/crates.io-index" 2586 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2587 + dependencies = [ 2588 + "libc", 2589 + "rand_chacha", 2590 + "rand_core", 2591 + ] 2592 + 2593 + [[package]] 2594 + name = "rand_chacha" 2595 + version = "0.3.1" 2596 + source = "registry+https://github.com/rust-lang/crates.io-index" 2597 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2598 + dependencies = [ 2599 + "ppv-lite86", 2600 + "rand_core", 2601 + ] 2602 + 2603 + [[package]] 2604 + name = "rand_core" 2605 + version = "0.6.4" 2606 + source = "registry+https://github.com/rust-lang/crates.io-index" 2607 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2608 + dependencies = [ 2609 + "getrandom", 2610 + ] 2611 + 2612 + [[package]] 2613 + name = "rayon" 2614 + version = "1.8.1" 2615 + source = "registry+https://github.com/rust-lang/crates.io-index" 2616 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 2617 + dependencies = [ 2618 + "either", 2619 + "rayon-core", 2620 + ] 2621 + 2622 + [[package]] 2623 + name = "rayon-core" 2624 + version = "1.12.1" 2625 + source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 2627 + dependencies = [ 2628 + "crossbeam-deque", 2629 + "crossbeam-utils", 2630 + ] 2631 + 2632 + [[package]] 2633 + name = "rctree" 2634 + version = "0.5.0" 2635 + source = "registry+https://github.com/rust-lang/crates.io-index" 2636 + checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" 2637 + 2638 + [[package]] 2639 + name = "redox_syscall" 2640 + version = "0.2.16" 2641 + source = "registry+https://github.com/rust-lang/crates.io-index" 2642 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2643 + dependencies = [ 2644 + "bitflags 1.3.2", 2645 + ] 2646 + 2647 + [[package]] 2648 + name = "redox_syscall" 2649 + version = "0.3.5" 2650 + source = "registry+https://github.com/rust-lang/crates.io-index" 2651 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2652 + dependencies = [ 2653 + "bitflags 1.3.2", 2654 + ] 2655 + 2656 + [[package]] 2657 + name = "redox_syscall" 2658 + version = "0.4.1" 2659 + source = "registry+https://github.com/rust-lang/crates.io-index" 2660 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2661 + dependencies = [ 2662 + "bitflags 1.3.2", 2663 + ] 2664 + 2665 + [[package]] 2666 + name = "redox_users" 2667 + version = "0.4.4" 2668 + source = "registry+https://github.com/rust-lang/crates.io-index" 2669 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 2670 + dependencies = [ 2671 + "getrandom", 2672 + "libredox", 2673 + "thiserror", 2674 + ] 2675 + 2676 + [[package]] 2677 + name = "reflink-copy" 2678 + version = "0.1.14" 2679 + source = "registry+https://github.com/rust-lang/crates.io-index" 2680 + checksum = "767be24c0da52e7448d495b8d162506a9aa125426651d547d545d6c2b4b65b62" 2681 + dependencies = [ 2682 + "cfg-if", 2683 + "rustix", 2684 + "windows", 2685 + ] 2686 + 2687 + [[package]] 2688 + name = "regex" 2689 + version = "1.10.3" 2690 + source = "registry+https://github.com/rust-lang/crates.io-index" 2691 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 2692 + dependencies = [ 2693 + "aho-corasick", 2694 + "memchr", 2695 + "regex-automata 0.4.5", 2696 + "regex-syntax 0.8.2", 2697 + ] 2698 + 2699 + [[package]] 2700 + name = "regex-automata" 2701 + version = "0.1.10" 2702 + source = "registry+https://github.com/rust-lang/crates.io-index" 2703 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2704 + dependencies = [ 2705 + "regex-syntax 0.6.29", 2706 + ] 2707 + 2708 + [[package]] 2709 + name = "regex-automata" 2710 + version = "0.4.5" 2711 + source = "registry+https://github.com/rust-lang/crates.io-index" 2712 + checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 2713 + dependencies = [ 2714 + "aho-corasick", 2715 + "memchr", 2716 + "regex-syntax 0.8.2", 2717 + ] 2718 + 2719 + [[package]] 2720 + name = "regex-syntax" 2721 + version = "0.6.29" 2722 + source = "registry+https://github.com/rust-lang/crates.io-index" 2723 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2724 + 2725 + [[package]] 2726 + name = "regex-syntax" 2727 + version = "0.8.2" 2728 + source = "registry+https://github.com/rust-lang/crates.io-index" 2729 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2730 + 2731 + [[package]] 2732 + name = "rend" 2733 + version = "0.4.2" 2734 + source = "registry+https://github.com/rust-lang/crates.io-index" 2735 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 2736 + dependencies = [ 2737 + "bytecheck", 2738 + ] 2739 + 2740 + [[package]] 2741 + name = "requirements-txt" 2742 + version = "0.0.1" 2743 + dependencies = [ 2744 + "anyhow", 2745 + "assert_fs", 2746 + "fs-err", 2747 + "indoc", 2748 + "insta", 2749 + "itertools 0.10.5", 2750 + "once_cell", 2751 + "pep440_rs 0.4.0", 2752 + "pep508_rs", 2753 + "regex", 2754 + "serde", 2755 + "serde_json", 2756 + "tempfile", 2757 + "test-case", 2758 + "thiserror", 2759 + "tracing", 2760 + "unscanny", 2761 + "url", 2762 + "uv-fs", 2763 + "uv-normalize", 2764 + ] 2765 + 2766 + [[package]] 2767 + name = "reqwest" 2768 + version = "0.11.24" 2769 + source = "registry+https://github.com/rust-lang/crates.io-index" 2770 + checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" 2771 + dependencies = [ 2772 + "async-compression", 2773 + "base64 0.21.7", 2774 + "bytes", 2775 + "encoding_rs", 2776 + "futures-core", 2777 + "futures-util", 2778 + "h2", 2779 + "http", 2780 + "http-body", 2781 + "hyper", 2782 + "hyper-rustls", 2783 + "ipnet", 2784 + "js-sys", 2785 + "log", 2786 + "mime", 2787 + "mime_guess", 2788 + "once_cell", 2789 + "percent-encoding", 2790 + "pin-project-lite", 2791 + "rustls", 2792 + "rustls-pemfile", 2793 + "serde", 2794 + "serde_json", 2795 + "serde_urlencoded", 2796 + "sync_wrapper", 2797 + "system-configuration", 2798 + "tokio", 2799 + "tokio-rustls", 2800 + "tokio-util", 2801 + "tower-service", 2802 + "url", 2803 + "wasm-bindgen", 2804 + "wasm-bindgen-futures", 2805 + "wasm-streams", 2806 + "web-sys", 2807 + "webpki-roots", 2808 + "winreg", 2809 + ] 2810 + 2811 + [[package]] 2812 + name = "reqwest-middleware" 2813 + version = "0.2.4" 2814 + source = "registry+https://github.com/rust-lang/crates.io-index" 2815 + checksum = "88a3e86aa6053e59030e7ce2d2a3b258dd08fc2d337d52f73f6cb480f5858690" 2816 + dependencies = [ 2817 + "anyhow", 2818 + "async-trait", 2819 + "http", 2820 + "reqwest", 2821 + "serde", 2822 + "task-local-extensions", 2823 + "thiserror", 2824 + ] 2825 + 2826 + [[package]] 2827 + name = "reqwest-retry" 2828 + version = "0.3.0" 2829 + source = "registry+https://github.com/rust-lang/crates.io-index" 2830 + checksum = "9af20b65c2ee9746cc575acb6bd28a05ffc0d15e25c992a8f4462d8686aacb4f" 2831 + dependencies = [ 2832 + "anyhow", 2833 + "async-trait", 2834 + "chrono", 2835 + "futures", 2836 + "getrandom", 2837 + "http", 2838 + "hyper", 2839 + "parking_lot 0.11.2", 2840 + "reqwest", 2841 + "reqwest-middleware", 2842 + "retry-policies", 2843 + "task-local-extensions", 2844 + "tokio", 2845 + "tracing", 2846 + "wasm-timer", 2847 + ] 2848 + 2849 + [[package]] 2850 + name = "resvg" 2851 + version = "0.29.0" 2852 + source = "registry+https://github.com/rust-lang/crates.io-index" 2853 + checksum = "76888219c0881e22b0ceab06fddcfe83163cd81642bd60c7842387f9c968a72e" 2854 + dependencies = [ 2855 + "gif", 2856 + "jpeg-decoder", 2857 + "log", 2858 + "pico-args", 2859 + "png", 2860 + "rgb", 2861 + "svgfilters", 2862 + "svgtypes 0.10.0", 2863 + "tiny-skia", 2864 + "usvg", 2865 + "usvg-text-layout", 2866 + ] 2867 + 2868 + [[package]] 2869 + name = "retry-policies" 2870 + version = "0.2.1" 2871 + source = "registry+https://github.com/rust-lang/crates.io-index" 2872 + checksum = "17dd00bff1d737c40dbcd47d4375281bf4c17933f9eef0a185fc7bacca23ecbd" 2873 + dependencies = [ 2874 + "anyhow", 2875 + "chrono", 2876 + "rand", 2877 + ] 2878 + 2879 + [[package]] 2880 + name = "rgb" 2881 + version = "0.8.37" 2882 + source = "registry+https://github.com/rust-lang/crates.io-index" 2883 + checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 2884 + dependencies = [ 2885 + "bytemuck", 2886 + ] 2887 + 2888 + [[package]] 2889 + name = "ring" 2890 + version = "0.17.7" 2891 + source = "registry+https://github.com/rust-lang/crates.io-index" 2892 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 2893 + dependencies = [ 2894 + "cc", 2895 + "getrandom", 2896 + "libc", 2897 + "spin", 2898 + "untrusted", 2899 + "windows-sys 0.48.0", 2900 + ] 2901 + 2902 + [[package]] 2903 + name = "rkyv" 2904 + version = "0.7.44" 2905 + source = "registry+https://github.com/rust-lang/crates.io-index" 2906 + checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 2907 + dependencies = [ 2908 + "bitvec", 2909 + "bytecheck", 2910 + "bytes", 2911 + "hashbrown 0.12.3", 2912 + "ptr_meta", 2913 + "rend", 2914 + "rkyv_derive", 2915 + "seahash", 2916 + "tinyvec", 2917 + "uuid", 2918 + ] 2919 + 2920 + [[package]] 2921 + name = "rkyv_derive" 2922 + version = "0.7.44" 2923 + source = "registry+https://github.com/rust-lang/crates.io-index" 2924 + checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 2925 + dependencies = [ 2926 + "proc-macro2", 2927 + "quote", 2928 + "syn 1.0.109", 2929 + ] 2930 + 2931 + [[package]] 2932 + name = "rmp" 2933 + version = "0.8.12" 2934 + source = "registry+https://github.com/rust-lang/crates.io-index" 2935 + checksum = "7f9860a6cc38ed1da53456442089b4dfa35e7cedaa326df63017af88385e6b20" 2936 + dependencies = [ 2937 + "byteorder", 2938 + "num-traits", 2939 + "paste", 2940 + ] 2941 + 2942 + [[package]] 2943 + name = "rmp-serde" 2944 + version = "1.1.2" 2945 + source = "registry+https://github.com/rust-lang/crates.io-index" 2946 + checksum = "bffea85eea980d8a74453e5d02a8d93028f3c34725de143085a844ebe953258a" 2947 + dependencies = [ 2948 + "byteorder", 2949 + "rmp", 2950 + "serde", 2951 + ] 2952 + 2953 + [[package]] 2954 + name = "rosvgtree" 2955 + version = "0.1.0" 2956 + source = "registry+https://github.com/rust-lang/crates.io-index" 2957 + checksum = "bdc23d1ace03d6b8153c7d16f0708cd80b61ee8e80304954803354e67e40d150" 2958 + dependencies = [ 2959 + "log", 2960 + "roxmltree 0.18.1", 2961 + "simplecss", 2962 + "siphasher", 2963 + "svgtypes 0.9.0", 2964 + ] 2965 + 2966 + [[package]] 2967 + name = "roxmltree" 2968 + version = "0.18.1" 2969 + source = "registry+https://github.com/rust-lang/crates.io-index" 2970 + checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302" 2971 + dependencies = [ 2972 + "xmlparser", 2973 + ] 2974 + 2975 + [[package]] 2976 + name = "roxmltree" 2977 + version = "0.19.0" 2978 + source = "registry+https://github.com/rust-lang/crates.io-index" 2979 + checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f" 2980 + 2981 + [[package]] 2982 + name = "rustc-demangle" 2983 + version = "0.1.23" 2984 + source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2986 + 2987 + [[package]] 2988 + name = "rustc-hash" 2989 + version = "1.1.0" 2990 + source = "registry+https://github.com/rust-lang/crates.io-index" 2991 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2992 + 2993 + [[package]] 2994 + name = "rustix" 2995 + version = "0.38.31" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 2998 + dependencies = [ 2999 + "bitflags 2.4.2", 3000 + "errno", 3001 + "libc", 3002 + "linux-raw-sys", 3003 + "windows-sys 0.52.0", 3004 + ] 3005 + 3006 + [[package]] 3007 + name = "rustls" 3008 + version = "0.21.10" 3009 + source = "registry+https://github.com/rust-lang/crates.io-index" 3010 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 3011 + dependencies = [ 3012 + "log", 3013 + "ring", 3014 + "rustls-webpki", 3015 + "sct", 3016 + ] 3017 + 3018 + [[package]] 3019 + name = "rustls-pemfile" 3020 + version = "1.0.4" 3021 + source = "registry+https://github.com/rust-lang/crates.io-index" 3022 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3023 + dependencies = [ 3024 + "base64 0.21.7", 3025 + ] 3026 + 3027 + [[package]] 3028 + name = "rustls-webpki" 3029 + version = "0.101.7" 3030 + source = "registry+https://github.com/rust-lang/crates.io-index" 3031 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3032 + dependencies = [ 3033 + "ring", 3034 + "untrusted", 3035 + ] 3036 + 3037 + [[package]] 3038 + name = "rustybuzz" 3039 + version = "0.7.0" 3040 + source = "registry+https://github.com/rust-lang/crates.io-index" 3041 + checksum = "162bdf42e261bee271b3957691018634488084ef577dddeb6420a9684cab2a6a" 3042 + dependencies = [ 3043 + "bitflags 1.3.2", 3044 + "bytemuck", 3045 + "smallvec", 3046 + "ttf-parser", 3047 + "unicode-bidi-mirroring", 3048 + "unicode-ccc", 3049 + "unicode-general-category", 3050 + "unicode-script", 3051 + ] 3052 + 3053 + [[package]] 3054 + name = "ryu" 3055 + version = "1.0.16" 3056 + source = "registry+https://github.com/rust-lang/crates.io-index" 3057 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 3058 + 3059 + [[package]] 3060 + name = "safemem" 3061 + version = "0.3.3" 3062 + source = "registry+https://github.com/rust-lang/crates.io-index" 3063 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 3064 + 3065 + [[package]] 3066 + name = "same-file" 3067 + version = "1.0.6" 3068 + source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3070 + dependencies = [ 3071 + "winapi-util", 3072 + ] 3073 + 3074 + [[package]] 3075 + name = "scopeguard" 3076 + version = "1.2.0" 3077 + source = "registry+https://github.com/rust-lang/crates.io-index" 3078 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3079 + 3080 + [[package]] 3081 + name = "scroll" 3082 + version = "0.12.0" 3083 + source = "registry+https://github.com/rust-lang/crates.io-index" 3084 + checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6" 3085 + dependencies = [ 3086 + "scroll_derive", 3087 + ] 3088 + 3089 + [[package]] 3090 + name = "scroll_derive" 3091 + version = "0.12.0" 3092 + source = "registry+https://github.com/rust-lang/crates.io-index" 3093 + checksum = "7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932" 3094 + dependencies = [ 3095 + "proc-macro2", 3096 + "quote", 3097 + "syn 2.0.48", 3098 + ] 3099 + 3100 + [[package]] 3101 + name = "sct" 3102 + version = "0.7.1" 3103 + source = "registry+https://github.com/rust-lang/crates.io-index" 3104 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3105 + dependencies = [ 3106 + "ring", 3107 + "untrusted", 3108 + ] 3109 + 3110 + [[package]] 3111 + name = "seahash" 3112 + version = "4.1.0" 3113 + source = "registry+https://github.com/rust-lang/crates.io-index" 3114 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 3115 + 3116 + [[package]] 3117 + name = "serde" 3118 + version = "1.0.196" 3119 + source = "registry+https://github.com/rust-lang/crates.io-index" 3120 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 3121 + dependencies = [ 3122 + "serde_derive", 3123 + ] 3124 + 3125 + [[package]] 3126 + name = "serde_derive" 3127 + version = "1.0.196" 3128 + source = "registry+https://github.com/rust-lang/crates.io-index" 3129 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 3130 + dependencies = [ 3131 + "proc-macro2", 3132 + "quote", 3133 + "syn 2.0.48", 3134 + ] 3135 + 3136 + [[package]] 3137 + name = "serde_json" 3138 + version = "1.0.113" 3139 + source = "registry+https://github.com/rust-lang/crates.io-index" 3140 + checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 3141 + dependencies = [ 3142 + "itoa", 3143 + "ryu", 3144 + "serde", 3145 + ] 3146 + 3147 + [[package]] 3148 + name = "serde_spanned" 3149 + version = "0.6.5" 3150 + source = "registry+https://github.com/rust-lang/crates.io-index" 3151 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 3152 + dependencies = [ 3153 + "serde", 3154 + ] 3155 + 3156 + [[package]] 3157 + name = "serde_urlencoded" 3158 + version = "0.7.1" 3159 + source = "registry+https://github.com/rust-lang/crates.io-index" 3160 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3161 + dependencies = [ 3162 + "form_urlencoded", 3163 + "itoa", 3164 + "ryu", 3165 + "serde", 3166 + ] 3167 + 3168 + [[package]] 3169 + name = "sha1" 3170 + version = "0.10.6" 3171 + source = "registry+https://github.com/rust-lang/crates.io-index" 3172 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3173 + dependencies = [ 3174 + "cfg-if", 3175 + "cpufeatures", 3176 + "digest", 3177 + ] 3178 + 3179 + [[package]] 3180 + name = "sha2" 3181 + version = "0.10.8" 3182 + source = "registry+https://github.com/rust-lang/crates.io-index" 3183 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3184 + dependencies = [ 3185 + "cfg-if", 3186 + "cpufeatures", 3187 + "digest", 3188 + ] 3189 + 3190 + [[package]] 3191 + name = "sharded-slab" 3192 + version = "0.1.7" 3193 + source = "registry+https://github.com/rust-lang/crates.io-index" 3194 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3195 + dependencies = [ 3196 + "lazy_static", 3197 + ] 3198 + 3199 + [[package]] 3200 + name = "shell-escape" 3201 + version = "0.1.5" 3202 + source = "registry+https://github.com/rust-lang/crates.io-index" 3203 + checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 3204 + 3205 + [[package]] 3206 + name = "signal-hook-registry" 3207 + version = "1.4.1" 3208 + source = "registry+https://github.com/rust-lang/crates.io-index" 3209 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 3210 + dependencies = [ 3211 + "libc", 3212 + ] 3213 + 3214 + [[package]] 3215 + name = "simd-adler32" 3216 + version = "0.3.7" 3217 + source = "registry+https://github.com/rust-lang/crates.io-index" 3218 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 3219 + 3220 + [[package]] 3221 + name = "simdutf8" 3222 + version = "0.1.4" 3223 + source = "registry+https://github.com/rust-lang/crates.io-index" 3224 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 3225 + 3226 + [[package]] 3227 + name = "similar" 3228 + version = "2.4.0" 3229 + source = "registry+https://github.com/rust-lang/crates.io-index" 3230 + checksum = "32fea41aca09ee824cc9724996433064c89f7777e60762749a4170a14abbfa21" 3231 + 3232 + [[package]] 3233 + name = "simplecss" 3234 + version = "0.2.1" 3235 + source = "registry+https://github.com/rust-lang/crates.io-index" 3236 + checksum = "a11be7c62927d9427e9f40f3444d5499d868648e2edbc4e2116de69e7ec0e89d" 3237 + dependencies = [ 3238 + "log", 3239 + ] 3240 + 3241 + [[package]] 3242 + name = "siphasher" 3243 + version = "0.3.11" 3244 + source = "registry+https://github.com/rust-lang/crates.io-index" 3245 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3246 + 3247 + [[package]] 3248 + name = "slab" 3249 + version = "0.4.9" 3250 + source = "registry+https://github.com/rust-lang/crates.io-index" 3251 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 3252 + dependencies = [ 3253 + "autocfg", 3254 + ] 3255 + 3256 + [[package]] 3257 + name = "smallvec" 3258 + version = "1.13.1" 3259 + source = "registry+https://github.com/rust-lang/crates.io-index" 3260 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 3261 + 3262 + [[package]] 3263 + name = "smawk" 3264 + version = "0.3.2" 3265 + source = "registry+https://github.com/rust-lang/crates.io-index" 3266 + checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 3267 + 3268 + [[package]] 3269 + name = "socket2" 3270 + version = "0.5.5" 3271 + source = "registry+https://github.com/rust-lang/crates.io-index" 3272 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 3273 + dependencies = [ 3274 + "libc", 3275 + "windows-sys 0.48.0", 3276 + ] 3277 + 3278 + [[package]] 3279 + name = "spin" 3280 + version = "0.9.8" 3281 + source = "registry+https://github.com/rust-lang/crates.io-index" 3282 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3283 + 3284 + [[package]] 3285 + name = "strict-num" 3286 + version = "0.1.1" 3287 + source = "registry+https://github.com/rust-lang/crates.io-index" 3288 + checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 3289 + dependencies = [ 3290 + "float-cmp", 3291 + ] 3292 + 3293 + [[package]] 3294 + name = "strsim" 3295 + version = "0.11.0" 3296 + source = "registry+https://github.com/rust-lang/crates.io-index" 3297 + checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 3298 + 3299 + [[package]] 3300 + name = "subtle" 3301 + version = "2.5.0" 3302 + source = "registry+https://github.com/rust-lang/crates.io-index" 3303 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 3304 + 3305 + [[package]] 3306 + name = "supports-color" 3307 + version = "3.0.0" 3308 + source = "registry+https://github.com/rust-lang/crates.io-index" 3309 + checksum = "9829b314621dfc575df4e409e79f9d6a66a3bd707ab73f23cb4aa3a854ac854f" 3310 + dependencies = [ 3311 + "is_ci", 3312 + ] 3313 + 3314 + [[package]] 3315 + name = "supports-hyperlinks" 3316 + version = "3.0.0" 3317 + source = "registry+https://github.com/rust-lang/crates.io-index" 3318 + checksum = "2c0a1e5168041f5f3ff68ff7d95dcb9c8749df29f6e7e89ada40dd4c9de404ee" 3319 + 3320 + [[package]] 3321 + name = "supports-unicode" 3322 + version = "3.0.0" 3323 + source = "registry+https://github.com/rust-lang/crates.io-index" 3324 + checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2" 3325 + 3326 + [[package]] 3327 + name = "svg" 3328 + version = "0.15.0" 3329 + source = "registry+https://github.com/rust-lang/crates.io-index" 3330 + checksum = "2198f991cd549041203080de947415bae45220eab7253c220b87e3188d19f21a" 3331 + 3332 + [[package]] 3333 + name = "svgfilters" 3334 + version = "0.4.0" 3335 + source = "registry+https://github.com/rust-lang/crates.io-index" 3336 + checksum = "639abcebc15fdc2df179f37d6f5463d660c1c79cd552c12343a4600827a04bce" 3337 + dependencies = [ 3338 + "float-cmp", 3339 + "rgb", 3340 + ] 3341 + 3342 + [[package]] 3343 + name = "svgtypes" 3344 + version = "0.9.0" 3345 + source = "registry+https://github.com/rust-lang/crates.io-index" 3346 + checksum = "c9ee29c1407a5b18ccfe5f6ac82ac11bab3b14407e09c209a6c1a32098b19734" 3347 + dependencies = [ 3348 + "kurbo 0.8.3", 3349 + "siphasher", 3350 + ] 3351 + 3352 + [[package]] 3353 + name = "svgtypes" 3354 + version = "0.10.0" 3355 + source = "registry+https://github.com/rust-lang/crates.io-index" 3356 + checksum = "98ffacedcdcf1da6579c907279b4f3c5492fbce99fbbf227f5ed270a589c2765" 3357 + dependencies = [ 3358 + "kurbo 0.9.5", 3359 + "siphasher", 3360 + ] 3361 + 3362 + [[package]] 3363 + name = "syn" 3364 + version = "1.0.109" 3365 + source = "registry+https://github.com/rust-lang/crates.io-index" 3366 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3367 + dependencies = [ 3368 + "proc-macro2", 3369 + "quote", 3370 + "unicode-ident", 3371 + ] 3372 + 3373 + [[package]] 3374 + name = "syn" 3375 + version = "2.0.48" 3376 + source = "registry+https://github.com/rust-lang/crates.io-index" 3377 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 3378 + dependencies = [ 3379 + "proc-macro2", 3380 + "quote", 3381 + "unicode-ident", 3382 + ] 3383 + 3384 + [[package]] 3385 + name = "sync_wrapper" 3386 + version = "0.1.2" 3387 + source = "registry+https://github.com/rust-lang/crates.io-index" 3388 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 3389 + 3390 + [[package]] 3391 + name = "system-configuration" 3392 + version = "0.5.1" 3393 + source = "registry+https://github.com/rust-lang/crates.io-index" 3394 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 3395 + dependencies = [ 3396 + "bitflags 1.3.2", 3397 + "core-foundation", 3398 + "system-configuration-sys", 3399 + ] 3400 + 3401 + [[package]] 3402 + name = "system-configuration-sys" 3403 + version = "0.5.0" 3404 + source = "registry+https://github.com/rust-lang/crates.io-index" 3405 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 3406 + dependencies = [ 3407 + "core-foundation-sys", 3408 + "libc", 3409 + ] 3410 + 3411 + [[package]] 3412 + name = "tagu" 3413 + version = "0.1.6" 3414 + source = "registry+https://github.com/rust-lang/crates.io-index" 3415 + checksum = "eddb6b06d20fba9ed21fca3d696ee1b6e870bca0bcf9fa2971f6ae2436de576a" 3416 + 3417 + [[package]] 3418 + name = "tap" 3419 + version = "1.0.1" 3420 + source = "registry+https://github.com/rust-lang/crates.io-index" 3421 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3422 + 3423 + [[package]] 3424 + name = "tar" 3425 + version = "0.4.40" 3426 + source = "registry+https://github.com/rust-lang/crates.io-index" 3427 + checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" 3428 + dependencies = [ 3429 + "filetime", 3430 + "libc", 3431 + "xattr", 3432 + ] 3433 + 3434 + [[package]] 3435 + name = "target-lexicon" 3436 + version = "0.12.13" 3437 + source = "registry+https://github.com/rust-lang/crates.io-index" 3438 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 3439 + 3440 + [[package]] 3441 + name = "task-local-extensions" 3442 + version = "0.1.4" 3443 + source = "registry+https://github.com/rust-lang/crates.io-index" 3444 + checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8" 3445 + dependencies = [ 3446 + "pin-utils", 3447 + ] 3448 + 3449 + [[package]] 3450 + name = "tempfile" 3451 + version = "3.10.0" 3452 + source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" 3454 + dependencies = [ 3455 + "cfg-if", 3456 + "fastrand", 3457 + "rustix", 3458 + "windows-sys 0.52.0", 3459 + ] 3460 + 3461 + [[package]] 3462 + name = "terminal_size" 3463 + version = "0.3.0" 3464 + source = "registry+https://github.com/rust-lang/crates.io-index" 3465 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 3466 + dependencies = [ 3467 + "rustix", 3468 + "windows-sys 0.48.0", 3469 + ] 3470 + 3471 + [[package]] 3472 + name = "termtree" 3473 + version = "0.4.1" 3474 + source = "registry+https://github.com/rust-lang/crates.io-index" 3475 + checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 3476 + 3477 + [[package]] 3478 + name = "test-case" 3479 + version = "3.3.1" 3480 + source = "registry+https://github.com/rust-lang/crates.io-index" 3481 + checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" 3482 + dependencies = [ 3483 + "test-case-macros", 3484 + ] 3485 + 3486 + [[package]] 3487 + name = "test-case-core" 3488 + version = "3.3.1" 3489 + source = "registry+https://github.com/rust-lang/crates.io-index" 3490 + checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" 3491 + dependencies = [ 3492 + "cfg-if", 3493 + "proc-macro2", 3494 + "quote", 3495 + "syn 2.0.48", 3496 + ] 3497 + 3498 + [[package]] 3499 + name = "test-case-macros" 3500 + version = "3.3.1" 3501 + source = "registry+https://github.com/rust-lang/crates.io-index" 3502 + checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" 3503 + dependencies = [ 3504 + "proc-macro2", 3505 + "quote", 3506 + "syn 2.0.48", 3507 + "test-case-core", 3508 + ] 3509 + 3510 + [[package]] 3511 + name = "testing_logger" 3512 + version = "0.1.1" 3513 + source = "registry+https://github.com/rust-lang/crates.io-index" 3514 + checksum = "6d92b727cb45d33ae956f7f46b966b25f1bc712092aeef9dba5ac798fc89f720" 3515 + dependencies = [ 3516 + "log", 3517 + ] 3518 + 3519 + [[package]] 3520 + name = "textwrap" 3521 + version = "0.16.0" 3522 + source = "registry+https://github.com/rust-lang/crates.io-index" 3523 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3524 + dependencies = [ 3525 + "smawk", 3526 + "unicode-linebreak", 3527 + "unicode-width", 3528 + ] 3529 + 3530 + [[package]] 3531 + name = "thiserror" 3532 + version = "1.0.57" 3533 + source = "registry+https://github.com/rust-lang/crates.io-index" 3534 + checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 3535 + dependencies = [ 3536 + "thiserror-impl", 3537 + ] 3538 + 3539 + [[package]] 3540 + name = "thiserror-impl" 3541 + version = "1.0.57" 3542 + source = "registry+https://github.com/rust-lang/crates.io-index" 3543 + checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 3544 + dependencies = [ 3545 + "proc-macro2", 3546 + "quote", 3547 + "syn 2.0.48", 3548 + ] 3549 + 3550 + [[package]] 3551 + name = "thread_local" 3552 + version = "1.1.7" 3553 + source = "registry+https://github.com/rust-lang/crates.io-index" 3554 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 3555 + dependencies = [ 3556 + "cfg-if", 3557 + "once_cell", 3558 + ] 3559 + 3560 + [[package]] 3561 + name = "tikv-jemalloc-sys" 3562 + version = "0.5.4+5.3.0-patched" 3563 + source = "registry+https://github.com/rust-lang/crates.io-index" 3564 + checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" 3565 + dependencies = [ 3566 + "cc", 3567 + "libc", 3568 + ] 3569 + 3570 + [[package]] 3571 + name = "tikv-jemallocator" 3572 + version = "0.5.4" 3573 + source = "registry+https://github.com/rust-lang/crates.io-index" 3574 + checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" 3575 + dependencies = [ 3576 + "libc", 3577 + "tikv-jemalloc-sys", 3578 + ] 3579 + 3580 + [[package]] 3581 + name = "time" 3582 + version = "0.3.34" 3583 + source = "registry+https://github.com/rust-lang/crates.io-index" 3584 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 3585 + dependencies = [ 3586 + "deranged", 3587 + "itoa", 3588 + "num-conv", 3589 + "powerfmt", 3590 + "serde", 3591 + "time-core", 3592 + "time-macros", 3593 + ] 3594 + 3595 + [[package]] 3596 + name = "time-core" 3597 + version = "0.1.2" 3598 + source = "registry+https://github.com/rust-lang/crates.io-index" 3599 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 3600 + 3601 + [[package]] 3602 + name = "time-macros" 3603 + version = "0.2.17" 3604 + source = "registry+https://github.com/rust-lang/crates.io-index" 3605 + checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" 3606 + dependencies = [ 3607 + "num-conv", 3608 + "time-core", 3609 + ] 3610 + 3611 + [[package]] 3612 + name = "tiny-skia" 3613 + version = "0.8.4" 3614 + source = "registry+https://github.com/rust-lang/crates.io-index" 3615 + checksum = "df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67" 3616 + dependencies = [ 3617 + "arrayref", 3618 + "arrayvec", 3619 + "bytemuck", 3620 + "cfg-if", 3621 + "png", 3622 + "tiny-skia-path", 3623 + ] 3624 + 3625 + [[package]] 3626 + name = "tiny-skia-path" 3627 + version = "0.8.4" 3628 + source = "registry+https://github.com/rust-lang/crates.io-index" 3629 + checksum = "adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c" 3630 + dependencies = [ 3631 + "arrayref", 3632 + "bytemuck", 3633 + "strict-num", 3634 + ] 3635 + 3636 + [[package]] 3637 + name = "tinytemplate" 3638 + version = "1.2.1" 3639 + source = "registry+https://github.com/rust-lang/crates.io-index" 3640 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 3641 + dependencies = [ 3642 + "serde", 3643 + "serde_json", 3644 + ] 3645 + 3646 + [[package]] 3647 + name = "tinyvec" 3648 + version = "1.6.0" 3649 + source = "registry+https://github.com/rust-lang/crates.io-index" 3650 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3651 + dependencies = [ 3652 + "tinyvec_macros", 3653 + ] 3654 + 3655 + [[package]] 3656 + name = "tinyvec_macros" 3657 + version = "0.1.1" 3658 + source = "registry+https://github.com/rust-lang/crates.io-index" 3659 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3660 + 3661 + [[package]] 3662 + name = "tl" 3663 + version = "0.7.8" 3664 + source = "registry+https://github.com/rust-lang/crates.io-index" 3665 + checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7" 3666 + 3667 + [[package]] 3668 + name = "tokio" 3669 + version = "1.36.0" 3670 + source = "registry+https://github.com/rust-lang/crates.io-index" 3671 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 3672 + dependencies = [ 3673 + "backtrace", 3674 + "bytes", 3675 + "libc", 3676 + "mio", 3677 + "num_cpus", 3678 + "pin-project-lite", 3679 + "signal-hook-registry", 3680 + "socket2", 3681 + "tokio-macros", 3682 + "windows-sys 0.48.0", 3683 + ] 3684 + 3685 + [[package]] 3686 + name = "tokio-macros" 3687 + version = "2.2.0" 3688 + source = "registry+https://github.com/rust-lang/crates.io-index" 3689 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3690 + dependencies = [ 3691 + "proc-macro2", 3692 + "quote", 3693 + "syn 2.0.48", 3694 + ] 3695 + 3696 + [[package]] 3697 + name = "tokio-rustls" 3698 + version = "0.24.1" 3699 + source = "registry+https://github.com/rust-lang/crates.io-index" 3700 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 3701 + dependencies = [ 3702 + "rustls", 3703 + "tokio", 3704 + ] 3705 + 3706 + [[package]] 3707 + name = "tokio-stream" 3708 + version = "0.1.14" 3709 + source = "registry+https://github.com/rust-lang/crates.io-index" 3710 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 3711 + dependencies = [ 3712 + "futures-core", 3713 + "pin-project-lite", 3714 + "tokio", 3715 + "tokio-util", 3716 + ] 3717 + 3718 + [[package]] 3719 + name = "tokio-tar" 3720 + version = "0.3.1" 3721 + source = "registry+https://github.com/rust-lang/crates.io-index" 3722 + checksum = "9d5714c010ca3e5c27114c1cdeb9d14641ace49874aa5626d7149e47aedace75" 3723 + dependencies = [ 3724 + "filetime", 3725 + "futures-core", 3726 + "libc", 3727 + "redox_syscall 0.3.5", 3728 + "tokio", 3729 + "tokio-stream", 3730 + "xattr", 3731 + ] 3732 + 3733 + [[package]] 3734 + name = "tokio-util" 3735 + version = "0.7.10" 3736 + source = "registry+https://github.com/rust-lang/crates.io-index" 3737 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 3738 + dependencies = [ 3739 + "bytes", 3740 + "futures-core", 3741 + "futures-io", 3742 + "futures-sink", 3743 + "pin-project-lite", 3744 + "tokio", 3745 + "tracing", 3746 + ] 3747 + 3748 + [[package]] 3749 + name = "toml" 3750 + version = "0.8.10" 3751 + source = "registry+https://github.com/rust-lang/crates.io-index" 3752 + checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" 3753 + dependencies = [ 3754 + "serde", 3755 + "serde_spanned", 3756 + "toml_datetime", 3757 + "toml_edit", 3758 + ] 3759 + 3760 + [[package]] 3761 + name = "toml_datetime" 3762 + version = "0.6.5" 3763 + source = "registry+https://github.com/rust-lang/crates.io-index" 3764 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 3765 + dependencies = [ 3766 + "serde", 3767 + ] 3768 + 3769 + [[package]] 3770 + name = "toml_edit" 3771 + version = "0.22.5" 3772 + source = "registry+https://github.com/rust-lang/crates.io-index" 3773 + checksum = "99e68c159e8f5ba8a28c4eb7b0c0c190d77bb479047ca713270048145a9ad28a" 3774 + dependencies = [ 3775 + "indexmap 2.2.3", 3776 + "serde", 3777 + "serde_spanned", 3778 + "toml_datetime", 3779 + "winnow", 3780 + ] 3781 + 3782 + [[package]] 3783 + name = "tower-service" 3784 + version = "0.3.2" 3785 + source = "registry+https://github.com/rust-lang/crates.io-index" 3786 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 3787 + 3788 + [[package]] 3789 + name = "tracing" 3790 + version = "0.1.40" 3791 + source = "registry+https://github.com/rust-lang/crates.io-index" 3792 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3793 + dependencies = [ 3794 + "log", 3795 + "pin-project-lite", 3796 + "tracing-attributes", 3797 + "tracing-core", 3798 + ] 3799 + 3800 + [[package]] 3801 + name = "tracing-attributes" 3802 + version = "0.1.27" 3803 + source = "registry+https://github.com/rust-lang/crates.io-index" 3804 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3805 + dependencies = [ 3806 + "proc-macro2", 3807 + "quote", 3808 + "syn 2.0.48", 3809 + ] 3810 + 3811 + [[package]] 3812 + name = "tracing-core" 3813 + version = "0.1.32" 3814 + source = "registry+https://github.com/rust-lang/crates.io-index" 3815 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3816 + dependencies = [ 3817 + "once_cell", 3818 + "valuable", 3819 + ] 3820 + 3821 + [[package]] 3822 + name = "tracing-durations-export" 3823 + version = "0.2.0" 3824 + source = "registry+https://github.com/rust-lang/crates.io-index" 3825 + checksum = "35b910b25a6c8e0fefcfff912bad6c4f4849d37e5945c3861d15e550d819da53" 3826 + dependencies = [ 3827 + "anyhow", 3828 + "fs-err", 3829 + "itertools 0.12.1", 3830 + "once_cell", 3831 + "rustc-hash", 3832 + "serde", 3833 + "serde_json", 3834 + "svg", 3835 + "tracing", 3836 + "tracing-subscriber", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "tracing-indicatif" 3841 + version = "0.3.6" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "069580424efe11d97c3fef4197fa98c004fa26672cc71ad8770d224e23b1951d" 3844 + dependencies = [ 3845 + "indicatif", 3846 + "tracing", 3847 + "tracing-core", 3848 + "tracing-subscriber", 3849 + ] 3850 + 3851 + [[package]] 3852 + name = "tracing-log" 3853 + version = "0.2.0" 3854 + source = "registry+https://github.com/rust-lang/crates.io-index" 3855 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3856 + dependencies = [ 3857 + "log", 3858 + "once_cell", 3859 + "tracing-core", 3860 + ] 3861 + 3862 + [[package]] 3863 + name = "tracing-subscriber" 3864 + version = "0.3.18" 3865 + source = "registry+https://github.com/rust-lang/crates.io-index" 3866 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 3867 + dependencies = [ 3868 + "matchers", 3869 + "nu-ansi-term 0.46.0", 3870 + "once_cell", 3871 + "regex", 3872 + "sharded-slab", 3873 + "smallvec", 3874 + "thread_local", 3875 + "tracing", 3876 + "tracing-core", 3877 + "tracing-log", 3878 + ] 3879 + 3880 + [[package]] 3881 + name = "tracing-tree" 3882 + version = "0.3.0" 3883 + source = "registry+https://github.com/rust-lang/crates.io-index" 3884 + checksum = "65139ecd2c3f6484c3b99bc01c77afe21e95473630747c7aca525e78b0666675" 3885 + dependencies = [ 3886 + "nu-ansi-term 0.49.0", 3887 + "tracing-core", 3888 + "tracing-log", 3889 + "tracing-subscriber", 3890 + ] 3891 + 3892 + [[package]] 3893 + name = "try-lock" 3894 + version = "0.2.5" 3895 + source = "registry+https://github.com/rust-lang/crates.io-index" 3896 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3897 + 3898 + [[package]] 3899 + name = "ttf-parser" 3900 + version = "0.18.1" 3901 + source = "registry+https://github.com/rust-lang/crates.io-index" 3902 + checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633" 3903 + 3904 + [[package]] 3905 + name = "typenum" 3906 + version = "1.17.0" 3907 + source = "registry+https://github.com/rust-lang/crates.io-index" 3908 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3909 + 3910 + [[package]] 3911 + name = "unicase" 3912 + version = "2.7.0" 3913 + source = "registry+https://github.com/rust-lang/crates.io-index" 3914 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 3915 + dependencies = [ 3916 + "version_check", 3917 + ] 3918 + 3919 + [[package]] 3920 + name = "unicode-bidi" 3921 + version = "0.3.15" 3922 + source = "registry+https://github.com/rust-lang/crates.io-index" 3923 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 3924 + 3925 + [[package]] 3926 + name = "unicode-bidi-mirroring" 3927 + version = "0.1.0" 3928 + source = "registry+https://github.com/rust-lang/crates.io-index" 3929 + checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694" 3930 + 3931 + [[package]] 3932 + name = "unicode-ccc" 3933 + version = "0.1.2" 3934 + source = "registry+https://github.com/rust-lang/crates.io-index" 3935 + checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1" 3936 + 3937 + [[package]] 3938 + name = "unicode-general-category" 3939 + version = "0.6.0" 3940 + source = "registry+https://github.com/rust-lang/crates.io-index" 3941 + checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7" 3942 + 3943 + [[package]] 3944 + name = "unicode-ident" 3945 + version = "1.0.12" 3946 + source = "registry+https://github.com/rust-lang/crates.io-index" 3947 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3948 + 3949 + [[package]] 3950 + name = "unicode-linebreak" 3951 + version = "0.1.5" 3952 + source = "registry+https://github.com/rust-lang/crates.io-index" 3953 + checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 3954 + 3955 + [[package]] 3956 + name = "unicode-normalization" 3957 + version = "0.1.22" 3958 + source = "registry+https://github.com/rust-lang/crates.io-index" 3959 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3960 + dependencies = [ 3961 + "tinyvec", 3962 + ] 3963 + 3964 + [[package]] 3965 + name = "unicode-script" 3966 + version = "0.5.5" 3967 + source = "registry+https://github.com/rust-lang/crates.io-index" 3968 + checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc" 3969 + 3970 + [[package]] 3971 + name = "unicode-vo" 3972 + version = "0.1.0" 3973 + source = "registry+https://github.com/rust-lang/crates.io-index" 3974 + checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 3975 + 3976 + [[package]] 3977 + name = "unicode-width" 3978 + version = "0.1.11" 3979 + source = "registry+https://github.com/rust-lang/crates.io-index" 3980 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 3981 + 3982 + [[package]] 3983 + name = "unindent" 3984 + version = "0.2.3" 3985 + source = "registry+https://github.com/rust-lang/crates.io-index" 3986 + checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 3987 + 3988 + [[package]] 3989 + name = "unscanny" 3990 + version = "0.1.0" 3991 + source = "registry+https://github.com/rust-lang/crates.io-index" 3992 + checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47" 3993 + 3994 + [[package]] 3995 + name = "untrusted" 3996 + version = "0.9.0" 3997 + source = "registry+https://github.com/rust-lang/crates.io-index" 3998 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3999 + 4000 + [[package]] 4001 + name = "url" 4002 + version = "2.5.0" 4003 + source = "registry+https://github.com/rust-lang/crates.io-index" 4004 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4005 + dependencies = [ 4006 + "form_urlencoded", 4007 + "idna", 4008 + "percent-encoding", 4009 + "serde", 4010 + ] 4011 + 4012 + [[package]] 4013 + name = "usvg" 4014 + version = "0.29.0" 4015 + source = "registry+https://github.com/rust-lang/crates.io-index" 4016 + checksum = "63b6bb4e62619d9f68aa2d8a823fea2bff302340a1f2d45c264d5b0be170832e" 4017 + dependencies = [ 4018 + "base64 0.21.7", 4019 + "data-url", 4020 + "flate2", 4021 + "imagesize", 4022 + "kurbo 0.9.5", 4023 + "log", 4024 + "rctree", 4025 + "rosvgtree", 4026 + "strict-num", 4027 + ] 4028 + 4029 + [[package]] 4030 + name = "usvg-text-layout" 4031 + version = "0.29.0" 4032 + source = "registry+https://github.com/rust-lang/crates.io-index" 4033 + checksum = "195386e01bc35f860db024de275a76e7a31afdf975d18beb6d0e44764118b4db" 4034 + dependencies = [ 4035 + "fontdb", 4036 + "kurbo 0.9.5", 4037 + "log", 4038 + "rustybuzz", 4039 + "unicode-bidi", 4040 + "unicode-script", 4041 + "unicode-vo", 4042 + "usvg", 4043 + ] 4044 + 4045 + [[package]] 4046 + name = "utf8-width" 4047 + version = "0.1.7" 4048 + source = "registry+https://github.com/rust-lang/crates.io-index" 4049 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 4050 + 4051 + [[package]] 4052 + name = "utf8parse" 4053 + version = "0.2.1" 4054 + source = "registry+https://github.com/rust-lang/crates.io-index" 4055 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 4056 + 4057 + [[package]] 4058 + name = "uuid" 4059 + version = "1.7.0" 4060 + source = "registry+https://github.com/rust-lang/crates.io-index" 4061 + checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" 4062 + 4063 + [[package]] 4064 + name = "uv" 4065 + version = "0.1.0" 4066 + dependencies = [ 4067 + "anstream", 4068 + "anyhow", 4069 + "assert_cmd", 4070 + "assert_fs", 4071 + "chrono", 4072 + "clap", 4073 + "console", 4074 + "ctrlc", 4075 + "distribution-filename", 4076 + "distribution-types", 4077 + "dunce", 4078 + "filetime", 4079 + "flate2", 4080 + "fs-err", 4081 + "futures", 4082 + "gourgeist", 4083 + "indicatif", 4084 + "indoc", 4085 + "insta", 4086 + "install-wheel-rs", 4087 + "itertools 0.12.1", 4088 + "miette", 4089 + "mimalloc", 4090 + "owo-colors 4.0.0", 4091 + "pep440_rs 0.4.0", 4092 + "pep508_rs", 4093 + "platform-host", 4094 + "platform-tags", 4095 + "predicates", 4096 + "pubgrub", 4097 + "pypi-types", 4098 + "pyproject-toml", 4099 + "regex", 4100 + "requirements-txt", 4101 + "reqwest", 4102 + "rustc-hash", 4103 + "tempfile", 4104 + "textwrap", 4105 + "thiserror", 4106 + "tikv-jemallocator", 4107 + "tokio", 4108 + "toml", 4109 + "tracing", 4110 + "tracing-durations-export", 4111 + "tracing-subscriber", 4112 + "tracing-tree", 4113 + "url", 4114 + "uv-build", 4115 + "uv-cache", 4116 + "uv-client", 4117 + "uv-dispatch", 4118 + "uv-distribution", 4119 + "uv-fs", 4120 + "uv-installer", 4121 + "uv-interpreter", 4122 + "uv-normalize", 4123 + "uv-resolver", 4124 + "uv-traits", 4125 + "uv-warnings", 4126 + "which", 4127 + ] 4128 + 4129 + [[package]] 4130 + name = "uv-build" 4131 + version = "0.0.1" 4132 + dependencies = [ 4133 + "anyhow", 4134 + "distribution-types", 4135 + "fs-err", 4136 + "gourgeist", 4137 + "indoc", 4138 + "insta", 4139 + "itertools 0.12.1", 4140 + "once_cell", 4141 + "pep508_rs", 4142 + "platform-host", 4143 + "pypi-types", 4144 + "pyproject-toml", 4145 + "regex", 4146 + "serde", 4147 + "serde_json", 4148 + "tempfile", 4149 + "thiserror", 4150 + "tokio", 4151 + "toml", 4152 + "tracing", 4153 + "uv-extract", 4154 + "uv-fs", 4155 + "uv-interpreter", 4156 + "uv-traits", 4157 + ] 4158 + 4159 + [[package]] 4160 + name = "uv-cache" 4161 + version = "0.0.1" 4162 + dependencies = [ 4163 + "cache-key", 4164 + "cachedir", 4165 + "clap", 4166 + "directories", 4167 + "distribution-types", 4168 + "fs-err", 4169 + "nanoid", 4170 + "pypi-types", 4171 + "serde", 4172 + "tempfile", 4173 + "tracing", 4174 + "url", 4175 + "uv-fs", 4176 + "uv-normalize", 4177 + "walkdir", 4178 + ] 4179 + 4180 + [[package]] 4181 + name = "uv-client" 4182 + version = "0.0.1" 4183 + dependencies = [ 4184 + "anyhow", 4185 + "async-trait", 4186 + "async_http_range_reader", 4187 + "async_zip", 4188 + "cache-key", 4189 + "chrono", 4190 + "distribution-filename", 4191 + "distribution-types", 4192 + "fs-err", 4193 + "futures", 4194 + "html-escape", 4195 + "http", 4196 + "insta", 4197 + "install-wheel-rs", 4198 + "pep440_rs 0.4.0", 4199 + "pep508_rs", 4200 + "platform-tags", 4201 + "pypi-types", 4202 + "reqwest", 4203 + "reqwest-middleware", 4204 + "reqwest-retry", 4205 + "rkyv", 4206 + "rmp-serde", 4207 + "rustc-hash", 4208 + "serde", 4209 + "serde_json", 4210 + "sha2", 4211 + "task-local-extensions", 4212 + "tempfile", 4213 + "thiserror", 4214 + "tl", 4215 + "tokio", 4216 + "tokio-util", 4217 + "tracing", 4218 + "url", 4219 + "uv-cache", 4220 + "uv-fs", 4221 + "uv-normalize", 4222 + ] 4223 + 4224 + [[package]] 4225 + name = "uv-dev" 4226 + version = "0.0.1" 4227 + dependencies = [ 4228 + "anstream", 4229 + "anyhow", 4230 + "chrono", 4231 + "clap", 4232 + "distribution-filename", 4233 + "distribution-types", 4234 + "fs-err", 4235 + "futures", 4236 + "gourgeist", 4237 + "indicatif", 4238 + "install-wheel-rs", 4239 + "itertools 0.12.1", 4240 + "mimalloc", 4241 + "owo-colors 4.0.0", 4242 + "pep440_rs 0.4.0", 4243 + "pep508_rs", 4244 + "petgraph", 4245 + "platform-host", 4246 + "platform-tags", 4247 + "poloto", 4248 + "pypi-types", 4249 + "resvg", 4250 + "rustc-hash", 4251 + "serde", 4252 + "serde_json", 4253 + "tagu", 4254 + "tempfile", 4255 + "tikv-jemallocator", 4256 + "tokio", 4257 + "tracing", 4258 + "tracing-durations-export", 4259 + "tracing-indicatif", 4260 + "tracing-subscriber", 4261 + "url", 4262 + "uv-build", 4263 + "uv-cache", 4264 + "uv-client", 4265 + "uv-dispatch", 4266 + "uv-distribution", 4267 + "uv-installer", 4268 + "uv-interpreter", 4269 + "uv-normalize", 4270 + "uv-resolver", 4271 + "uv-traits", 4272 + "which", 4273 + ] 4274 + 4275 + [[package]] 4276 + name = "uv-dispatch" 4277 + version = "0.0.1" 4278 + dependencies = [ 4279 + "anyhow", 4280 + "distribution-types", 4281 + "fs-err", 4282 + "futures", 4283 + "gourgeist", 4284 + "itertools 0.12.1", 4285 + "pep508_rs", 4286 + "platform-host", 4287 + "platform-tags", 4288 + "pypi-types", 4289 + "tempfile", 4290 + "tokio", 4291 + "tracing", 4292 + "uv-build", 4293 + "uv-cache", 4294 + "uv-client", 4295 + "uv-distribution", 4296 + "uv-installer", 4297 + "uv-interpreter", 4298 + "uv-resolver", 4299 + "uv-traits", 4300 + ] 4301 + 4302 + [[package]] 4303 + name = "uv-distribution" 4304 + version = "0.0.1" 4305 + dependencies = [ 4306 + "anyhow", 4307 + "cache-key", 4308 + "distribution-filename", 4309 + "distribution-types", 4310 + "fs-err", 4311 + "futures", 4312 + "install-wheel-rs", 4313 + "nanoid", 4314 + "pep440_rs 0.4.0", 4315 + "pep508_rs", 4316 + "platform-tags", 4317 + "pypi-types", 4318 + "reqwest", 4319 + "rmp-serde", 4320 + "rustc-hash", 4321 + "serde", 4322 + "tempfile", 4323 + "thiserror", 4324 + "tokio", 4325 + "tokio-util", 4326 + "tracing", 4327 + "url", 4328 + "uv-cache", 4329 + "uv-client", 4330 + "uv-extract", 4331 + "uv-fs", 4332 + "uv-git", 4333 + "uv-normalize", 4334 + "uv-traits", 4335 + "zip", 4336 + ] 4337 + 4338 + [[package]] 4339 + name = "uv-extract" 4340 + version = "0.0.1" 4341 + dependencies = [ 4342 + "async-compression", 4343 + "async_zip", 4344 + "flate2", 4345 + "fs-err", 4346 + "futures", 4347 + "rayon", 4348 + "rustc-hash", 4349 + "tar", 4350 + "thiserror", 4351 + "tokio", 4352 + "tokio-tar", 4353 + "tokio-util", 4354 + "zip", 4355 + ] 4356 + 4357 + [[package]] 4358 + name = "uv-fs" 4359 + version = "0.0.1" 4360 + dependencies = [ 4361 + "dunce", 4362 + "fs-err", 4363 + "fs2", 4364 + "junction", 4365 + "tempfile", 4366 + "tracing", 4367 + "uv-warnings", 4368 + ] 4369 + 4370 + [[package]] 4371 + name = "uv-git" 4372 + version = "0.0.1" 4373 + dependencies = [ 4374 + "anyhow", 4375 + "base64 0.21.7", 4376 + "cache-key", 4377 + "cargo-util", 4378 + "git2", 4379 + "glob", 4380 + "hex", 4381 + "hmac", 4382 + "home", 4383 + "once_cell", 4384 + "rand", 4385 + "reqwest", 4386 + "serde", 4387 + "sha1", 4388 + "tokio", 4389 + "tracing", 4390 + "url", 4391 + "uv-fs", 4392 + ] 4393 + 4394 + [[package]] 4395 + name = "uv-installer" 4396 + version = "0.0.1" 4397 + dependencies = [ 4398 + "anyhow", 4399 + "distribution-filename", 4400 + "distribution-types", 4401 + "fs-err", 4402 + "futures", 4403 + "install-wheel-rs", 4404 + "once-map", 4405 + "pep440_rs 0.4.0", 4406 + "pep508_rs", 4407 + "platform-tags", 4408 + "pypi-types", 4409 + "rayon", 4410 + "requirements-txt", 4411 + "rustc-hash", 4412 + "tempfile", 4413 + "thiserror", 4414 + "tokio", 4415 + "tracing", 4416 + "url", 4417 + "uv-cache", 4418 + "uv-client", 4419 + "uv-distribution", 4420 + "uv-extract", 4421 + "uv-fs", 4422 + "uv-git", 4423 + "uv-interpreter", 4424 + "uv-normalize", 4425 + "uv-traits", 4426 + ] 4427 + 4428 + [[package]] 4429 + name = "uv-interpreter" 4430 + version = "0.0.1" 4431 + dependencies = [ 4432 + "anyhow", 4433 + "cache-key", 4434 + "fs-err", 4435 + "indoc", 4436 + "insta", 4437 + "itertools 0.12.1", 4438 + "once_cell", 4439 + "pep440_rs 0.4.0", 4440 + "pep508_rs", 4441 + "platform-host", 4442 + "platform-tags", 4443 + "regex", 4444 + "rmp-serde", 4445 + "same-file", 4446 + "serde", 4447 + "serde_json", 4448 + "tempfile", 4449 + "thiserror", 4450 + "tokio", 4451 + "tracing", 4452 + "uv-cache", 4453 + "uv-fs", 4454 + "which", 4455 + ] 4456 + 4457 + [[package]] 4458 + name = "uv-normalize" 4459 + version = "0.0.1" 4460 + dependencies = [ 4461 + "rkyv", 4462 + "serde", 4463 + ] 4464 + 4465 + [[package]] 4466 + name = "uv-resolver" 4467 + version = "0.0.1" 4468 + dependencies = [ 4469 + "anstream", 4470 + "anyhow", 4471 + "cache-key", 4472 + "chrono", 4473 + "clap", 4474 + "dashmap", 4475 + "derivative", 4476 + "distribution-filename", 4477 + "distribution-types", 4478 + "either", 4479 + "fs-err", 4480 + "futures", 4481 + "gourgeist", 4482 + "indexmap 2.2.3", 4483 + "insta", 4484 + "install-wheel-rs", 4485 + "itertools 0.12.1", 4486 + "once-map", 4487 + "once_cell", 4488 + "owo-colors 4.0.0", 4489 + "pep440_rs 0.4.0", 4490 + "pep508_rs", 4491 + "petgraph", 4492 + "platform-host", 4493 + "platform-tags", 4494 + "pubgrub", 4495 + "pypi-types", 4496 + "reqwest", 4497 + "rkyv", 4498 + "rustc-hash", 4499 + "serde_json", 4500 + "sha2", 4501 + "tempfile", 4502 + "thiserror", 4503 + "tokio", 4504 + "tokio-stream", 4505 + "tokio-util", 4506 + "tracing", 4507 + "url", 4508 + "uv-cache", 4509 + "uv-client", 4510 + "uv-distribution", 4511 + "uv-git", 4512 + "uv-interpreter", 4513 + "uv-normalize", 4514 + "uv-traits", 4515 + "uv-warnings", 4516 + "zip", 4517 + ] 4518 + 4519 + [[package]] 4520 + name = "uv-traits" 4521 + version = "0.0.1" 4522 + dependencies = [ 4523 + "anyhow", 4524 + "distribution-types", 4525 + "once-map", 4526 + "pep508_rs", 4527 + "tokio", 4528 + "uv-cache", 4529 + "uv-interpreter", 4530 + "uv-normalize", 4531 + ] 4532 + 4533 + [[package]] 4534 + name = "uv-warnings" 4535 + version = "0.0.1" 4536 + dependencies = [ 4537 + "anstream", 4538 + "once_cell", 4539 + "owo-colors 4.0.0", 4540 + "rustc-hash", 4541 + ] 4542 + 4543 + [[package]] 4544 + name = "valuable" 4545 + version = "0.1.0" 4546 + source = "registry+https://github.com/rust-lang/crates.io-index" 4547 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4548 + 4549 + [[package]] 4550 + name = "vcpkg" 4551 + version = "0.2.15" 4552 + source = "registry+https://github.com/rust-lang/crates.io-index" 4553 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4554 + 4555 + [[package]] 4556 + name = "version_check" 4557 + version = "0.9.4" 4558 + source = "registry+https://github.com/rust-lang/crates.io-index" 4559 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4560 + 4561 + [[package]] 4562 + name = "vt100" 4563 + version = "0.15.2" 4564 + source = "registry+https://github.com/rust-lang/crates.io-index" 4565 + checksum = "84cd863bf0db7e392ba3bd04994be3473491b31e66340672af5d11943c6274de" 4566 + dependencies = [ 4567 + "itoa", 4568 + "log", 4569 + "unicode-width", 4570 + "vte", 4571 + ] 4572 + 4573 + [[package]] 4574 + name = "vte" 4575 + version = "0.11.1" 4576 + source = "registry+https://github.com/rust-lang/crates.io-index" 4577 + checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 4578 + dependencies = [ 4579 + "arrayvec", 4580 + "utf8parse", 4581 + "vte_generate_state_changes", 4582 + ] 4583 + 4584 + [[package]] 4585 + name = "vte_generate_state_changes" 4586 + version = "0.1.1" 4587 + source = "registry+https://github.com/rust-lang/crates.io-index" 4588 + checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 4589 + dependencies = [ 4590 + "proc-macro2", 4591 + "quote", 4592 + ] 4593 + 4594 + [[package]] 4595 + name = "wait-timeout" 4596 + version = "0.2.0" 4597 + source = "registry+https://github.com/rust-lang/crates.io-index" 4598 + checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 4599 + dependencies = [ 4600 + "libc", 4601 + ] 4602 + 4603 + [[package]] 4604 + name = "walkdir" 4605 + version = "2.4.0" 4606 + source = "registry+https://github.com/rust-lang/crates.io-index" 4607 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 4608 + dependencies = [ 4609 + "same-file", 4610 + "winapi-util", 4611 + ] 4612 + 4613 + [[package]] 4614 + name = "want" 4615 + version = "0.3.1" 4616 + source = "registry+https://github.com/rust-lang/crates.io-index" 4617 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4618 + dependencies = [ 4619 + "try-lock", 4620 + ] 4621 + 4622 + [[package]] 4623 + name = "wasi" 4624 + version = "0.11.0+wasi-snapshot-preview1" 4625 + source = "registry+https://github.com/rust-lang/crates.io-index" 4626 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4627 + 4628 + [[package]] 4629 + name = "wasm-bindgen" 4630 + version = "0.2.91" 4631 + source = "registry+https://github.com/rust-lang/crates.io-index" 4632 + checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 4633 + dependencies = [ 4634 + "cfg-if", 4635 + "wasm-bindgen-macro", 4636 + ] 4637 + 4638 + [[package]] 4639 + name = "wasm-bindgen-backend" 4640 + version = "0.2.91" 4641 + source = "registry+https://github.com/rust-lang/crates.io-index" 4642 + checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 4643 + dependencies = [ 4644 + "bumpalo", 4645 + "log", 4646 + "once_cell", 4647 + "proc-macro2", 4648 + "quote", 4649 + "syn 2.0.48", 4650 + "wasm-bindgen-shared", 4651 + ] 4652 + 4653 + [[package]] 4654 + name = "wasm-bindgen-futures" 4655 + version = "0.4.41" 4656 + source = "registry+https://github.com/rust-lang/crates.io-index" 4657 + checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 4658 + dependencies = [ 4659 + "cfg-if", 4660 + "js-sys", 4661 + "wasm-bindgen", 4662 + "web-sys", 4663 + ] 4664 + 4665 + [[package]] 4666 + name = "wasm-bindgen-macro" 4667 + version = "0.2.91" 4668 + source = "registry+https://github.com/rust-lang/crates.io-index" 4669 + checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 4670 + dependencies = [ 4671 + "quote", 4672 + "wasm-bindgen-macro-support", 4673 + ] 4674 + 4675 + [[package]] 4676 + name = "wasm-bindgen-macro-support" 4677 + version = "0.2.91" 4678 + source = "registry+https://github.com/rust-lang/crates.io-index" 4679 + checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 4680 + dependencies = [ 4681 + "proc-macro2", 4682 + "quote", 4683 + "syn 2.0.48", 4684 + "wasm-bindgen-backend", 4685 + "wasm-bindgen-shared", 4686 + ] 4687 + 4688 + [[package]] 4689 + name = "wasm-bindgen-shared" 4690 + version = "0.2.91" 4691 + source = "registry+https://github.com/rust-lang/crates.io-index" 4692 + checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 4693 + 4694 + [[package]] 4695 + name = "wasm-streams" 4696 + version = "0.4.0" 4697 + source = "registry+https://github.com/rust-lang/crates.io-index" 4698 + checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 4699 + dependencies = [ 4700 + "futures-util", 4701 + "js-sys", 4702 + "wasm-bindgen", 4703 + "wasm-bindgen-futures", 4704 + "web-sys", 4705 + ] 4706 + 4707 + [[package]] 4708 + name = "wasm-timer" 4709 + version = "0.2.5" 4710 + source = "registry+https://github.com/rust-lang/crates.io-index" 4711 + checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 4712 + dependencies = [ 4713 + "futures", 4714 + "js-sys", 4715 + "parking_lot 0.11.2", 4716 + "pin-utils", 4717 + "wasm-bindgen", 4718 + "wasm-bindgen-futures", 4719 + "web-sys", 4720 + ] 4721 + 4722 + [[package]] 4723 + name = "web-sys" 4724 + version = "0.3.68" 4725 + source = "registry+https://github.com/rust-lang/crates.io-index" 4726 + checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 4727 + dependencies = [ 4728 + "js-sys", 4729 + "wasm-bindgen", 4730 + ] 4731 + 4732 + [[package]] 4733 + name = "webpki-roots" 4734 + version = "0.25.4" 4735 + source = "registry+https://github.com/rust-lang/crates.io-index" 4736 + checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 4737 + 4738 + [[package]] 4739 + name = "weezl" 4740 + version = "0.1.8" 4741 + source = "registry+https://github.com/rust-lang/crates.io-index" 4742 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 4743 + 4744 + [[package]] 4745 + name = "which" 4746 + version = "6.0.0" 4747 + source = "registry+https://github.com/rust-lang/crates.io-index" 4748 + checksum = "7fa5e0c10bf77f44aac573e498d1a82d5fbd5e91f6fc0a99e7be4b38e85e101c" 4749 + dependencies = [ 4750 + "either", 4751 + "home", 4752 + "once_cell", 4753 + "rustix", 4754 + "windows-sys 0.52.0", 4755 + ] 4756 + 4757 + [[package]] 4758 + name = "winapi" 4759 + version = "0.3.9" 4760 + source = "registry+https://github.com/rust-lang/crates.io-index" 4761 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4762 + dependencies = [ 4763 + "winapi-i686-pc-windows-gnu", 4764 + "winapi-x86_64-pc-windows-gnu", 4765 + ] 4766 + 4767 + [[package]] 4768 + name = "winapi-i686-pc-windows-gnu" 4769 + version = "0.4.0" 4770 + source = "registry+https://github.com/rust-lang/crates.io-index" 4771 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4772 + 4773 + [[package]] 4774 + name = "winapi-util" 4775 + version = "0.1.6" 4776 + source = "registry+https://github.com/rust-lang/crates.io-index" 4777 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 4778 + dependencies = [ 4779 + "winapi", 4780 + ] 4781 + 4782 + [[package]] 4783 + name = "winapi-x86_64-pc-windows-gnu" 4784 + version = "0.4.0" 4785 + source = "registry+https://github.com/rust-lang/crates.io-index" 4786 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4787 + 4788 + [[package]] 4789 + name = "windows" 4790 + version = "0.52.0" 4791 + source = "registry+https://github.com/rust-lang/crates.io-index" 4792 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 4793 + dependencies = [ 4794 + "windows-core", 4795 + "windows-targets 0.52.0", 4796 + ] 4797 + 4798 + [[package]] 4799 + name = "windows-core" 4800 + version = "0.52.0" 4801 + source = "registry+https://github.com/rust-lang/crates.io-index" 4802 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 4803 + dependencies = [ 4804 + "windows-targets 0.52.0", 4805 + ] 4806 + 4807 + [[package]] 4808 + name = "windows-sys" 4809 + version = "0.48.0" 4810 + source = "registry+https://github.com/rust-lang/crates.io-index" 4811 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4812 + dependencies = [ 4813 + "windows-targets 0.48.5", 4814 + ] 4815 + 4816 + [[package]] 4817 + name = "windows-sys" 4818 + version = "0.52.0" 4819 + source = "registry+https://github.com/rust-lang/crates.io-index" 4820 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4821 + dependencies = [ 4822 + "windows-targets 0.52.0", 4823 + ] 4824 + 4825 + [[package]] 4826 + name = "windows-targets" 4827 + version = "0.48.5" 4828 + source = "registry+https://github.com/rust-lang/crates.io-index" 4829 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4830 + dependencies = [ 4831 + "windows_aarch64_gnullvm 0.48.5", 4832 + "windows_aarch64_msvc 0.48.5", 4833 + "windows_i686_gnu 0.48.5", 4834 + "windows_i686_msvc 0.48.5", 4835 + "windows_x86_64_gnu 0.48.5", 4836 + "windows_x86_64_gnullvm 0.48.5", 4837 + "windows_x86_64_msvc 0.48.5", 4838 + ] 4839 + 4840 + [[package]] 4841 + name = "windows-targets" 4842 + version = "0.52.0" 4843 + source = "registry+https://github.com/rust-lang/crates.io-index" 4844 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 4845 + dependencies = [ 4846 + "windows_aarch64_gnullvm 0.52.0", 4847 + "windows_aarch64_msvc 0.52.0", 4848 + "windows_i686_gnu 0.52.0", 4849 + "windows_i686_msvc 0.52.0", 4850 + "windows_x86_64_gnu 0.52.0", 4851 + "windows_x86_64_gnullvm 0.52.0", 4852 + "windows_x86_64_msvc 0.52.0", 4853 + ] 4854 + 4855 + [[package]] 4856 + name = "windows_aarch64_gnullvm" 4857 + version = "0.48.5" 4858 + source = "registry+https://github.com/rust-lang/crates.io-index" 4859 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4860 + 4861 + [[package]] 4862 + name = "windows_aarch64_gnullvm" 4863 + version = "0.52.0" 4864 + source = "registry+https://github.com/rust-lang/crates.io-index" 4865 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 4866 + 4867 + [[package]] 4868 + name = "windows_aarch64_msvc" 4869 + version = "0.48.5" 4870 + source = "registry+https://github.com/rust-lang/crates.io-index" 4871 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4872 + 4873 + [[package]] 4874 + name = "windows_aarch64_msvc" 4875 + version = "0.52.0" 4876 + source = "registry+https://github.com/rust-lang/crates.io-index" 4877 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 4878 + 4879 + [[package]] 4880 + name = "windows_i686_gnu" 4881 + version = "0.48.5" 4882 + source = "registry+https://github.com/rust-lang/crates.io-index" 4883 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4884 + 4885 + [[package]] 4886 + name = "windows_i686_gnu" 4887 + version = "0.52.0" 4888 + source = "registry+https://github.com/rust-lang/crates.io-index" 4889 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 4890 + 4891 + [[package]] 4892 + name = "windows_i686_msvc" 4893 + version = "0.48.5" 4894 + source = "registry+https://github.com/rust-lang/crates.io-index" 4895 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4896 + 4897 + [[package]] 4898 + name = "windows_i686_msvc" 4899 + version = "0.52.0" 4900 + source = "registry+https://github.com/rust-lang/crates.io-index" 4901 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 4902 + 4903 + [[package]] 4904 + name = "windows_x86_64_gnu" 4905 + version = "0.48.5" 4906 + source = "registry+https://github.com/rust-lang/crates.io-index" 4907 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4908 + 4909 + [[package]] 4910 + name = "windows_x86_64_gnu" 4911 + version = "0.52.0" 4912 + source = "registry+https://github.com/rust-lang/crates.io-index" 4913 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 4914 + 4915 + [[package]] 4916 + name = "windows_x86_64_gnullvm" 4917 + version = "0.48.5" 4918 + source = "registry+https://github.com/rust-lang/crates.io-index" 4919 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4920 + 4921 + [[package]] 4922 + name = "windows_x86_64_gnullvm" 4923 + version = "0.52.0" 4924 + source = "registry+https://github.com/rust-lang/crates.io-index" 4925 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 4926 + 4927 + [[package]] 4928 + name = "windows_x86_64_msvc" 4929 + version = "0.48.5" 4930 + source = "registry+https://github.com/rust-lang/crates.io-index" 4931 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4932 + 4933 + [[package]] 4934 + name = "windows_x86_64_msvc" 4935 + version = "0.52.0" 4936 + source = "registry+https://github.com/rust-lang/crates.io-index" 4937 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 4938 + 4939 + [[package]] 4940 + name = "winnow" 4941 + version = "0.6.1" 4942 + source = "registry+https://github.com/rust-lang/crates.io-index" 4943 + checksum = "d90f4e0f530c4c69f62b80d839e9ef3855edc9cba471a160c4d692deed62b401" 4944 + dependencies = [ 4945 + "memchr", 4946 + ] 4947 + 4948 + [[package]] 4949 + name = "winreg" 4950 + version = "0.50.0" 4951 + source = "registry+https://github.com/rust-lang/crates.io-index" 4952 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4953 + dependencies = [ 4954 + "cfg-if", 4955 + "windows-sys 0.48.0", 4956 + ] 4957 + 4958 + [[package]] 4959 + name = "wyz" 4960 + version = "0.5.1" 4961 + source = "registry+https://github.com/rust-lang/crates.io-index" 4962 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 4963 + dependencies = [ 4964 + "tap", 4965 + ] 4966 + 4967 + [[package]] 4968 + name = "xattr" 4969 + version = "1.3.1" 4970 + source = "registry+https://github.com/rust-lang/crates.io-index" 4971 + checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 4972 + dependencies = [ 4973 + "libc", 4974 + "linux-raw-sys", 4975 + "rustix", 4976 + ] 4977 + 4978 + [[package]] 4979 + name = "xmlparser" 4980 + version = "0.13.6" 4981 + source = "registry+https://github.com/rust-lang/crates.io-index" 4982 + checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 4983 + 4984 + [[package]] 4985 + name = "yaml-rust" 4986 + version = "0.4.5" 4987 + source = "registry+https://github.com/rust-lang/crates.io-index" 4988 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 4989 + dependencies = [ 4990 + "linked-hash-map", 4991 + ] 4992 + 4993 + [[package]] 4994 + name = "zip" 4995 + version = "0.6.6" 4996 + source = "registry+https://github.com/rust-lang/crates.io-index" 4997 + checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 4998 + dependencies = [ 4999 + "byteorder", 5000 + "crc32fast", 5001 + "crossbeam-utils", 5002 + "flate2", 5003 + ]
+68
pkgs/by-name/uv/uv/package.nix
···
··· 1 + { lib 2 + , cargo 3 + , cmake 4 + , darwin 5 + , fetchFromGitHub 6 + , libgit2 7 + , openssl 8 + , pkg-config 9 + , python3 10 + , rustPlatform 11 + , rustc 12 + , stdenv 13 + , zlib 14 + }: 15 + 16 + python3.pkgs.buildPythonApplication rec { 17 + pname = "uv"; 18 + version = "0.1.0"; 19 + pyproject = true; 20 + 21 + src = fetchFromGitHub { 22 + owner = "astral-sh"; 23 + repo = "uv"; 24 + rev = version; 25 + hash = "sha256-FlrBanX6ioLRUVEUGYUrJgt6elKg5nr8/sMAUQ/LljM="; 26 + }; 27 + 28 + cargoDeps = rustPlatform.importCargoLock { 29 + lockFile = ./Cargo.lock; 30 + outputHashes = { 31 + "async_zip-0.0.16" = "sha256-M94ceTCtyQc1AtPXYrVGplShQhItqZZa/x5qLiL+gs0="; 32 + "pubgrub-0.2.1" = "sha256-yCeUJp0Cy5Fe0g3Ba9ZFqTJ7IzSFqrX8Dv3+N8DAEZs="; 33 + }; 34 + }; 35 + 36 + nativeBuildInputs = [ 37 + cargo 38 + cmake 39 + pkg-config 40 + rustPlatform.cargoSetupHook 41 + rustPlatform.maturinBuildHook 42 + rustc 43 + ]; 44 + 45 + buildInputs = [ 46 + libgit2 47 + openssl 48 + zlib 49 + ] ++ lib.optionals stdenv.isDarwin [ 50 + darwin.apple_sdk.frameworks.SystemConfiguration 51 + ]; 52 + 53 + dontUseCmakeConfigure = true; 54 + 55 + pythonImportsCheck = [ "uv" ]; 56 + 57 + env = { 58 + OPENSSL_NO_VENDOR = true; 59 + }; 60 + 61 + meta = with lib; { 62 + description = "An extremely fast Python package installer and resolver, written in Rust"; 63 + homepage = "https://github.com/astral-sh/uv"; 64 + license = with licenses; [ asl20 mit ]; 65 + maintainers = with maintainers; [ marsam ]; 66 + mainProgram = "uv"; 67 + }; 68 + }
+3 -3
pkgs/data/themes/alacritty-theme/default.nix
··· 6 7 stdenvNoCC.mkDerivation (self: { 8 name = "alacritty-theme"; 9 - version = "unstable-2024-01-21"; 10 11 src = fetchFromGitHub { 12 owner = "alacritty"; 13 repo = "alacritty-theme"; 14 - rev = "f03686afad05274f5fbd2507f85f95b1a6542df4"; 15 - hash = "sha256-457kKE3I4zGf1EKkEoyZu0Fa/1O3yiryzHVEw2rNZt8="; 16 }; 17 18 dontConfigure = true;
··· 6 7 stdenvNoCC.mkDerivation (self: { 8 name = "alacritty-theme"; 9 + version = "unstable-2024-02-11"; 10 11 src = fetchFromGitHub { 12 owner = "alacritty"; 13 repo = "alacritty-theme"; 14 + rev = "0587019bac748dfb5cc1b768f89c88ad9291b66b"; 15 + hash = "sha256-WPatWpBCZYFCohUh3U9QzSTFJgtou8+861013jz49Lw="; 16 }; 17 18 dontConfigure = true;
+5 -2
pkgs/development/python-modules/accelerate/default.nix
··· 2 , lib 3 , buildPythonPackage 4 , fetchFromGitHub 5 - , fetchpatch 6 - , pythonAtLeast 7 , pythonOlder 8 , pytestCheckHook 9 , setuptools ··· 13 , pyyaml 14 , safetensors 15 , torch 16 , evaluate 17 , parameterized 18 , transformers ··· 52 preCheck = '' 53 export HOME=$(mktemp -d) 54 export PATH=$out/bin:$PATH 55 ''; 56 pytestFlagsArray = [ "tests" ]; 57 disabledTests = [ ··· 74 ] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [ 75 # usual aarch64-linux RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly 76 "CheckpointTest" 77 ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ 78 # RuntimeError: torch_shm_manager: execl failed: Permission denied 79 "CheckpointTest"
··· 2 , lib 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pythonOlder 6 , pytestCheckHook 7 , setuptools ··· 11 , pyyaml 12 , safetensors 13 , torch 14 + , cudatoolkit 15 , evaluate 16 , parameterized 17 , transformers ··· 51 preCheck = '' 52 export HOME=$(mktemp -d) 53 export PATH=$out/bin:$PATH 54 + '' + lib.optionalString (lib.meta.availableOn stdenv.hostPlatform cudatoolkit) '' 55 + export TRITON_PTXAS_PATH="${cudatoolkit}/bin/ptxas" 56 ''; 57 pytestFlagsArray = [ "tests" ]; 58 disabledTests = [ ··· 75 ] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [ 76 # usual aarch64-linux RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly 77 "CheckpointTest" 78 + # requires ptxas from cudatoolkit, which is unavailable on aarch64-linux 79 + "test_dynamo_extract_model" 80 ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ 81 # RuntimeError: torch_shm_manager: execl failed: Permission denied 82 "CheckpointTest"
+2 -2
pkgs/development/python-modules/deluge-client/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "deluge-client"; 5 - version = "1.9.0"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "0d2f12108a147d44590c8df63997fcb32f8b2fbc18f8cbb221f0136e2e372b85"; 11 }; 12 13 # it will try to connect to a running instance
··· 2 3 buildPythonPackage rec { 4 pname = "deluge-client"; 5 + version = "1.10.0"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "sha256-Em3dVWkSYI/iBaRUIiIRsc11pg30QAvJYwa1F/Zn9Ik="; 11 }; 12 13 # it will try to connect to a running instance
+2 -2
pkgs/development/python-modules/oelint-parser/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "oelint-parser"; 12 - version = "3.1.0"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit version; 17 pname = "oelint_parser"; 18 - hash = "sha256-uR90Af/3E8YVZ2ALSVFOkTr59iVw5NkLOnQBm4Us1vk="; 19 }; 20 21 buildInputs = [ pip ];
··· 9 10 buildPythonPackage rec { 11 pname = "oelint-parser"; 12 + version = "3.2.0"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit version; 17 pname = "oelint_parser"; 18 + hash = "sha256-RmOKrR89bRzewUwK4oebkM8GmfEcwcx8fKFiChnMD5A="; 19 }; 20 21 buildInputs = [ pip ];
+2 -2
pkgs/development/python-modules/openwebifpy/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "openwebifpy"; 19 - version = "4.2.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.11"; 23 24 src = fetchPypi { 25 inherit pname version; 26 - hash = "sha256-dCgbMyyVmYGPV8GyZUrMR+IO8nGoQ//dnmHmhFH2iJo="; 27 }; 28 29 nativeBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "openwebifpy"; 19 + version = "4.2.4"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.11"; 23 24 src = fetchPypi { 25 inherit pname version; 26 + hash = "sha256-qL/H2F+/d/JWwmUbZhvoMlZZDGgEpRBmHabt1MWjGAs="; 27 }; 28 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/peaqevcore/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "peaqevcore"; 9 - version = "19.6.6"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-4T30jiMRAbPDgGW8Zcolj1k3UpKN1/juXtYSHrjO804="; 17 }; 18 19 postPatch = ''
··· 6 7 buildPythonPackage rec { 8 pname = "peaqevcore"; 9 + version = "19.6.10"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-iaZrPgGD7BM7H+i2R9qQBM55KcFu/Rqyho3AxXw15N0="; 17 }; 18 19 postPatch = ''
+5
pkgs/development/r-modules/default.nix
··· 328 chebpol = [ pkgs.fftw.dev ]; 329 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 330 curl = [ pkgs.curl.dev ]; 331 data_table = with pkgs; [ pkg-config zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 332 devEMF = with pkgs; [ xorg.libXft.dev ]; 333 diversitree = with pkgs; [ gsl fftw ]; ··· 425 webp = [ pkgs.pkg-config ]; 426 seqminer = with pkgs; [ zlib.dev bzip2 ]; 427 sf = with pkgs; [ gdal proj geos libtiff curl ]; 428 terra = with pkgs; [ gdal proj geos ]; 429 showtext = with pkgs; [ zlib libpng icu freetype.dev ]; 430 simplexreg = [ pkgs.gsl ]; 431 spate = [ pkgs.fftw.dev ]; ··· 525 chebpol = [ pkgs.pkg-config ]; 526 fftw = [ pkgs.pkg-config ]; 527 gdtools = [ pkgs.pkg-config ]; 528 SuperGauss = [ pkgs.pkg-config pkgs.fftw.dev]; 529 jqr = [ pkgs.jq.lib ]; 530 kza = [ pkgs.pkg-config ]; ··· 626 redux = [ pkgs.hiredis ]; 627 RmecabKo = [ pkgs.mecab ]; 628 PoissonBinomial = [ pkgs.fftw.dev ]; 629 rrd = [ pkgs.rrdtool ]; 630 flowWorkspace = [ pkgs.zlib.dev ]; 631 RcppMeCab = [ pkgs.mecab ];
··· 328 chebpol = [ pkgs.fftw.dev ]; 329 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 330 curl = [ pkgs.curl.dev ]; 331 + CytoML = [ pkgs.libxml2.dev ]; 332 data_table = with pkgs; [ pkg-config zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 333 devEMF = with pkgs; [ xorg.libXft.dev ]; 334 diversitree = with pkgs; [ gsl fftw ]; ··· 426 webp = [ pkgs.pkg-config ]; 427 seqminer = with pkgs; [ zlib.dev bzip2 ]; 428 sf = with pkgs; [ gdal proj geos libtiff curl ]; 429 + strawr = with pkgs; [ curl.dev ]; 430 terra = with pkgs; [ gdal proj geos ]; 431 + apcf = with pkgs; [ geos ]; 432 showtext = with pkgs; [ zlib libpng icu freetype.dev ]; 433 simplexreg = [ pkgs.gsl ]; 434 spate = [ pkgs.fftw.dev ]; ··· 528 chebpol = [ pkgs.pkg-config ]; 529 fftw = [ pkgs.pkg-config ]; 530 gdtools = [ pkgs.pkg-config ]; 531 + archive = [ pkgs.libarchive]; 532 SuperGauss = [ pkgs.pkg-config pkgs.fftw.dev]; 533 jqr = [ pkgs.jq.lib ]; 534 kza = [ pkgs.pkg-config ]; ··· 630 redux = [ pkgs.hiredis ]; 631 RmecabKo = [ pkgs.mecab ]; 632 PoissonBinomial = [ pkgs.fftw.dev ]; 633 + PoissonMultinomial = [ pkgs.fftw.dev ]; 634 rrd = [ pkgs.rrdtool ]; 635 flowWorkspace = [ pkgs.zlib.dev ]; 636 RcppMeCab = [ pkgs.mecab ];
+5 -5
pkgs/development/tools/build-managers/scala-cli/sources.json
··· 1 { 2 - "version": "1.1.1", 3 "assets": { 4 "aarch64-darwin": { 5 "asset": "scala-cli-aarch64-apple-darwin.gz", 6 - "sha256": "1sxfwdgqzhxxhgj0kid10iay4sqq9ajndnncxl7jhh2ib59bavj2" 7 }, 8 "aarch64-linux": { 9 "asset": "scala-cli-aarch64-pc-linux.gz", 10 - "sha256": "1z3xvyjs69iy0y59q2bwpa6blslhc1wdgwrm8xsfd0x8y0dg8kq2" 11 }, 12 "x86_64-darwin": { 13 "asset": "scala-cli-x86_64-apple-darwin.gz", 14 - "sha256": "05xincadr0y5kly8j058pn41wa6qmqcf6p62s45h881y3ydghxch" 15 }, 16 "x86_64-linux": { 17 "asset": "scala-cli-x86_64-pc-linux.gz", 18 - "sha256": "0knjkkyw7libqdzw770whrbwdcyr5qabnjw7ayps0k4kql43cyns" 19 } 20 } 21 }
··· 1 { 2 + "version": "1.1.3", 3 "assets": { 4 "aarch64-darwin": { 5 "asset": "scala-cli-aarch64-apple-darwin.gz", 6 + "sha256": "03rxllpnr93ms6j0fny7h2sym9pj1q8xrj0jmhapdjv582j4by82" 7 }, 8 "aarch64-linux": { 9 "asset": "scala-cli-aarch64-pc-linux.gz", 10 + "sha256": "1msi2ylx2qf6k5gm1jj31qh9qbrxp5fydybzb25zclnpwwg1jlyc" 11 }, 12 "x86_64-darwin": { 13 "asset": "scala-cli-x86_64-apple-darwin.gz", 14 + "sha256": "1sl3q59mb56g6795c8sm9kjpdgmpcdd23fxhaw49px2dvyryvxyy" 15 }, 16 "x86_64-linux": { 17 "asset": "scala-cli-x86_64-pc-linux.gz", 18 + "sha256": "17cp6mq0046y21pd7cadxj90aqkqnlz7zx7sdp7mmn3pzjcaynqc" 19 } 20 } 21 }
+4 -4
pkgs/development/tools/reindeer/default.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "reindeer"; 14 - version = "unstable-2024-02-03"; 15 16 src = fetchFromGitHub { 17 owner = "facebookincubator"; 18 repo = pname; 19 - rev = "8dd5629ef78d359fd8d3527157b0375762f22b1e"; 20 - sha256 = "sha256-9WmhP8CyjwohlltfmUn5m29CmBucIH+XrfVjIJX7dS8="; 21 }; 22 23 - cargoSha256 = "sha256-W9YA9OZu71/bSx3EwMeueVQSTExeep+UKGYCD8c4yhc="; 24 25 nativeBuildInputs = [ pkg-config ]; 26 buildInputs =
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "reindeer"; 14 + version = "unstable-2024-02-15"; 15 16 src = fetchFromGitHub { 17 owner = "facebookincubator"; 18 repo = pname; 19 + rev = "a34b75c4d2840f475a5f30b041b0d478bc3f8cce"; 20 + sha256 = "sha256-avY1fXkuP4f8iuoUklcrPb4DpfyftW0FIk6zVUCdBwI="; 21 }; 22 23 + cargoSha256 = "sha256-RSmj0Xf55kEPi5EJ72pe0tagQBkUVf7isvsu7ATzsUk="; 24 25 nativeBuildInputs = [ pkg-config ]; 26 buildInputs =
+75 -71
pkgs/servers/web-apps/lemmy/package.json
··· 1 { 2 "name": "lemmy-ui", 3 - "version": "0.18.5", 4 "description": "An isomorphic UI for lemmy", 5 - "repository": "https://github.com/LemmyNet/lemmy-ui", 6 "license": "AGPL-3.0", 7 - "author": "Dessalines <tyhou13@gmx.com>", 8 "scripts": { 9 "analyze": "webpack --mode=none", 10 - "prebuild:dev": "yarn clean && node generate_translations.js", 11 "build:dev": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=development", 12 - "prebuild:prod": "yarn clean && node generate_translations.js", 13 "build:prod": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=production", 14 "clean": "yarn run rimraf dist", 15 "dev": "yarn build:dev --watch", 16 "lint": "yarn translations:generate && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx \"src/**\" && prettier --check \"src/**/*.{ts,tsx,js,css,scss}\"", 17 "prepare": "husky install", 18 "themes:build": "sass src/assets/css/themes/:src/assets/css/themes", 19 "themes:watch": "sass --watch src/assets/css/themes/:src/assets/css/themes", ··· 21 "translations:init": "git submodule init && yarn translations:update", 22 "translations:update": "git submodule update --remote --recursive" 23 }, 24 - "lint-staged": { 25 - "*.{ts,tsx,js}": [ 26 - "prettier --write", 27 - "eslint --fix" 28 - ], 29 - "*.{css, scss}": [ 30 - "prettier --write" 31 - ], 32 - "package.json": [ 33 - "sortpack" 34 - ] 35 }, 36 "dependencies": { 37 - "@babel/plugin-proposal-decorators": "^7.21.5", 38 - "@babel/plugin-transform-runtime": "^7.21.5", 39 - "@babel/plugin-transform-typescript": "^7.21.5", 40 - "@babel/preset-env": "7.21.5", 41 "@babel/preset-typescript": "^7.21.5", 42 - "@babel/runtime": "^7.21.5", 43 "@emoji-mart/data": "^1.1.0", 44 "autosize": "^6.0.1", 45 - "babel-loader": "^9.1.2", 46 - "babel-plugin-inferno": "^6.6.0", 47 "bootstrap": "^5.3.1", 48 "check-password-strength": "^2.0.7", 49 - "classnames": "^2.3.1", 50 "clean-webpack-plugin": "^4.0.0", 51 - "cookie": "^0.5.0", 52 - "copy-webpack-plugin": "^11.0.0", 53 - "cross-fetch": "^4.0.0", 54 - "css-loader": "^6.7.3", 55 - "date-fns": "^2.30.0", 56 "emoji-mart": "^5.4.0", 57 "emoji-short-name": "^2.0.0", 58 "express": "~4.18.2", 59 "history": "^5.3.0", 60 "html-to-text": "^9.0.5", 61 - "i18next": "^23.3.0", 62 - "inferno": "^8.2.2", 63 - "inferno-create-element": "^8.2.2", 64 "inferno-helmet": "^5.2.1", 65 - "inferno-hydrate": "^8.2.2", 66 "inferno-i18next-dess": "0.0.2", 67 - "inferno-router": "^8.2.2", 68 - "inferno-server": "^8.2.2", 69 - "jwt-decode": "^3.1.2", 70 - "lemmy-js-client": "0.18.1", 71 "lodash.isequal": "^4.5.0", 72 - "markdown-it": "^13.0.1", 73 - "markdown-it-container": "^3.0.0", 74 - "markdown-it-emoji": "^2.0.2", 75 - "markdown-it-footnote": "^3.0.3", 76 "markdown-it-html5-embed": "^1.0.0", 77 "markdown-it-ruby": "^0.1.1", 78 - "markdown-it-sub": "^1.0.0", 79 - "markdown-it-sup": "^1.0.0", 80 - "mini-css-extract-plugin": "^2.7.5", 81 "register-service-worker": "^1.7.2", 82 "run-node-webpack-plugin": "^1.3.0", 83 "sanitize-html": "^2.11.0", 84 - "sass": "^1.64.1", 85 - "sass-loader": "^13.3.2", 86 - "serialize-javascript": "^6.0.1", 87 "service-worker-webpack": "^1.0.0", 88 - "sharp": "^0.32.4", 89 "tippy.js": "^6.3.7", 90 "toastify-js": "^1.12.0", 91 "tributejs": "^5.1.3", 92 - "webpack": "5.88.2", 93 "webpack-cli": "^5.1.4", 94 "webpack-node-externals": "^3.0.0" 95 }, 96 "devDependencies": { 97 - "@babel/core": "^7.21.5", 98 - "@babel/plugin-proposal-class-properties": "^7.18.6", 99 "@types/autosize": "^4.0.0", 100 "@types/bootstrap": "^5.2.6", 101 - "@types/cookie": "^0.5.1", 102 "@types/express": "^4.17.17", 103 "@types/html-to-text": "^9.0.0", 104 "@types/lodash.isequal": "^4.5.6", 105 - "@types/markdown-it": "^12.2.3", 106 "@types/markdown-it-container": "^2.0.6", 107 - "@types/node": "^20.4.5", 108 "@types/path-browserify": "^1.0.0", 109 "@types/sanitize-html": "^2.9.0", 110 "@types/serialize-javascript": "^5.0.1", 111 "@types/toastify-js": "^1.12.0", 112 - "@typescript-eslint/eslint-plugin": "^6.2.0", 113 - "@typescript-eslint/parser": "^6.2.0", 114 - "eslint": "^8.45.0", 115 - "eslint-plugin-inferno": "^7.32.2", 116 "eslint-plugin-jsx-a11y": "^6.7.1", 117 - "eslint-plugin-prettier": "^5.0.0", 118 - "husky": "^8.0.3", 119 "import-sort-style-module": "^6.0.0", 120 - "lint-staged": "^13.2.3", 121 - "prettier": "^3.0.0", 122 "prettier-plugin-import-sort": "^0.0.7", 123 "prettier-plugin-organize-imports": "^3.2.3", 124 - "prettier-plugin-packagejson": "^2.4.5", 125 "rimraf": "^5.0.0", 126 - "sortpack": "^2.3.4", 127 - "style-loader": "^3.3.2", 128 - "terser": "^5.19.2", 129 - "typescript": "^5.1.6", 130 - "typescript-language-server": "^3.3.2", 131 "webpack-bundle-analyzer": "^4.9.0", 132 "webpack-dev-server": "4.15.1" 133 }, 134 - "packageManager": "yarn@1.22.19", 135 - "engines": { 136 - "node": ">=8.9.0" 137 }, 138 "engineStrict": true, 139 "importSort": { 140 ".js, .jsx, .ts, .tsx": {
··· 1 { 2 "name": "lemmy-ui", 3 "description": "An isomorphic UI for lemmy", 4 + "version": "0.19.3", 5 + "author": "Dessalines <tyhou13@gmx.com>", 6 "license": "AGPL-3.0", 7 "scripts": { 8 "analyze": "webpack --mode=none", 9 "build:dev": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=development", 10 "build:prod": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=production", 11 "clean": "yarn run rimraf dist", 12 "dev": "yarn build:dev --watch", 13 "lint": "yarn translations:generate && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx \"src/**\" && prettier --check \"src/**/*.{ts,tsx,js,css,scss}\"", 14 + "postinstall": "husky install", 15 + "prebuild:dev": "yarn clean && node generate_translations.js", 16 + "prebuild:prod": "yarn clean && node generate_translations.js", 17 "prepare": "husky install", 18 "themes:build": "sass src/assets/css/themes/:src/assets/css/themes", 19 "themes:watch": "sass --watch src/assets/css/themes/:src/assets/css/themes", ··· 21 "translations:init": "git submodule init && yarn translations:update", 22 "translations:update": "git submodule update --remote --recursive" 23 }, 24 + "repository": "https://github.com/LemmyNet/lemmy-ui", 25 + "engines": { 26 + "node": ">=8.9.0" 27 }, 28 "dependencies": { 29 + "@babel/plugin-proposal-class-properties": "^7.18.6", 30 + "@babel/plugin-proposal-decorators": "^7.23.7", 31 + "@babel/plugin-transform-runtime": "^7.23.7", 32 + "@babel/plugin-transform-typescript": "^7.23.6", 33 + "@babel/preset-env": "^7.23.8", 34 "@babel/preset-typescript": "^7.21.5", 35 + "@babel/runtime": "^7.23.8", 36 "@emoji-mart/data": "^1.1.0", 37 + "@shortcm/qr-image": "^9.0.2", 38 "autosize": "^6.0.1", 39 + "babel-loader": "^9.1.3", 40 + "babel-plugin-inferno": "^6.7.1", 41 "bootstrap": "^5.3.1", 42 "check-password-strength": "^2.0.7", 43 + "classnames": "^2.5.1", 44 "clean-webpack-plugin": "^4.0.0", 45 + "cookie": "^0.6.0", 46 + "copy-webpack-plugin": "^12.0.2", 47 + "css-loader": "^6.9.1", 48 + "date-fns": "^3.2.0", 49 "emoji-mart": "^5.4.0", 50 "emoji-short-name": "^2.0.0", 51 "express": "~4.18.2", 52 "history": "^5.3.0", 53 "html-to-text": "^9.0.5", 54 + "husky": "^8.0.3", 55 + "i18next": "^23.7.16", 56 + "inferno": "^8.2.3", 57 + "inferno-create-element": "^8.2.3", 58 "inferno-helmet": "^5.2.1", 59 + "inferno-hydrate": "^8.2.3", 60 "inferno-i18next-dess": "0.0.2", 61 + "inferno-router": "^8.2.3", 62 + "inferno-server": "^8.2.3", 63 + "jwt-decode": "^4.0.0", 64 + "lemmy-js-client": "0.19.2-alpha.1", 65 "lodash.isequal": "^4.5.0", 66 + "markdown-it": "^14.0.0", 67 + "markdown-it-bidi": "^0.1.0", 68 + "markdown-it-container": "^4.0.0", 69 + "markdown-it-emoji": "^3.0.0", 70 + "markdown-it-footnote": "^4.0.0", 71 + "markdown-it-highlightjs": "^4.0.1", 72 "markdown-it-html5-embed": "^1.0.0", 73 "markdown-it-ruby": "^0.1.1", 74 + "markdown-it-sub": "^2.0.0", 75 + "markdown-it-sup": "^2.0.0", 76 + "mini-css-extract-plugin": "^2.7.7", 77 "register-service-worker": "^1.7.2", 78 "run-node-webpack-plugin": "^1.3.0", 79 + "rxjs": "^7.8.1", 80 "sanitize-html": "^2.11.0", 81 + "sass": "^1.70.0", 82 + "sass-loader": "^14.0.0", 83 + "serialize-javascript": "^6.0.2", 84 "service-worker-webpack": "^1.0.0", 85 + "sharp": "0.32.6", 86 "tippy.js": "^6.3.7", 87 "toastify-js": "^1.12.0", 88 "tributejs": "^5.1.3", 89 + "webpack": "^5.89.0", 90 "webpack-cli": "^5.1.4", 91 "webpack-node-externals": "^3.0.0" 92 }, 93 "devDependencies": { 94 + "@babel/core": "^7.23.7", 95 "@types/autosize": "^4.0.0", 96 "@types/bootstrap": "^5.2.6", 97 + "@types/cookie": "^0.6.0", 98 "@types/express": "^4.17.17", 99 "@types/html-to-text": "^9.0.0", 100 "@types/lodash.isequal": "^4.5.6", 101 + "@types/markdown-it": "^13.0.7", 102 "@types/markdown-it-container": "^2.0.6", 103 + "@types/node": "^20.11.5", 104 "@types/path-browserify": "^1.0.0", 105 "@types/sanitize-html": "^2.9.0", 106 "@types/serialize-javascript": "^5.0.1", 107 "@types/toastify-js": "^1.12.0", 108 + "@typescript-eslint/eslint-plugin": "^6.19.0", 109 + "@typescript-eslint/parser": "^6.19.0", 110 + "eslint": "^8.56.0", 111 + "eslint-plugin-inferno": "^7.33.3", 112 "eslint-plugin-jsx-a11y": "^6.7.1", 113 + "eslint-plugin-prettier": "^5.1.3", 114 "import-sort-style-module": "^6.0.0", 115 + "lint-staged": "^15.2.0", 116 + "prettier": "^3.2.4", 117 "prettier-plugin-import-sort": "^0.0.7", 118 "prettier-plugin-organize-imports": "^3.2.3", 119 + "prettier-plugin-packagejson": "^2.4.9", 120 "rimraf": "^5.0.0", 121 + "sortpack": "^2.4.0", 122 + "style-loader": "^3.3.4", 123 + "terser": "^5.27.0", 124 + "typescript": "^5.3.3", 125 + "typescript-language-server": "^4.3.1", 126 "webpack-bundle-analyzer": "^4.9.0", 127 "webpack-dev-server": "4.15.1" 128 }, 129 + "lint-staged": { 130 + "*.{css, scss}": [ 131 + "prettier --write" 132 + ], 133 + "*.{ts,tsx,js}": [ 134 + "prettier --write", 135 + "eslint --fix" 136 + ], 137 + "package.json": [ 138 + "sortpack" 139 + ] 140 }, 141 + "packageManager": "yarn@1.22.19", 142 "engineStrict": true, 143 "importSort": { 144 ".js, .jsx, .ts, .tsx": {
+6 -6
pkgs/servers/web-apps/lemmy/pin.json
··· 1 { 2 - "serverVersion": "0.18.5", 3 - "uiVersion": "0.18.5", 4 - "serverHash": "sha256-tj8zryCzW3r6VGiNGlI5eo0I+rJfhTUOGtb3YieodpQ=", 5 - "serverCargoHash": "sha256-80jk1GhnXos+lil3joEtPwJjsE8qSEm/WinCfZ3CF/c=", 6 - "uiHash": "sha256-fyXKhVTFc1+gG2TXb9l/YkcwRt/p7DWtB1FO5mpQ3i4=", 7 - "uiYarnDepsHash": "sha256-rLP1CQd75nVfI6C0sC21TUskzVfbGHm2fblcYr6JcGc=" 8 }
··· 1 { 2 + "serverVersion": "0.19.3", 3 + "uiVersion": "0.19.3", 4 + "serverHash": "sha256-iO7bY2oChx0cZbwgXMrrV4e1kffop9s4xmepNywnApU=", 5 + "serverCargoHash": "sha256-XXfg0o/LQ/imnsHsREoBXMDP1hU5Stxv0s6AP+o+USc=", 6 + "uiHash": "sha256-6GGiKCNL0PALdz0W0d1OOPyMIA5kaoL3148j9GWzrMM=", 7 + "uiYarnDepsHash": "sha256-UQ+B2vF34L+HuisyO7wdW2zCfEEGa8YdnoaB4jHi+DY=" 8 }
+5
pkgs/servers/web-apps/lemmy/server.nix
··· 46 PROTOC_INCLUDE = "${protobuf}/include"; 47 nativeBuildInputs = [ protobuf rustfmt ]; 48 49 passthru.updateScript = ./update.py; 50 passthru.tests.lemmy-server = nixosTests.lemmy; 51
··· 46 PROTOC_INCLUDE = "${protobuf}/include"; 47 nativeBuildInputs = [ protobuf rustfmt ]; 48 49 + checkFlags = [ 50 + # test requires database access 51 + "--skip=session_middleware::tests::test_session_auth" 52 + ]; 53 + 54 passthru.updateScript = ./update.py; 55 passthru.tests.lemmy-server = nixosTests.lemmy; 56
+3 -3
pkgs/tools/security/pass/rofi-pass.nix
··· 29 30 stdenv.mkDerivation { 31 pname = "rofi-pass"; 32 - version = "unstable-2023-07-07"; 33 34 src = fetchFromGitHub { 35 owner = "carnager"; 36 repo = "rofi-pass"; 37 - rev = "e77cbdbe0e885f0b1daba3a0b6bae793cc2b1ba3"; 38 - hash = "sha256-zmNuFE+++tf4pKTXSTc7s8R9rvI+XwgWl8mCEPaaIRM="; 39 }; 40 41 nativeBuildInputs = [ makeWrapper ];
··· 29 30 stdenv.mkDerivation { 31 pname = "rofi-pass"; 32 + version = "unstable-2024-02-13"; 33 34 src = fetchFromGitHub { 35 owner = "carnager"; 36 repo = "rofi-pass"; 37 + rev = "8aa6b9293a8f0af267425326fa966966ca42085e"; 38 + hash = "sha256-g/AuLYj0yvLCXFR3y9GbMiE6hDCPBeuFM145c2Ukvys="; 39 }; 40 41 nativeBuildInputs = [ makeWrapper ];
-2
pkgs/top-level/all-packages.nix
··· 4924 4925 crunch = callPackage ../tools/security/crunch { }; 4926 4927 - crunchy-cli = callPackage ../applications/video/crunchy-cli { }; 4928 - 4929 crudini = callPackage ../tools/misc/crudini { }; 4930 4931 csv2odf = callPackage ../applications/office/csv2odf { };
··· 4924 4925 crunch = callPackage ../tools/security/crunch { }; 4926 4927 crudini = callPackage ../tools/misc/crudini { }; 4928 4929 csv2odf = callPackage ../applications/office/csv2odf { };