python3Packages.symbolic_10: init at 10.2.1

required by glitchtip

Defelo 3481e193 2358d006

+2819 -11
+1 -1
pkgs/by-name/gl/glitchtip/package.nix
··· 47 psycopg 48 pydantic 49 sentry-sdk 50 - symbolic 51 user-agents 52 uvicorn 53 uwsgi-chunked
··· 47 psycopg 48 pydantic 49 sentry-sdk 50 + symbolic_10 51 user-agents 52 uvicorn 53 uwsgi-chunked
+76
pkgs/development/python-modules/symbolic/10.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools-rust, 6 + rustPlatform, 7 + rustc, 8 + cargo, 9 + milksnake, 10 + cffi, 11 + pytestCheckHook, 12 + nixosTests, 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "symbolic"; 17 + version = "10.2.1"; # glitchtip currently only works with symbolic 10.x 18 + pyproject = true; 19 + 20 + src = fetchFromGitHub { 21 + owner = "getsentry"; 22 + repo = "symbolic"; 23 + tag = version; 24 + hash = "sha256-3u4MTzaMwryGpFowrAM/MJOmnU8M+Q1/0UtALJib+9A="; 25 + # the `py` directory is not included in the tarball, so we fetch the source via git instead 26 + forceFetchGit = true; 27 + }; 28 + 29 + cargoDeps = rustPlatform.fetchCargoVendor { 30 + inherit 31 + pname 32 + version 33 + src 34 + postPatch 35 + ; 36 + hash = "sha256-cpIVzgcxKfEA5oov6/OaXqknYsYZUoduLTn2qIXGL5U="; 37 + }; 38 + 39 + nativeBuildInputs = [ 40 + setuptools-rust 41 + rustPlatform.cargoSetupHook 42 + rustc 43 + cargo 44 + milksnake 45 + ]; 46 + 47 + dependencies = [ cffi ]; 48 + 49 + postPatch = '' 50 + ln -s ${./Cargo.lock} Cargo.lock 51 + ''; 52 + 53 + preBuild = '' 54 + cd py 55 + ''; 56 + 57 + preCheck = '' 58 + cd .. 59 + ''; 60 + 61 + nativeCheckInputs = [ pytestCheckHook ]; 62 + 63 + pytestFlagsArray = [ "py" ]; 64 + 65 + pythonImportsCheck = [ "symbolic" ]; 66 + 67 + passthru.tests = { inherit (nixosTests) glitchtip; }; 68 + 69 + meta = { 70 + description = "Python library for dealing with symbol files and more"; 71 + homepage = "https://github.com/getsentry/symbolic"; 72 + changelog = "https://github.com/getsentry/symbolic/blob/${version}/CHANGELOG.md"; 73 + license = lib.licenses.mit; 74 + maintainers = with lib.maintainers; [ defelo ]; 75 + }; 76 + }
+2737
pkgs/development/python-modules/symbolic/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 = "Inflector" 7 + version = "0.11.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 + dependencies = [ 11 + "lazy_static", 12 + "regex", 13 + ] 14 + 15 + [[package]] 16 + name = "addr2line" 17 + version = "0.21.0" 18 + source = "registry+https://github.com/rust-lang/crates.io-index" 19 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 20 + dependencies = [ 21 + "gimli 0.28.1", 22 + ] 23 + 24 + [[package]] 25 + name = "addr2line" 26 + version = "10.2.1" 27 + dependencies = [ 28 + "anyhow", 29 + "clap", 30 + "symbolic", 31 + ] 32 + 33 + [[package]] 34 + name = "adler" 35 + version = "1.0.2" 36 + source = "registry+https://github.com/rust-lang/crates.io-index" 37 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 38 + 39 + [[package]] 40 + name = "aho-corasick" 41 + version = "1.1.3" 42 + source = "registry+https://github.com/rust-lang/crates.io-index" 43 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 44 + dependencies = [ 45 + "memchr", 46 + ] 47 + 48 + [[package]] 49 + name = "android-tzdata" 50 + version = "0.1.1" 51 + source = "registry+https://github.com/rust-lang/crates.io-index" 52 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 53 + 54 + [[package]] 55 + name = "android_system_properties" 56 + version = "0.1.5" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 59 + dependencies = [ 60 + "libc", 61 + ] 62 + 63 + [[package]] 64 + name = "anes" 65 + version = "0.1.6" 66 + source = "registry+https://github.com/rust-lang/crates.io-index" 67 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 68 + 69 + [[package]] 70 + name = "anyhow" 71 + version = "1.0.82" 72 + source = "registry+https://github.com/rust-lang/crates.io-index" 73 + checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" 74 + 75 + [[package]] 76 + name = "anylog" 77 + version = "0.6.4" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "1e2e9a7b2d67ca2b6e886b610ae20ac845cf37980df84892e38f6046e8fc225f" 80 + dependencies = [ 81 + "chrono", 82 + "lazy_static", 83 + "regex", 84 + ] 85 + 86 + [[package]] 87 + name = "arrayvec" 88 + version = "0.7.4" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 91 + 92 + [[package]] 93 + name = "ast_node" 94 + version = "0.9.8" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "2ab31376d309dd3bfc9cfb3c11c93ce0e0741bbe0354b20e7f8c60b044730b79" 97 + dependencies = [ 98 + "proc-macro2", 99 + "quote", 100 + "swc_macros_common", 101 + "syn 2.0.60", 102 + ] 103 + 104 + [[package]] 105 + name = "async-trait" 106 + version = "0.1.80" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 109 + dependencies = [ 110 + "proc-macro2", 111 + "quote", 112 + "syn 2.0.60", 113 + ] 114 + 115 + [[package]] 116 + name = "atty" 117 + version = "0.2.14" 118 + source = "registry+https://github.com/rust-lang/crates.io-index" 119 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 120 + dependencies = [ 121 + "hermit-abi", 122 + "libc", 123 + "winapi", 124 + ] 125 + 126 + [[package]] 127 + name = "autocfg" 128 + version = "1.2.0" 129 + source = "registry+https://github.com/rust-lang/crates.io-index" 130 + checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 131 + 132 + [[package]] 133 + name = "backtrace" 134 + version = "0.3.71" 135 + source = "registry+https://github.com/rust-lang/crates.io-index" 136 + checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 137 + dependencies = [ 138 + "addr2line 0.21.0", 139 + "cc", 140 + "cfg-if", 141 + "libc", 142 + "miniz_oxide", 143 + "object", 144 + "rustc-demangle", 145 + ] 146 + 147 + [[package]] 148 + name = "better_scoped_tls" 149 + version = "0.1.1" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de" 152 + dependencies = [ 153 + "scoped-tls", 154 + ] 155 + 156 + [[package]] 157 + name = "binary-merge" 158 + version = "0.1.2" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + checksum = "597bb81c80a54b6a4381b23faba8d7774b144c94cbd1d6fe3f1329bd776554ab" 161 + 162 + [[package]] 163 + name = "bitflags" 164 + version = "1.3.2" 165 + source = "registry+https://github.com/rust-lang/crates.io-index" 166 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 167 + 168 + [[package]] 169 + name = "bitflags" 170 + version = "2.5.0" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 173 + 174 + [[package]] 175 + name = "bitvec" 176 + version = "1.0.1" 177 + source = "registry+https://github.com/rust-lang/crates.io-index" 178 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 179 + dependencies = [ 180 + "funty", 181 + "radium", 182 + "tap", 183 + "wyz", 184 + ] 185 + 186 + [[package]] 187 + name = "breakpad-symbols" 188 + version = "0.14.0" 189 + source = "registry+https://github.com/rust-lang/crates.io-index" 190 + checksum = "962e48eab21c8cc026fb28919961ea4f45bb0d424eb58f215b0f245e2699b6c8" 191 + dependencies = [ 192 + "async-trait", 193 + "circular", 194 + "debugid", 195 + "minidump-common", 196 + "nom", 197 + "range-map", 198 + "thiserror", 199 + "tokio", 200 + "tracing", 201 + ] 202 + 203 + [[package]] 204 + name = "brownstone" 205 + version = "3.0.0" 206 + source = "registry+https://github.com/rust-lang/crates.io-index" 207 + checksum = "c5839ee4f953e811bfdcf223f509cb2c6a3e1447959b0bff459405575bc17f22" 208 + dependencies = [ 209 + "arrayvec", 210 + ] 211 + 212 + [[package]] 213 + name = "bstr" 214 + version = "0.2.17" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 217 + dependencies = [ 218 + "lazy_static", 219 + "memchr", 220 + "regex-automata 0.1.10", 221 + ] 222 + 223 + [[package]] 224 + name = "bumpalo" 225 + version = "3.16.0" 226 + source = "registry+https://github.com/rust-lang/crates.io-index" 227 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 228 + 229 + [[package]] 230 + name = "byteorder" 231 + version = "1.5.0" 232 + source = "registry+https://github.com/rust-lang/crates.io-index" 233 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 234 + 235 + [[package]] 236 + name = "bytes" 237 + version = "1.6.0" 238 + source = "registry+https://github.com/rust-lang/crates.io-index" 239 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 240 + 241 + [[package]] 242 + name = "cast" 243 + version = "0.3.0" 244 + source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 246 + 247 + [[package]] 248 + name = "cc" 249 + version = "1.0.96" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd" 252 + 253 + [[package]] 254 + name = "cfg-if" 255 + version = "1.0.0" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 258 + 259 + [[package]] 260 + name = "chrono" 261 + version = "0.4.38" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 264 + dependencies = [ 265 + "android-tzdata", 266 + "iana-time-zone", 267 + "js-sys", 268 + "num-traits 0.2.18", 269 + "serde", 270 + "wasm-bindgen", 271 + "windows-targets", 272 + ] 273 + 274 + [[package]] 275 + name = "ciborium" 276 + version = "0.2.2" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 279 + dependencies = [ 280 + "ciborium-io", 281 + "ciborium-ll", 282 + "serde", 283 + ] 284 + 285 + [[package]] 286 + name = "ciborium-io" 287 + version = "0.2.2" 288 + source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 290 + 291 + [[package]] 292 + name = "ciborium-ll" 293 + version = "0.2.2" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 296 + dependencies = [ 297 + "ciborium-io", 298 + "half", 299 + ] 300 + 301 + [[package]] 302 + name = "circular" 303 + version = "0.3.0" 304 + source = "registry+https://github.com/rust-lang/crates.io-index" 305 + checksum = "b0fc239e0f6cb375d2402d48afb92f76f5404fd1df208a41930ec81eda078bea" 306 + 307 + [[package]] 308 + name = "clap" 309 + version = "3.2.25" 310 + source = "registry+https://github.com/rust-lang/crates.io-index" 311 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 312 + dependencies = [ 313 + "atty", 314 + "bitflags 1.3.2", 315 + "clap_lex", 316 + "indexmap", 317 + "strsim", 318 + "termcolor", 319 + "textwrap", 320 + ] 321 + 322 + [[package]] 323 + name = "clap_lex" 324 + version = "0.2.4" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 327 + dependencies = [ 328 + "os_str_bytes", 329 + ] 330 + 331 + [[package]] 332 + name = "console" 333 + version = "0.15.8" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 336 + dependencies = [ 337 + "encode_unicode", 338 + "lazy_static", 339 + "libc", 340 + "windows-sys", 341 + ] 342 + 343 + [[package]] 344 + name = "core-foundation-sys" 345 + version = "0.8.6" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 348 + 349 + [[package]] 350 + name = "cpp_demangle" 351 + version = "0.4.3" 352 + source = "registry+https://github.com/rust-lang/crates.io-index" 353 + checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119" 354 + dependencies = [ 355 + "cfg-if", 356 + ] 357 + 358 + [[package]] 359 + name = "crc32fast" 360 + version = "1.4.0" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 363 + dependencies = [ 364 + "cfg-if", 365 + ] 366 + 367 + [[package]] 368 + name = "criterion" 369 + version = "0.4.0" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 372 + dependencies = [ 373 + "anes", 374 + "atty", 375 + "cast", 376 + "ciborium", 377 + "clap", 378 + "criterion-plot", 379 + "itertools", 380 + "lazy_static", 381 + "num-traits 0.2.18", 382 + "oorandom", 383 + "plotters", 384 + "rayon", 385 + "regex", 386 + "serde", 387 + "serde_derive", 388 + "serde_json", 389 + "tinytemplate", 390 + "walkdir", 391 + ] 392 + 393 + [[package]] 394 + name = "criterion-plot" 395 + version = "0.5.0" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 398 + dependencies = [ 399 + "cast", 400 + "itertools", 401 + ] 402 + 403 + [[package]] 404 + name = "crossbeam-deque" 405 + version = "0.8.5" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 408 + dependencies = [ 409 + "crossbeam-epoch", 410 + "crossbeam-utils", 411 + ] 412 + 413 + [[package]] 414 + name = "crossbeam-epoch" 415 + version = "0.9.18" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 418 + dependencies = [ 419 + "crossbeam-utils", 420 + ] 421 + 422 + [[package]] 423 + name = "crossbeam-utils" 424 + version = "0.8.19" 425 + source = "registry+https://github.com/rust-lang/crates.io-index" 426 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 427 + 428 + [[package]] 429 + name = "crunchy" 430 + version = "0.2.2" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 433 + 434 + [[package]] 435 + name = "data-encoding" 436 + version = "2.6.0" 437 + source = "registry+https://github.com/rust-lang/crates.io-index" 438 + checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 439 + 440 + [[package]] 441 + name = "debugid" 442 + version = "0.8.0" 443 + source = "registry+https://github.com/rust-lang/crates.io-index" 444 + checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 445 + dependencies = [ 446 + "serde", 447 + "uuid", 448 + ] 449 + 450 + [[package]] 451 + name = "debuginfo_debug" 452 + version = "10.2.1" 453 + dependencies = [ 454 + "anyhow", 455 + "clap", 456 + "symbolic", 457 + ] 458 + 459 + [[package]] 460 + name = "deranged" 461 + version = "0.3.11" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 464 + dependencies = [ 465 + "powerfmt", 466 + ] 467 + 468 + [[package]] 469 + name = "dmsort" 470 + version = "1.0.2" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "f0bc8fbe9441c17c9f46f75dfe27fa1ddb6c68a461ccaed0481419219d4f10d3" 473 + 474 + [[package]] 475 + name = "dump_cfi" 476 + version = "10.2.1" 477 + dependencies = [ 478 + "anyhow", 479 + "clap", 480 + "symbolic", 481 + ] 482 + 483 + [[package]] 484 + name = "dump_sources" 485 + version = "10.2.1" 486 + dependencies = [ 487 + "clap", 488 + "symbolic", 489 + ] 490 + 491 + [[package]] 492 + name = "either" 493 + version = "1.11.0" 494 + source = "registry+https://github.com/rust-lang/crates.io-index" 495 + checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" 496 + 497 + [[package]] 498 + name = "elementtree" 499 + version = "1.2.3" 500 + source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "3efd4742acf458718a6456e0adf0b4d734d6b783e452bbf1ac36bf31f4085cb3" 502 + dependencies = [ 503 + "string_cache", 504 + ] 505 + 506 + [[package]] 507 + name = "elsa" 508 + version = "1.10.0" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "d98e71ae4df57d214182a2e5cb90230c0192c6ddfcaa05c36453d46a54713e10" 511 + dependencies = [ 512 + "stable_deref_trait", 513 + ] 514 + 515 + [[package]] 516 + name = "encode_unicode" 517 + version = "0.3.6" 518 + source = "registry+https://github.com/rust-lang/crates.io-index" 519 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 520 + 521 + [[package]] 522 + name = "encoding" 523 + version = "0.2.33" 524 + source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" 526 + dependencies = [ 527 + "encoding-index-japanese", 528 + "encoding-index-korean", 529 + "encoding-index-simpchinese", 530 + "encoding-index-singlebyte", 531 + "encoding-index-tradchinese", 532 + ] 533 + 534 + [[package]] 535 + name = "encoding-index-japanese" 536 + version = "1.20141219.5" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" 539 + dependencies = [ 540 + "encoding_index_tests", 541 + ] 542 + 543 + [[package]] 544 + name = "encoding-index-korean" 545 + version = "1.20141219.5" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" 548 + dependencies = [ 549 + "encoding_index_tests", 550 + ] 551 + 552 + [[package]] 553 + name = "encoding-index-simpchinese" 554 + version = "1.20141219.5" 555 + source = "registry+https://github.com/rust-lang/crates.io-index" 556 + checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" 557 + dependencies = [ 558 + "encoding_index_tests", 559 + ] 560 + 561 + [[package]] 562 + name = "encoding-index-singlebyte" 563 + version = "1.20141219.5" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" 566 + dependencies = [ 567 + "encoding_index_tests", 568 + ] 569 + 570 + [[package]] 571 + name = "encoding-index-tradchinese" 572 + version = "1.20141219.5" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" 575 + dependencies = [ 576 + "encoding_index_tests", 577 + ] 578 + 579 + [[package]] 580 + name = "encoding_index_tests" 581 + version = "0.1.4" 582 + source = "registry+https://github.com/rust-lang/crates.io-index" 583 + checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" 584 + 585 + [[package]] 586 + name = "enum-primitive-derive" 587 + version = "0.2.2" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e" 590 + dependencies = [ 591 + "num-traits 0.2.18", 592 + "quote", 593 + "syn 1.0.109", 594 + ] 595 + 596 + [[package]] 597 + name = "errno" 598 + version = "0.3.8" 599 + source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 601 + dependencies = [ 602 + "libc", 603 + "windows-sys", 604 + ] 605 + 606 + [[package]] 607 + name = "fallible-iterator" 608 + version = "0.2.0" 609 + source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 611 + 612 + [[package]] 613 + name = "fastrand" 614 + version = "2.1.0" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 617 + 618 + [[package]] 619 + name = "flate2" 620 + version = "1.0.30" 621 + source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 623 + dependencies = [ 624 + "crc32fast", 625 + "miniz_oxide", 626 + ] 627 + 628 + [[package]] 629 + name = "form_urlencoded" 630 + version = "1.2.1" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 633 + dependencies = [ 634 + "percent-encoding", 635 + ] 636 + 637 + [[package]] 638 + name = "from_variant" 639 + version = "0.1.8" 640 + source = "registry+https://github.com/rust-lang/crates.io-index" 641 + checksum = "fdc9cc75639b041067353b9bce2450d6847e547276c6fbe4487d7407980e07db" 642 + dependencies = [ 643 + "proc-macro2", 644 + "swc_macros_common", 645 + "syn 2.0.60", 646 + ] 647 + 648 + [[package]] 649 + name = "funty" 650 + version = "2.0.0" 651 + source = "registry+https://github.com/rust-lang/crates.io-index" 652 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 653 + 654 + [[package]] 655 + name = "futures-core" 656 + version = "0.3.30" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 659 + 660 + [[package]] 661 + name = "futures-macro" 662 + version = "0.3.30" 663 + source = "registry+https://github.com/rust-lang/crates.io-index" 664 + checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 665 + dependencies = [ 666 + "proc-macro2", 667 + "quote", 668 + "syn 2.0.60", 669 + ] 670 + 671 + [[package]] 672 + name = "futures-task" 673 + version = "0.3.30" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 676 + 677 + [[package]] 678 + name = "futures-util" 679 + version = "0.3.30" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 682 + dependencies = [ 683 + "futures-core", 684 + "futures-macro", 685 + "futures-task", 686 + "pin-project-lite", 687 + "pin-utils", 688 + "slab", 689 + ] 690 + 691 + [[package]] 692 + name = "getrandom" 693 + version = "0.2.14" 694 + source = "registry+https://github.com/rust-lang/crates.io-index" 695 + checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 696 + dependencies = [ 697 + "cfg-if", 698 + "libc", 699 + "wasi", 700 + ] 701 + 702 + [[package]] 703 + name = "gimli" 704 + version = "0.27.3" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 707 + dependencies = [ 708 + "fallible-iterator", 709 + "stable_deref_trait", 710 + ] 711 + 712 + [[package]] 713 + name = "gimli" 714 + version = "0.28.1" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 717 + 718 + [[package]] 719 + name = "goblin" 720 + version = "0.6.1" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "0d6b4de4a8eb6c46a8c77e1d3be942cb9a8bf073c22374578e5ba4b08ed0ff68" 723 + dependencies = [ 724 + "log", 725 + "plain", 726 + "scroll", 727 + ] 728 + 729 + [[package]] 730 + name = "half" 731 + version = "2.4.1" 732 + source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 734 + dependencies = [ 735 + "cfg-if", 736 + "crunchy", 737 + ] 738 + 739 + [[package]] 740 + name = "hashbrown" 741 + version = "0.12.3" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 744 + 745 + [[package]] 746 + name = "hermit-abi" 747 + version = "0.1.19" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 750 + dependencies = [ 751 + "libc", 752 + ] 753 + 754 + [[package]] 755 + name = "iana-time-zone" 756 + version = "0.1.60" 757 + source = "registry+https://github.com/rust-lang/crates.io-index" 758 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 759 + dependencies = [ 760 + "android_system_properties", 761 + "core-foundation-sys", 762 + "iana-time-zone-haiku", 763 + "js-sys", 764 + "wasm-bindgen", 765 + "windows-core", 766 + ] 767 + 768 + [[package]] 769 + name = "iana-time-zone-haiku" 770 + version = "0.1.2" 771 + source = "registry+https://github.com/rust-lang/crates.io-index" 772 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 773 + dependencies = [ 774 + "cc", 775 + ] 776 + 777 + [[package]] 778 + name = "idna" 779 + version = "0.5.0" 780 + source = "registry+https://github.com/rust-lang/crates.io-index" 781 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 782 + dependencies = [ 783 + "unicode-bidi", 784 + "unicode-normalization", 785 + ] 786 + 787 + [[package]] 788 + name = "if_chain" 789 + version = "1.0.2" 790 + source = "registry+https://github.com/rust-lang/crates.io-index" 791 + checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" 792 + 793 + [[package]] 794 + name = "indent_write" 795 + version = "2.2.0" 796 + source = "registry+https://github.com/rust-lang/crates.io-index" 797 + checksum = "0cfe9645a18782869361d9c8732246be7b410ad4e919d3609ebabdac00ba12c3" 798 + 799 + [[package]] 800 + name = "indexmap" 801 + version = "1.9.3" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 804 + dependencies = [ 805 + "autocfg", 806 + "hashbrown", 807 + ] 808 + 809 + [[package]] 810 + name = "inplace-vec-builder" 811 + version = "0.1.1" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "cf64c2edc8226891a71f127587a2861b132d2b942310843814d5001d99a1d307" 814 + dependencies = [ 815 + "smallvec", 816 + ] 817 + 818 + [[package]] 819 + name = "insta" 820 + version = "1.38.0" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "3eab73f58e59ca6526037208f0e98851159ec1633cf17b6cd2e1f2c3fd5d53cc" 823 + dependencies = [ 824 + "console", 825 + "lazy_static", 826 + "linked-hash-map", 827 + "serde", 828 + "similar", 829 + ] 830 + 831 + [[package]] 832 + name = "is-macro" 833 + version = "0.3.5" 834 + source = "registry+https://github.com/rust-lang/crates.io-index" 835 + checksum = "59a85abdc13717906baccb5a1e435556ce0df215f242892f721dff62bf25288f" 836 + dependencies = [ 837 + "Inflector", 838 + "proc-macro2", 839 + "quote", 840 + "syn 2.0.60", 841 + ] 842 + 843 + [[package]] 844 + name = "itertools" 845 + version = "0.10.5" 846 + source = "registry+https://github.com/rust-lang/crates.io-index" 847 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 848 + dependencies = [ 849 + "either", 850 + ] 851 + 852 + [[package]] 853 + name = "itoa" 854 + version = "1.0.11" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 857 + 858 + [[package]] 859 + name = "joinery" 860 + version = "2.1.0" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5" 863 + 864 + [[package]] 865 + name = "js-source-scopes" 866 + version = "0.3.2" 867 + source = "registry+https://github.com/rust-lang/crates.io-index" 868 + checksum = "b8da074711c234172331e301df3f78c7a3988e6e8fab0a128a1fb9ff235f384d" 869 + dependencies = [ 870 + "indexmap", 871 + "sourcemap", 872 + "swc_common", 873 + "swc_ecma_parser", 874 + "swc_ecma_visit", 875 + "thiserror", 876 + "tracing", 877 + ] 878 + 879 + [[package]] 880 + name = "js-sys" 881 + version = "0.3.69" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 884 + dependencies = [ 885 + "wasm-bindgen", 886 + ] 887 + 888 + [[package]] 889 + name = "lazy_static" 890 + version = "1.4.0" 891 + source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 893 + 894 + [[package]] 895 + name = "lazycell" 896 + version = "1.3.0" 897 + source = "registry+https://github.com/rust-lang/crates.io-index" 898 + checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 899 + 900 + [[package]] 901 + name = "leb128" 902 + version = "0.2.5" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" 905 + 906 + [[package]] 907 + name = "lexical" 908 + version = "6.1.1" 909 + source = "registry+https://github.com/rust-lang/crates.io-index" 910 + checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6" 911 + dependencies = [ 912 + "lexical-core", 913 + ] 914 + 915 + [[package]] 916 + name = "lexical-core" 917 + version = "0.8.5" 918 + source = "registry+https://github.com/rust-lang/crates.io-index" 919 + checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46" 920 + dependencies = [ 921 + "lexical-parse-float", 922 + "lexical-parse-integer", 923 + "lexical-util", 924 + "lexical-write-float", 925 + "lexical-write-integer", 926 + ] 927 + 928 + [[package]] 929 + name = "lexical-parse-float" 930 + version = "0.8.5" 931 + source = "registry+https://github.com/rust-lang/crates.io-index" 932 + checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" 933 + dependencies = [ 934 + "lexical-parse-integer", 935 + "lexical-util", 936 + "static_assertions", 937 + ] 938 + 939 + [[package]] 940 + name = "lexical-parse-integer" 941 + version = "0.8.6" 942 + source = "registry+https://github.com/rust-lang/crates.io-index" 943 + checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" 944 + dependencies = [ 945 + "lexical-util", 946 + "static_assertions", 947 + ] 948 + 949 + [[package]] 950 + name = "lexical-util" 951 + version = "0.8.5" 952 + source = "registry+https://github.com/rust-lang/crates.io-index" 953 + checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" 954 + dependencies = [ 955 + "static_assertions", 956 + ] 957 + 958 + [[package]] 959 + name = "lexical-write-float" 960 + version = "0.8.5" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862" 963 + dependencies = [ 964 + "lexical-util", 965 + "lexical-write-integer", 966 + "static_assertions", 967 + ] 968 + 969 + [[package]] 970 + name = "lexical-write-integer" 971 + version = "0.8.5" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446" 974 + dependencies = [ 975 + "lexical-util", 976 + "static_assertions", 977 + ] 978 + 979 + [[package]] 980 + name = "libc" 981 + version = "0.2.154" 982 + source = "registry+https://github.com/rust-lang/crates.io-index" 983 + checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" 984 + 985 + [[package]] 986 + name = "linked-hash-map" 987 + version = "0.5.6" 988 + source = "registry+https://github.com/rust-lang/crates.io-index" 989 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 990 + 991 + [[package]] 992 + name = "linux-raw-sys" 993 + version = "0.4.13" 994 + source = "registry+https://github.com/rust-lang/crates.io-index" 995 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 996 + 997 + [[package]] 998 + name = "lock_api" 999 + version = "0.4.12" 1000 + source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1002 + dependencies = [ 1003 + "autocfg", 1004 + "scopeguard", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "log" 1009 + version = "0.4.21" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1012 + 1013 + [[package]] 1014 + name = "matchers" 1015 + version = "0.1.0" 1016 + source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1018 + dependencies = [ 1019 + "regex-automata 0.1.10", 1020 + ] 1021 + 1022 + [[package]] 1023 + name = "maybe-owned" 1024 + version = "0.3.4" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" 1027 + 1028 + [[package]] 1029 + name = "memchr" 1030 + version = "2.7.2" 1031 + source = "registry+https://github.com/rust-lang/crates.io-index" 1032 + checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 1033 + 1034 + [[package]] 1035 + name = "memmap2" 1036 + version = "0.5.10" 1037 + source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1039 + dependencies = [ 1040 + "libc", 1041 + ] 1042 + 1043 + [[package]] 1044 + name = "minidump" 1045 + version = "0.14.0" 1046 + source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "d8cb3a9530388df2ec8118130d17f57939c1d17e900a20f88a9f68169ab20c3c" 1048 + dependencies = [ 1049 + "debugid", 1050 + "encoding", 1051 + "memmap2", 1052 + "minidump-common", 1053 + "num-traits 0.2.18", 1054 + "range-map", 1055 + "scroll", 1056 + "thiserror", 1057 + "time", 1058 + "tracing", 1059 + "uuid", 1060 + ] 1061 + 1062 + [[package]] 1063 + name = "minidump-common" 1064 + version = "0.14.0" 1065 + source = "registry+https://github.com/rust-lang/crates.io-index" 1066 + checksum = "97dbaf56dfe28d07e1fecffce410976774dcac1f0d7f6d797b437468e989e687" 1067 + dependencies = [ 1068 + "bitflags 1.3.2", 1069 + "debugid", 1070 + "enum-primitive-derive", 1071 + "num-traits 0.2.18", 1072 + "range-map", 1073 + "scroll", 1074 + "smart-default", 1075 + "tracing", 1076 + ] 1077 + 1078 + [[package]] 1079 + name = "minidump-processor" 1080 + version = "0.14.0" 1081 + source = "registry+https://github.com/rust-lang/crates.io-index" 1082 + checksum = "18166049057bbbd113418bbf6dc2d68b932bef8bda5103e717492569522e7476" 1083 + dependencies = [ 1084 + "async-trait", 1085 + "breakpad-symbols", 1086 + "debugid", 1087 + "futures-util", 1088 + "memmap2", 1089 + "minidump", 1090 + "minidump-common", 1091 + "scroll", 1092 + "serde", 1093 + "serde_json", 1094 + "thiserror", 1095 + "tracing", 1096 + ] 1097 + 1098 + [[package]] 1099 + name = "minidump_stackwalk" 1100 + version = "10.2.1" 1101 + dependencies = [ 1102 + "async-trait", 1103 + "clap", 1104 + "minidump", 1105 + "minidump-processor", 1106 + "symbolic", 1107 + "thiserror", 1108 + "tokio", 1109 + "tracing", 1110 + "tracing-subscriber", 1111 + "walkdir", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "minimal-lexical" 1116 + version = "0.2.1" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1119 + 1120 + [[package]] 1121 + name = "miniz_oxide" 1122 + version = "0.7.2" 1123 + source = "registry+https://github.com/rust-lang/crates.io-index" 1124 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1125 + dependencies = [ 1126 + "adler", 1127 + ] 1128 + 1129 + [[package]] 1130 + name = "msvc-demangler" 1131 + version = "0.9.0" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "bfb67c6dd0fa9b00619c41c5700b6f92d5f418be49b45ddb9970fbd4569df3c8" 1134 + dependencies = [ 1135 + "bitflags 1.3.2", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "new_debug_unreachable" 1140 + version = "1.0.6" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 1143 + 1144 + [[package]] 1145 + name = "nom" 1146 + version = "7.1.3" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1149 + dependencies = [ 1150 + "memchr", 1151 + "minimal-lexical", 1152 + ] 1153 + 1154 + [[package]] 1155 + name = "nom-supreme" 1156 + version = "0.8.0" 1157 + source = "registry+https://github.com/rust-lang/crates.io-index" 1158 + checksum = "2bd3ae6c901f1959588759ff51c95d24b491ecb9ff91aa9c2ef4acc5b1dcab27" 1159 + dependencies = [ 1160 + "brownstone", 1161 + "indent_write", 1162 + "joinery", 1163 + "memchr", 1164 + "nom", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "nu-ansi-term" 1169 + version = "0.46.0" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1172 + dependencies = [ 1173 + "overload", 1174 + "winapi", 1175 + ] 1176 + 1177 + [[package]] 1178 + name = "num-bigint" 1179 + version = "0.4.4" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 1182 + dependencies = [ 1183 + "autocfg", 1184 + "num-integer", 1185 + "num-traits 0.2.18", 1186 + "serde", 1187 + ] 1188 + 1189 + [[package]] 1190 + name = "num-conv" 1191 + version = "0.1.0" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1194 + 1195 + [[package]] 1196 + name = "num-integer" 1197 + version = "0.1.46" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1200 + dependencies = [ 1201 + "num-traits 0.2.18", 1202 + ] 1203 + 1204 + [[package]] 1205 + name = "num-traits" 1206 + version = "0.1.43" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" 1209 + dependencies = [ 1210 + "num-traits 0.2.18", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "num-traits" 1215 + version = "0.2.18" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1218 + dependencies = [ 1219 + "autocfg", 1220 + ] 1221 + 1222 + [[package]] 1223 + name = "object" 1224 + version = "0.32.2" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1227 + dependencies = [ 1228 + "memchr", 1229 + ] 1230 + 1231 + [[package]] 1232 + name = "object_debug" 1233 + version = "10.2.1" 1234 + dependencies = [ 1235 + "clap", 1236 + "symbolic", 1237 + ] 1238 + 1239 + [[package]] 1240 + name = "once_cell" 1241 + version = "1.19.0" 1242 + source = "registry+https://github.com/rust-lang/crates.io-index" 1243 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1244 + 1245 + [[package]] 1246 + name = "oorandom" 1247 + version = "11.1.3" 1248 + source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1250 + 1251 + [[package]] 1252 + name = "os_str_bytes" 1253 + version = "6.6.1" 1254 + source = "registry+https://github.com/rust-lang/crates.io-index" 1255 + checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 1256 + 1257 + [[package]] 1258 + name = "overload" 1259 + version = "0.1.1" 1260 + source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1262 + 1263 + [[package]] 1264 + name = "parking_lot" 1265 + version = "0.12.2" 1266 + source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" 1268 + dependencies = [ 1269 + "lock_api", 1270 + "parking_lot_core", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "parking_lot_core" 1275 + version = "0.9.10" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1278 + dependencies = [ 1279 + "cfg-if", 1280 + "libc", 1281 + "redox_syscall", 1282 + "smallvec", 1283 + "windows-targets", 1284 + ] 1285 + 1286 + [[package]] 1287 + name = "pdb" 1288 + version = "0.8.0" 1289 + source = "registry+https://github.com/rust-lang/crates.io-index" 1290 + checksum = "82040a392923abe6279c00ab4aff62d5250d1c8555dc780e4b02783a7aa74863" 1291 + dependencies = [ 1292 + "fallible-iterator", 1293 + "scroll", 1294 + "uuid", 1295 + ] 1296 + 1297 + [[package]] 1298 + name = "pdb-addr2line" 1299 + version = "0.10.4" 1300 + source = "registry+https://github.com/rust-lang/crates.io-index" 1301 + checksum = "c4e89a9f2f40b2389ba6da0814c8044bf942bece03dffa1514f84e3b525f4f9a" 1302 + dependencies = [ 1303 + "bitflags 1.3.2", 1304 + "elsa", 1305 + "maybe-owned", 1306 + "pdb", 1307 + "range-collections", 1308 + "thiserror", 1309 + ] 1310 + 1311 + [[package]] 1312 + name = "percent-encoding" 1313 + version = "2.3.1" 1314 + source = "registry+https://github.com/rust-lang/crates.io-index" 1315 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1316 + 1317 + [[package]] 1318 + name = "phf_generator" 1319 + version = "0.10.0" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1322 + dependencies = [ 1323 + "phf_shared", 1324 + "rand", 1325 + ] 1326 + 1327 + [[package]] 1328 + name = "phf_shared" 1329 + version = "0.10.0" 1330 + source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1332 + dependencies = [ 1333 + "siphasher", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "pin-project-lite" 1338 + version = "0.2.14" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1341 + 1342 + [[package]] 1343 + name = "pin-utils" 1344 + version = "0.1.0" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1347 + 1348 + [[package]] 1349 + name = "plain" 1350 + version = "0.2.3" 1351 + source = "registry+https://github.com/rust-lang/crates.io-index" 1352 + checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 1353 + 1354 + [[package]] 1355 + name = "plotters" 1356 + version = "0.3.5" 1357 + source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 1359 + dependencies = [ 1360 + "num-traits 0.2.18", 1361 + "plotters-backend", 1362 + "plotters-svg", 1363 + "wasm-bindgen", 1364 + "web-sys", 1365 + ] 1366 + 1367 + [[package]] 1368 + name = "plotters-backend" 1369 + version = "0.3.5" 1370 + source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 1372 + 1373 + [[package]] 1374 + name = "plotters-svg" 1375 + version = "0.3.5" 1376 + source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 1378 + dependencies = [ 1379 + "plotters-backend", 1380 + ] 1381 + 1382 + [[package]] 1383 + name = "powerfmt" 1384 + version = "0.2.0" 1385 + source = "registry+https://github.com/rust-lang/crates.io-index" 1386 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1387 + 1388 + [[package]] 1389 + name = "ppv-lite86" 1390 + version = "0.2.17" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1393 + 1394 + [[package]] 1395 + name = "precomputed-hash" 1396 + version = "0.1.1" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1399 + 1400 + [[package]] 1401 + name = "proc-macro2" 1402 + version = "1.0.81" 1403 + source = "registry+https://github.com/rust-lang/crates.io-index" 1404 + checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 1405 + dependencies = [ 1406 + "unicode-ident", 1407 + ] 1408 + 1409 + [[package]] 1410 + name = "proguard" 1411 + version = "5.4.1" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "b88dddb086b00f5539a95d2c7a2373358fd8bfadb7b1297cc29e0196403a1b98" 1414 + dependencies = [ 1415 + "lazy_static", 1416 + "uuid", 1417 + ] 1418 + 1419 + [[package]] 1420 + name = "psm" 1421 + version = "0.1.21" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 1424 + dependencies = [ 1425 + "cc", 1426 + ] 1427 + 1428 + [[package]] 1429 + name = "quote" 1430 + version = "1.0.36" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1433 + dependencies = [ 1434 + "proc-macro2", 1435 + ] 1436 + 1437 + [[package]] 1438 + name = "radium" 1439 + version = "0.7.0" 1440 + source = "registry+https://github.com/rust-lang/crates.io-index" 1441 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 1442 + 1443 + [[package]] 1444 + name = "rand" 1445 + version = "0.8.5" 1446 + source = "registry+https://github.com/rust-lang/crates.io-index" 1447 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1448 + dependencies = [ 1449 + "libc", 1450 + "rand_chacha", 1451 + "rand_core", 1452 + ] 1453 + 1454 + [[package]] 1455 + name = "rand_chacha" 1456 + version = "0.3.1" 1457 + source = "registry+https://github.com/rust-lang/crates.io-index" 1458 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1459 + dependencies = [ 1460 + "ppv-lite86", 1461 + "rand_core", 1462 + ] 1463 + 1464 + [[package]] 1465 + name = "rand_core" 1466 + version = "0.6.4" 1467 + source = "registry+https://github.com/rust-lang/crates.io-index" 1468 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1469 + dependencies = [ 1470 + "getrandom", 1471 + ] 1472 + 1473 + [[package]] 1474 + name = "range-collections" 1475 + version = "0.2.4" 1476 + source = "registry+https://github.com/rust-lang/crates.io-index" 1477 + checksum = "61fdfd79629e2b44a1d34b4d227957174cb858e6b86ee45fad114edbcfc903ab" 1478 + dependencies = [ 1479 + "binary-merge", 1480 + "inplace-vec-builder", 1481 + "smallvec", 1482 + ] 1483 + 1484 + [[package]] 1485 + name = "range-map" 1486 + version = "0.1.5" 1487 + source = "registry+https://github.com/rust-lang/crates.io-index" 1488 + checksum = "87dc8ff3b0f3e32dbba6e49c592c0191a3a2cabbf6f7e5a78e1010050b9a42e1" 1489 + dependencies = [ 1490 + "num-traits 0.1.43", 1491 + ] 1492 + 1493 + [[package]] 1494 + name = "rayon" 1495 + version = "1.10.0" 1496 + source = "registry+https://github.com/rust-lang/crates.io-index" 1497 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1498 + dependencies = [ 1499 + "either", 1500 + "rayon-core", 1501 + ] 1502 + 1503 + [[package]] 1504 + name = "rayon-core" 1505 + version = "1.12.1" 1506 + source = "registry+https://github.com/rust-lang/crates.io-index" 1507 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1508 + dependencies = [ 1509 + "crossbeam-deque", 1510 + "crossbeam-utils", 1511 + ] 1512 + 1513 + [[package]] 1514 + name = "redox_syscall" 1515 + version = "0.5.1" 1516 + source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 1518 + dependencies = [ 1519 + "bitflags 2.5.0", 1520 + ] 1521 + 1522 + [[package]] 1523 + name = "regex" 1524 + version = "1.10.4" 1525 + source = "registry+https://github.com/rust-lang/crates.io-index" 1526 + checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1527 + dependencies = [ 1528 + "aho-corasick", 1529 + "memchr", 1530 + "regex-automata 0.4.6", 1531 + "regex-syntax 0.8.3", 1532 + ] 1533 + 1534 + [[package]] 1535 + name = "regex-automata" 1536 + version = "0.1.10" 1537 + source = "registry+https://github.com/rust-lang/crates.io-index" 1538 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1539 + dependencies = [ 1540 + "regex-syntax 0.6.29", 1541 + ] 1542 + 1543 + [[package]] 1544 + name = "regex-automata" 1545 + version = "0.4.6" 1546 + source = "registry+https://github.com/rust-lang/crates.io-index" 1547 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1548 + dependencies = [ 1549 + "aho-corasick", 1550 + "memchr", 1551 + "regex-syntax 0.8.3", 1552 + ] 1553 + 1554 + [[package]] 1555 + name = "regex-syntax" 1556 + version = "0.6.29" 1557 + source = "registry+https://github.com/rust-lang/crates.io-index" 1558 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1559 + 1560 + [[package]] 1561 + name = "regex-syntax" 1562 + version = "0.8.3" 1563 + source = "registry+https://github.com/rust-lang/crates.io-index" 1564 + checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1565 + 1566 + [[package]] 1567 + name = "rustc-demangle" 1568 + version = "0.1.23" 1569 + source = "registry+https://github.com/rust-lang/crates.io-index" 1570 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1571 + 1572 + [[package]] 1573 + name = "rustc-hash" 1574 + version = "1.1.0" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1577 + 1578 + [[package]] 1579 + name = "rustc_version" 1580 + version = "0.2.3" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1583 + dependencies = [ 1584 + "semver", 1585 + ] 1586 + 1587 + [[package]] 1588 + name = "rustix" 1589 + version = "0.38.34" 1590 + source = "registry+https://github.com/rust-lang/crates.io-index" 1591 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1592 + dependencies = [ 1593 + "bitflags 2.5.0", 1594 + "errno", 1595 + "libc", 1596 + "linux-raw-sys", 1597 + "windows-sys", 1598 + ] 1599 + 1600 + [[package]] 1601 + name = "ryu" 1602 + version = "1.0.17" 1603 + source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 1605 + 1606 + [[package]] 1607 + name = "same-file" 1608 + version = "1.0.6" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1611 + dependencies = [ 1612 + "winapi-util", 1613 + ] 1614 + 1615 + [[package]] 1616 + name = "scoped-tls" 1617 + version = "1.0.1" 1618 + source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1620 + 1621 + [[package]] 1622 + name = "scopeguard" 1623 + version = "1.2.0" 1624 + source = "registry+https://github.com/rust-lang/crates.io-index" 1625 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1626 + 1627 + [[package]] 1628 + name = "scroll" 1629 + version = "0.11.0" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" 1632 + dependencies = [ 1633 + "scroll_derive", 1634 + ] 1635 + 1636 + [[package]] 1637 + name = "scroll_derive" 1638 + version = "0.11.1" 1639 + source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" 1641 + dependencies = [ 1642 + "proc-macro2", 1643 + "quote", 1644 + "syn 2.0.60", 1645 + ] 1646 + 1647 + [[package]] 1648 + name = "semver" 1649 + version = "0.9.0" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1652 + dependencies = [ 1653 + "semver-parser", 1654 + ] 1655 + 1656 + [[package]] 1657 + name = "semver-parser" 1658 + version = "0.7.0" 1659 + source = "registry+https://github.com/rust-lang/crates.io-index" 1660 + checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1661 + 1662 + [[package]] 1663 + name = "serde" 1664 + version = "1.0.200" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" 1667 + dependencies = [ 1668 + "serde_derive", 1669 + ] 1670 + 1671 + [[package]] 1672 + name = "serde_derive" 1673 + version = "1.0.200" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" 1676 + dependencies = [ 1677 + "proc-macro2", 1678 + "quote", 1679 + "syn 2.0.60", 1680 + ] 1681 + 1682 + [[package]] 1683 + name = "serde_json" 1684 + version = "1.0.116" 1685 + source = "registry+https://github.com/rust-lang/crates.io-index" 1686 + checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 1687 + dependencies = [ 1688 + "itoa", 1689 + "ryu", 1690 + "serde", 1691 + ] 1692 + 1693 + [[package]] 1694 + name = "sha1_smol" 1695 + version = "1.0.0" 1696 + source = "registry+https://github.com/rust-lang/crates.io-index" 1697 + checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 1698 + 1699 + [[package]] 1700 + name = "sharded-slab" 1701 + version = "0.1.7" 1702 + source = "registry+https://github.com/rust-lang/crates.io-index" 1703 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1704 + dependencies = [ 1705 + "lazy_static", 1706 + ] 1707 + 1708 + [[package]] 1709 + name = "similar" 1710 + version = "2.5.0" 1711 + source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" 1713 + dependencies = [ 1714 + "bstr", 1715 + "unicode-segmentation", 1716 + ] 1717 + 1718 + [[package]] 1719 + name = "similar-asserts" 1720 + version = "1.5.0" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "e041bb827d1bfca18f213411d51b665309f1afb37a04a5d1464530e13779fc0f" 1723 + dependencies = [ 1724 + "console", 1725 + "similar", 1726 + ] 1727 + 1728 + [[package]] 1729 + name = "siphasher" 1730 + version = "0.3.11" 1731 + source = "registry+https://github.com/rust-lang/crates.io-index" 1732 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 1733 + 1734 + [[package]] 1735 + name = "slab" 1736 + version = "0.4.9" 1737 + source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1739 + dependencies = [ 1740 + "autocfg", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "smallvec" 1745 + version = "1.13.2" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1748 + 1749 + [[package]] 1750 + name = "smart-default" 1751 + version = "0.6.0" 1752 + source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6" 1754 + dependencies = [ 1755 + "proc-macro2", 1756 + "quote", 1757 + "syn 1.0.109", 1758 + ] 1759 + 1760 + [[package]] 1761 + name = "smartstring" 1762 + version = "1.0.1" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" 1765 + dependencies = [ 1766 + "autocfg", 1767 + "static_assertions", 1768 + "version_check", 1769 + ] 1770 + 1771 + [[package]] 1772 + name = "sourcemap" 1773 + version = "6.4.1" 1774 + source = "registry+https://github.com/rust-lang/crates.io-index" 1775 + checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90" 1776 + dependencies = [ 1777 + "data-encoding", 1778 + "debugid", 1779 + "if_chain", 1780 + "rustc_version", 1781 + "serde", 1782 + "serde_json", 1783 + "unicode-id", 1784 + "url", 1785 + ] 1786 + 1787 + [[package]] 1788 + name = "sourcemapcache_debug" 1789 + version = "10.2.1" 1790 + dependencies = [ 1791 + "anyhow", 1792 + "clap", 1793 + "symbolic", 1794 + "tracing", 1795 + "tracing-subscriber", 1796 + ] 1797 + 1798 + [[package]] 1799 + name = "stable_deref_trait" 1800 + version = "1.2.0" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1803 + 1804 + [[package]] 1805 + name = "stacker" 1806 + version = "0.1.15" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" 1809 + dependencies = [ 1810 + "cc", 1811 + "cfg-if", 1812 + "libc", 1813 + "psm", 1814 + "winapi", 1815 + ] 1816 + 1817 + [[package]] 1818 + name = "static_assertions" 1819 + version = "1.1.0" 1820 + source = "registry+https://github.com/rust-lang/crates.io-index" 1821 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1822 + 1823 + [[package]] 1824 + name = "string_cache" 1825 + version = "0.8.7" 1826 + source = "registry+https://github.com/rust-lang/crates.io-index" 1827 + checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 1828 + dependencies = [ 1829 + "new_debug_unreachable", 1830 + "once_cell", 1831 + "parking_lot", 1832 + "phf_shared", 1833 + "precomputed-hash", 1834 + "serde", 1835 + ] 1836 + 1837 + [[package]] 1838 + name = "string_cache_codegen" 1839 + version = "0.5.2" 1840 + source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 1842 + dependencies = [ 1843 + "phf_generator", 1844 + "phf_shared", 1845 + "proc-macro2", 1846 + "quote", 1847 + ] 1848 + 1849 + [[package]] 1850 + name = "string_enum" 1851 + version = "0.4.4" 1852 + source = "registry+https://github.com/rust-lang/crates.io-index" 1853 + checksum = "05e383308aebc257e7d7920224fa055c632478d92744eca77f99be8fa1545b90" 1854 + dependencies = [ 1855 + "proc-macro2", 1856 + "quote", 1857 + "swc_macros_common", 1858 + "syn 2.0.60", 1859 + ] 1860 + 1861 + [[package]] 1862 + name = "strsim" 1863 + version = "0.10.0" 1864 + source = "registry+https://github.com/rust-lang/crates.io-index" 1865 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1866 + 1867 + [[package]] 1868 + name = "swc_atoms" 1869 + version = "0.5.9" 1870 + source = "registry+https://github.com/rust-lang/crates.io-index" 1871 + checksum = "9f54563d7dcba626d4acfe14ed12def7ecc28e004debe3ecd2c3ee07cc47e449" 1872 + dependencies = [ 1873 + "once_cell", 1874 + "rustc-hash", 1875 + "serde", 1876 + "string_cache", 1877 + "string_cache_codegen", 1878 + "triomphe", 1879 + ] 1880 + 1881 + [[package]] 1882 + name = "swc_common" 1883 + version = "0.31.22" 1884 + source = "registry+https://github.com/rust-lang/crates.io-index" 1885 + checksum = "88d00f960c667c59c133f30492f4d07f26242fcf988a066d3871e6d3d838d528" 1886 + dependencies = [ 1887 + "ast_node", 1888 + "better_scoped_tls", 1889 + "cfg-if", 1890 + "either", 1891 + "from_variant", 1892 + "new_debug_unreachable", 1893 + "num-bigint", 1894 + "once_cell", 1895 + "rustc-hash", 1896 + "serde", 1897 + "siphasher", 1898 + "string_cache", 1899 + "swc_atoms", 1900 + "swc_eq_ignore_macros", 1901 + "swc_visit", 1902 + "tracing", 1903 + "unicode-width", 1904 + "url", 1905 + ] 1906 + 1907 + [[package]] 1908 + name = "swc_ecma_ast" 1909 + version = "0.106.6" 1910 + source = "registry+https://github.com/rust-lang/crates.io-index" 1911 + checksum = "ebf4d6804b1da4146c4c0359d129e3dd43568d321f69d7953d9abbca4ded76ba" 1912 + dependencies = [ 1913 + "bitflags 2.5.0", 1914 + "is-macro", 1915 + "num-bigint", 1916 + "scoped-tls", 1917 + "string_enum", 1918 + "swc_atoms", 1919 + "swc_common", 1920 + "unicode-id", 1921 + ] 1922 + 1923 + [[package]] 1924 + name = "swc_ecma_parser" 1925 + version = "0.136.8" 1926 + source = "registry+https://github.com/rust-lang/crates.io-index" 1927 + checksum = "45d40421c607d7a48334f78a9b24a5cbde1f36250f9986746ec082208d68b39f" 1928 + dependencies = [ 1929 + "either", 1930 + "lexical", 1931 + "num-bigint", 1932 + "serde", 1933 + "smallvec", 1934 + "smartstring", 1935 + "stacker", 1936 + "swc_atoms", 1937 + "swc_common", 1938 + "swc_ecma_ast", 1939 + "tracing", 1940 + "typed-arena", 1941 + ] 1942 + 1943 + [[package]] 1944 + name = "swc_ecma_visit" 1945 + version = "0.92.5" 1946 + source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "0f61da6cac0ec3b7e62d367cfbd9e38e078a4601271891ad94f0dac5ff69f839" 1948 + dependencies = [ 1949 + "num-bigint", 1950 + "swc_atoms", 1951 + "swc_common", 1952 + "swc_ecma_ast", 1953 + "swc_visit", 1954 + "tracing", 1955 + ] 1956 + 1957 + [[package]] 1958 + name = "swc_eq_ignore_macros" 1959 + version = "0.1.3" 1960 + source = "registry+https://github.com/rust-lang/crates.io-index" 1961 + checksum = "695a1d8b461033d32429b5befbf0ad4d7a2c4d6ba9cd5ba4e0645c615839e8e4" 1962 + dependencies = [ 1963 + "proc-macro2", 1964 + "quote", 1965 + "syn 2.0.60", 1966 + ] 1967 + 1968 + [[package]] 1969 + name = "swc_macros_common" 1970 + version = "0.3.11" 1971 + source = "registry+https://github.com/rust-lang/crates.io-index" 1972 + checksum = "91745f3561057493d2da768437c427c0e979dff7396507ae02f16c981c4a8466" 1973 + dependencies = [ 1974 + "proc-macro2", 1975 + "quote", 1976 + "syn 2.0.60", 1977 + ] 1978 + 1979 + [[package]] 1980 + name = "swc_visit" 1981 + version = "0.5.14" 1982 + source = "registry+https://github.com/rust-lang/crates.io-index" 1983 + checksum = "043d11fe683dcb934583ead49405c0896a5af5face522e4682c16971ef7871b9" 1984 + dependencies = [ 1985 + "either", 1986 + "swc_visit_macros", 1987 + ] 1988 + 1989 + [[package]] 1990 + name = "swc_visit_macros" 1991 + version = "0.5.12" 1992 + source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "4ae9ef18ff8daffa999f729db056d2821cd2f790f3a11e46422d19f46bb193e7" 1994 + dependencies = [ 1995 + "Inflector", 1996 + "proc-macro2", 1997 + "quote", 1998 + "swc_macros_common", 1999 + "syn 2.0.60", 2000 + ] 2001 + 2002 + [[package]] 2003 + name = "symbolic" 2004 + version = "10.2.1" 2005 + dependencies = [ 2006 + "symbolic-cfi", 2007 + "symbolic-common", 2008 + "symbolic-debuginfo", 2009 + "symbolic-demangle", 2010 + "symbolic-il2cpp", 2011 + "symbolic-ppdb", 2012 + "symbolic-sourcemapcache", 2013 + "symbolic-symcache", 2014 + "symbolic-unreal", 2015 + ] 2016 + 2017 + [[package]] 2018 + name = "symbolic-cabi" 2019 + version = "10.2.1" 2020 + dependencies = [ 2021 + "proguard", 2022 + "sourcemap", 2023 + "symbolic", 2024 + "tempfile", 2025 + ] 2026 + 2027 + [[package]] 2028 + name = "symbolic-cfi" 2029 + version = "10.2.1" 2030 + dependencies = [ 2031 + "insta", 2032 + "similar-asserts", 2033 + "symbolic-common", 2034 + "symbolic-debuginfo", 2035 + "symbolic-testutils", 2036 + "thiserror", 2037 + ] 2038 + 2039 + [[package]] 2040 + name = "symbolic-common" 2041 + version = "10.2.1" 2042 + dependencies = [ 2043 + "debugid", 2044 + "memmap2", 2045 + "serde", 2046 + "similar-asserts", 2047 + "stable_deref_trait", 2048 + "symbolic-testutils", 2049 + "tempfile", 2050 + "uuid", 2051 + ] 2052 + 2053 + [[package]] 2054 + name = "symbolic-debuginfo" 2055 + version = "10.2.1" 2056 + dependencies = [ 2057 + "bitvec", 2058 + "criterion", 2059 + "dmsort", 2060 + "elementtree", 2061 + "elsa", 2062 + "fallible-iterator", 2063 + "flate2", 2064 + "gimli 0.27.3", 2065 + "goblin", 2066 + "insta", 2067 + "lazy_static", 2068 + "lazycell", 2069 + "nom", 2070 + "nom-supreme", 2071 + "parking_lot", 2072 + "pdb-addr2line", 2073 + "regex", 2074 + "scroll", 2075 + "serde", 2076 + "serde_json", 2077 + "similar-asserts", 2078 + "smallvec", 2079 + "symbolic-common", 2080 + "symbolic-ppdb", 2081 + "symbolic-testutils", 2082 + "tempfile", 2083 + "thiserror", 2084 + "wasmparser", 2085 + "zip", 2086 + ] 2087 + 2088 + [[package]] 2089 + name = "symbolic-demangle" 2090 + version = "10.2.1" 2091 + dependencies = [ 2092 + "cc", 2093 + "cpp_demangle", 2094 + "msvc-demangler", 2095 + "rustc-demangle", 2096 + "similar-asserts", 2097 + "symbolic-common", 2098 + ] 2099 + 2100 + [[package]] 2101 + name = "symbolic-il2cpp" 2102 + version = "10.2.1" 2103 + dependencies = [ 2104 + "indexmap", 2105 + "serde_json", 2106 + "symbolic-common", 2107 + "symbolic-debuginfo", 2108 + ] 2109 + 2110 + [[package]] 2111 + name = "symbolic-ppdb" 2112 + version = "10.2.1" 2113 + dependencies = [ 2114 + "indexmap", 2115 + "symbolic-common", 2116 + "symbolic-testutils", 2117 + "thiserror", 2118 + "uuid", 2119 + "watto", 2120 + ] 2121 + 2122 + [[package]] 2123 + name = "symbolic-sourcemapcache" 2124 + version = "10.2.1" 2125 + dependencies = [ 2126 + "itertools", 2127 + "js-source-scopes", 2128 + "sourcemap", 2129 + "symbolic-testutils", 2130 + "thiserror", 2131 + "tracing", 2132 + "watto", 2133 + ] 2134 + 2135 + [[package]] 2136 + name = "symbolic-symcache" 2137 + version = "10.2.1" 2138 + dependencies = [ 2139 + "criterion", 2140 + "indexmap", 2141 + "insta", 2142 + "similar-asserts", 2143 + "symbolic-common", 2144 + "symbolic-debuginfo", 2145 + "symbolic-il2cpp", 2146 + "symbolic-testutils", 2147 + "thiserror", 2148 + "tracing", 2149 + "watto", 2150 + ] 2151 + 2152 + [[package]] 2153 + name = "symbolic-testutils" 2154 + version = "10.2.1" 2155 + 2156 + [[package]] 2157 + name = "symbolic-unreal" 2158 + version = "10.2.1" 2159 + dependencies = [ 2160 + "anylog", 2161 + "bytes", 2162 + "chrono", 2163 + "elementtree", 2164 + "flate2", 2165 + "insta", 2166 + "lazy_static", 2167 + "regex", 2168 + "scroll", 2169 + "serde", 2170 + "similar-asserts", 2171 + "symbolic-testutils", 2172 + "thiserror", 2173 + "time", 2174 + ] 2175 + 2176 + [[package]] 2177 + name = "symcache_debug" 2178 + version = "10.2.1" 2179 + dependencies = [ 2180 + "anyhow", 2181 + "clap", 2182 + "symbolic", 2183 + ] 2184 + 2185 + [[package]] 2186 + name = "syn" 2187 + version = "1.0.109" 2188 + source = "registry+https://github.com/rust-lang/crates.io-index" 2189 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2190 + dependencies = [ 2191 + "proc-macro2", 2192 + "quote", 2193 + "unicode-ident", 2194 + ] 2195 + 2196 + [[package]] 2197 + name = "syn" 2198 + version = "2.0.60" 2199 + source = "registry+https://github.com/rust-lang/crates.io-index" 2200 + checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 2201 + dependencies = [ 2202 + "proc-macro2", 2203 + "quote", 2204 + "unicode-ident", 2205 + ] 2206 + 2207 + [[package]] 2208 + name = "tap" 2209 + version = "1.0.1" 2210 + source = "registry+https://github.com/rust-lang/crates.io-index" 2211 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 2212 + 2213 + [[package]] 2214 + name = "tempfile" 2215 + version = "3.10.1" 2216 + source = "registry+https://github.com/rust-lang/crates.io-index" 2217 + checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 2218 + dependencies = [ 2219 + "cfg-if", 2220 + "fastrand", 2221 + "rustix", 2222 + "windows-sys", 2223 + ] 2224 + 2225 + [[package]] 2226 + name = "termcolor" 2227 + version = "1.4.1" 2228 + source = "registry+https://github.com/rust-lang/crates.io-index" 2229 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2230 + dependencies = [ 2231 + "winapi-util", 2232 + ] 2233 + 2234 + [[package]] 2235 + name = "textwrap" 2236 + version = "0.16.1" 2237 + source = "registry+https://github.com/rust-lang/crates.io-index" 2238 + checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 2239 + 2240 + [[package]] 2241 + name = "thiserror" 2242 + version = "1.0.59" 2243 + source = "registry+https://github.com/rust-lang/crates.io-index" 2244 + checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" 2245 + dependencies = [ 2246 + "thiserror-impl", 2247 + ] 2248 + 2249 + [[package]] 2250 + name = "thiserror-impl" 2251 + version = "1.0.59" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" 2254 + dependencies = [ 2255 + "proc-macro2", 2256 + "quote", 2257 + "syn 2.0.60", 2258 + ] 2259 + 2260 + [[package]] 2261 + name = "thread_local" 2262 + version = "1.1.8" 2263 + source = "registry+https://github.com/rust-lang/crates.io-index" 2264 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2265 + dependencies = [ 2266 + "cfg-if", 2267 + "once_cell", 2268 + ] 2269 + 2270 + [[package]] 2271 + name = "time" 2272 + version = "0.3.36" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2275 + dependencies = [ 2276 + "deranged", 2277 + "itoa", 2278 + "num-conv", 2279 + "powerfmt", 2280 + "serde", 2281 + "time-core", 2282 + "time-macros", 2283 + ] 2284 + 2285 + [[package]] 2286 + name = "time-core" 2287 + version = "0.1.2" 2288 + source = "registry+https://github.com/rust-lang/crates.io-index" 2289 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2290 + 2291 + [[package]] 2292 + name = "time-macros" 2293 + version = "0.2.18" 2294 + source = "registry+https://github.com/rust-lang/crates.io-index" 2295 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2296 + dependencies = [ 2297 + "num-conv", 2298 + "time-core", 2299 + ] 2300 + 2301 + [[package]] 2302 + name = "tinytemplate" 2303 + version = "1.2.1" 2304 + source = "registry+https://github.com/rust-lang/crates.io-index" 2305 + checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 2306 + dependencies = [ 2307 + "serde", 2308 + "serde_json", 2309 + ] 2310 + 2311 + [[package]] 2312 + name = "tinyvec" 2313 + version = "1.6.0" 2314 + source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2316 + dependencies = [ 2317 + "tinyvec_macros", 2318 + ] 2319 + 2320 + [[package]] 2321 + name = "tinyvec_macros" 2322 + version = "0.1.1" 2323 + source = "registry+https://github.com/rust-lang/crates.io-index" 2324 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2325 + 2326 + [[package]] 2327 + name = "tokio" 2328 + version = "1.37.0" 2329 + source = "registry+https://github.com/rust-lang/crates.io-index" 2330 + checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" 2331 + dependencies = [ 2332 + "backtrace", 2333 + "pin-project-lite", 2334 + "tokio-macros", 2335 + ] 2336 + 2337 + [[package]] 2338 + name = "tokio-macros" 2339 + version = "2.2.0" 2340 + source = "registry+https://github.com/rust-lang/crates.io-index" 2341 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 2342 + dependencies = [ 2343 + "proc-macro2", 2344 + "quote", 2345 + "syn 2.0.60", 2346 + ] 2347 + 2348 + [[package]] 2349 + name = "tracing" 2350 + version = "0.1.40" 2351 + source = "registry+https://github.com/rust-lang/crates.io-index" 2352 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2353 + dependencies = [ 2354 + "log", 2355 + "pin-project-lite", 2356 + "tracing-attributes", 2357 + "tracing-core", 2358 + ] 2359 + 2360 + [[package]] 2361 + name = "tracing-attributes" 2362 + version = "0.1.27" 2363 + source = "registry+https://github.com/rust-lang/crates.io-index" 2364 + checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2365 + dependencies = [ 2366 + "proc-macro2", 2367 + "quote", 2368 + "syn 2.0.60", 2369 + ] 2370 + 2371 + [[package]] 2372 + name = "tracing-core" 2373 + version = "0.1.32" 2374 + source = "registry+https://github.com/rust-lang/crates.io-index" 2375 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2376 + dependencies = [ 2377 + "once_cell", 2378 + "valuable", 2379 + ] 2380 + 2381 + [[package]] 2382 + name = "tracing-log" 2383 + version = "0.2.0" 2384 + source = "registry+https://github.com/rust-lang/crates.io-index" 2385 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2386 + dependencies = [ 2387 + "log", 2388 + "once_cell", 2389 + "tracing-core", 2390 + ] 2391 + 2392 + [[package]] 2393 + name = "tracing-subscriber" 2394 + version = "0.3.18" 2395 + source = "registry+https://github.com/rust-lang/crates.io-index" 2396 + checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 2397 + dependencies = [ 2398 + "matchers", 2399 + "nu-ansi-term", 2400 + "once_cell", 2401 + "regex", 2402 + "sharded-slab", 2403 + "smallvec", 2404 + "thread_local", 2405 + "tracing", 2406 + "tracing-core", 2407 + "tracing-log", 2408 + ] 2409 + 2410 + [[package]] 2411 + name = "triomphe" 2412 + version = "0.1.11" 2413 + source = "registry+https://github.com/rust-lang/crates.io-index" 2414 + checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" 2415 + dependencies = [ 2416 + "serde", 2417 + "stable_deref_trait", 2418 + ] 2419 + 2420 + [[package]] 2421 + name = "typed-arena" 2422 + version = "2.0.2" 2423 + source = "registry+https://github.com/rust-lang/crates.io-index" 2424 + checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 2425 + 2426 + [[package]] 2427 + name = "unicode-bidi" 2428 + version = "0.3.15" 2429 + source = "registry+https://github.com/rust-lang/crates.io-index" 2430 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2431 + 2432 + [[package]] 2433 + name = "unicode-id" 2434 + version = "0.3.4" 2435 + source = "registry+https://github.com/rust-lang/crates.io-index" 2436 + checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f" 2437 + 2438 + [[package]] 2439 + name = "unicode-ident" 2440 + version = "1.0.12" 2441 + source = "registry+https://github.com/rust-lang/crates.io-index" 2442 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2443 + 2444 + [[package]] 2445 + name = "unicode-normalization" 2446 + version = "0.1.23" 2447 + source = "registry+https://github.com/rust-lang/crates.io-index" 2448 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2449 + dependencies = [ 2450 + "tinyvec", 2451 + ] 2452 + 2453 + [[package]] 2454 + name = "unicode-segmentation" 2455 + version = "1.11.0" 2456 + source = "registry+https://github.com/rust-lang/crates.io-index" 2457 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 2458 + 2459 + [[package]] 2460 + name = "unicode-width" 2461 + version = "0.1.12" 2462 + source = "registry+https://github.com/rust-lang/crates.io-index" 2463 + checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" 2464 + 2465 + [[package]] 2466 + name = "unreal_engine_crash" 2467 + version = "10.2.1" 2468 + dependencies = [ 2469 + "clap", 2470 + "symbolic", 2471 + ] 2472 + 2473 + [[package]] 2474 + name = "url" 2475 + version = "2.5.0" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 2478 + dependencies = [ 2479 + "form_urlencoded", 2480 + "idna", 2481 + "percent-encoding", 2482 + ] 2483 + 2484 + [[package]] 2485 + name = "uuid" 2486 + version = "1.8.0" 2487 + source = "registry+https://github.com/rust-lang/crates.io-index" 2488 + checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 2489 + dependencies = [ 2490 + "sha1_smol", 2491 + ] 2492 + 2493 + [[package]] 2494 + name = "valuable" 2495 + version = "0.1.0" 2496 + source = "registry+https://github.com/rust-lang/crates.io-index" 2497 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2498 + 2499 + [[package]] 2500 + name = "version_check" 2501 + version = "0.9.4" 2502 + source = "registry+https://github.com/rust-lang/crates.io-index" 2503 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2504 + 2505 + [[package]] 2506 + name = "walkdir" 2507 + version = "2.5.0" 2508 + source = "registry+https://github.com/rust-lang/crates.io-index" 2509 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 2510 + dependencies = [ 2511 + "same-file", 2512 + "winapi-util", 2513 + ] 2514 + 2515 + [[package]] 2516 + name = "wasi" 2517 + version = "0.11.0+wasi-snapshot-preview1" 2518 + source = "registry+https://github.com/rust-lang/crates.io-index" 2519 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2520 + 2521 + [[package]] 2522 + name = "wasm-bindgen" 2523 + version = "0.2.92" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 2526 + dependencies = [ 2527 + "cfg-if", 2528 + "wasm-bindgen-macro", 2529 + ] 2530 + 2531 + [[package]] 2532 + name = "wasm-bindgen-backend" 2533 + version = "0.2.92" 2534 + source = "registry+https://github.com/rust-lang/crates.io-index" 2535 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 2536 + dependencies = [ 2537 + "bumpalo", 2538 + "log", 2539 + "once_cell", 2540 + "proc-macro2", 2541 + "quote", 2542 + "syn 2.0.60", 2543 + "wasm-bindgen-shared", 2544 + ] 2545 + 2546 + [[package]] 2547 + name = "wasm-bindgen-macro" 2548 + version = "0.2.92" 2549 + source = "registry+https://github.com/rust-lang/crates.io-index" 2550 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 2551 + dependencies = [ 2552 + "quote", 2553 + "wasm-bindgen-macro-support", 2554 + ] 2555 + 2556 + [[package]] 2557 + name = "wasm-bindgen-macro-support" 2558 + version = "0.2.92" 2559 + source = "registry+https://github.com/rust-lang/crates.io-index" 2560 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 2561 + dependencies = [ 2562 + "proc-macro2", 2563 + "quote", 2564 + "syn 2.0.60", 2565 + "wasm-bindgen-backend", 2566 + "wasm-bindgen-shared", 2567 + ] 2568 + 2569 + [[package]] 2570 + name = "wasm-bindgen-shared" 2571 + version = "0.2.92" 2572 + source = "registry+https://github.com/rust-lang/crates.io-index" 2573 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 2574 + 2575 + [[package]] 2576 + name = "wasmparser" 2577 + version = "0.95.0" 2578 + source = "registry+https://github.com/rust-lang/crates.io-index" 2579 + checksum = "f2ea896273ea99b15132414be1da01ab0d8836415083298ecaffbe308eaac87a" 2580 + dependencies = [ 2581 + "indexmap", 2582 + "url", 2583 + ] 2584 + 2585 + [[package]] 2586 + name = "watto" 2587 + version = "0.1.0" 2588 + source = "registry+https://github.com/rust-lang/crates.io-index" 2589 + checksum = "6746b5315e417144282a047ebb82260d45c92d09bf653fa9ec975e3809be942b" 2590 + dependencies = [ 2591 + "leb128", 2592 + "thiserror", 2593 + ] 2594 + 2595 + [[package]] 2596 + name = "web-sys" 2597 + version = "0.3.69" 2598 + source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 2600 + dependencies = [ 2601 + "js-sys", 2602 + "wasm-bindgen", 2603 + ] 2604 + 2605 + [[package]] 2606 + name = "winapi" 2607 + version = "0.3.9" 2608 + source = "registry+https://github.com/rust-lang/crates.io-index" 2609 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2610 + dependencies = [ 2611 + "winapi-i686-pc-windows-gnu", 2612 + "winapi-x86_64-pc-windows-gnu", 2613 + ] 2614 + 2615 + [[package]] 2616 + name = "winapi-i686-pc-windows-gnu" 2617 + version = "0.4.0" 2618 + source = "registry+https://github.com/rust-lang/crates.io-index" 2619 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2620 + 2621 + [[package]] 2622 + name = "winapi-util" 2623 + version = "0.1.8" 2624 + source = "registry+https://github.com/rust-lang/crates.io-index" 2625 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 2626 + dependencies = [ 2627 + "windows-sys", 2628 + ] 2629 + 2630 + [[package]] 2631 + name = "winapi-x86_64-pc-windows-gnu" 2632 + version = "0.4.0" 2633 + source = "registry+https://github.com/rust-lang/crates.io-index" 2634 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2635 + 2636 + [[package]] 2637 + name = "windows-core" 2638 + version = "0.52.0" 2639 + source = "registry+https://github.com/rust-lang/crates.io-index" 2640 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2641 + dependencies = [ 2642 + "windows-targets", 2643 + ] 2644 + 2645 + [[package]] 2646 + name = "windows-sys" 2647 + version = "0.52.0" 2648 + source = "registry+https://github.com/rust-lang/crates.io-index" 2649 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2650 + dependencies = [ 2651 + "windows-targets", 2652 + ] 2653 + 2654 + [[package]] 2655 + name = "windows-targets" 2656 + version = "0.52.5" 2657 + source = "registry+https://github.com/rust-lang/crates.io-index" 2658 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 2659 + dependencies = [ 2660 + "windows_aarch64_gnullvm", 2661 + "windows_aarch64_msvc", 2662 + "windows_i686_gnu", 2663 + "windows_i686_gnullvm", 2664 + "windows_i686_msvc", 2665 + "windows_x86_64_gnu", 2666 + "windows_x86_64_gnullvm", 2667 + "windows_x86_64_msvc", 2668 + ] 2669 + 2670 + [[package]] 2671 + name = "windows_aarch64_gnullvm" 2672 + version = "0.52.5" 2673 + source = "registry+https://github.com/rust-lang/crates.io-index" 2674 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 2675 + 2676 + [[package]] 2677 + name = "windows_aarch64_msvc" 2678 + version = "0.52.5" 2679 + source = "registry+https://github.com/rust-lang/crates.io-index" 2680 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 2681 + 2682 + [[package]] 2683 + name = "windows_i686_gnu" 2684 + version = "0.52.5" 2685 + source = "registry+https://github.com/rust-lang/crates.io-index" 2686 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 2687 + 2688 + [[package]] 2689 + name = "windows_i686_gnullvm" 2690 + version = "0.52.5" 2691 + source = "registry+https://github.com/rust-lang/crates.io-index" 2692 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 2693 + 2694 + [[package]] 2695 + name = "windows_i686_msvc" 2696 + version = "0.52.5" 2697 + source = "registry+https://github.com/rust-lang/crates.io-index" 2698 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 2699 + 2700 + [[package]] 2701 + name = "windows_x86_64_gnu" 2702 + version = "0.52.5" 2703 + source = "registry+https://github.com/rust-lang/crates.io-index" 2704 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 2705 + 2706 + [[package]] 2707 + name = "windows_x86_64_gnullvm" 2708 + version = "0.52.5" 2709 + source = "registry+https://github.com/rust-lang/crates.io-index" 2710 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 2711 + 2712 + [[package]] 2713 + name = "windows_x86_64_msvc" 2714 + version = "0.52.5" 2715 + source = "registry+https://github.com/rust-lang/crates.io-index" 2716 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 2717 + 2718 + [[package]] 2719 + name = "wyz" 2720 + version = "0.5.1" 2721 + source = "registry+https://github.com/rust-lang/crates.io-index" 2722 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 2723 + dependencies = [ 2724 + "tap", 2725 + ] 2726 + 2727 + [[package]] 2728 + name = "zip" 2729 + version = "0.6.6" 2730 + source = "registry+https://github.com/rust-lang/crates.io-index" 2731 + checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 2732 + dependencies = [ 2733 + "byteorder", 2734 + "crc32fast", 2735 + "crossbeam-utils", 2736 + "flate2", 2737 + ]
+3 -10
pkgs/development/python-modules/symbolic/default.nix
··· 9 milksnake, 10 cffi, 11 pytestCheckHook, 12 - nixosTests, 13 }: 14 15 buildPythonPackage rec { 16 pname = "symbolic"; 17 - version = "12.14.1"; # glitchtip currently only works with symbolic 10.x 18 pyproject = true; 19 20 src = fetchFromGitHub { ··· 22 repo = "symbolic"; 23 tag = version; 24 hash = "sha256-u3nEYvnt2P+W/0zYctikMgdkalej86eCYhfWj9LW4pU="; 25 - # for some reason the `py` directory in the tarball is empty, so we fetch the source via git instead 26 forceFetchGit = true; 27 }; 28 29 cargoDeps = rustPlatform.fetchCargoVendor { 30 - inherit 31 - pname 32 - version 33 - src 34 - ; 35 hash = "sha256-X8IjmSQD32bougiUFyuk8OOGIzIQgk/TjVM5bgUey5M="; 36 }; 37 ··· 58 pytestFlagsArray = [ "py" ]; 59 60 pythonImportsCheck = [ "symbolic" ]; 61 - 62 - passthru.tests = { inherit (nixosTests) glitchtip; }; 63 64 meta = { 65 description = "Python library for dealing with symbol files and more";
··· 9 milksnake, 10 cffi, 11 pytestCheckHook, 12 }: 13 14 buildPythonPackage rec { 15 pname = "symbolic"; 16 + version = "12.14.1"; 17 pyproject = true; 18 19 src = fetchFromGitHub { ··· 21 repo = "symbolic"; 22 tag = version; 23 hash = "sha256-u3nEYvnt2P+W/0zYctikMgdkalej86eCYhfWj9LW4pU="; 24 + # the `py` directory is not included in the tarball, so we fetch the source via git instead 25 forceFetchGit = true; 26 }; 27 28 cargoDeps = rustPlatform.fetchCargoVendor { 29 + inherit pname version src; 30 hash = "sha256-X8IjmSQD32bougiUFyuk8OOGIzIQgk/TjVM5bgUey5M="; 31 }; 32 ··· 53 pytestFlagsArray = [ "py" ]; 54 55 pythonImportsCheck = [ "symbolic" ]; 56 57 meta = { 58 description = "Python library for dealing with symbol files and more";
+2
pkgs/top-level/python-packages.nix
··· 16788 16789 symbolic = callPackage ../development/python-modules/symbolic { }; 16790 16791 symengine = callPackage ../development/python-modules/symengine { inherit (pkgs) symengine; }; 16792 16793 symfc = callPackage ../development/python-modules/symfc { };
··· 16788 16789 symbolic = callPackage ../development/python-modules/symbolic { }; 16790 16791 + symbolic_10 = callPackage ../development/python-modules/symbolic/10.nix { }; 16792 + 16793 symengine = callPackage ../development/python-modules/symengine { inherit (pkgs) symengine; }; 16794 16795 symfc = callPackage ../development/python-modules/symfc { };