Conventional commits release tool [Mirror]
conventional-commits tool ci cli conventional-changelog
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: add gix dependency

Sekwah (Jul 4, 2026, 11:39 AM +0100) 6a808c19 5e95abbd

+1773
+1772
Cargo.lock
··· 3 3 version = 4 4 4 5 5 [[package]] 6 + name = "aho-corasick" 7 + version = "1.1.4" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 10 + dependencies = [ 11 + "memchr", 12 + ] 13 + 14 + [[package]] 15 + name = "allocator-api2" 16 + version = "0.2.21" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 19 + 20 + [[package]] 21 + name = "arc-swap" 22 + version = "1.9.2" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b" 25 + dependencies = [ 26 + "rustversion", 27 + ] 28 + 29 + [[package]] 30 + name = "arrayvec" 31 + version = "0.7.8" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" 34 + 35 + [[package]] 36 + name = "bitflags" 37 + version = "1.3.2" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 40 + 41 + [[package]] 42 + name = "bitflags" 43 + version = "2.13.0" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" 46 + 47 + [[package]] 48 + name = "block-buffer" 49 + version = "0.10.4" 50 + source = "registry+https://github.com/rust-lang/crates.io-index" 51 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 52 + dependencies = [ 53 + "generic-array", 54 + ] 55 + 56 + [[package]] 57 + name = "bstr" 58 + version = "1.12.3" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79" 61 + dependencies = [ 62 + "memchr", 63 + "regex-automata", 64 + "serde_core", 65 + ] 66 + 67 + [[package]] 68 + name = "byteorder" 69 + version = "1.5.0" 70 + source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 72 + 73 + [[package]] 74 + name = "bytes" 75 + version = "1.12.0" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593" 78 + 79 + [[package]] 80 + name = "bytesize" 81 + version = "2.4.2" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "3d7c8918969267b2932ffd5655509bbbea0833823058c378876953217f5fc50e" 84 + 85 + [[package]] 86 + name = "cfg-if" 87 + version = "1.0.4" 88 + source = "registry+https://github.com/rust-lang/crates.io-index" 89 + checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 90 + 91 + [[package]] 92 + name = "clru" 93 + version = "0.6.3" 94 + source = "registry+https://github.com/rust-lang/crates.io-index" 95 + checksum = "197fd99cb113a8d5d9b6376f3aa817f32c1078f2343b714fff7d2ca44fdf67d5" 96 + dependencies = [ 97 + "hashbrown 0.16.1", 98 + ] 99 + 100 + [[package]] 101 + name = "cpufeatures" 102 + version = "0.2.17" 103 + source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 105 + dependencies = [ 106 + "libc", 107 + ] 108 + 109 + [[package]] 110 + name = "crc32fast" 111 + version = "1.5.0" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 114 + dependencies = [ 115 + "cfg-if", 116 + ] 117 + 118 + [[package]] 119 + name = "crossbeam-channel" 120 + version = "0.5.15" 121 + source = "registry+https://github.com/rust-lang/crates.io-index" 122 + checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 123 + dependencies = [ 124 + "crossbeam-utils", 125 + ] 126 + 127 + [[package]] 128 + name = "crossbeam-utils" 129 + version = "0.8.21" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 132 + 133 + [[package]] 134 + name = "crypto-common" 135 + version = "0.1.7" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 138 + dependencies = [ 139 + "generic-array", 140 + "typenum", 141 + ] 142 + 143 + [[package]] 144 + name = "dashmap" 145 + version = "6.2.1" 146 + source = "registry+https://github.com/rust-lang/crates.io-index" 147 + checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c" 148 + dependencies = [ 149 + "cfg-if", 150 + "crossbeam-utils", 151 + "hashbrown 0.14.5", 152 + "lock_api", 153 + "once_cell", 154 + "parking_lot_core", 155 + ] 156 + 157 + [[package]] 158 + name = "defmt" 159 + version = "1.1.1" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1" 162 + dependencies = [ 163 + "bitflags 1.3.2", 164 + "defmt-macros", 165 + ] 166 + 167 + [[package]] 168 + name = "defmt-macros" 169 + version = "1.1.1" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8" 172 + dependencies = [ 173 + "defmt-parser", 174 + "proc-macro2", 175 + "quote", 176 + "syn", 177 + ] 178 + 179 + [[package]] 180 + name = "defmt-parser" 181 + version = "1.0.0" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" 184 + dependencies = [ 185 + "thiserror", 186 + ] 187 + 188 + [[package]] 189 + name = "digest" 190 + version = "0.10.7" 191 + source = "registry+https://github.com/rust-lang/crates.io-index" 192 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 193 + dependencies = [ 194 + "block-buffer", 195 + "crypto-common", 196 + ] 197 + 198 + [[package]] 199 + name = "dunce" 200 + version = "1.0.5" 201 + source = "registry+https://github.com/rust-lang/crates.io-index" 202 + checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 203 + 204 + [[package]] 205 + name = "encoding_rs" 206 + version = "0.8.35" 207 + source = "registry+https://github.com/rust-lang/crates.io-index" 208 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 209 + dependencies = [ 210 + "cfg-if", 211 + ] 212 + 213 + [[package]] 214 + name = "equivalent" 215 + version = "1.0.2" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 218 + 219 + [[package]] 220 + name = "errno" 221 + version = "0.3.14" 222 + source = "registry+https://github.com/rust-lang/crates.io-index" 223 + checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 224 + dependencies = [ 225 + "libc", 226 + "windows-sys", 227 + ] 228 + 229 + [[package]] 230 + name = "faster-hex" 231 + version = "0.10.0" 232 + source = "registry+https://github.com/rust-lang/crates.io-index" 233 + checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" 234 + dependencies = [ 235 + "heapless", 236 + "serde", 237 + ] 238 + 239 + [[package]] 240 + name = "fastrand" 241 + version = "2.4.1" 242 + source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" 244 + 245 + [[package]] 246 + name = "filetime" 247 + version = "0.2.29" 248 + source = "registry+https://github.com/rust-lang/crates.io-index" 249 + checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" 250 + dependencies = [ 251 + "cfg-if", 252 + "libc", 253 + ] 254 + 255 + [[package]] 256 + name = "fnv" 257 + version = "1.0.7" 258 + source = "registry+https://github.com/rust-lang/crates.io-index" 259 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 260 + 261 + [[package]] 262 + name = "foldhash" 263 + version = "0.2.0" 264 + source = "registry+https://github.com/rust-lang/crates.io-index" 265 + checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 266 + 267 + [[package]] 268 + name = "generic-array" 269 + version = "0.14.7" 270 + source = "registry+https://github.com/rust-lang/crates.io-index" 271 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 272 + dependencies = [ 273 + "typenum", 274 + "version_check", 275 + ] 276 + 277 + [[package]] 278 + name = "getrandom" 279 + version = "0.4.3" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" 282 + dependencies = [ 283 + "cfg-if", 284 + "libc", 285 + "r-efi", 286 + ] 287 + 288 + [[package]] 289 + name = "gix" 290 + version = "0.85.0" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "fa8b2e38ebfc4484dfef8580ddcaf8abb7285e6f3eb6413ff6775d104ae96ca6" 293 + dependencies = [ 294 + "gix-actor", 295 + "gix-archive", 296 + "gix-attributes", 297 + "gix-blame", 298 + "gix-command", 299 + "gix-commitgraph", 300 + "gix-config", 301 + "gix-credentials", 302 + "gix-date", 303 + "gix-diff", 304 + "gix-dir", 305 + "gix-discover", 306 + "gix-error", 307 + "gix-features", 308 + "gix-filter", 309 + "gix-fs", 310 + "gix-glob", 311 + "gix-hash", 312 + "gix-hashtable", 313 + "gix-ignore", 314 + "gix-index", 315 + "gix-lock", 316 + "gix-mailmap", 317 + "gix-negotiate", 318 + "gix-object", 319 + "gix-odb", 320 + "gix-pack", 321 + "gix-path", 322 + "gix-pathspec", 323 + "gix-prompt", 324 + "gix-protocol", 325 + "gix-ref", 326 + "gix-refspec", 327 + "gix-revision", 328 + "gix-revwalk", 329 + "gix-sec", 330 + "gix-shallow", 331 + "gix-status", 332 + "gix-submodule", 333 + "gix-tempfile", 334 + "gix-trace", 335 + "gix-traverse", 336 + "gix-url", 337 + "gix-utils", 338 + "gix-validate", 339 + "gix-worktree", 340 + "gix-worktree-state", 341 + "gix-worktree-stream", 342 + "nonempty", 343 + "parking_lot", 344 + "regex", 345 + "signal-hook", 346 + "smallvec", 347 + "thiserror", 348 + ] 349 + 350 + [[package]] 351 + name = "gix-actor" 352 + version = "0.41.1" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "8bc998b8f746dda8565450d08a63b792ced9165d8c27a1ed3f02799ec6a7820f" 355 + dependencies = [ 356 + "bstr", 357 + "gix-date", 358 + "gix-error", 359 + ] 360 + 361 + [[package]] 362 + name = "gix-archive" 363 + version = "0.34.0" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "1303ed647e048d2bbecb9fd3a627d753e73f883a20ad5c039b30c7cbc85e217f" 366 + dependencies = [ 367 + "bstr", 368 + "gix-date", 369 + "gix-error", 370 + "gix-object", 371 + "gix-worktree-stream", 372 + ] 373 + 374 + [[package]] 375 + name = "gix-attributes" 376 + version = "0.33.2" 377 + source = "registry+https://github.com/rust-lang/crates.io-index" 378 + checksum = "39b40888d0ed415c0744a6cdc61eebf0304c9d26ab726725b718443c322e5ba4" 379 + dependencies = [ 380 + "bstr", 381 + "gix-glob", 382 + "gix-path", 383 + "gix-quote", 384 + "gix-trace", 385 + "kstring", 386 + "smallvec", 387 + "thiserror", 388 + "unicode-bom", 389 + ] 390 + 391 + [[package]] 392 + name = "gix-bitmap" 393 + version = "0.3.2" 394 + source = "registry+https://github.com/rust-lang/crates.io-index" 395 + checksum = "52ebef0c26ad305747649e727bbcd56a7b7910754eb7cea88f6dff6f93c51283" 396 + dependencies = [ 397 + "gix-error", 398 + ] 399 + 400 + [[package]] 401 + name = "gix-blame" 402 + version = "0.15.0" 403 + source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "cf49c828ad8a8a674d52caaf0b61fdee1f20cc46c15439ca3d875ef3b6f64bdc" 405 + dependencies = [ 406 + "gix-commitgraph", 407 + "gix-date", 408 + "gix-diff", 409 + "gix-error", 410 + "gix-hash", 411 + "gix-object", 412 + "gix-revwalk", 413 + "gix-trace", 414 + "gix-traverse", 415 + "gix-worktree", 416 + "smallvec", 417 + "thiserror", 418 + ] 419 + 420 + [[package]] 421 + name = "gix-chunk" 422 + version = "0.7.2" 423 + source = "registry+https://github.com/rust-lang/crates.io-index" 424 + checksum = "9faee47943b638e58ddd5e275a4906ad3e4b6c8584f1d41bd18ab9032ec52afb" 425 + dependencies = [ 426 + "gix-error", 427 + ] 428 + 429 + [[package]] 430 + name = "gix-command" 431 + version = "0.9.1" 432 + source = "registry+https://github.com/rust-lang/crates.io-index" 433 + checksum = "00706d4fef135ef4b01680d5218c6ee40cda8baf697b864296cbc887d19118f6" 434 + dependencies = [ 435 + "bstr", 436 + "gix-path", 437 + "gix-quote", 438 + "gix-trace", 439 + "shell-words", 440 + ] 441 + 442 + [[package]] 443 + name = "gix-commitgraph" 444 + version = "0.37.1" 445 + source = "registry+https://github.com/rust-lang/crates.io-index" 446 + checksum = "7f675d0df484a7f6a47e64bd6f311af489d947c0323b0564f36d14f3d7762abb" 447 + dependencies = [ 448 + "bstr", 449 + "gix-chunk", 450 + "gix-error", 451 + "gix-hash", 452 + "memmap2", 453 + "nonempty", 454 + ] 455 + 456 + [[package]] 457 + name = "gix-config" 458 + version = "0.58.0" 459 + source = "registry+https://github.com/rust-lang/crates.io-index" 460 + checksum = "a29bf266c4cdaf759e535c24ad4ce655b987aeb6911075643403cc7cc5ade583" 461 + dependencies = [ 462 + "bstr", 463 + "gix-config-value", 464 + "gix-features", 465 + "gix-glob", 466 + "gix-path", 467 + "gix-ref", 468 + "gix-sec", 469 + "smallvec", 470 + "thiserror", 471 + "unicode-bom", 472 + ] 473 + 474 + [[package]] 475 + name = "gix-config-value" 476 + version = "0.18.1" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "ed42168329552f6c2e5df09665c104199d45d84bedb53683738a49b57fe1baab" 479 + dependencies = [ 480 + "bitflags 2.13.0", 481 + "bstr", 482 + "gix-path", 483 + "libc", 484 + "thiserror", 485 + ] 486 + 487 + [[package]] 488 + name = "gix-credentials" 489 + version = "0.38.1" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "f40cd22f0dd71988be12d6e78b1709de2370e1957c5f107ff31e56caeba3745d" 492 + dependencies = [ 493 + "bstr", 494 + "gix-command", 495 + "gix-config-value", 496 + "gix-date", 497 + "gix-path", 498 + "gix-prompt", 499 + "gix-sec", 500 + "gix-trace", 501 + "gix-url", 502 + "thiserror", 503 + ] 504 + 505 + [[package]] 506 + name = "gix-date" 507 + version = "0.15.5" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "3d63f9e28b59ddeb1a1eb9e5cf986a9222b5d484947445edbc20473939cc7fd0" 510 + dependencies = [ 511 + "bstr", 512 + "gix-error", 513 + "itoa", 514 + "jiff", 515 + ] 516 + 517 + [[package]] 518 + name = "gix-diff" 519 + version = "0.65.0" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "92c6d56c94edf92d78203a1cd416f770e35e10b6955ede6b9d7d0c22ff88a5f3" 522 + dependencies = [ 523 + "bstr", 524 + "gix-attributes", 525 + "gix-command", 526 + "gix-filter", 527 + "gix-fs", 528 + "gix-hash", 529 + "gix-imara-diff", 530 + "gix-index", 531 + "gix-object", 532 + "gix-path", 533 + "gix-pathspec", 534 + "gix-tempfile", 535 + "gix-trace", 536 + "gix-traverse", 537 + "gix-worktree", 538 + "thiserror", 539 + ] 540 + 541 + [[package]] 542 + name = "gix-dir" 543 + version = "0.27.0" 544 + source = "registry+https://github.com/rust-lang/crates.io-index" 545 + checksum = "20098fba2b9c6e29361ccb4c0379d42dfb81fc7f86f7ab11f2dff4528c0bf01f" 546 + dependencies = [ 547 + "bstr", 548 + "gix-discover", 549 + "gix-fs", 550 + "gix-ignore", 551 + "gix-index", 552 + "gix-object", 553 + "gix-path", 554 + "gix-pathspec", 555 + "gix-trace", 556 + "gix-utils", 557 + "gix-worktree", 558 + "thiserror", 559 + ] 560 + 561 + [[package]] 562 + name = "gix-discover" 563 + version = "0.53.0" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "d624d5b23b10c1d85337645227abe353ac95ab8ff66a7bdd5ce689b2db33a722" 566 + dependencies = [ 567 + "bstr", 568 + "dunce", 569 + "gix-fs", 570 + "gix-path", 571 + "gix-ref", 572 + "gix-sec", 573 + "thiserror", 574 + ] 575 + 576 + [[package]] 577 + name = "gix-error" 578 + version = "0.2.4" 579 + source = "registry+https://github.com/rust-lang/crates.io-index" 580 + checksum = "e57831e199be480af90dcd7e459abed8a174c09ec9a6e2cc8f7ca6c54598b06b" 581 + dependencies = [ 582 + "bstr", 583 + ] 584 + 585 + [[package]] 586 + name = "gix-features" 587 + version = "0.48.1" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "1849ae154d38bc403185be14fa871e38e3c93ee606875d94e207fdb9fba52dbc" 590 + dependencies = [ 591 + "bytes", 592 + "bytesize", 593 + "crc32fast", 594 + "crossbeam-channel", 595 + "gix-path", 596 + "gix-trace", 597 + "gix-utils", 598 + "libc", 599 + "once_cell", 600 + "parking_lot", 601 + "prodash", 602 + "thiserror", 603 + "walkdir", 604 + "zlib-rs", 605 + ] 606 + 607 + [[package]] 608 + name = "gix-filter" 609 + version = "0.32.0" 610 + source = "registry+https://github.com/rust-lang/crates.io-index" 611 + checksum = "6644fb2ef97928c278675b239f366b457103d7e436f811d27331a8daf212759c" 612 + dependencies = [ 613 + "bstr", 614 + "encoding_rs", 615 + "gix-attributes", 616 + "gix-command", 617 + "gix-hash", 618 + "gix-object", 619 + "gix-packetline", 620 + "gix-path", 621 + "gix-quote", 622 + "gix-trace", 623 + "gix-utils", 624 + "smallvec", 625 + "thiserror", 626 + ] 627 + 628 + [[package]] 629 + name = "gix-fs" 630 + version = "0.21.2" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "6cdff46db8798e47e2f727d84b9379aac5add3dd3d9d0b07bb4d7d5d640771fe" 633 + dependencies = [ 634 + "bstr", 635 + "fastrand", 636 + "gix-features", 637 + "gix-path", 638 + "gix-utils", 639 + "thiserror", 640 + ] 641 + 642 + [[package]] 643 + name = "gix-glob" 644 + version = "0.26.1" 645 + source = "registry+https://github.com/rust-lang/crates.io-index" 646 + checksum = "d1fcb8ef5b16bcf874abe9b68d8abb3c0493c876d367ab824151f30a0f3f3756" 647 + dependencies = [ 648 + "bitflags 2.13.0", 649 + "bstr", 650 + "gix-features", 651 + "gix-path", 652 + ] 653 + 654 + [[package]] 655 + name = "gix-hash" 656 + version = "0.25.1" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "cb0926d3819c837750b4e03c7754901e73f68b8c9b690753a6372a1bed4eedce" 659 + dependencies = [ 660 + "faster-hex", 661 + "gix-features", 662 + "sha1-checked", 663 + "thiserror", 664 + ] 665 + 666 + [[package]] 667 + name = "gix-hashtable" 668 + version = "0.15.2" 669 + source = "registry+https://github.com/rust-lang/crates.io-index" 670 + checksum = "7e261d54091f0d1c729bc83f54548c071bdec60a697de1e58e88bdfd7a99d24e" 671 + dependencies = [ 672 + "gix-hash", 673 + "hashbrown 0.17.1", 674 + "parking_lot", 675 + ] 676 + 677 + [[package]] 678 + name = "gix-ignore" 679 + version = "0.21.1" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "d491bab9bf2c9f341dc754f425c31d5d3f63aca615312167b82e1deeaca97d8d" 682 + dependencies = [ 683 + "bstr", 684 + "gix-glob", 685 + "gix-path", 686 + "gix-trace", 687 + "unicode-bom", 688 + ] 689 + 690 + [[package]] 691 + name = "gix-imara-diff" 692 + version = "0.2.3" 693 + source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "b305d85504de270ad3525d726a6b69cc59ee7b2269b014387651107ab9f0755b" 695 + dependencies = [ 696 + "bstr", 697 + "hashbrown 0.17.1", 698 + ] 699 + 700 + [[package]] 701 + name = "gix-index" 702 + version = "0.53.0" 703 + source = "registry+https://github.com/rust-lang/crates.io-index" 704 + checksum = "36d45f82ec5a4d7542ea595e9ad16e03e26c8cb4f221e5bc9fcdcf469f63a681" 705 + dependencies = [ 706 + "bitflags 2.13.0", 707 + "bstr", 708 + "filetime", 709 + "fnv", 710 + "gix-bitmap", 711 + "gix-features", 712 + "gix-fs", 713 + "gix-hash", 714 + "gix-lock", 715 + "gix-object", 716 + "gix-traverse", 717 + "gix-utils", 718 + "gix-validate", 719 + "hashbrown 0.17.1", 720 + "itoa", 721 + "libc", 722 + "memmap2", 723 + "rustix", 724 + "smallvec", 725 + "thiserror", 726 + ] 727 + 728 + [[package]] 729 + name = "gix-lock" 730 + version = "23.0.1" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "65c9dedd9e90b0d47624d2ed241d394e09294118364e87b9b7e5f1fe755f3c2c" 733 + dependencies = [ 734 + "gix-tempfile", 735 + "gix-utils", 736 + "thiserror", 737 + ] 738 + 739 + [[package]] 740 + name = "gix-mailmap" 741 + version = "0.33.1" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "195fd20808055824531be2fd0d34136d900e5fbca3ffb0a3c07e8beeefb9c828" 744 + dependencies = [ 745 + "bstr", 746 + "gix-actor", 747 + "gix-date", 748 + "gix-error", 749 + ] 750 + 751 + [[package]] 752 + name = "gix-negotiate" 753 + version = "0.33.0" 754 + source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "63d6081882a5f575ace9f53924a7c85f69bbd0f96071b982df12f258ab338cc9" 756 + dependencies = [ 757 + "bitflags 2.13.0", 758 + "gix-commitgraph", 759 + "gix-date", 760 + "gix-hash", 761 + "gix-object", 762 + "gix-revwalk", 763 + ] 764 + 765 + [[package]] 766 + name = "gix-object" 767 + version = "0.62.0" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "019b38afc3eac1e41f9fe09a327664b313ba4a120fa5f40e3678795d0e42783e" 770 + dependencies = [ 771 + "bstr", 772 + "gix-actor", 773 + "gix-date", 774 + "gix-features", 775 + "gix-hash", 776 + "gix-hashtable", 777 + "gix-utils", 778 + "gix-validate", 779 + "itoa", 780 + "smallvec", 781 + "thiserror", 782 + ] 783 + 784 + [[package]] 785 + name = "gix-odb" 786 + version = "0.82.0" 787 + source = "registry+https://github.com/rust-lang/crates.io-index" 788 + checksum = "7fadc59f6fa0f9dd445eceee61060a2b59ca557f48da9fc677f567db535b782a" 789 + dependencies = [ 790 + "arc-swap", 791 + "gix-features", 792 + "gix-fs", 793 + "gix-hash", 794 + "gix-hashtable", 795 + "gix-object", 796 + "gix-pack", 797 + "gix-path", 798 + "gix-quote", 799 + "memmap2", 800 + "parking_lot", 801 + "tempfile", 802 + "thiserror", 803 + ] 804 + 805 + [[package]] 806 + name = "gix-pack" 807 + version = "0.72.0" 808 + source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "ca3e7f1726cd2c0cd1cf1fc20be8a8e623f0b163f1f8d6fc836cfb9bc8cd758b" 810 + dependencies = [ 811 + "clru", 812 + "gix-chunk", 813 + "gix-error", 814 + "gix-features", 815 + "gix-hash", 816 + "gix-hashtable", 817 + "gix-object", 818 + "gix-path", 819 + "memmap2", 820 + "smallvec", 821 + "thiserror", 822 + "uluru", 823 + ] 824 + 825 + [[package]] 826 + name = "gix-packetline" 827 + version = "0.21.5" 828 + source = "registry+https://github.com/rust-lang/crates.io-index" 829 + checksum = "b217dd0ee0c4021ecf169a4a519b1b4f80d15e3f3765f3dc466223dc0ac891d7" 830 + dependencies = [ 831 + "bstr", 832 + "faster-hex", 833 + "gix-trace", 834 + "thiserror", 835 + ] 836 + 837 + [[package]] 838 + name = "gix-path" 839 + version = "0.12.1" 840 + source = "registry+https://github.com/rust-lang/crates.io-index" 841 + checksum = "afa6ac14cd14939ea94a496ce7460daa6511c09f5b84757e9cfc6f9c8d0f93a6" 842 + dependencies = [ 843 + "bstr", 844 + "gix-trace", 845 + "gix-validate", 846 + "thiserror", 847 + ] 848 + 849 + [[package]] 850 + name = "gix-pathspec" 851 + version = "0.18.1" 852 + source = "registry+https://github.com/rust-lang/crates.io-index" 853 + checksum = "3050783b41ee11511e1e8fb35623df81806194f4030395f14f48ea37c2798c9f" 854 + dependencies = [ 855 + "bitflags 2.13.0", 856 + "bstr", 857 + "gix-attributes", 858 + "gix-config-value", 859 + "gix-glob", 860 + "gix-path", 861 + "thiserror", 862 + ] 863 + 864 + [[package]] 865 + name = "gix-prompt" 866 + version = "0.15.1" 867 + source = "registry+https://github.com/rust-lang/crates.io-index" 868 + checksum = "3ee604d7746080ae7e1023bf47204bcc2c5f307bfbe2306a3c90b1bfd1a2c6d8" 869 + dependencies = [ 870 + "gix-command", 871 + "gix-config-value", 872 + "parking_lot", 873 + "rustix", 874 + "thiserror", 875 + ] 876 + 877 + [[package]] 878 + name = "gix-protocol" 879 + version = "0.63.0" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "978468bae4ea2df20c72db3b20d0bdb548a0c1090b85a83643b553e6e0e041f2" 882 + dependencies = [ 883 + "bstr", 884 + "gix-date", 885 + "gix-features", 886 + "gix-hash", 887 + "gix-ref", 888 + "gix-shallow", 889 + "gix-transport", 890 + "gix-utils", 891 + "maybe-async", 892 + "nonempty", 893 + "thiserror", 894 + ] 895 + 896 + [[package]] 897 + name = "gix-quote" 898 + version = "0.7.2" 899 + source = "registry+https://github.com/rust-lang/crates.io-index" 900 + checksum = "a6e541fc33cc2b783b7979040d445a0c86a2eca747c8faea4ca84230d06ae6ef" 901 + dependencies = [ 902 + "bstr", 903 + "gix-error", 904 + "gix-utils", 905 + ] 906 + 907 + [[package]] 908 + name = "gix-ref" 909 + version = "0.65.0" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "9bbfbce1dfd7d7f8469ddef6d3518376aff664348f153cbe0fc3e58ef993d24e" 912 + dependencies = [ 913 + "gix-actor", 914 + "gix-features", 915 + "gix-fs", 916 + "gix-hash", 917 + "gix-lock", 918 + "gix-object", 919 + "gix-path", 920 + "gix-tempfile", 921 + "gix-utils", 922 + "gix-validate", 923 + "memmap2", 924 + "thiserror", 925 + ] 926 + 927 + [[package]] 928 + name = "gix-refspec" 929 + version = "0.43.0" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "7bc36a4fb1a1540b59cf2da498783080743fa274b02a3f19ca444fc4015a9d4f" 932 + dependencies = [ 933 + "bstr", 934 + "gix-error", 935 + "gix-glob", 936 + "gix-hash", 937 + "gix-revision", 938 + "gix-validate", 939 + "smallvec", 940 + "thiserror", 941 + ] 942 + 943 + [[package]] 944 + name = "gix-revision" 945 + version = "0.47.0" 946 + source = "registry+https://github.com/rust-lang/crates.io-index" 947 + checksum = "885075c3c21eb9c06e0be3b3728ba5932c04e1c1011dcee7c81801980e3e986f" 948 + dependencies = [ 949 + "bitflags 2.13.0", 950 + "bstr", 951 + "gix-commitgraph", 952 + "gix-date", 953 + "gix-error", 954 + "gix-hash", 955 + "gix-hashtable", 956 + "gix-object", 957 + "gix-revwalk", 958 + "gix-trace", 959 + "nonempty", 960 + ] 961 + 962 + [[package]] 963 + name = "gix-revwalk" 964 + version = "0.33.0" 965 + source = "registry+https://github.com/rust-lang/crates.io-index" 966 + checksum = "8f11fe7ca2585193d3d70bbe0be175a2008d883a704cc7a55e454e113e689455" 967 + dependencies = [ 968 + "gix-commitgraph", 969 + "gix-date", 970 + "gix-error", 971 + "gix-hash", 972 + "gix-hashtable", 973 + "gix-object", 974 + "smallvec", 975 + "thiserror", 976 + ] 977 + 978 + [[package]] 979 + name = "gix-sec" 980 + version = "0.14.1" 981 + source = "registry+https://github.com/rust-lang/crates.io-index" 982 + checksum = "ab8519976e4c7e486270740a5400369f37940779b80bd1377d94cfa1125d01b3" 983 + dependencies = [ 984 + "bitflags 2.13.0", 985 + "gix-path", 986 + "libc", 987 + "windows-sys", 988 + ] 989 + 990 + [[package]] 991 + name = "gix-shallow" 992 + version = "0.12.1" 993 + source = "registry+https://github.com/rust-lang/crates.io-index" 994 + checksum = "a292fc2fe548c5dfa575479d16b445b0ddf1dd2f56f1fec6aed386f82553cd97" 995 + dependencies = [ 996 + "bstr", 997 + "gix-hash", 998 + "gix-lock", 999 + "nonempty", 1000 + "thiserror", 1001 + ] 1002 + 1003 + [[package]] 1004 + name = "gix-status" 1005 + version = "0.32.0" 1006 + source = "registry+https://github.com/rust-lang/crates.io-index" 1007 + checksum = "aec3293f75db1212f99217832cbc70c30faeb95cefc97c7f1a17fd3bcf13a72e" 1008 + dependencies = [ 1009 + "bstr", 1010 + "filetime", 1011 + "gix-diff", 1012 + "gix-dir", 1013 + "gix-features", 1014 + "gix-filter", 1015 + "gix-fs", 1016 + "gix-hash", 1017 + "gix-index", 1018 + "gix-object", 1019 + "gix-path", 1020 + "gix-pathspec", 1021 + "gix-worktree", 1022 + "portable-atomic", 1023 + "thiserror", 1024 + ] 1025 + 1026 + [[package]] 1027 + name = "gix-submodule" 1028 + version = "0.32.0" 1029 + source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + checksum = "a7f9f594f7cbda0b38ba6b633b3e9a7b7901acdc5d27bc186a16633800cd1ac8" 1031 + dependencies = [ 1032 + "bstr", 1033 + "gix-config", 1034 + "gix-path", 1035 + "gix-pathspec", 1036 + "gix-refspec", 1037 + "gix-url", 1038 + "thiserror", 1039 + ] 1040 + 1041 + [[package]] 1042 + name = "gix-tempfile" 1043 + version = "23.0.2" 1044 + source = "registry+https://github.com/rust-lang/crates.io-index" 1045 + checksum = "6ef60812443484e67bf84e444cc71b4c78ae62deb822221774a4fa0c57fdb17f" 1046 + dependencies = [ 1047 + "dashmap", 1048 + "gix-fs", 1049 + "libc", 1050 + "parking_lot", 1051 + "signal-hook", 1052 + "signal-hook-registry", 1053 + "tempfile", 1054 + ] 1055 + 1056 + [[package]] 1057 + name = "gix-trace" 1058 + version = "0.1.20" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "44dc45eae785c0eb14173e0f152e6e224dcf4d45b6a6999a3aed22af541ad678" 1061 + 1062 + [[package]] 1063 + name = "gix-transport" 1064 + version = "0.57.2" 1065 + source = "registry+https://github.com/rust-lang/crates.io-index" 1066 + checksum = "186874f7ad1fb2f9a2f2aa9c2dabc7f9dd087bef74c1a0eee2b4a9cf0248fcb3" 1067 + dependencies = [ 1068 + "bstr", 1069 + "gix-command", 1070 + "gix-features", 1071 + "gix-packetline", 1072 + "gix-quote", 1073 + "gix-sec", 1074 + "gix-url", 1075 + "thiserror", 1076 + ] 1077 + 1078 + [[package]] 1079 + name = "gix-traverse" 1080 + version = "0.59.0" 1081 + source = "registry+https://github.com/rust-lang/crates.io-index" 1082 + checksum = "5062cca8f2977565bbaf666ec31dbdb9bc9d9293beb65f9bec52e6c1121b62a1" 1083 + dependencies = [ 1084 + "bitflags 2.13.0", 1085 + "gix-commitgraph", 1086 + "gix-date", 1087 + "gix-hash", 1088 + "gix-hashtable", 1089 + "gix-object", 1090 + "gix-revwalk", 1091 + "smallvec", 1092 + "thiserror", 1093 + ] 1094 + 1095 + [[package]] 1096 + name = "gix-url" 1097 + version = "0.36.1" 1098 + source = "registry+https://github.com/rust-lang/crates.io-index" 1099 + checksum = "65bb01ec69d55e82ccb7a19e264501ead4e6aac38463a8cebfdd81e22bb67ab2" 1100 + dependencies = [ 1101 + "bstr", 1102 + "gix-path", 1103 + "percent-encoding", 1104 + "thiserror", 1105 + ] 1106 + 1107 + [[package]] 1108 + name = "gix-utils" 1109 + version = "0.3.3" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "66c50966184123caf580ffa64e28031a878597f1c7fceb8fe19566c38eb1b771" 1112 + dependencies = [ 1113 + "bstr", 1114 + "fastrand", 1115 + "unicode-normalization", 1116 + ] 1117 + 1118 + [[package]] 1119 + name = "gix-validate" 1120 + version = "0.11.2" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "7bc6fc771c4063ba7cd2f47b91fb6076251c6a823b64b7fe7b8874b0fe4afae3" 1123 + dependencies = [ 1124 + "bstr", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "gix-worktree" 1129 + version = "0.54.0" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "92399ed66f259592050c6ed9dc80105e095a2f8e87e6b83d98aa2e21d8e27036" 1132 + dependencies = [ 1133 + "bstr", 1134 + "gix-attributes", 1135 + "gix-fs", 1136 + "gix-glob", 1137 + "gix-hash", 1138 + "gix-ignore", 1139 + "gix-index", 1140 + "gix-object", 1141 + "gix-path", 1142 + "gix-validate", 1143 + ] 1144 + 1145 + [[package]] 1146 + name = "gix-worktree-state" 1147 + version = "0.32.0" 1148 + source = "registry+https://github.com/rust-lang/crates.io-index" 1149 + checksum = "c0f926b6a249bdb0086b307c704b7abd9d643e08f98040efe6467f00bb6d2ef5" 1150 + dependencies = [ 1151 + "bstr", 1152 + "gix-features", 1153 + "gix-filter", 1154 + "gix-fs", 1155 + "gix-index", 1156 + "gix-object", 1157 + "gix-path", 1158 + "gix-worktree", 1159 + "io-close", 1160 + "thiserror", 1161 + ] 1162 + 1163 + [[package]] 1164 + name = "gix-worktree-stream" 1165 + version = "0.34.0" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "55f3a878c89a05470ad98c644b0015777c530da24854dd29e41fe4f41176840f" 1168 + dependencies = [ 1169 + "gix-attributes", 1170 + "gix-error", 1171 + "gix-features", 1172 + "gix-filter", 1173 + "gix-fs", 1174 + "gix-hash", 1175 + "gix-object", 1176 + "gix-path", 1177 + "gix-traverse", 1178 + "parking_lot", 1179 + ] 1180 + 1181 + [[package]] 1182 + name = "hash32" 1183 + version = "0.3.1" 1184 + source = "registry+https://github.com/rust-lang/crates.io-index" 1185 + checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 1186 + dependencies = [ 1187 + "byteorder", 1188 + ] 1189 + 1190 + [[package]] 1191 + name = "hashbrown" 1192 + version = "0.14.5" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1195 + 1196 + [[package]] 1197 + name = "hashbrown" 1198 + version = "0.16.1" 1199 + source = "registry+https://github.com/rust-lang/crates.io-index" 1200 + checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1201 + dependencies = [ 1202 + "allocator-api2", 1203 + "equivalent", 1204 + "foldhash", 1205 + ] 1206 + 1207 + [[package]] 1208 + name = "hashbrown" 1209 + version = "0.17.1" 1210 + source = "registry+https://github.com/rust-lang/crates.io-index" 1211 + checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 1212 + dependencies = [ 1213 + "allocator-api2", 1214 + "equivalent", 1215 + "foldhash", 1216 + ] 1217 + 1218 + [[package]] 1219 + name = "heapless" 1220 + version = "0.8.0" 1221 + source = "registry+https://github.com/rust-lang/crates.io-index" 1222 + checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" 1223 + dependencies = [ 1224 + "hash32", 1225 + "stable_deref_trait", 1226 + ] 1227 + 1228 + [[package]] 1229 + name = "human_format" 1230 + version = "1.2.1" 1231 + source = "registry+https://github.com/rust-lang/crates.io-index" 1232 + checksum = "eaec953f16e5bcf6b8a3cb3aa959b17e5577dbd2693e94554c462c08be22624b" 1233 + 1234 + [[package]] 1235 + name = "io-close" 1236 + version = "0.3.7" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc" 1239 + dependencies = [ 1240 + "libc", 1241 + "winapi", 1242 + ] 1243 + 1244 + [[package]] 1245 + name = "itoa" 1246 + version = "1.0.18" 1247 + source = "registry+https://github.com/rust-lang/crates.io-index" 1248 + checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 1249 + 1250 + [[package]] 1251 + name = "jiff" 1252 + version = "0.2.31" 1253 + source = "registry+https://github.com/rust-lang/crates.io-index" 1254 + checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634" 1255 + dependencies = [ 1256 + "defmt", 1257 + "jiff-static", 1258 + "jiff-tzdb-platform", 1259 + "log", 1260 + "portable-atomic", 1261 + "portable-atomic-util", 1262 + "serde_core", 1263 + "windows-link", 1264 + ] 1265 + 1266 + [[package]] 1267 + name = "jiff-static" 1268 + version = "0.2.31" 1269 + source = "registry+https://github.com/rust-lang/crates.io-index" 1270 + checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2" 1271 + dependencies = [ 1272 + "proc-macro2", 1273 + "quote", 1274 + "syn", 1275 + ] 1276 + 1277 + [[package]] 1278 + name = "jiff-tzdb" 1279 + version = "0.1.7" 1280 + source = "registry+https://github.com/rust-lang/crates.io-index" 1281 + checksum = "6142247df1a93c2b3587402a19710be3e6e942f1581a1702e76408f2c21d6590" 1282 + 1283 + [[package]] 1284 + name = "jiff-tzdb-platform" 1285 + version = "0.1.3" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8" 1288 + dependencies = [ 1289 + "jiff-tzdb", 1290 + ] 1291 + 1292 + [[package]] 1293 + name = "kstring" 1294 + version = "2.0.2" 1295 + source = "registry+https://github.com/rust-lang/crates.io-index" 1296 + checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1" 1297 + dependencies = [ 1298 + "static_assertions", 1299 + ] 1300 + 1301 + [[package]] 1302 + name = "libc" 1303 + version = "0.2.186" 1304 + source = "registry+https://github.com/rust-lang/crates.io-index" 1305 + checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" 1306 + 1307 + [[package]] 1308 + name = "linux-raw-sys" 1309 + version = "0.12.1" 1310 + source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 1312 + 1313 + [[package]] 1314 + name = "lock_api" 1315 + version = "0.4.14" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1318 + dependencies = [ 1319 + "scopeguard", 1320 + ] 1321 + 1322 + [[package]] 1323 + name = "log" 1324 + version = "0.4.33" 1325 + source = "registry+https://github.com/rust-lang/crates.io-index" 1326 + checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" 1327 + 1328 + [[package]] 1329 + name = "maybe-async" 1330 + version = "0.2.11" 1331 + source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + checksum = "746873a384ad60adc5db74471dfaba74bd278afbdcfd81db93fafcdfc8b5ca0c" 1333 + dependencies = [ 1334 + "proc-macro2", 1335 + "quote", 1336 + "syn", 1337 + ] 1338 + 1339 + [[package]] 1340 + name = "memchr" 1341 + version = "2.8.2" 1342 + source = "registry+https://github.com/rust-lang/crates.io-index" 1343 + checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" 1344 + 1345 + [[package]] 1346 + name = "memmap2" 1347 + version = "0.9.11" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" 1350 + dependencies = [ 1351 + "libc", 1352 + ] 1353 + 1354 + [[package]] 1355 + name = "nonempty" 1356 + version = "0.12.0" 1357 + source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6" 1359 + 1360 + [[package]] 1361 + name = "once_cell" 1362 + version = "1.21.4" 1363 + source = "registry+https://github.com/rust-lang/crates.io-index" 1364 + checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 1365 + 1366 + [[package]] 1367 + name = "parking_lot" 1368 + version = "0.12.5" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1371 + dependencies = [ 1372 + "lock_api", 1373 + "parking_lot_core", 1374 + ] 1375 + 1376 + [[package]] 1377 + name = "parking_lot_core" 1378 + version = "0.9.12" 1379 + source = "registry+https://github.com/rust-lang/crates.io-index" 1380 + checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1381 + dependencies = [ 1382 + "cfg-if", 1383 + "libc", 1384 + "redox_syscall", 1385 + "smallvec", 1386 + "windows-link", 1387 + ] 1388 + 1389 + [[package]] 1390 + name = "percent-encoding" 1391 + version = "2.3.2" 1392 + source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1394 + 1395 + [[package]] 1396 + name = "portable-atomic" 1397 + version = "1.13.1" 1398 + source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 1400 + 1401 + [[package]] 1402 + name = "portable-atomic-util" 1403 + version = "0.2.7" 1404 + source = "registry+https://github.com/rust-lang/crates.io-index" 1405 + checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618" 1406 + dependencies = [ 1407 + "portable-atomic", 1408 + ] 1409 + 1410 + [[package]] 1411 + name = "proc-macro2" 1412 + version = "1.0.106" 1413 + source = "registry+https://github.com/rust-lang/crates.io-index" 1414 + checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 1415 + dependencies = [ 1416 + "unicode-ident", 1417 + ] 1418 + 1419 + [[package]] 1420 + name = "prodash" 1421 + version = "31.0.0" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "962200e2d7d551451297d9fdce85138374019ada198e30ea9ede38034e27604c" 1424 + dependencies = [ 1425 + "bytesize", 1426 + "human_format", 1427 + "parking_lot", 1428 + ] 1429 + 1430 + [[package]] 1431 + name = "quote" 1432 + version = "1.0.46" 1433 + source = "registry+https://github.com/rust-lang/crates.io-index" 1434 + checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" 1435 + dependencies = [ 1436 + "proc-macro2", 1437 + ] 1438 + 1439 + [[package]] 1440 + name = "r-efi" 1441 + version = "6.0.0" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 1444 + 1445 + [[package]] 1446 + name = "redox_syscall" 1447 + version = "0.5.18" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1450 + dependencies = [ 1451 + "bitflags 2.13.0", 1452 + ] 1453 + 1454 + [[package]] 1455 + name = "regex" 1456 + version = "1.12.4" 1457 + source = "registry+https://github.com/rust-lang/crates.io-index" 1458 + checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba" 1459 + dependencies = [ 1460 + "aho-corasick", 1461 + "memchr", 1462 + "regex-automata", 1463 + "regex-syntax", 1464 + ] 1465 + 1466 + [[package]] 1467 + name = "regex-automata" 1468 + version = "0.4.14" 1469 + source = "registry+https://github.com/rust-lang/crates.io-index" 1470 + checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 1471 + dependencies = [ 1472 + "aho-corasick", 1473 + "memchr", 1474 + "regex-syntax", 1475 + ] 1476 + 1477 + [[package]] 1478 + name = "regex-syntax" 1479 + version = "0.8.11" 1480 + source = "registry+https://github.com/rust-lang/crates.io-index" 1481 + checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" 1482 + 1483 + [[package]] 6 1484 name = "relcon" 7 1485 version = "0.1.0" 1486 + dependencies = [ 1487 + "gix", 1488 + ] 1489 + 1490 + [[package]] 1491 + name = "rustix" 1492 + version = "1.1.4" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 1495 + dependencies = [ 1496 + "bitflags 2.13.0", 1497 + "errno", 1498 + "libc", 1499 + "linux-raw-sys", 1500 + "windows-sys", 1501 + ] 1502 + 1503 + [[package]] 1504 + name = "rustversion" 1505 + version = "1.0.22" 1506 + source = "registry+https://github.com/rust-lang/crates.io-index" 1507 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1508 + 1509 + [[package]] 1510 + name = "same-file" 1511 + version = "1.0.6" 1512 + source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1514 + dependencies = [ 1515 + "winapi-util", 1516 + ] 1517 + 1518 + [[package]] 1519 + name = "scopeguard" 1520 + version = "1.2.0" 1521 + source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1523 + 1524 + [[package]] 1525 + name = "serde" 1526 + version = "1.0.228" 1527 + source = "registry+https://github.com/rust-lang/crates.io-index" 1528 + checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1529 + dependencies = [ 1530 + "serde_core", 1531 + ] 1532 + 1533 + [[package]] 1534 + name = "serde_core" 1535 + version = "1.0.228" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1538 + dependencies = [ 1539 + "serde_derive", 1540 + ] 1541 + 1542 + [[package]] 1543 + name = "serde_derive" 1544 + version = "1.0.228" 1545 + source = "registry+https://github.com/rust-lang/crates.io-index" 1546 + checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1547 + dependencies = [ 1548 + "proc-macro2", 1549 + "quote", 1550 + "syn", 1551 + ] 1552 + 1553 + [[package]] 1554 + name = "sha1" 1555 + version = "0.10.6" 1556 + source = "registry+https://github.com/rust-lang/crates.io-index" 1557 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1558 + dependencies = [ 1559 + "cfg-if", 1560 + "cpufeatures", 1561 + "digest", 1562 + ] 1563 + 1564 + [[package]] 1565 + name = "sha1-checked" 1566 + version = "0.10.0" 1567 + source = "registry+https://github.com/rust-lang/crates.io-index" 1568 + checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423" 1569 + dependencies = [ 1570 + "digest", 1571 + "sha1", 1572 + ] 1573 + 1574 + [[package]] 1575 + name = "shell-words" 1576 + version = "1.1.1" 1577 + source = "registry+https://github.com/rust-lang/crates.io-index" 1578 + checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" 1579 + 1580 + [[package]] 1581 + name = "signal-hook" 1582 + version = "0.4.4" 1583 + source = "registry+https://github.com/rust-lang/crates.io-index" 1584 + checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d" 1585 + dependencies = [ 1586 + "libc", 1587 + "signal-hook-registry", 1588 + ] 1589 + 1590 + [[package]] 1591 + name = "signal-hook-registry" 1592 + version = "1.4.8" 1593 + source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 1595 + dependencies = [ 1596 + "errno", 1597 + "libc", 1598 + ] 1599 + 1600 + [[package]] 1601 + name = "smallvec" 1602 + version = "1.15.2" 1603 + source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" 1605 + 1606 + [[package]] 1607 + name = "stable_deref_trait" 1608 + version = "1.2.1" 1609 + source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1611 + 1612 + [[package]] 1613 + name = "static_assertions" 1614 + version = "1.1.0" 1615 + source = "registry+https://github.com/rust-lang/crates.io-index" 1616 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1617 + 1618 + [[package]] 1619 + name = "syn" 1620 + version = "2.0.118" 1621 + source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" 1623 + dependencies = [ 1624 + "proc-macro2", 1625 + "quote", 1626 + "unicode-ident", 1627 + ] 1628 + 1629 + [[package]] 1630 + name = "tempfile" 1631 + version = "3.27.0" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 1634 + dependencies = [ 1635 + "fastrand", 1636 + "getrandom", 1637 + "once_cell", 1638 + "rustix", 1639 + "windows-sys", 1640 + ] 1641 + 1642 + [[package]] 1643 + name = "thiserror" 1644 + version = "2.0.18" 1645 + source = "registry+https://github.com/rust-lang/crates.io-index" 1646 + checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 1647 + dependencies = [ 1648 + "thiserror-impl", 1649 + ] 1650 + 1651 + [[package]] 1652 + name = "thiserror-impl" 1653 + version = "2.0.18" 1654 + source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 1656 + dependencies = [ 1657 + "proc-macro2", 1658 + "quote", 1659 + "syn", 1660 + ] 1661 + 1662 + [[package]] 1663 + name = "tinyvec" 1664 + version = "1.11.0" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 1667 + dependencies = [ 1668 + "tinyvec_macros", 1669 + ] 1670 + 1671 + [[package]] 1672 + name = "tinyvec_macros" 1673 + version = "0.1.1" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1676 + 1677 + [[package]] 1678 + name = "typenum" 1679 + version = "1.20.1" 1680 + source = "registry+https://github.com/rust-lang/crates.io-index" 1681 + checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" 1682 + 1683 + [[package]] 1684 + name = "uluru" 1685 + version = "3.1.0" 1686 + source = "registry+https://github.com/rust-lang/crates.io-index" 1687 + checksum = "7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da" 1688 + dependencies = [ 1689 + "arrayvec", 1690 + ] 1691 + 1692 + [[package]] 1693 + name = "unicode-bom" 1694 + version = "2.0.3" 1695 + source = "registry+https://github.com/rust-lang/crates.io-index" 1696 + checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217" 1697 + 1698 + [[package]] 1699 + name = "unicode-ident" 1700 + version = "1.0.24" 1701 + source = "registry+https://github.com/rust-lang/crates.io-index" 1702 + checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 1703 + 1704 + [[package]] 1705 + name = "unicode-normalization" 1706 + version = "0.1.25" 1707 + source = "registry+https://github.com/rust-lang/crates.io-index" 1708 + checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 1709 + dependencies = [ 1710 + "tinyvec", 1711 + ] 1712 + 1713 + [[package]] 1714 + name = "version_check" 1715 + version = "0.9.5" 1716 + source = "registry+https://github.com/rust-lang/crates.io-index" 1717 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1718 + 1719 + [[package]] 1720 + name = "walkdir" 1721 + version = "2.5.0" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1724 + dependencies = [ 1725 + "same-file", 1726 + "winapi-util", 1727 + ] 1728 + 1729 + [[package]] 1730 + name = "winapi" 1731 + version = "0.3.9" 1732 + source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1734 + dependencies = [ 1735 + "winapi-i686-pc-windows-gnu", 1736 + "winapi-x86_64-pc-windows-gnu", 1737 + ] 1738 + 1739 + [[package]] 1740 + name = "winapi-i686-pc-windows-gnu" 1741 + version = "0.4.0" 1742 + source = "registry+https://github.com/rust-lang/crates.io-index" 1743 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1744 + 1745 + [[package]] 1746 + name = "winapi-util" 1747 + version = "0.1.11" 1748 + source = "registry+https://github.com/rust-lang/crates.io-index" 1749 + checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 1750 + dependencies = [ 1751 + "windows-sys", 1752 + ] 1753 + 1754 + [[package]] 1755 + name = "winapi-x86_64-pc-windows-gnu" 1756 + version = "0.4.0" 1757 + source = "registry+https://github.com/rust-lang/crates.io-index" 1758 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1759 + 1760 + [[package]] 1761 + name = "windows-link" 1762 + version = "0.2.1" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1765 + 1766 + [[package]] 1767 + name = "windows-sys" 1768 + version = "0.61.2" 1769 + source = "registry+https://github.com/rust-lang/crates.io-index" 1770 + checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1771 + dependencies = [ 1772 + "windows-link", 1773 + ] 1774 + 1775 + [[package]] 1776 + name = "zlib-rs" 1777 + version = "0.6.5" 1778 + source = "registry+https://github.com/rust-lang/crates.io-index" 1779 + checksum = "5431d5661c32445236631278f27946e444ddafe4684cac70b185272d4f9c52d5"
+1
Cargo.toml
··· 4 4 edition = "2024" 5 5 6 6 [dependencies] 7 + gix = "0.85.0"