Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
46679c6a 912311b7

+118 -3061
-56
pkgs/applications/misc/binance/default.nix
··· 1 - { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron 2 - , alsa-lib, gtk3, libxshmfence, mesa, nss, popt }: 3 - 4 - stdenv.mkDerivation rec { 5 - pname = "binance"; 6 - version = "1.39.0"; 7 - 8 - src = fetchurl { 9 - url = "https://github.com/binance/desktop/releases/download/v${version}/${pname}-${version}-amd64-linux.deb"; 10 - sha256 = "sha256-6VQerIzX2u8QGUsa8kvu6Qud3OEn9lrZkQddfkZ1X0g="; 11 - }; 12 - 13 - nativeBuildInputs = [ 14 - dpkg 15 - autoPatchelfHook 16 - makeWrapper 17 - ]; 18 - 19 - buildInputs = [ alsa-lib gtk3 libxshmfence mesa nss popt ]; 20 - 21 - libPath = lib.makeLibraryPath buildInputs; 22 - 23 - dontBuild = true; 24 - dontConfigure = true; 25 - 26 - unpackPhase = '' 27 - dpkg-deb -x ${src} ./ 28 - ''; 29 - 30 - installPhase = '' 31 - runHook preInstall 32 - 33 - mv usr $out 34 - mv opt $out 35 - 36 - runHook postInstall 37 - ''; 38 - 39 - postFixup = '' 40 - substituteInPlace $out/share/applications/binance.desktop --replace '/opt/Binance' $out/bin 41 - 42 - makeWrapper ${electron}/bin/electron \ 43 - $out/bin/binance \ 44 - --add-flags $out/opt/Binance/resources/app.asar \ 45 - --prefix LD_LIBRARY_PATH : ${libPath} 46 - ''; 47 - 48 - meta = with lib; { 49 - description = "Binance Cryptoexchange Official Desktop Client"; 50 - homepage = "https://www.binance.com/en/desktop-download"; 51 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 52 - license = licenses.unfree; 53 - maintainers = with maintainers; [ wolfangaukang ]; 54 - platforms = [ "x86_64-linux" ]; 55 - }; 56 - }
···
+33
pkgs/by-name/ma/mariadb-connector-java/package.nix
···
··· 1 + { lib, maven, fetchFromGitHub }: 2 + 3 + maven.buildMavenPackage rec { 4 + pname = "mariadb-connector-java"; 5 + version = "3.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "mariadb-corporation"; 9 + repo = "mariadb-connector-j"; 10 + rev = "refs/tags/${version}"; 11 + hash = "sha256-ssh6v2h/Ikl2Ulim6lSJ45avjKSCh3Vmtg+LPOgONRU="; 12 + }; 13 + 14 + mvnHash = "sha256-MizBoFlpYxwwcU7rOac1h2VPJoXv3eRQgWRgsTh8Xno="; 15 + 16 + # Disable tests because they require networking 17 + mvnParameters = "-DskipTests"; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + install -m444 -D target/mariadb-java-client-${version}.jar $out/share/java/mariadb-java-client.jar 22 + runHook postInstall 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "MariaDB Connector/J is used to connect applications developed in Java to MariaDB and MySQL databases"; 27 + homepage = "https://mariadb.com/kb/en/about-mariadb-connector-j/"; 28 + changelog = "https://mariadb.com/kb/en/mariadb-connector-j-release-notes/"; 29 + license = licenses.lgpl21; 30 + maintainers = with maintainers; [ anthonyroussel ]; 31 + platforms = platforms.all; 32 + }; 33 + }
+2 -2
pkgs/desktops/pantheon/desktop/gala/default.nix
··· 26 27 stdenv.mkDerivation rec { 28 pname = "gala"; 29 - version = "7.1.2"; 30 31 src = fetchFromGitHub { 32 owner = "elementary"; 33 repo = pname; 34 rev = version; 35 - sha256 = "sha256-g+Zcdl6SJ4uO6I1x3Ru6efZkf+O3UaW790n/zxmGkHU="; 36 }; 37 38 patches = [
··· 26 27 stdenv.mkDerivation rec { 28 pname = "gala"; 29 + version = "7.1.3"; 30 31 src = fetchFromGitHub { 32 owner = "elementary"; 33 repo = pname; 34 rev = version; 35 + sha256 = "sha256-0fDbR28gh7F8Bcnofn48BBP1CTsYnfmY5kG72ookOXw="; 36 }; 37 38 patches = [
-2902
pkgs/development/interpreters/lune/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.20.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 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 = "aho-corasick" 22 - version = "1.0.2" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "alloc-no-stdlib" 31 - version = "2.0.4" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 34 - 35 - [[package]] 36 - name = "alloc-stdlib" 37 - version = "0.2.2" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 40 - dependencies = [ 41 - "alloc-no-stdlib", 42 - ] 43 - 44 - [[package]] 45 - name = "ansi_term" 46 - version = "0.12.1" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 49 - dependencies = [ 50 - "winapi", 51 - ] 52 - 53 - [[package]] 54 - name = "anstream" 55 - version = "0.3.2" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 58 - dependencies = [ 59 - "anstyle", 60 - "anstyle-parse", 61 - "anstyle-query", 62 - "anstyle-wincon", 63 - "colorchoice", 64 - "is-terminal", 65 - "utf8parse", 66 - ] 67 - 68 - [[package]] 69 - name = "anstyle" 70 - version = "1.0.1" 71 - source = "registry+https://github.com/rust-lang/crates.io-index" 72 - checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" 73 - 74 - [[package]] 75 - name = "anstyle-parse" 76 - version = "0.2.1" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 79 - dependencies = [ 80 - "utf8parse", 81 - ] 82 - 83 - [[package]] 84 - name = "anstyle-query" 85 - version = "1.0.0" 86 - source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 88 - dependencies = [ 89 - "windows-sys 0.48.0", 90 - ] 91 - 92 - [[package]] 93 - name = "anstyle-wincon" 94 - version = "1.0.1" 95 - source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 97 - dependencies = [ 98 - "anstyle", 99 - "windows-sys 0.48.0", 100 - ] 101 - 102 - [[package]] 103 - name = "anyhow" 104 - version = "1.0.71" 105 - source = "registry+https://github.com/rust-lang/crates.io-index" 106 - checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 107 - 108 - [[package]] 109 - name = "arrayref" 110 - version = "0.3.7" 111 - source = "registry+https://github.com/rust-lang/crates.io-index" 112 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 113 - 114 - [[package]] 115 - name = "arrayvec" 116 - version = "0.5.2" 117 - source = "registry+https://github.com/rust-lang/crates.io-index" 118 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 119 - 120 - [[package]] 121 - name = "arrayvec" 122 - version = "0.7.4" 123 - source = "registry+https://github.com/rust-lang/crates.io-index" 124 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 125 - 126 - [[package]] 127 - name = "async-compression" 128 - version = "0.4.0" 129 - source = "registry+https://github.com/rust-lang/crates.io-index" 130 - checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" 131 - dependencies = [ 132 - "brotli", 133 - "flate2", 134 - "futures-core", 135 - "memchr", 136 - "pin-project-lite", 137 - "tokio", 138 - ] 139 - 140 - [[package]] 141 - name = "async-trait" 142 - version = "0.1.71" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" 145 - dependencies = [ 146 - "proc-macro2", 147 - "quote", 148 - "syn 2.0.23", 149 - ] 150 - 151 - [[package]] 152 - name = "atty" 153 - version = "0.2.14" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 156 - dependencies = [ 157 - "hermit-abi 0.1.19", 158 - "libc", 159 - "winapi", 160 - ] 161 - 162 - [[package]] 163 - name = "autocfg" 164 - version = "1.1.0" 165 - source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 167 - 168 - [[package]] 169 - name = "backtrace" 170 - version = "0.3.68" 171 - source = "registry+https://github.com/rust-lang/crates.io-index" 172 - checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 173 - dependencies = [ 174 - "addr2line", 175 - "cc", 176 - "cfg-if", 177 - "libc", 178 - "miniz_oxide", 179 - "object", 180 - "rustc-demangle", 181 - ] 182 - 183 - [[package]] 184 - name = "base-x" 185 - version = "0.2.11" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 188 - 189 - [[package]] 190 - name = "base64" 191 - version = "0.13.1" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 194 - 195 - [[package]] 196 - name = "base64" 197 - version = "0.21.2" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 200 - 201 - [[package]] 202 - name = "beef" 203 - version = "0.5.2" 204 - source = "registry+https://github.com/rust-lang/crates.io-index" 205 - checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" 206 - 207 - [[package]] 208 - name = "bitflags" 209 - version = "1.3.2" 210 - source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 212 - 213 - [[package]] 214 - name = "bitflags" 215 - version = "2.3.3" 216 - source = "registry+https://github.com/rust-lang/crates.io-index" 217 - checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 218 - 219 - [[package]] 220 - name = "blake2b_simd" 221 - version = "0.5.11" 222 - source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" 224 - dependencies = [ 225 - "arrayref", 226 - "arrayvec 0.5.2", 227 - "constant_time_eq 0.1.5", 228 - ] 229 - 230 - [[package]] 231 - name = "blake3" 232 - version = "1.4.1" 233 - source = "registry+https://github.com/rust-lang/crates.io-index" 234 - checksum = "199c42ab6972d92c9f8995f086273d25c42fc0f7b2a1fcefba465c1352d25ba5" 235 - dependencies = [ 236 - "arrayref", 237 - "arrayvec 0.7.4", 238 - "cc", 239 - "cfg-if", 240 - "constant_time_eq 0.3.0", 241 - "digest", 242 - ] 243 - 244 - [[package]] 245 - name = "block-buffer" 246 - version = "0.10.4" 247 - source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 249 - dependencies = [ 250 - "generic-array", 251 - ] 252 - 253 - [[package]] 254 - name = "brotli" 255 - version = "3.3.4" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 258 - dependencies = [ 259 - "alloc-no-stdlib", 260 - "alloc-stdlib", 261 - "brotli-decompressor", 262 - ] 263 - 264 - [[package]] 265 - name = "brotli-decompressor" 266 - version = "2.3.4" 267 - source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 269 - dependencies = [ 270 - "alloc-no-stdlib", 271 - "alloc-stdlib", 272 - ] 273 - 274 - [[package]] 275 - name = "bstr" 276 - version = "1.6.0" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 279 - dependencies = [ 280 - "memchr", 281 - "serde", 282 - ] 283 - 284 - [[package]] 285 - name = "bumpalo" 286 - version = "3.13.0" 287 - source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 289 - 290 - [[package]] 291 - name = "bytecount" 292 - version = "0.6.3" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 295 - 296 - [[package]] 297 - name = "byteorder" 298 - version = "0.5.3" 299 - source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" 301 - 302 - [[package]] 303 - name = "byteorder" 304 - version = "1.4.3" 305 - source = "registry+https://github.com/rust-lang/crates.io-index" 306 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 307 - 308 - [[package]] 309 - name = "bytes" 310 - version = "1.4.0" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 313 - 314 - [[package]] 315 - name = "cc" 316 - version = "1.0.79" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 319 - 320 - [[package]] 321 - name = "cfg-if" 322 - version = "1.0.0" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 325 - 326 - [[package]] 327 - name = "clap" 328 - version = "2.34.0" 329 - source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 331 - dependencies = [ 332 - "ansi_term", 333 - "atty", 334 - "bitflags 1.3.2", 335 - "strsim 0.8.0", 336 - "textwrap", 337 - "unicode-width", 338 - "vec_map", 339 - ] 340 - 341 - [[package]] 342 - name = "clap" 343 - version = "4.3.11" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d" 346 - dependencies = [ 347 - "clap_builder", 348 - "clap_derive", 349 - "once_cell", 350 - ] 351 - 352 - [[package]] 353 - name = "clap_builder" 354 - version = "4.3.11" 355 - source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b" 357 - dependencies = [ 358 - "anstream", 359 - "anstyle", 360 - "clap_lex", 361 - "strsim 0.10.0", 362 - ] 363 - 364 - [[package]] 365 - name = "clap_derive" 366 - version = "4.3.2" 367 - source = "registry+https://github.com/rust-lang/crates.io-index" 368 - checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 369 - dependencies = [ 370 - "heck", 371 - "proc-macro2", 372 - "quote", 373 - "syn 2.0.23", 374 - ] 375 - 376 - [[package]] 377 - name = "clap_lex" 378 - version = "0.5.0" 379 - source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 381 - 382 - [[package]] 383 - name = "colorchoice" 384 - version = "1.0.0" 385 - source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 387 - 388 - [[package]] 389 - name = "console" 390 - version = "0.15.7" 391 - source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 393 - dependencies = [ 394 - "encode_unicode", 395 - "lazy_static", 396 - "libc", 397 - "unicode-width", 398 - "windows-sys 0.45.0", 399 - ] 400 - 401 - [[package]] 402 - name = "const_fn" 403 - version = "0.4.9" 404 - source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" 406 - 407 - [[package]] 408 - name = "constant_time_eq" 409 - version = "0.1.5" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 412 - 413 - [[package]] 414 - name = "constant_time_eq" 415 - version = "0.3.0" 416 - source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 418 - 419 - [[package]] 420 - name = "convert_case" 421 - version = "0.4.0" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 424 - 425 - [[package]] 426 - name = "cookie" 427 - version = "0.15.2" 428 - source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "fc6e25dfc584d06a3dbf775d207ff00d7de98d824c952dd2233dfbb261889a42" 430 - dependencies = [ 431 - "time 0.2.27", 432 - "version_check", 433 - ] 434 - 435 - [[package]] 436 - name = "cpufeatures" 437 - version = "0.2.9" 438 - source = "registry+https://github.com/rust-lang/crates.io-index" 439 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 440 - dependencies = [ 441 - "libc", 442 - ] 443 - 444 - [[package]] 445 - name = "crc32fast" 446 - version = "1.3.2" 447 - source = "registry+https://github.com/rust-lang/crates.io-index" 448 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 449 - dependencies = [ 450 - "cfg-if", 451 - ] 452 - 453 - [[package]] 454 - name = "crossbeam-utils" 455 - version = "0.8.16" 456 - source = "registry+https://github.com/rust-lang/crates.io-index" 457 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 458 - dependencies = [ 459 - "cfg-if", 460 - ] 461 - 462 - [[package]] 463 - name = "crypto-common" 464 - version = "0.1.6" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 467 - dependencies = [ 468 - "generic-array", 469 - "typenum", 470 - ] 471 - 472 - [[package]] 473 - name = "data-encoding" 474 - version = "2.4.0" 475 - source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 477 - 478 - [[package]] 479 - name = "derive_more" 480 - version = "0.99.17" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 483 - dependencies = [ 484 - "convert_case", 485 - "proc-macro2", 486 - "quote", 487 - "rustc_version 0.4.0", 488 - "syn 1.0.109", 489 - ] 490 - 491 - [[package]] 492 - name = "dialoguer" 493 - version = "0.10.4" 494 - source = "registry+https://github.com/rust-lang/crates.io-index" 495 - checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87" 496 - dependencies = [ 497 - "console", 498 - "shell-words", 499 - "tempfile", 500 - "zeroize", 501 - ] 502 - 503 - [[package]] 504 - name = "digest" 505 - version = "0.10.7" 506 - source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 508 - dependencies = [ 509 - "block-buffer", 510 - "crypto-common", 511 - "subtle", 512 - ] 513 - 514 - [[package]] 515 - name = "directories" 516 - version = "5.0.1" 517 - source = "registry+https://github.com/rust-lang/crates.io-index" 518 - checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" 519 - dependencies = [ 520 - "dirs-sys", 521 - ] 522 - 523 - [[package]] 524 - name = "dirs" 525 - version = "1.0.5" 526 - source = "registry+https://github.com/rust-lang/crates.io-index" 527 - checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" 528 - dependencies = [ 529 - "libc", 530 - "redox_users 0.3.5", 531 - "winapi", 532 - ] 533 - 534 - [[package]] 535 - name = "dirs-sys" 536 - version = "0.4.1" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 539 - dependencies = [ 540 - "libc", 541 - "option-ext", 542 - "redox_users 0.4.3", 543 - "windows-sys 0.48.0", 544 - ] 545 - 546 - [[package]] 547 - name = "discard" 548 - version = "1.0.4" 549 - source = "registry+https://github.com/rust-lang/crates.io-index" 550 - checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 551 - 552 - [[package]] 553 - name = "dunce" 554 - version = "1.0.4" 555 - source = "registry+https://github.com/rust-lang/crates.io-index" 556 - checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 557 - 558 - [[package]] 559 - name = "either" 560 - version = "1.8.1" 561 - source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 563 - 564 - [[package]] 565 - name = "encode_unicode" 566 - version = "0.3.6" 567 - source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 569 - 570 - [[package]] 571 - name = "encoding_rs" 572 - version = "0.8.32" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 575 - dependencies = [ 576 - "cfg-if", 577 - ] 578 - 579 - [[package]] 580 - name = "env_logger" 581 - version = "0.9.3" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 584 - dependencies = [ 585 - "atty", 586 - "humantime", 587 - "log", 588 - "regex", 589 - "termcolor", 590 - ] 591 - 592 - [[package]] 593 - name = "env_logger" 594 - version = "0.10.0" 595 - source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 597 - dependencies = [ 598 - "humantime", 599 - "is-terminal", 600 - "log", 601 - "regex", 602 - "termcolor", 603 - ] 604 - 605 - [[package]] 606 - name = "equivalent" 607 - version = "1.0.0" 608 - source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1" 610 - 611 - [[package]] 612 - name = "erased-serde" 613 - version = "0.3.27" 614 - source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "f94c0e13118e7d7533271f754a168ae8400e6a1cc043f2bfd53cc7290f1a1de3" 616 - dependencies = [ 617 - "serde", 618 - ] 619 - 620 - [[package]] 621 - name = "errno" 622 - version = "0.3.1" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 625 - dependencies = [ 626 - "errno-dragonfly", 627 - "libc", 628 - "windows-sys 0.48.0", 629 - ] 630 - 631 - [[package]] 632 - name = "errno-dragonfly" 633 - version = "0.1.2" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 636 - dependencies = [ 637 - "cc", 638 - "libc", 639 - ] 640 - 641 - [[package]] 642 - name = "fastrand" 643 - version = "1.9.0" 644 - source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 646 - dependencies = [ 647 - "instant", 648 - ] 649 - 650 - [[package]] 651 - name = "flate2" 652 - version = "1.0.26" 653 - source = "registry+https://github.com/rust-lang/crates.io-index" 654 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 655 - dependencies = [ 656 - "crc32fast", 657 - "miniz_oxide", 658 - ] 659 - 660 - [[package]] 661 - name = "fnv" 662 - version = "1.0.7" 663 - source = "registry+https://github.com/rust-lang/crates.io-index" 664 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 665 - 666 - [[package]] 667 - name = "form_urlencoded" 668 - version = "1.2.0" 669 - source = "registry+https://github.com/rust-lang/crates.io-index" 670 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 671 - dependencies = [ 672 - "percent-encoding", 673 - ] 674 - 675 - [[package]] 676 - name = "full_moon" 677 - version = "0.18.1" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "7b9a9bf5e42aec08f4b59be1438d66b01ab0a0f51dca309626e219697b60871c" 680 - dependencies = [ 681 - "bytecount", 682 - "cfg-if", 683 - "derive_more", 684 - "full_moon_derive", 685 - "logos", 686 - "paste", 687 - "serde", 688 - "smol_str", 689 - ] 690 - 691 - [[package]] 692 - name = "full_moon_derive" 693 - version = "0.11.0" 694 - source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "99b4bd12ce56927d1dc5478d21528ea8c4b93ca85ff8f8043b6a5351a2a3c6f7" 696 - dependencies = [ 697 - "indexmap 1.9.3", 698 - "proc-macro2", 699 - "quote", 700 - "syn 1.0.109", 701 - ] 702 - 703 - [[package]] 704 - name = "futures-channel" 705 - version = "0.3.28" 706 - source = "registry+https://github.com/rust-lang/crates.io-index" 707 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 708 - dependencies = [ 709 - "futures-core", 710 - ] 711 - 712 - [[package]] 713 - name = "futures-core" 714 - version = "0.3.28" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 717 - 718 - [[package]] 719 - name = "futures-macro" 720 - version = "0.3.28" 721 - source = "registry+https://github.com/rust-lang/crates.io-index" 722 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 723 - dependencies = [ 724 - "proc-macro2", 725 - "quote", 726 - "syn 2.0.23", 727 - ] 728 - 729 - [[package]] 730 - name = "futures-sink" 731 - version = "0.3.28" 732 - source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 734 - 735 - [[package]] 736 - name = "futures-task" 737 - version = "0.3.28" 738 - source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 740 - 741 - [[package]] 742 - name = "futures-util" 743 - version = "0.3.28" 744 - source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 746 - dependencies = [ 747 - "futures-core", 748 - "futures-macro", 749 - "futures-sink", 750 - "futures-task", 751 - "pin-project-lite", 752 - "pin-utils", 753 - "slab", 754 - ] 755 - 756 - [[package]] 757 - name = "generic-array" 758 - version = "0.14.7" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 761 - dependencies = [ 762 - "typenum", 763 - "version_check", 764 - ] 765 - 766 - [[package]] 767 - name = "getrandom" 768 - version = "0.1.16" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 771 - dependencies = [ 772 - "cfg-if", 773 - "libc", 774 - "wasi 0.9.0+wasi-snapshot-preview1", 775 - ] 776 - 777 - [[package]] 778 - name = "getrandom" 779 - version = "0.2.10" 780 - source = "registry+https://github.com/rust-lang/crates.io-index" 781 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 782 - dependencies = [ 783 - "cfg-if", 784 - "libc", 785 - "wasi 0.11.0+wasi-snapshot-preview1", 786 - ] 787 - 788 - [[package]] 789 - name = "gimli" 790 - version = "0.27.3" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 793 - 794 - [[package]] 795 - name = "glam" 796 - version = "0.24.1" 797 - source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "42218cb640844e3872cc3c153dc975229e080a6c4733b34709ef445610550226" 799 - 800 - [[package]] 801 - name = "glob" 802 - version = "0.3.1" 803 - source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 805 - 806 - [[package]] 807 - name = "h2" 808 - version = "0.3.20" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 811 - dependencies = [ 812 - "bytes", 813 - "fnv", 814 - "futures-core", 815 - "futures-sink", 816 - "futures-util", 817 - "http", 818 - "indexmap 1.9.3", 819 - "slab", 820 - "tokio", 821 - "tokio-util", 822 - "tracing", 823 - ] 824 - 825 - [[package]] 826 - name = "hashbrown" 827 - version = "0.12.3" 828 - source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 830 - 831 - [[package]] 832 - name = "hashbrown" 833 - version = "0.14.0" 834 - source = "registry+https://github.com/rust-lang/crates.io-index" 835 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 836 - 837 - [[package]] 838 - name = "heck" 839 - version = "0.4.1" 840 - source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 842 - 843 - [[package]] 844 - name = "hermit-abi" 845 - version = "0.1.19" 846 - source = "registry+https://github.com/rust-lang/crates.io-index" 847 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 848 - dependencies = [ 849 - "libc", 850 - ] 851 - 852 - [[package]] 853 - name = "hermit-abi" 854 - version = "0.3.2" 855 - source = "registry+https://github.com/rust-lang/crates.io-index" 856 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 857 - 858 - [[package]] 859 - name = "http" 860 - version = "0.2.9" 861 - source = "registry+https://github.com/rust-lang/crates.io-index" 862 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 863 - dependencies = [ 864 - "bytes", 865 - "fnv", 866 - "itoa", 867 - ] 868 - 869 - [[package]] 870 - name = "http-body" 871 - version = "0.4.5" 872 - source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 874 - dependencies = [ 875 - "bytes", 876 - "http", 877 - "pin-project-lite", 878 - ] 879 - 880 - [[package]] 881 - name = "httparse" 882 - version = "1.8.0" 883 - source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 885 - 886 - [[package]] 887 - name = "httpdate" 888 - version = "1.0.2" 889 - source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 891 - 892 - [[package]] 893 - name = "humantime" 894 - version = "2.1.0" 895 - source = "registry+https://github.com/rust-lang/crates.io-index" 896 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 897 - 898 - [[package]] 899 - name = "hyper" 900 - version = "0.14.27" 901 - source = "registry+https://github.com/rust-lang/crates.io-index" 902 - checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 903 - dependencies = [ 904 - "bytes", 905 - "futures-channel", 906 - "futures-core", 907 - "futures-util", 908 - "h2", 909 - "http", 910 - "http-body", 911 - "httparse", 912 - "httpdate", 913 - "itoa", 914 - "pin-project-lite", 915 - "socket2", 916 - "tokio", 917 - "tower-service", 918 - "tracing", 919 - "want", 920 - ] 921 - 922 - [[package]] 923 - name = "hyper-rustls" 924 - version = "0.24.1" 925 - source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 927 - dependencies = [ 928 - "futures-util", 929 - "http", 930 - "hyper", 931 - "rustls", 932 - "tokio", 933 - "tokio-rustls", 934 - ] 935 - 936 - [[package]] 937 - name = "hyper-tungstenite" 938 - version = "0.10.0" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "226df6fd0aece319a325419d770aa9d947defa60463f142cd82b329121f906a3" 941 - dependencies = [ 942 - "hyper", 943 - "pin-project", 944 - "tokio", 945 - "tokio-tungstenite", 946 - "tungstenite", 947 - ] 948 - 949 - [[package]] 950 - name = "idna" 951 - version = "0.4.0" 952 - source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 954 - dependencies = [ 955 - "unicode-bidi", 956 - "unicode-normalization", 957 - ] 958 - 959 - [[package]] 960 - name = "include_dir" 961 - version = "0.7.3" 962 - source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" 964 - dependencies = [ 965 - "glob", 966 - "include_dir_macros", 967 - ] 968 - 969 - [[package]] 970 - name = "include_dir_macros" 971 - version = "0.7.3" 972 - source = "registry+https://github.com/rust-lang/crates.io-index" 973 - checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" 974 - dependencies = [ 975 - "proc-macro2", 976 - "quote", 977 - ] 978 - 979 - [[package]] 980 - name = "indexmap" 981 - version = "1.9.3" 982 - source = "registry+https://github.com/rust-lang/crates.io-index" 983 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 984 - dependencies = [ 985 - "autocfg", 986 - "hashbrown 0.12.3", 987 - ] 988 - 989 - [[package]] 990 - name = "indexmap" 991 - version = "2.0.0" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 994 - dependencies = [ 995 - "equivalent", 996 - "hashbrown 0.14.0", 997 - ] 998 - 999 - [[package]] 1000 - name = "instant" 1001 - version = "0.1.12" 1002 - source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1004 - dependencies = [ 1005 - "cfg-if", 1006 - ] 1007 - 1008 - [[package]] 1009 - name = "io-lifetimes" 1010 - version = "1.0.11" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1013 - dependencies = [ 1014 - "hermit-abi 0.3.2", 1015 - "libc", 1016 - "windows-sys 0.48.0", 1017 - ] 1018 - 1019 - [[package]] 1020 - name = "ipnet" 1021 - version = "2.8.0" 1022 - source = "registry+https://github.com/rust-lang/crates.io-index" 1023 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 1024 - 1025 - [[package]] 1026 - name = "is-terminal" 1027 - version = "0.4.9" 1028 - source = "registry+https://github.com/rust-lang/crates.io-index" 1029 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1030 - dependencies = [ 1031 - "hermit-abi 0.3.2", 1032 - "rustix 0.38.3", 1033 - "windows-sys 0.48.0", 1034 - ] 1035 - 1036 - [[package]] 1037 - name = "itertools" 1038 - version = "0.10.5" 1039 - source = "registry+https://github.com/rust-lang/crates.io-index" 1040 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1041 - dependencies = [ 1042 - "either", 1043 - ] 1044 - 1045 - [[package]] 1046 - name = "itoa" 1047 - version = "1.0.8" 1048 - source = "registry+https://github.com/rust-lang/crates.io-index" 1049 - checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a" 1050 - 1051 - [[package]] 1052 - name = "js-sys" 1053 - version = "0.3.64" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1056 - dependencies = [ 1057 - "wasm-bindgen", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "lazy_static" 1062 - version = "1.4.0" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1065 - 1066 - [[package]] 1067 - name = "libc" 1068 - version = "0.2.147" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1071 - 1072 - [[package]] 1073 - name = "line-wrap" 1074 - version = "0.1.1" 1075 - source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1077 - dependencies = [ 1078 - "safemem", 1079 - ] 1080 - 1081 - [[package]] 1082 - name = "linux-raw-sys" 1083 - version = "0.3.8" 1084 - source = "registry+https://github.com/rust-lang/crates.io-index" 1085 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1086 - 1087 - [[package]] 1088 - name = "linux-raw-sys" 1089 - version = "0.4.3" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 1092 - 1093 - [[package]] 1094 - name = "lock_api" 1095 - version = "0.4.10" 1096 - source = "registry+https://github.com/rust-lang/crates.io-index" 1097 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1098 - dependencies = [ 1099 - "autocfg", 1100 - "scopeguard", 1101 - ] 1102 - 1103 - [[package]] 1104 - name = "log" 1105 - version = "0.4.19" 1106 - source = "registry+https://github.com/rust-lang/crates.io-index" 1107 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1108 - 1109 - [[package]] 1110 - name = "logos" 1111 - version = "0.12.1" 1112 - source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1" 1114 - dependencies = [ 1115 - "logos-derive", 1116 - ] 1117 - 1118 - [[package]] 1119 - name = "logos-derive" 1120 - version = "0.12.1" 1121 - source = "registry+https://github.com/rust-lang/crates.io-index" 1122 - checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c" 1123 - dependencies = [ 1124 - "beef", 1125 - "fnv", 1126 - "proc-macro2", 1127 - "quote", 1128 - "regex-syntax 0.6.29", 1129 - "syn 1.0.109", 1130 - ] 1131 - 1132 - [[package]] 1133 - name = "luau0-src" 1134 - version = "0.5.10+luau581" 1135 - source = "registry+https://github.com/rust-lang/crates.io-index" 1136 - checksum = "8b8350fc82726c62f543b5b4e12611591b5c86dc38244af7c93c044c2cd0311d" 1137 - dependencies = [ 1138 - "cc", 1139 - ] 1140 - 1141 - [[package]] 1142 - name = "lune" 1143 - version = "0.7.4" 1144 - dependencies = [ 1145 - "anyhow", 1146 - "async-compression", 1147 - "async-trait", 1148 - "console", 1149 - "dialoguer", 1150 - "directories", 1151 - "dunce", 1152 - "futures-util", 1153 - "hyper", 1154 - "hyper-tungstenite", 1155 - "lune-roblox", 1156 - "lz4_flex", 1157 - "mlua", 1158 - "once_cell", 1159 - "os_str_bytes", 1160 - "pin-project", 1161 - "rbx_cookie", 1162 - "reqwest", 1163 - "serde", 1164 - "serde_json", 1165 - "serde_yaml", 1166 - "tokio", 1167 - "tokio-tungstenite", 1168 - "toml", 1169 - "urlencoding", 1170 - ] 1171 - 1172 - [[package]] 1173 - name = "lune-cli" 1174 - version = "0.7.4" 1175 - dependencies = [ 1176 - "anyhow", 1177 - "clap 4.3.11", 1178 - "console", 1179 - "directories", 1180 - "env_logger 0.10.0", 1181 - "full_moon", 1182 - "futures-util", 1183 - "include_dir", 1184 - "itertools", 1185 - "lune", 1186 - "once_cell", 1187 - "regex", 1188 - "reqwest", 1189 - "serde", 1190 - "serde_json", 1191 - "serde_yaml", 1192 - "thiserror", 1193 - "tokio", 1194 - ] 1195 - 1196 - [[package]] 1197 - name = "lune-roblox" 1198 - version = "0.7.4" 1199 - dependencies = [ 1200 - "anyhow", 1201 - "glam", 1202 - "mlua", 1203 - "once_cell", 1204 - "rand", 1205 - "rbx_binary", 1206 - "rbx_dom_weak", 1207 - "rbx_reflection", 1208 - "rbx_reflection_database", 1209 - "rbx_xml", 1210 - "thiserror", 1211 - ] 1212 - 1213 - [[package]] 1214 - name = "lz4" 1215 - version = "1.24.0" 1216 - source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1" 1218 - dependencies = [ 1219 - "libc", 1220 - "lz4-sys", 1221 - ] 1222 - 1223 - [[package]] 1224 - name = "lz4-sys" 1225 - version = "1.9.4" 1226 - source = "registry+https://github.com/rust-lang/crates.io-index" 1227 - checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900" 1228 - dependencies = [ 1229 - "cc", 1230 - "libc", 1231 - ] 1232 - 1233 - [[package]] 1234 - name = "lz4_flex" 1235 - version = "0.10.0" 1236 - source = "registry+https://github.com/rust-lang/crates.io-index" 1237 - checksum = "8b8c72594ac26bfd34f2d99dfced2edfaddfe8a476e3ff2ca0eb293d925c4f83" 1238 - dependencies = [ 1239 - "twox-hash", 1240 - ] 1241 - 1242 - [[package]] 1243 - name = "memchr" 1244 - version = "2.5.0" 1245 - source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1247 - 1248 - [[package]] 1249 - name = "mime" 1250 - version = "0.3.17" 1251 - source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1253 - 1254 - [[package]] 1255 - name = "miniz_oxide" 1256 - version = "0.7.1" 1257 - source = "registry+https://github.com/rust-lang/crates.io-index" 1258 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1259 - dependencies = [ 1260 - "adler", 1261 - ] 1262 - 1263 - [[package]] 1264 - name = "mio" 1265 - version = "0.8.8" 1266 - source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1268 - dependencies = [ 1269 - "libc", 1270 - "wasi 0.11.0+wasi-snapshot-preview1", 1271 - "windows-sys 0.48.0", 1272 - ] 1273 - 1274 - [[package]] 1275 - name = "mlua" 1276 - version = "0.9.0-beta.3" 1277 - source = "registry+https://github.com/rust-lang/crates.io-index" 1278 - checksum = "19b5bc62c9f83dc5c6bb36714e30aceca2fb3ac5c91a21590b0cf382b22e65e0" 1279 - dependencies = [ 1280 - "bstr", 1281 - "erased-serde", 1282 - "mlua-sys", 1283 - "num-traits", 1284 - "once_cell", 1285 - "rustc-hash", 1286 - "serde", 1287 - "serde-value", 1288 - ] 1289 - 1290 - [[package]] 1291 - name = "mlua-sys" 1292 - version = "0.2.0" 1293 - source = "registry+https://github.com/rust-lang/crates.io-index" 1294 - checksum = "5b5013b291cbd5edd9259173f1ca1e62fc2f5b670c35424361acbbccddf9c679" 1295 - dependencies = [ 1296 - "cc", 1297 - "cfg-if", 1298 - "luau0-src", 1299 - "pkg-config", 1300 - ] 1301 - 1302 - [[package]] 1303 - name = "num-traits" 1304 - version = "0.2.15" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1307 - dependencies = [ 1308 - "autocfg", 1309 - ] 1310 - 1311 - [[package]] 1312 - name = "num_cpus" 1313 - version = "1.16.0" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1316 - dependencies = [ 1317 - "hermit-abi 0.3.2", 1318 - "libc", 1319 - ] 1320 - 1321 - [[package]] 1322 - name = "object" 1323 - version = "0.31.1" 1324 - source = "registry+https://github.com/rust-lang/crates.io-index" 1325 - checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1326 - dependencies = [ 1327 - "memchr", 1328 - ] 1329 - 1330 - [[package]] 1331 - name = "once_cell" 1332 - version = "1.18.0" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1335 - 1336 - [[package]] 1337 - name = "option-ext" 1338 - version = "0.2.0" 1339 - source = "registry+https://github.com/rust-lang/crates.io-index" 1340 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1341 - 1342 - [[package]] 1343 - name = "ordered-float" 1344 - version = "2.10.0" 1345 - source = "registry+https://github.com/rust-lang/crates.io-index" 1346 - checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" 1347 - dependencies = [ 1348 - "num-traits", 1349 - ] 1350 - 1351 - [[package]] 1352 - name = "os_str_bytes" 1353 - version = "6.5.1" 1354 - source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" 1356 - dependencies = [ 1357 - "memchr", 1358 - ] 1359 - 1360 - [[package]] 1361 - name = "parking_lot" 1362 - version = "0.12.1" 1363 - source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1365 - dependencies = [ 1366 - "lock_api", 1367 - "parking_lot_core", 1368 - ] 1369 - 1370 - [[package]] 1371 - name = "parking_lot_core" 1372 - version = "0.9.8" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1375 - dependencies = [ 1376 - "cfg-if", 1377 - "libc", 1378 - "redox_syscall 0.3.5", 1379 - "smallvec", 1380 - "windows-targets 0.48.1", 1381 - ] 1382 - 1383 - [[package]] 1384 - name = "paste" 1385 - version = "1.0.13" 1386 - source = "registry+https://github.com/rust-lang/crates.io-index" 1387 - checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35" 1388 - 1389 - [[package]] 1390 - name = "percent-encoding" 1391 - version = "2.3.0" 1392 - source = "registry+https://github.com/rust-lang/crates.io-index" 1393 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1394 - 1395 - [[package]] 1396 - name = "pin-project" 1397 - version = "1.1.2" 1398 - source = "registry+https://github.com/rust-lang/crates.io-index" 1399 - checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" 1400 - dependencies = [ 1401 - "pin-project-internal", 1402 - ] 1403 - 1404 - [[package]] 1405 - name = "pin-project-internal" 1406 - version = "1.1.2" 1407 - source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" 1409 - dependencies = [ 1410 - "proc-macro2", 1411 - "quote", 1412 - "syn 2.0.23", 1413 - ] 1414 - 1415 - [[package]] 1416 - name = "pin-project-lite" 1417 - version = "0.2.10" 1418 - source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1420 - 1421 - [[package]] 1422 - name = "pin-utils" 1423 - version = "0.1.0" 1424 - source = "registry+https://github.com/rust-lang/crates.io-index" 1425 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1426 - 1427 - [[package]] 1428 - name = "pkg-config" 1429 - version = "0.3.27" 1430 - source = "registry+https://github.com/rust-lang/crates.io-index" 1431 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1432 - 1433 - [[package]] 1434 - name = "plist" 1435 - version = "1.4.3" 1436 - source = "registry+https://github.com/rust-lang/crates.io-index" 1437 - checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590" 1438 - dependencies = [ 1439 - "base64 0.21.2", 1440 - "indexmap 1.9.3", 1441 - "line-wrap", 1442 - "quick-xml", 1443 - "serde", 1444 - "time 0.3.22", 1445 - ] 1446 - 1447 - [[package]] 1448 - name = "ppv-lite86" 1449 - version = "0.2.17" 1450 - source = "registry+https://github.com/rust-lang/crates.io-index" 1451 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1452 - 1453 - [[package]] 1454 - name = "proc-macro-hack" 1455 - version = "0.5.20+deprecated" 1456 - source = "registry+https://github.com/rust-lang/crates.io-index" 1457 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 1458 - 1459 - [[package]] 1460 - name = "proc-macro2" 1461 - version = "1.0.63" 1462 - source = "registry+https://github.com/rust-lang/crates.io-index" 1463 - checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" 1464 - dependencies = [ 1465 - "unicode-ident", 1466 - ] 1467 - 1468 - [[package]] 1469 - name = "profiling" 1470 - version = "1.0.8" 1471 - source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "332cd62e95873ea4f41f3dfd6bbbfc5b52aec892d7e8d534197c4720a0bbbab2" 1473 - dependencies = [ 1474 - "profiling-procmacros", 1475 - ] 1476 - 1477 - [[package]] 1478 - name = "profiling-procmacros" 1479 - version = "1.0.8" 1480 - source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "a10adb8d151bb1280afb8bed41ae5db26be1b056964947133c7525b0bf39c0b0" 1482 - dependencies = [ 1483 - "quote", 1484 - "syn 1.0.109", 1485 - ] 1486 - 1487 - [[package]] 1488 - name = "quick-xml" 1489 - version = "0.28.2" 1490 - source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" 1492 - dependencies = [ 1493 - "memchr", 1494 - ] 1495 - 1496 - [[package]] 1497 - name = "quote" 1498 - version = "1.0.29" 1499 - source = "registry+https://github.com/rust-lang/crates.io-index" 1500 - checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 1501 - dependencies = [ 1502 - "proc-macro2", 1503 - ] 1504 - 1505 - [[package]] 1506 - name = "rand" 1507 - version = "0.8.5" 1508 - source = "registry+https://github.com/rust-lang/crates.io-index" 1509 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1510 - dependencies = [ 1511 - "libc", 1512 - "rand_chacha", 1513 - "rand_core", 1514 - ] 1515 - 1516 - [[package]] 1517 - name = "rand_chacha" 1518 - version = "0.3.1" 1519 - source = "registry+https://github.com/rust-lang/crates.io-index" 1520 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1521 - dependencies = [ 1522 - "ppv-lite86", 1523 - "rand_core", 1524 - ] 1525 - 1526 - [[package]] 1527 - name = "rand_core" 1528 - version = "0.6.4" 1529 - source = "registry+https://github.com/rust-lang/crates.io-index" 1530 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1531 - dependencies = [ 1532 - "getrandom 0.2.10", 1533 - ] 1534 - 1535 - [[package]] 1536 - name = "rbx_binary" 1537 - version = "0.7.0" 1538 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1539 - dependencies = [ 1540 - "log", 1541 - "lz4", 1542 - "profiling", 1543 - "rbx_dom_weak", 1544 - "rbx_reflection", 1545 - "rbx_reflection_database", 1546 - "thiserror", 1547 - ] 1548 - 1549 - [[package]] 1550 - name = "rbx_cookie" 1551 - version = "0.1.2" 1552 - source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "d909d60469944842c9d204fa44afc90d9cb1e1f3f30a29bd1def490edd525a96" 1554 - dependencies = [ 1555 - "byteorder 0.5.3", 1556 - "clap 2.34.0", 1557 - "cookie", 1558 - "dirs", 1559 - "env_logger 0.9.3", 1560 - "log", 1561 - "plist", 1562 - "winapi", 1563 - "winreg", 1564 - ] 1565 - 1566 - [[package]] 1567 - name = "rbx_dom_weak" 1568 - version = "2.4.0" 1569 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1570 - dependencies = [ 1571 - "rbx_types", 1572 - "serde", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "rbx_reflection" 1577 - version = "4.2.0" 1578 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1579 - dependencies = [ 1580 - "rbx_types", 1581 - "serde", 1582 - "thiserror", 1583 - ] 1584 - 1585 - [[package]] 1586 - name = "rbx_reflection_database" 1587 - version = "0.2.6+roblox-572" 1588 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1589 - dependencies = [ 1590 - "lazy_static", 1591 - "rbx_reflection", 1592 - "rmp-serde", 1593 - "serde", 1594 - ] 1595 - 1596 - [[package]] 1597 - name = "rbx_types" 1598 - version = "1.5.0" 1599 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1600 - dependencies = [ 1601 - "base64 0.13.1", 1602 - "bitflags 1.3.2", 1603 - "blake3", 1604 - "lazy_static", 1605 - "rand", 1606 - "serde", 1607 - "thiserror", 1608 - ] 1609 - 1610 - [[package]] 1611 - name = "rbx_xml" 1612 - version = "0.13.0" 1613 - source = "git+https://github.com/rojo-rbx/rbx-dom?rev=b6d255e0b5d96155f694ca224676b251059cf2de#b6d255e0b5d96155f694ca224676b251059cf2de" 1614 - dependencies = [ 1615 - "base64 0.13.1", 1616 - "log", 1617 - "rbx_dom_weak", 1618 - "rbx_reflection", 1619 - "rbx_reflection_database", 1620 - "xml-rs", 1621 - ] 1622 - 1623 - [[package]] 1624 - name = "redox_syscall" 1625 - version = "0.1.57" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 1628 - 1629 - [[package]] 1630 - name = "redox_syscall" 1631 - version = "0.2.16" 1632 - source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1634 - dependencies = [ 1635 - "bitflags 1.3.2", 1636 - ] 1637 - 1638 - [[package]] 1639 - name = "redox_syscall" 1640 - version = "0.3.5" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1643 - dependencies = [ 1644 - "bitflags 1.3.2", 1645 - ] 1646 - 1647 - [[package]] 1648 - name = "redox_users" 1649 - version = "0.3.5" 1650 - source = "registry+https://github.com/rust-lang/crates.io-index" 1651 - checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" 1652 - dependencies = [ 1653 - "getrandom 0.1.16", 1654 - "redox_syscall 0.1.57", 1655 - "rust-argon2", 1656 - ] 1657 - 1658 - [[package]] 1659 - name = "redox_users" 1660 - version = "0.4.3" 1661 - source = "registry+https://github.com/rust-lang/crates.io-index" 1662 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1663 - dependencies = [ 1664 - "getrandom 0.2.10", 1665 - "redox_syscall 0.2.16", 1666 - "thiserror", 1667 - ] 1668 - 1669 - [[package]] 1670 - name = "regex" 1671 - version = "1.9.0" 1672 - source = "registry+https://github.com/rust-lang/crates.io-index" 1673 - checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484" 1674 - dependencies = [ 1675 - "aho-corasick", 1676 - "memchr", 1677 - "regex-automata", 1678 - "regex-syntax 0.7.3", 1679 - ] 1680 - 1681 - [[package]] 1682 - name = "regex-automata" 1683 - version = "0.3.0" 1684 - source = "registry+https://github.com/rust-lang/crates.io-index" 1685 - checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56" 1686 - dependencies = [ 1687 - "aho-corasick", 1688 - "memchr", 1689 - "regex-syntax 0.7.3", 1690 - ] 1691 - 1692 - [[package]] 1693 - name = "regex-syntax" 1694 - version = "0.6.29" 1695 - source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1697 - 1698 - [[package]] 1699 - name = "regex-syntax" 1700 - version = "0.7.3" 1701 - source = "registry+https://github.com/rust-lang/crates.io-index" 1702 - checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846" 1703 - 1704 - [[package]] 1705 - name = "reqwest" 1706 - version = "0.11.18" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 1709 - dependencies = [ 1710 - "base64 0.21.2", 1711 - "bytes", 1712 - "encoding_rs", 1713 - "futures-core", 1714 - "futures-util", 1715 - "h2", 1716 - "http", 1717 - "http-body", 1718 - "hyper", 1719 - "hyper-rustls", 1720 - "ipnet", 1721 - "js-sys", 1722 - "log", 1723 - "mime", 1724 - "once_cell", 1725 - "percent-encoding", 1726 - "pin-project-lite", 1727 - "rustls", 1728 - "rustls-pemfile", 1729 - "serde", 1730 - "serde_json", 1731 - "serde_urlencoded", 1732 - "tokio", 1733 - "tokio-rustls", 1734 - "tower-service", 1735 - "url", 1736 - "wasm-bindgen", 1737 - "wasm-bindgen-futures", 1738 - "web-sys", 1739 - "webpki-roots 0.22.6", 1740 - "winreg", 1741 - ] 1742 - 1743 - [[package]] 1744 - name = "ring" 1745 - version = "0.16.20" 1746 - source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1748 - dependencies = [ 1749 - "cc", 1750 - "libc", 1751 - "once_cell", 1752 - "spin", 1753 - "untrusted", 1754 - "web-sys", 1755 - "winapi", 1756 - ] 1757 - 1758 - [[package]] 1759 - name = "rmp" 1760 - version = "0.8.11" 1761 - source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 1763 - dependencies = [ 1764 - "byteorder 1.4.3", 1765 - "num-traits", 1766 - "paste", 1767 - ] 1768 - 1769 - [[package]] 1770 - name = "rmp-serde" 1771 - version = "1.1.1" 1772 - source = "registry+https://github.com/rust-lang/crates.io-index" 1773 - checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e" 1774 - dependencies = [ 1775 - "byteorder 1.4.3", 1776 - "rmp", 1777 - "serde", 1778 - ] 1779 - 1780 - [[package]] 1781 - name = "rust-argon2" 1782 - version = "0.8.3" 1783 - source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" 1785 - dependencies = [ 1786 - "base64 0.13.1", 1787 - "blake2b_simd", 1788 - "constant_time_eq 0.1.5", 1789 - "crossbeam-utils", 1790 - ] 1791 - 1792 - [[package]] 1793 - name = "rustc-demangle" 1794 - version = "0.1.23" 1795 - source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1797 - 1798 - [[package]] 1799 - name = "rustc-hash" 1800 - version = "1.1.0" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1803 - 1804 - [[package]] 1805 - name = "rustc_version" 1806 - version = "0.2.3" 1807 - source = "registry+https://github.com/rust-lang/crates.io-index" 1808 - checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1809 - dependencies = [ 1810 - "semver 0.9.0", 1811 - ] 1812 - 1813 - [[package]] 1814 - name = "rustc_version" 1815 - version = "0.4.0" 1816 - source = "registry+https://github.com/rust-lang/crates.io-index" 1817 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1818 - dependencies = [ 1819 - "semver 1.0.17", 1820 - ] 1821 - 1822 - [[package]] 1823 - name = "rustix" 1824 - version = "0.37.23" 1825 - source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 1827 - dependencies = [ 1828 - "bitflags 1.3.2", 1829 - "errno", 1830 - "io-lifetimes", 1831 - "libc", 1832 - "linux-raw-sys 0.3.8", 1833 - "windows-sys 0.48.0", 1834 - ] 1835 - 1836 - [[package]] 1837 - name = "rustix" 1838 - version = "0.38.3" 1839 - source = "registry+https://github.com/rust-lang/crates.io-index" 1840 - checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4" 1841 - dependencies = [ 1842 - "bitflags 2.3.3", 1843 - "errno", 1844 - "libc", 1845 - "linux-raw-sys 0.4.3", 1846 - "windows-sys 0.48.0", 1847 - ] 1848 - 1849 - [[package]] 1850 - name = "rustls" 1851 - version = "0.21.3" 1852 - source = "registry+https://github.com/rust-lang/crates.io-index" 1853 - checksum = "b19faa85ecb5197342b54f987b142fb3e30d0c90da40f80ef4fa9a726e6676ed" 1854 - dependencies = [ 1855 - "log", 1856 - "ring", 1857 - "rustls-webpki 0.101.1", 1858 - "sct", 1859 - ] 1860 - 1861 - [[package]] 1862 - name = "rustls-pemfile" 1863 - version = "1.0.3" 1864 - source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 1866 - dependencies = [ 1867 - "base64 0.21.2", 1868 - ] 1869 - 1870 - [[package]] 1871 - name = "rustls-webpki" 1872 - version = "0.100.1" 1873 - source = "registry+https://github.com/rust-lang/crates.io-index" 1874 - checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 1875 - dependencies = [ 1876 - "ring", 1877 - "untrusted", 1878 - ] 1879 - 1880 - [[package]] 1881 - name = "rustls-webpki" 1882 - version = "0.101.1" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "15f36a6828982f422756984e47912a7a51dcbc2a197aa791158f8ca61cd8204e" 1885 - dependencies = [ 1886 - "ring", 1887 - "untrusted", 1888 - ] 1889 - 1890 - [[package]] 1891 - name = "ryu" 1892 - version = "1.0.14" 1893 - source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" 1895 - 1896 - [[package]] 1897 - name = "safemem" 1898 - version = "0.3.3" 1899 - source = "registry+https://github.com/rust-lang/crates.io-index" 1900 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1901 - 1902 - [[package]] 1903 - name = "scopeguard" 1904 - version = "1.1.0" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1907 - 1908 - [[package]] 1909 - name = "sct" 1910 - version = "0.7.0" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1913 - dependencies = [ 1914 - "ring", 1915 - "untrusted", 1916 - ] 1917 - 1918 - [[package]] 1919 - name = "semver" 1920 - version = "0.9.0" 1921 - source = "registry+https://github.com/rust-lang/crates.io-index" 1922 - checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1923 - dependencies = [ 1924 - "semver-parser", 1925 - ] 1926 - 1927 - [[package]] 1928 - name = "semver" 1929 - version = "1.0.17" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1932 - 1933 - [[package]] 1934 - name = "semver-parser" 1935 - version = "0.7.0" 1936 - source = "registry+https://github.com/rust-lang/crates.io-index" 1937 - checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1938 - 1939 - [[package]] 1940 - name = "serde" 1941 - version = "1.0.167" 1942 - source = "registry+https://github.com/rust-lang/crates.io-index" 1943 - checksum = "7daf513456463b42aa1d94cff7e0c24d682b429f020b9afa4f5ba5c40a22b237" 1944 - dependencies = [ 1945 - "serde_derive", 1946 - ] 1947 - 1948 - [[package]] 1949 - name = "serde-value" 1950 - version = "0.7.0" 1951 - source = "registry+https://github.com/rust-lang/crates.io-index" 1952 - checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 1953 - dependencies = [ 1954 - "ordered-float", 1955 - "serde", 1956 - ] 1957 - 1958 - [[package]] 1959 - name = "serde_derive" 1960 - version = "1.0.167" 1961 - source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "b69b106b68bc8054f0e974e70d19984040f8a5cf9215ca82626ea4853f82c4b9" 1963 - dependencies = [ 1964 - "proc-macro2", 1965 - "quote", 1966 - "syn 2.0.23", 1967 - ] 1968 - 1969 - [[package]] 1970 - name = "serde_json" 1971 - version = "1.0.100" 1972 - source = "registry+https://github.com/rust-lang/crates.io-index" 1973 - checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" 1974 - dependencies = [ 1975 - "indexmap 2.0.0", 1976 - "itoa", 1977 - "ryu", 1978 - "serde", 1979 - ] 1980 - 1981 - [[package]] 1982 - name = "serde_spanned" 1983 - version = "0.6.3" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 1986 - dependencies = [ 1987 - "serde", 1988 - ] 1989 - 1990 - [[package]] 1991 - name = "serde_urlencoded" 1992 - version = "0.7.1" 1993 - source = "registry+https://github.com/rust-lang/crates.io-index" 1994 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1995 - dependencies = [ 1996 - "form_urlencoded", 1997 - "itoa", 1998 - "ryu", 1999 - "serde", 2000 - ] 2001 - 2002 - [[package]] 2003 - name = "serde_yaml" 2004 - version = "0.9.22" 2005 - source = "registry+https://github.com/rust-lang/crates.io-index" 2006 - checksum = "452e67b9c20c37fa79df53201dc03839651086ed9bbe92b3ca585ca9fdaa7d85" 2007 - dependencies = [ 2008 - "indexmap 2.0.0", 2009 - "itoa", 2010 - "ryu", 2011 - "serde", 2012 - "unsafe-libyaml", 2013 - ] 2014 - 2015 - [[package]] 2016 - name = "sha1" 2017 - version = "0.6.1" 2018 - source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 2020 - dependencies = [ 2021 - "sha1_smol", 2022 - ] 2023 - 2024 - [[package]] 2025 - name = "sha1" 2026 - version = "0.10.5" 2027 - source = "registry+https://github.com/rust-lang/crates.io-index" 2028 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2029 - dependencies = [ 2030 - "cfg-if", 2031 - "cpufeatures", 2032 - "digest", 2033 - ] 2034 - 2035 - [[package]] 2036 - name = "sha1_smol" 2037 - version = "1.0.0" 2038 - source = "registry+https://github.com/rust-lang/crates.io-index" 2039 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 2040 - 2041 - [[package]] 2042 - name = "shell-words" 2043 - version = "1.1.0" 2044 - source = "registry+https://github.com/rust-lang/crates.io-index" 2045 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 2046 - 2047 - [[package]] 2048 - name = "signal-hook-registry" 2049 - version = "1.4.1" 2050 - source = "registry+https://github.com/rust-lang/crates.io-index" 2051 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2052 - dependencies = [ 2053 - "libc", 2054 - ] 2055 - 2056 - [[package]] 2057 - name = "slab" 2058 - version = "0.4.8" 2059 - source = "registry+https://github.com/rust-lang/crates.io-index" 2060 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2061 - dependencies = [ 2062 - "autocfg", 2063 - ] 2064 - 2065 - [[package]] 2066 - name = "smallvec" 2067 - version = "1.11.0" 2068 - source = "registry+https://github.com/rust-lang/crates.io-index" 2069 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2070 - 2071 - [[package]] 2072 - name = "smol_str" 2073 - version = "0.1.24" 2074 - source = "registry+https://github.com/rust-lang/crates.io-index" 2075 - checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9" 2076 - dependencies = [ 2077 - "serde", 2078 - ] 2079 - 2080 - [[package]] 2081 - name = "socket2" 2082 - version = "0.4.9" 2083 - source = "registry+https://github.com/rust-lang/crates.io-index" 2084 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2085 - dependencies = [ 2086 - "libc", 2087 - "winapi", 2088 - ] 2089 - 2090 - [[package]] 2091 - name = "spin" 2092 - version = "0.5.2" 2093 - source = "registry+https://github.com/rust-lang/crates.io-index" 2094 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2095 - 2096 - [[package]] 2097 - name = "standback" 2098 - version = "0.2.17" 2099 - source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 2101 - dependencies = [ 2102 - "version_check", 2103 - ] 2104 - 2105 - [[package]] 2106 - name = "static_assertions" 2107 - version = "1.1.0" 2108 - source = "registry+https://github.com/rust-lang/crates.io-index" 2109 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2110 - 2111 - [[package]] 2112 - name = "stdweb" 2113 - version = "0.4.20" 2114 - source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 2116 - dependencies = [ 2117 - "discard", 2118 - "rustc_version 0.2.3", 2119 - "stdweb-derive", 2120 - "stdweb-internal-macros", 2121 - "stdweb-internal-runtime", 2122 - "wasm-bindgen", 2123 - ] 2124 - 2125 - [[package]] 2126 - name = "stdweb-derive" 2127 - version = "0.5.3" 2128 - source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 2130 - dependencies = [ 2131 - "proc-macro2", 2132 - "quote", 2133 - "serde", 2134 - "serde_derive", 2135 - "syn 1.0.109", 2136 - ] 2137 - 2138 - [[package]] 2139 - name = "stdweb-internal-macros" 2140 - version = "0.2.9" 2141 - source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 2143 - dependencies = [ 2144 - "base-x", 2145 - "proc-macro2", 2146 - "quote", 2147 - "serde", 2148 - "serde_derive", 2149 - "serde_json", 2150 - "sha1 0.6.1", 2151 - "syn 1.0.109", 2152 - ] 2153 - 2154 - [[package]] 2155 - name = "stdweb-internal-runtime" 2156 - version = "0.1.5" 2157 - source = "registry+https://github.com/rust-lang/crates.io-index" 2158 - checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 2159 - 2160 - [[package]] 2161 - name = "strsim" 2162 - version = "0.8.0" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2165 - 2166 - [[package]] 2167 - name = "strsim" 2168 - version = "0.10.0" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2171 - 2172 - [[package]] 2173 - name = "subtle" 2174 - version = "2.5.0" 2175 - source = "registry+https://github.com/rust-lang/crates.io-index" 2176 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2177 - 2178 - [[package]] 2179 - name = "syn" 2180 - version = "1.0.109" 2181 - source = "registry+https://github.com/rust-lang/crates.io-index" 2182 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2183 - dependencies = [ 2184 - "proc-macro2", 2185 - "quote", 2186 - "unicode-ident", 2187 - ] 2188 - 2189 - [[package]] 2190 - name = "syn" 2191 - version = "2.0.23" 2192 - source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737" 2194 - dependencies = [ 2195 - "proc-macro2", 2196 - "quote", 2197 - "unicode-ident", 2198 - ] 2199 - 2200 - [[package]] 2201 - name = "tempfile" 2202 - version = "3.6.0" 2203 - source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 2205 - dependencies = [ 2206 - "autocfg", 2207 - "cfg-if", 2208 - "fastrand", 2209 - "redox_syscall 0.3.5", 2210 - "rustix 0.37.23", 2211 - "windows-sys 0.48.0", 2212 - ] 2213 - 2214 - [[package]] 2215 - name = "termcolor" 2216 - version = "1.2.0" 2217 - source = "registry+https://github.com/rust-lang/crates.io-index" 2218 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2219 - dependencies = [ 2220 - "winapi-util", 2221 - ] 2222 - 2223 - [[package]] 2224 - name = "textwrap" 2225 - version = "0.11.0" 2226 - source = "registry+https://github.com/rust-lang/crates.io-index" 2227 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 2228 - dependencies = [ 2229 - "unicode-width", 2230 - ] 2231 - 2232 - [[package]] 2233 - name = "thiserror" 2234 - version = "1.0.43" 2235 - source = "registry+https://github.com/rust-lang/crates.io-index" 2236 - checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42" 2237 - dependencies = [ 2238 - "thiserror-impl", 2239 - ] 2240 - 2241 - [[package]] 2242 - name = "thiserror-impl" 2243 - version = "1.0.43" 2244 - source = "registry+https://github.com/rust-lang/crates.io-index" 2245 - checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" 2246 - dependencies = [ 2247 - "proc-macro2", 2248 - "quote", 2249 - "syn 2.0.23", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "time" 2254 - version = "0.2.27" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 2257 - dependencies = [ 2258 - "const_fn", 2259 - "libc", 2260 - "standback", 2261 - "stdweb", 2262 - "time-macros 0.1.1", 2263 - "version_check", 2264 - "winapi", 2265 - ] 2266 - 2267 - [[package]] 2268 - name = "time" 2269 - version = "0.3.22" 2270 - source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd" 2272 - dependencies = [ 2273 - "itoa", 2274 - "serde", 2275 - "time-core", 2276 - "time-macros 0.2.9", 2277 - ] 2278 - 2279 - [[package]] 2280 - name = "time-core" 2281 - version = "0.1.1" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 2284 - 2285 - [[package]] 2286 - name = "time-macros" 2287 - version = "0.1.1" 2288 - source = "registry+https://github.com/rust-lang/crates.io-index" 2289 - checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 2290 - dependencies = [ 2291 - "proc-macro-hack", 2292 - "time-macros-impl", 2293 - ] 2294 - 2295 - [[package]] 2296 - name = "time-macros" 2297 - version = "0.2.9" 2298 - source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 2300 - dependencies = [ 2301 - "time-core", 2302 - ] 2303 - 2304 - [[package]] 2305 - name = "time-macros-impl" 2306 - version = "0.1.2" 2307 - source = "registry+https://github.com/rust-lang/crates.io-index" 2308 - checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 2309 - dependencies = [ 2310 - "proc-macro-hack", 2311 - "proc-macro2", 2312 - "quote", 2313 - "standback", 2314 - "syn 1.0.109", 2315 - ] 2316 - 2317 - [[package]] 2318 - name = "tinyvec" 2319 - version = "1.6.0" 2320 - source = "registry+https://github.com/rust-lang/crates.io-index" 2321 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2322 - dependencies = [ 2323 - "tinyvec_macros", 2324 - ] 2325 - 2326 - [[package]] 2327 - name = "tinyvec_macros" 2328 - version = "0.1.1" 2329 - source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2331 - 2332 - [[package]] 2333 - name = "tokio" 2334 - version = "1.29.1" 2335 - source = "registry+https://github.com/rust-lang/crates.io-index" 2336 - checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 2337 - dependencies = [ 2338 - "autocfg", 2339 - "backtrace", 2340 - "bytes", 2341 - "libc", 2342 - "mio", 2343 - "num_cpus", 2344 - "parking_lot", 2345 - "pin-project-lite", 2346 - "signal-hook-registry", 2347 - "socket2", 2348 - "tokio-macros", 2349 - "windows-sys 0.48.0", 2350 - ] 2351 - 2352 - [[package]] 2353 - name = "tokio-macros" 2354 - version = "2.1.0" 2355 - source = "registry+https://github.com/rust-lang/crates.io-index" 2356 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2357 - dependencies = [ 2358 - "proc-macro2", 2359 - "quote", 2360 - "syn 2.0.23", 2361 - ] 2362 - 2363 - [[package]] 2364 - name = "tokio-rustls" 2365 - version = "0.24.1" 2366 - source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2368 - dependencies = [ 2369 - "rustls", 2370 - "tokio", 2371 - ] 2372 - 2373 - [[package]] 2374 - name = "tokio-tungstenite" 2375 - version = "0.19.0" 2376 - source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" 2378 - dependencies = [ 2379 - "futures-util", 2380 - "log", 2381 - "rustls", 2382 - "tokio", 2383 - "tokio-rustls", 2384 - "tungstenite", 2385 - "webpki-roots 0.23.1", 2386 - ] 2387 - 2388 - [[package]] 2389 - name = "tokio-util" 2390 - version = "0.7.8" 2391 - source = "registry+https://github.com/rust-lang/crates.io-index" 2392 - checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2393 - dependencies = [ 2394 - "bytes", 2395 - "futures-core", 2396 - "futures-sink", 2397 - "pin-project-lite", 2398 - "tokio", 2399 - "tracing", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "toml" 2404 - version = "0.7.6" 2405 - source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 2407 - dependencies = [ 2408 - "indexmap 2.0.0", 2409 - "serde", 2410 - "serde_spanned", 2411 - "toml_datetime", 2412 - "toml_edit", 2413 - ] 2414 - 2415 - [[package]] 2416 - name = "toml_datetime" 2417 - version = "0.6.3" 2418 - source = "registry+https://github.com/rust-lang/crates.io-index" 2419 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2420 - dependencies = [ 2421 - "serde", 2422 - ] 2423 - 2424 - [[package]] 2425 - name = "toml_edit" 2426 - version = "0.19.12" 2427 - source = "registry+https://github.com/rust-lang/crates.io-index" 2428 - checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78" 2429 - dependencies = [ 2430 - "indexmap 2.0.0", 2431 - "serde", 2432 - "serde_spanned", 2433 - "toml_datetime", 2434 - "winnow", 2435 - ] 2436 - 2437 - [[package]] 2438 - name = "tower-service" 2439 - version = "0.3.2" 2440 - source = "registry+https://github.com/rust-lang/crates.io-index" 2441 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2442 - 2443 - [[package]] 2444 - name = "tracing" 2445 - version = "0.1.37" 2446 - source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2448 - dependencies = [ 2449 - "cfg-if", 2450 - "pin-project-lite", 2451 - "tracing-core", 2452 - ] 2453 - 2454 - [[package]] 2455 - name = "tracing-core" 2456 - version = "0.1.31" 2457 - source = "registry+https://github.com/rust-lang/crates.io-index" 2458 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2459 - dependencies = [ 2460 - "once_cell", 2461 - ] 2462 - 2463 - [[package]] 2464 - name = "try-lock" 2465 - version = "0.2.4" 2466 - source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2468 - 2469 - [[package]] 2470 - name = "tungstenite" 2471 - version = "0.19.0" 2472 - source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" 2474 - dependencies = [ 2475 - "byteorder 1.4.3", 2476 - "bytes", 2477 - "data-encoding", 2478 - "http", 2479 - "httparse", 2480 - "log", 2481 - "rand", 2482 - "rustls", 2483 - "sha1 0.10.5", 2484 - "thiserror", 2485 - "url", 2486 - "utf-8", 2487 - "webpki", 2488 - ] 2489 - 2490 - [[package]] 2491 - name = "twox-hash" 2492 - version = "1.6.3" 2493 - source = "registry+https://github.com/rust-lang/crates.io-index" 2494 - checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 2495 - dependencies = [ 2496 - "cfg-if", 2497 - "static_assertions", 2498 - ] 2499 - 2500 - [[package]] 2501 - name = "typenum" 2502 - version = "1.16.0" 2503 - source = "registry+https://github.com/rust-lang/crates.io-index" 2504 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2505 - 2506 - [[package]] 2507 - name = "unicode-bidi" 2508 - version = "0.3.13" 2509 - source = "registry+https://github.com/rust-lang/crates.io-index" 2510 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2511 - 2512 - [[package]] 2513 - name = "unicode-ident" 2514 - version = "1.0.10" 2515 - source = "registry+https://github.com/rust-lang/crates.io-index" 2516 - checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" 2517 - 2518 - [[package]] 2519 - name = "unicode-normalization" 2520 - version = "0.1.22" 2521 - source = "registry+https://github.com/rust-lang/crates.io-index" 2522 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2523 - dependencies = [ 2524 - "tinyvec", 2525 - ] 2526 - 2527 - [[package]] 2528 - name = "unicode-width" 2529 - version = "0.1.10" 2530 - source = "registry+https://github.com/rust-lang/crates.io-index" 2531 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2532 - 2533 - [[package]] 2534 - name = "unsafe-libyaml" 2535 - version = "0.2.8" 2536 - source = "registry+https://github.com/rust-lang/crates.io-index" 2537 - checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6" 2538 - 2539 - [[package]] 2540 - name = "untrusted" 2541 - version = "0.7.1" 2542 - source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2544 - 2545 - [[package]] 2546 - name = "url" 2547 - version = "2.4.0" 2548 - source = "registry+https://github.com/rust-lang/crates.io-index" 2549 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 2550 - dependencies = [ 2551 - "form_urlencoded", 2552 - "idna", 2553 - "percent-encoding", 2554 - ] 2555 - 2556 - [[package]] 2557 - name = "urlencoding" 2558 - version = "2.1.2" 2559 - source = "registry+https://github.com/rust-lang/crates.io-index" 2560 - checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 2561 - 2562 - [[package]] 2563 - name = "utf-8" 2564 - version = "0.7.6" 2565 - source = "registry+https://github.com/rust-lang/crates.io-index" 2566 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2567 - 2568 - [[package]] 2569 - name = "utf8parse" 2570 - version = "0.2.1" 2571 - source = "registry+https://github.com/rust-lang/crates.io-index" 2572 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2573 - 2574 - [[package]] 2575 - name = "vec_map" 2576 - version = "0.8.2" 2577 - source = "registry+https://github.com/rust-lang/crates.io-index" 2578 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2579 - 2580 - [[package]] 2581 - name = "version_check" 2582 - version = "0.9.4" 2583 - source = "registry+https://github.com/rust-lang/crates.io-index" 2584 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2585 - 2586 - [[package]] 2587 - name = "want" 2588 - version = "0.3.1" 2589 - source = "registry+https://github.com/rust-lang/crates.io-index" 2590 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2591 - dependencies = [ 2592 - "try-lock", 2593 - ] 2594 - 2595 - [[package]] 2596 - name = "wasi" 2597 - version = "0.9.0+wasi-snapshot-preview1" 2598 - source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2600 - 2601 - [[package]] 2602 - name = "wasi" 2603 - version = "0.11.0+wasi-snapshot-preview1" 2604 - source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2606 - 2607 - [[package]] 2608 - name = "wasm-bindgen" 2609 - version = "0.2.87" 2610 - source = "registry+https://github.com/rust-lang/crates.io-index" 2611 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 2612 - dependencies = [ 2613 - "cfg-if", 2614 - "wasm-bindgen-macro", 2615 - ] 2616 - 2617 - [[package]] 2618 - name = "wasm-bindgen-backend" 2619 - version = "0.2.87" 2620 - source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 2622 - dependencies = [ 2623 - "bumpalo", 2624 - "log", 2625 - "once_cell", 2626 - "proc-macro2", 2627 - "quote", 2628 - "syn 2.0.23", 2629 - "wasm-bindgen-shared", 2630 - ] 2631 - 2632 - [[package]] 2633 - name = "wasm-bindgen-futures" 2634 - version = "0.4.37" 2635 - source = "registry+https://github.com/rust-lang/crates.io-index" 2636 - checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 2637 - dependencies = [ 2638 - "cfg-if", 2639 - "js-sys", 2640 - "wasm-bindgen", 2641 - "web-sys", 2642 - ] 2643 - 2644 - [[package]] 2645 - name = "wasm-bindgen-macro" 2646 - version = "0.2.87" 2647 - source = "registry+https://github.com/rust-lang/crates.io-index" 2648 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 2649 - dependencies = [ 2650 - "quote", 2651 - "wasm-bindgen-macro-support", 2652 - ] 2653 - 2654 - [[package]] 2655 - name = "wasm-bindgen-macro-support" 2656 - version = "0.2.87" 2657 - source = "registry+https://github.com/rust-lang/crates.io-index" 2658 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 2659 - dependencies = [ 2660 - "proc-macro2", 2661 - "quote", 2662 - "syn 2.0.23", 2663 - "wasm-bindgen-backend", 2664 - "wasm-bindgen-shared", 2665 - ] 2666 - 2667 - [[package]] 2668 - name = "wasm-bindgen-shared" 2669 - version = "0.2.87" 2670 - source = "registry+https://github.com/rust-lang/crates.io-index" 2671 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2672 - 2673 - [[package]] 2674 - name = "web-sys" 2675 - version = "0.3.64" 2676 - source = "registry+https://github.com/rust-lang/crates.io-index" 2677 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 2678 - dependencies = [ 2679 - "js-sys", 2680 - "wasm-bindgen", 2681 - ] 2682 - 2683 - [[package]] 2684 - name = "webpki" 2685 - version = "0.22.0" 2686 - source = "registry+https://github.com/rust-lang/crates.io-index" 2687 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 2688 - dependencies = [ 2689 - "ring", 2690 - "untrusted", 2691 - ] 2692 - 2693 - [[package]] 2694 - name = "webpki-roots" 2695 - version = "0.22.6" 2696 - source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 2698 - dependencies = [ 2699 - "webpki", 2700 - ] 2701 - 2702 - [[package]] 2703 - name = "webpki-roots" 2704 - version = "0.23.1" 2705 - source = "registry+https://github.com/rust-lang/crates.io-index" 2706 - checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" 2707 - dependencies = [ 2708 - "rustls-webpki 0.100.1", 2709 - ] 2710 - 2711 - [[package]] 2712 - name = "winapi" 2713 - version = "0.3.9" 2714 - source = "registry+https://github.com/rust-lang/crates.io-index" 2715 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2716 - dependencies = [ 2717 - "winapi-i686-pc-windows-gnu", 2718 - "winapi-x86_64-pc-windows-gnu", 2719 - ] 2720 - 2721 - [[package]] 2722 - name = "winapi-i686-pc-windows-gnu" 2723 - version = "0.4.0" 2724 - source = "registry+https://github.com/rust-lang/crates.io-index" 2725 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2726 - 2727 - [[package]] 2728 - name = "winapi-util" 2729 - version = "0.1.5" 2730 - source = "registry+https://github.com/rust-lang/crates.io-index" 2731 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2732 - dependencies = [ 2733 - "winapi", 2734 - ] 2735 - 2736 - [[package]] 2737 - name = "winapi-x86_64-pc-windows-gnu" 2738 - version = "0.4.0" 2739 - source = "registry+https://github.com/rust-lang/crates.io-index" 2740 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2741 - 2742 - [[package]] 2743 - name = "windows-sys" 2744 - version = "0.45.0" 2745 - source = "registry+https://github.com/rust-lang/crates.io-index" 2746 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2747 - dependencies = [ 2748 - "windows-targets 0.42.2", 2749 - ] 2750 - 2751 - [[package]] 2752 - name = "windows-sys" 2753 - version = "0.48.0" 2754 - source = "registry+https://github.com/rust-lang/crates.io-index" 2755 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2756 - dependencies = [ 2757 - "windows-targets 0.48.1", 2758 - ] 2759 - 2760 - [[package]] 2761 - name = "windows-targets" 2762 - version = "0.42.2" 2763 - source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2765 - dependencies = [ 2766 - "windows_aarch64_gnullvm 0.42.2", 2767 - "windows_aarch64_msvc 0.42.2", 2768 - "windows_i686_gnu 0.42.2", 2769 - "windows_i686_msvc 0.42.2", 2770 - "windows_x86_64_gnu 0.42.2", 2771 - "windows_x86_64_gnullvm 0.42.2", 2772 - "windows_x86_64_msvc 0.42.2", 2773 - ] 2774 - 2775 - [[package]] 2776 - name = "windows-targets" 2777 - version = "0.48.1" 2778 - source = "registry+https://github.com/rust-lang/crates.io-index" 2779 - checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2780 - dependencies = [ 2781 - "windows_aarch64_gnullvm 0.48.0", 2782 - "windows_aarch64_msvc 0.48.0", 2783 - "windows_i686_gnu 0.48.0", 2784 - "windows_i686_msvc 0.48.0", 2785 - "windows_x86_64_gnu 0.48.0", 2786 - "windows_x86_64_gnullvm 0.48.0", 2787 - "windows_x86_64_msvc 0.48.0", 2788 - ] 2789 - 2790 - [[package]] 2791 - name = "windows_aarch64_gnullvm" 2792 - version = "0.42.2" 2793 - source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2795 - 2796 - [[package]] 2797 - name = "windows_aarch64_gnullvm" 2798 - version = "0.48.0" 2799 - source = "registry+https://github.com/rust-lang/crates.io-index" 2800 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2801 - 2802 - [[package]] 2803 - name = "windows_aarch64_msvc" 2804 - version = "0.42.2" 2805 - source = "registry+https://github.com/rust-lang/crates.io-index" 2806 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2807 - 2808 - [[package]] 2809 - name = "windows_aarch64_msvc" 2810 - version = "0.48.0" 2811 - source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2813 - 2814 - [[package]] 2815 - name = "windows_i686_gnu" 2816 - version = "0.42.2" 2817 - source = "registry+https://github.com/rust-lang/crates.io-index" 2818 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2819 - 2820 - [[package]] 2821 - name = "windows_i686_gnu" 2822 - version = "0.48.0" 2823 - source = "registry+https://github.com/rust-lang/crates.io-index" 2824 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2825 - 2826 - [[package]] 2827 - name = "windows_i686_msvc" 2828 - version = "0.42.2" 2829 - source = "registry+https://github.com/rust-lang/crates.io-index" 2830 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2831 - 2832 - [[package]] 2833 - name = "windows_i686_msvc" 2834 - version = "0.48.0" 2835 - source = "registry+https://github.com/rust-lang/crates.io-index" 2836 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2837 - 2838 - [[package]] 2839 - name = "windows_x86_64_gnu" 2840 - version = "0.42.2" 2841 - source = "registry+https://github.com/rust-lang/crates.io-index" 2842 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2843 - 2844 - [[package]] 2845 - name = "windows_x86_64_gnu" 2846 - version = "0.48.0" 2847 - source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2849 - 2850 - [[package]] 2851 - name = "windows_x86_64_gnullvm" 2852 - version = "0.42.2" 2853 - source = "registry+https://github.com/rust-lang/crates.io-index" 2854 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2855 - 2856 - [[package]] 2857 - name = "windows_x86_64_gnullvm" 2858 - version = "0.48.0" 2859 - source = "registry+https://github.com/rust-lang/crates.io-index" 2860 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2861 - 2862 - [[package]] 2863 - name = "windows_x86_64_msvc" 2864 - version = "0.42.2" 2865 - source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2867 - 2868 - [[package]] 2869 - name = "windows_x86_64_msvc" 2870 - version = "0.48.0" 2871 - source = "registry+https://github.com/rust-lang/crates.io-index" 2872 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2873 - 2874 - [[package]] 2875 - name = "winnow" 2876 - version = "0.4.8" 2877 - source = "registry+https://github.com/rust-lang/crates.io-index" 2878 - checksum = "a9482fe6ceabdf32f3966bfdd350ba69256a97c30253dc616fe0005af24f164e" 2879 - dependencies = [ 2880 - "memchr", 2881 - ] 2882 - 2883 - [[package]] 2884 - name = "winreg" 2885 - version = "0.10.1" 2886 - source = "registry+https://github.com/rust-lang/crates.io-index" 2887 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 2888 - dependencies = [ 2889 - "winapi", 2890 - ] 2891 - 2892 - [[package]] 2893 - name = "xml-rs" 2894 - version = "0.8.15" 2895 - source = "registry+https://github.com/rust-lang/crates.io-index" 2896 - checksum = "5a56c84a8ccd4258aed21c92f70c0f6dea75356b6892ae27c24139da456f9336" 2897 - 2898 - [[package]] 2899 - name = "zeroize" 2900 - version = "1.6.0" 2901 - source = "registry+https://github.com/rust-lang/crates.io-index" 2902 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
···
+19 -8
pkgs/development/interpreters/lune/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "lune"; 11 - version = "0.7.4"; 12 13 src = fetchFromGitHub { 14 owner = "filiptibell"; 15 repo = "lune"; 16 rev = "v${version}"; 17 - hash = "sha256-um8XsXT0O+gTORrJAVlTku6YURh0wljLaQ7fueF+AoQ="; 18 fetchSubmodules = true; 19 }; 20 21 - cargoLock = { 22 - lockFile = ./Cargo.lock; 23 - outputHashes = { 24 - "rbx_binary-0.7.0" = "sha256-bwGCQMXN8VdycsyS7Om/9CKMkamAa0eBK2I2aPZ/sZs="; 25 - }; 26 - }; 27 28 nativeBuildInputs = [ 29 pkg-config ··· 31 32 buildInputs = lib.optionals stdenv.isDarwin [ 33 darwin.apple_sdk.frameworks.Security 34 ]; 35 36 meta = with lib; {
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "lune"; 11 + version = "0.7.11"; 12 13 src = fetchFromGitHub { 14 owner = "filiptibell"; 15 repo = "lune"; 16 rev = "v${version}"; 17 + hash = "sha256-5agoAXeO16/CihsgvUHt+pgA+/ph6PualTY6xqDQbeU="; 18 fetchSubmodules = true; 19 }; 20 21 + cargoHash = "sha256-kPBPxlsicoFDyOsuJWhvQHDC2uwYQqpd7S+kQPRd8DY="; 22 23 nativeBuildInputs = [ 24 pkg-config ··· 26 27 buildInputs = lib.optionals stdenv.isDarwin [ 28 darwin.apple_sdk.frameworks.Security 29 + ]; 30 + 31 + checkFlags = [ 32 + # these all require internet access 33 + "--skip=tests::net_request_codes" 34 + "--skip=tests::net_request_compression" 35 + "--skip=tests::net_request_methods" 36 + "--skip=tests::net_request_query" 37 + "--skip=tests::net_request_redirect" 38 + "--skip=tests::net_socket_wss" 39 + "--skip=tests::net_socket_wss_rw" 40 + "--skip=tests::roblox_instance_custom_async" 41 + "--skip=tests::serde_json_decode" 42 + 43 + # this tries to use the root directory as the CWD 44 + "--skip=tests::process_spawn_cwd" 45 ]; 46 47 meta = with lib; {
+2 -2
pkgs/development/python-modules/dask-awkward/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "dask-awkward"; 16 - version = "2023.11.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "dask-contrib"; 23 repo = "dask-awkward"; 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-oOIXqKwKjF6wCgRNRJ2EZn4F7sMqUKDSNQuGUpvL7sA="; 26 }; 27 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 13 14 buildPythonPackage rec { 15 pname = "dask-awkward"; 16 + version = "2023.11.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "dask-contrib"; 23 repo = "dask-awkward"; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-yx0B31x+BMS4alHro+hAPeVB6YK9B7Tg+3sSCMCYjKs="; 26 }; 27 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+3 -3
pkgs/development/python-modules/pex/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 - version = "2.1.149"; 11 - format = "pyproject"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-C3RR0WUq63O875v23TQ8GwPGTgGuOqhYhwtfkCMFBfE="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 + version = "2.1.151"; 11 + pyproject = true; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-op7V7Xn0qzcCTyISyi/Z4bhdk/W7Ol5YbmvD2Sl5zkM="; 18 }; 19 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/precis-i18n/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "precis-i18n"; 9 - version = "1.0.5"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; ··· 15 owner = "byllyfish"; 16 repo = "precis_i18n"; 17 rev = "refs/tags/v${version}"; 18 - hash = "sha256-DSm+KomveGs9ZzNFiT0B1gAjx2fh0BaUdKW0J+kW24U="; 19 }; 20 21 pythonImportsCheck = [
··· 6 7 buildPythonPackage rec { 8 pname = "precis-i18n"; 9 + version = "1.1.0"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; ··· 15 owner = "byllyfish"; 16 repo = "precis_i18n"; 17 rev = "refs/tags/v${version}"; 18 + hash = "sha256-0Z8JbakShuB8FFGl3NS8VFpHAQgr2P900HVxUafAmyU="; 19 }; 20 21 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/psygnal/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "psygnal"; 18 - version = "0.9.2"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "pyapp-kit"; 25 repo = pname; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-Ki2s057aqaZa+kOpAlhBYFpZeuDX42+txQXFuBtXd04="; 28 }; 29 30 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 15 16 buildPythonPackage rec { 17 pname = "psygnal"; 18 + version = "0.9.4"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "pyapp-kit"; 25 repo = pname; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-1oy0gXHDAoCIPXAitQv6MRb3p2j89zBaZvpUni6wT8A="; 28 }; 29 30 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/py-pdf-parser/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "py-pdf-parser"; 14 - version = "0.11.0"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-GsiGBigvtAgrM0sRffZBG2tVoEaDai+eUxXhMXWNBr0="; 22 }; 23 24 nativeBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "py-pdf-parser"; 14 + version = "0.12.0"; 15 format = "pyproject"; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-nMEmzQVz1LR4omHyxhvrjBXDQQE23S62T0wxZeMnXhg="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyathena/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "pyathena"; 18 - version = "3.0.9"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-RGU4UF+Nhfc2LGQlYf8ImrmDf2009JTSx6cO4o3VuDI="; 26 }; 27 28 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "pyathena"; 18 + version = "3.0.10"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-HvmD1Hi8GCwuox11v0/VdVQlmF5dpPjhgSNfLScz5TY="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pycaption/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pycaption"; 15 - version = "2.1.1"; 16 17 disabled = pythonOlder "3.6"; 18 ··· 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-B+uIh8WTPPeNVU3yP8FEGc8OinY0MpJb9dHLC+nhi4I="; 24 }; 25 26 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "pycaption"; 15 + version = "2.2.0"; 16 17 disabled = pythonOlder "3.6"; 18 ··· 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-W/sD/Nh2k1z7YvFVnQB9dGa1bXoCTb4QrPk/1mi4Hdk="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pycuda/default.nix
··· 24 in 25 buildPythonPackage rec { 26 pname = "pycuda"; 27 - version = "2022.2.2"; 28 29 src = fetchPypi { 30 inherit pname version; 31 - hash = "sha256-zZLnJGu0WsNFKVWhEHFBEmdM3ztKni9P8lpBWcaE5rs="; 32 }; 33 34 preConfigure = with lib.versions; ''
··· 24 in 25 buildPythonPackage rec { 26 pname = "pycuda"; 27 + version = "2023.1"; 28 29 src = fetchPypi { 30 inherit pname version; 31 + hash = "sha256-F1/2dfDPEOOOmtwD7V3z7Y2Kv32lE0yNzOx1LooKPpE="; 32 }; 33 34 preConfigure = with lib.versions; ''
+3 -7
pkgs/development/python-modules/pynndescent/default.nix
··· 25 }; 26 27 patches = [ 28 - # Fix sklearn 1.2.0 compat; https://github.com/lmcinnes/pynndescent/issues/207 29 - (fetchpatch { 30 - url = "https://github.com/lmcinnes/pynndescent/commit/00444be2107b71169b853847e7b334623c58a4e3.patch"; 31 - hash = "sha256-mbe01BwroS5q6hENsj3NejmGGhmk2IeX4LD6Iq6PR0c="; 32 - }) 33 (fetchpatch { 34 - url = "https://github.com/lmcinnes/pynndescent/commit/e56b92776a4a05f2dabb80d25479bd37e7ebd88e.patch"; 35 - hash = "sha256-zVTaW4syGEHh2HAGPyBN3YXqUGe55v/LxKLX/zjXT5Y="; 36 }) 37 ]; 38
··· 25 }; 26 27 patches = [ 28 + # https://github.com/lmcinnes/pynndescent/pull/224 29 (fetchpatch { 30 + url = "https://github.com/lmcinnes/pynndescent/commit/86e0d716a3a4d5f4e6a0a3c2952f6fe339524e96.patch"; 31 + hash = "sha256-dfnT5P9Qsn/nSAr4Ysqo/olbLLfoZXvBRz33yzhN3J4="; 32 }) 33 ]; 34
+2 -2
pkgs/development/python-modules/pyorthanc/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "pyorthanc"; 14 - version = "1.12.3"; 15 disabled = pythonOlder "3.8"; 16 17 format = "pyproject"; ··· 20 owner = "gacou54"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-9+HP95OsJIXsLy+6m6fWECU3jXxY++C3wQJBcqnC+H0="; 24 }; 25 26 nativeBuildInputs = [ pythonRelaxDepsHook poetry-core ];
··· 11 12 buildPythonPackage rec { 13 pname = "pyorthanc"; 14 + version = "1.13.1"; 15 disabled = pythonOlder "3.8"; 16 17 format = "pyproject"; ··· 20 owner = "gacou54"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-LahLR+LbppcPKs0gPT2lEP48XG6pbGMvCBW/EwAIFDQ="; 24 }; 25 26 nativeBuildInputs = [ pythonRelaxDepsHook poetry-core ];
+2 -2
pkgs/development/python-modules/rpmfile/default.nix
··· 5 }: 6 buildPythonPackage rec { 7 pname = "rpmfile"; 8 - version = "1.1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - sha256 = "sha256-ZxcHe1QxdG2GBIPMNrnJy6Vd8SRgZ4HOtwsks2be8Cs="; 13 }; 14 15 # Tests access the internet
··· 5 }: 6 buildPythonPackage rec { 7 pname = "rpmfile"; 8 + version = "2.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 + sha256 = "sha256-tLDdVTrZlxGk+oYmeCm/4XLAPx6hzkztJP+lXtiDhb4="; 13 }; 14 15 # Tests access the internet
+2 -2
pkgs/development/python-modules/seaborn/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "seaborn"; 18 - version = "0.13.0rc0"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "mwaskom"; 25 repo = "seaborn"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-bNuTDXUjdOwqJN1U20eaeSa4/Q3Fe2XMqulqVmDLFEU="; 28 }; 29 30 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "seaborn"; 18 + version = "0.13.0"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "mwaskom"; 25 repo = "seaborn"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-RbtBNKTjUHdCFe1V7IvACgbSNIPhVFMYmtE34GKVIzs="; 28 }; 29 30 nativeBuildInputs = [
+2 -33
pkgs/development/python-modules/umap-learn/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "umap-learn"; 19 - version = "0.5.3"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "lmcinnes"; 26 repo = "umap"; 27 rev = version; 28 - hash = "sha256-S2+k7Ec4AxsN6d0GUGnU81oLnBgmlZp8OmUFCNaUJYw="; 29 }; 30 - 31 - patches = [ 32 - # Fix tests with sklearn>=1.2.0 33 - (fetchpatch { 34 - url = "https://github.com/lmcinnes/umap/commit/a714b59bd9e2ca2e63312bc3491b2b037a42f2f2.patch"; 35 - hash = "sha256-WOSWNN5ewVTV7IEBEA7ZzgZYMZxctF1jAWs9ylKTyLs="; 36 - }) 37 - (fetchpatch { 38 - url = "https://github.com/lmcinnes/umap/commit/c7d05683325589ad432a55e109cacb9d631cfaa9.patch"; 39 - hash = "sha256-hE2Svxf7Uja+DbCmTDCnd7mZynjNbC5GUjfqg4ZRO9Y="; 40 - }) 41 - (fetchpatch { 42 - url = "https://github.com/lmcinnes/umap/commit/949abd082524fce8c45dfb147bcd8e8ef49eade3.patch"; 43 - hash = "sha256-8/1k8iYeF77FIaUApNtY07auPJkrt3vNRR/HTYRvq+0="; 44 - }) 45 - # Fix tests with numpy>=1.24 46 - # https://github.com/lmcinnes/umap/pull/952 47 - (fetchpatch { 48 - url = "https://github.com/lmcinnes/umap/commit/588e1f724c9f5de528eb1500b0c85a1a609fe947.patch"; 49 - hash = "sha256-B50eyMs3CRuzOAq+jxz56XMJPdiUofUxCL0Vqolaafo="; 50 - }) 51 - # https://github.com/lmcinnes/umap/pull/1010 52 - (fetchpatch { 53 - url = "https://github.com/lmcinnes/umap/commit/848396c762c894e666aaf3d0bcfe1e041b529ea6.patch"; 54 - hash = "sha256-ir0Pxfr2c0oSuFGXQqHjkj7nzvlpTXCYbaI9qAiLun0="; 55 - }) 56 - (fetchpatch { 57 - url = "https://github.com/lmcinnes/umap/commit/30e39938f4627f327223245dfe2c908af6b7e304.patch"; 58 - hash = "sha256-7Divrym05wIPa7evgrNYXGm44/EOWG8sIYV8fmtuzJ4="; 59 - }) 60 - ]; 61 62 propagatedBuildInputs = [ 63 numba
··· 16 17 buildPythonPackage rec { 18 pname = "umap-learn"; 19 + version = "0.5.4"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "lmcinnes"; 26 repo = "umap"; 27 rev = version; 28 + hash = "sha256-cvAq9b7xDowLIfIAzV+X08SUEL0QOisr/wBXMYeQ/8A="; 29 }; 30 31 propagatedBuildInputs = [ 32 numba
+3 -3
pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
··· 13 }: 14 buildGoModule rec { 15 pname = "buildkite-agent"; 16 - version = "3.55.0"; 17 18 src = fetchFromGitHub { 19 owner = "buildkite"; 20 repo = "agent"; 21 rev = "v${version}"; 22 - sha256 = "sha256-HvpEEutvdVHyzDtHdlc7ZB9xwnCKYWKbH/A1gAtR+Wk="; 23 }; 24 25 - vendorHash = "sha256-bIOS9Ja+mue6LNXUGmkLobh+lLiJfBDtNrAX3fp0jMY="; 26 27 postPatch = '' 28 substituteInPlace clicommand/agent_start.go --replace /bin/bash ${bash}/bin/bash
··· 13 }: 14 buildGoModule rec { 15 pname = "buildkite-agent"; 16 + version = "3.59.0"; 17 18 src = fetchFromGitHub { 19 owner = "buildkite"; 20 repo = "agent"; 21 rev = "v${version}"; 22 + sha256 = "sha256-pYaxjXoNn6MOE2oHUSKrBzP5oKhtfJwSHFCkcpkyzas="; 23 }; 24 25 + vendorHash = "sha256-JSuam9Tn+ZekfLrj78tBncH7Q2aP4CaUgaaDkJ/azEw="; 26 27 postPatch = '' 28 substituteInPlace clicommand/agent_start.go --replace /bin/bash ${bash}/bin/bash
+8 -3
pkgs/development/tools/rust/cargo-sweep/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-sweep"; 5 - version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "holmgr"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-tumcGnYqY/FGP8UWA0ccfdAK49LBcT8qH6SshrDXNAI="; 12 }; 13 14 - cargoSha256 = "sha256-fcosKyGOy0SKrHbsKdxQJimelt1ByAM4YKo7WpHV8CA="; 15 16 meta = with lib; { 17 description = "A Cargo subcommand for cleaning up unused build files generated by Cargo";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-sweep"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "holmgr"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-L9tWTgW8PIjxeby+wa71NPp3kWMYH5D7PNtpk8Bmeyc="; 12 }; 13 14 + cargoSha256 = "sha256-aalB7gHLc3YIgSOg68wc2fyzXFGfHO5x5YdzhuRmyro="; 15 + 16 + checkFlags = [ 17 + # Requires a rustup toolchain to be installed. 18 + "--skip check_toolchain_listing_on_multiple_projects" 19 + ]; 20 21 meta = with lib; { 22 description = "A Cargo subcommand for cleaning up unused build files generated by Cargo";
+3 -3
pkgs/misc/fastly/default.nix
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 - version = "10.6.1"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-O71stl9vLbeNOtW9XeUuKSpB2JmnM4sawN+iFoTJHas="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 - vendorHash = "sha256-g4cUjvFH5F/GfABgG2GKS04XlyJuM+xJ3oQAqT3xjis="; 37 38 nativeBuildInputs = [ 39 installShellFiles
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 + version = "10.6.2"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-j4dqLV1Q17RQczkTqGTh8S8Y6ELqXjWuJRr+xB/x2yE="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 + vendorHash = "sha256-aCekNpf6C5fGIEk0pLkz4hJ6mQfBIzeCsIL6Fxf2QGk="; 37 38 nativeBuildInputs = [ 39 installShellFiles
+8 -2
pkgs/os-specific/darwin/sketchybar/default.nix
··· 22 in 23 stdenv.mkDerivation (finalAttrs: { 24 pname = "sketchybar"; 25 - version = "2.18.0"; 26 27 src = fetchFromGitHub { 28 owner = "FelixKratz"; 29 repo = "SketchyBar"; 30 rev = "v${finalAttrs.version}"; 31 - hash = "sha256-GeFB+eE/NW9ZopwVSmSfMK3WiJLCJNXOdmQpYc3m8WE="; 32 }; 33 34 buildInputs = [ ··· 42 MediaRemote 43 SkyLight 44 ]; 45 46 makeFlags = [ 47 target
··· 22 in 23 stdenv.mkDerivation (finalAttrs: { 24 pname = "sketchybar"; 25 + version = "2.19.1"; 26 27 src = fetchFromGitHub { 28 owner = "FelixKratz"; 29 repo = "SketchyBar"; 30 rev = "v${finalAttrs.version}"; 31 + hash = "sha256-Ge15Df65fvNJ8ZdJ8giqvYytIivup2IIFPS+Ie3Yl9A="; 32 }; 33 34 buildInputs = [ ··· 42 MediaRemote 43 SkyLight 44 ]; 45 + 46 + # NOTE: Release didn't bump patch version remove with next release 47 + postPatch = '' 48 + substituteInPlace src/sketchybar.c \ 49 + --replace "#define PATCH 0" "#define PATCH 1" 50 + ''; 51 52 makeFlags = [ 53 target
+13 -15
pkgs/tools/admin/awscli2/default.nix
··· 1 { lib 2 , python3 3 , groff 4 , less 5 , fetchFromGitHub 6 , nix-update-script 7 , testers 8 , awscli2 ··· 20 urllib3 = prev.urllib3.overridePythonAttrs (prev: { 21 format = "setuptools"; 22 src = prev.src.override { 23 - version = "1.26.16"; 24 - hash = "sha256-jxNfZQJ1a95rKpsomJ31++h8mXDOyqaQQe3M5/BYmxQ="; 25 }; 26 }); 27 }); ··· 30 in 31 with py.pkgs; buildPythonApplication rec { 32 pname = "awscli2"; 33 - version = "2.13.28"; # N.B: if you change this, check if overrides are still up-to-date 34 format = "pyproject"; 35 36 src = fetchFromGitHub { 37 owner = "aws"; 38 repo = "aws-cli"; 39 rev = "refs/tags/${version}"; 40 - hash = "sha256-rl4gBjuCnXfyJMv/2KIeujK0ouR624+AYaVYn4ri1Nk="; 41 }; 42 43 postPatch = '' 44 substituteInPlace pyproject.toml \ 45 --replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \ 46 --replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \ 47 - --replace 'awscrt>=0.16.4,<=0.16.16' 'awscrt>=0.16.4' \ 48 --replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \ 49 --replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' 50 ··· 59 ''; 60 61 nativeBuildInputs = [ 62 flit-core 63 ]; 64 ··· 87 ]; 88 89 postInstall = '' 90 - mkdir -p $out/${python3.sitePackages}/awscli/data 91 - ${python3.interpreter} scripts/gen-ac-index --index-location $out/${python3.sitePackages}/awscli/data/ac.index 92 - 93 - mkdir -p $out/share/bash-completion/completions 94 - echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/aws 95 - 96 - mkdir -p $out/share/zsh/site-functions 97 - mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions 98 - 99 rm $out/bin/aws.cmd 100 ''; 101 ··· 136 137 meta = with lib; { 138 description = "Unified tool to manage your AWS services"; 139 - homepage = "https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html"; 140 changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst"; 141 license = licenses.asl20; 142 maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb anthonyroussel ];
··· 1 { lib 2 + , stdenv 3 , python3 4 , groff 5 , less 6 , fetchFromGitHub 7 + , installShellFiles 8 , nix-update-script 9 , testers 10 , awscli2 ··· 22 urllib3 = prev.urllib3.overridePythonAttrs (prev: { 23 format = "setuptools"; 24 src = prev.src.override { 25 + version = "1.26.18"; 26 + hash = "sha256-+OzBu6VmdBNFfFKauVW/jGe0XbeZ0VkGYmFxnjKFgKA="; 27 }; 28 }); 29 }); ··· 32 in 33 with py.pkgs; buildPythonApplication rec { 34 pname = "awscli2"; 35 + version = "2.13.33"; # N.B: if you change this, check if overrides are still up-to-date 36 format = "pyproject"; 37 38 src = fetchFromGitHub { 39 owner = "aws"; 40 repo = "aws-cli"; 41 rev = "refs/tags/${version}"; 42 + hash = "sha256-5ANfMa7b72z5E1EH9+dJ9avLDBnSEFGqvDOFFzLbZcM="; 43 }; 44 45 postPatch = '' 46 substituteInPlace pyproject.toml \ 47 --replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \ 48 --replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \ 49 + --replace 'awscrt>=0.16.4,<=0.19.6' 'awscrt>=0.16.4' \ 50 --replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \ 51 --replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' 52 ··· 61 ''; 62 63 nativeBuildInputs = [ 64 + installShellFiles 65 flit-core 66 ]; 67 ··· 90 ]; 91 92 postInstall = '' 93 + installShellCompletion --cmd aws \ 94 + --bash <(echo "complete -C $out/bin/aws_completer aws") \ 95 + --zsh $out/bin/aws_zsh_completer.sh 96 + '' + lib.optionalString (!stdenv.hostPlatform.isWindows) '' 97 rm $out/bin/aws.cmd 98 ''; 99 ··· 134 135 meta = with lib; { 136 description = "Unified tool to manage your AWS services"; 137 + homepage = "https://docs.aws.amazon.com/cli/latest/userguide/"; 138 changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst"; 139 license = licenses.asl20; 140 maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb anthonyroussel ];
+1
pkgs/top-level/aliases.nix
··· 89 bash_5 = bash; # Added 2021-08-20 90 bazel_3 = throw "bazel 3 is past end of life as it is not an lts version"; # Added 2023-02-02 91 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 92 bird2 = bird; # Added 2022-02-21 93 bitwig-studio1 = throw "bitwig-studio1 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03 94 bitwig-studio2 = throw "bitwig-studio2 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03
··· 89 bash_5 = bash; # Added 2021-08-20 90 bazel_3 = throw "bazel 3 is past end of life as it is not an lts version"; # Added 2023-02-02 91 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 92 + binance = throw "binance has been removed, because it depends on a very outdated and insecure version of electron"; # Added 2023-11-09 93 bird2 = bird; # Added 2022-02-21 94 bitwig-studio1 = throw "bitwig-studio1 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03 95 bitwig-studio2 = throw "bitwig-studio2 has been removed, you can upgrade to 'bitwig-studio'"; # Added 2023-01-03
-4
pkgs/top-level/all-packages.nix
··· 3546 3547 bic = callPackage ../development/interpreters/bic { }; 3548 3549 - binance = callPackage ../applications/misc/binance { 3550 - electron = electron_13; 3551 - }; 3552 - 3553 biscuit-cli = callPackage ../tools/security/biscuit-cli { }; 3554 3555 bitwarden = callPackage ../tools/security/bitwarden { };
··· 3546 3547 bic = callPackage ../development/interpreters/bic { }; 3548 3549 biscuit-cli = callPackage ../tools/security/biscuit-cli { }; 3550 3551 bitwarden = callPackage ../tools/security/bitwarden { };