Nushell plugin for interacting with D-Bus
0
fork

Configure Feed

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

Add Cargo.lock (fix #1)

+1838 -4
-4
.gitignore
··· 3 3 debug/ 4 4 target/ 5 5 6 - # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries 7 - # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html 8 - Cargo.lock 9 - 10 6 # These are backup files generated by rustfmt 11 7 **/*.rs.bk 12 8
+1838
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "adler" 7 + version = "1.0.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 + 11 + [[package]] 12 + name = "ahash" 13 + version = "0.7.8" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 16 + dependencies = [ 17 + "getrandom", 18 + "once_cell", 19 + "version_check", 20 + ] 21 + 22 + [[package]] 23 + name = "ahash" 24 + version = "0.8.11" 25 + source = "registry+https://github.com/rust-lang/crates.io-index" 26 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 27 + dependencies = [ 28 + "cfg-if", 29 + "once_cell", 30 + "version_check", 31 + "zerocopy", 32 + ] 33 + 34 + [[package]] 35 + name = "aho-corasick" 36 + version = "1.1.3" 37 + source = "registry+https://github.com/rust-lang/crates.io-index" 38 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 39 + dependencies = [ 40 + "memchr", 41 + ] 42 + 43 + [[package]] 44 + name = "allocator-api2" 45 + version = "0.2.18" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 48 + 49 + [[package]] 50 + name = "android-tzdata" 51 + version = "0.1.1" 52 + source = "registry+https://github.com/rust-lang/crates.io-index" 53 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 54 + 55 + [[package]] 56 + name = "android_system_properties" 57 + version = "0.1.5" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 60 + dependencies = [ 61 + "libc", 62 + ] 63 + 64 + [[package]] 65 + name = "arrayvec" 66 + version = "0.7.4" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 69 + 70 + [[package]] 71 + name = "autocfg" 72 + version = "1.2.0" 73 + source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 75 + 76 + [[package]] 77 + name = "bincode" 78 + version = "1.3.3" 79 + source = "registry+https://github.com/rust-lang/crates.io-index" 80 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 81 + dependencies = [ 82 + "serde", 83 + ] 84 + 85 + [[package]] 86 + name = "bindgen" 87 + version = "0.69.4" 88 + source = "registry+https://github.com/rust-lang/crates.io-index" 89 + checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 90 + dependencies = [ 91 + "bitflags", 92 + "cexpr", 93 + "clang-sys", 94 + "itertools", 95 + "lazy_static", 96 + "lazycell", 97 + "proc-macro2", 98 + "quote", 99 + "regex", 100 + "rustc-hash", 101 + "shlex", 102 + "syn 2.0.60", 103 + ] 104 + 105 + [[package]] 106 + name = "bit-set" 107 + version = "0.5.3" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 110 + dependencies = [ 111 + "bit-vec", 112 + ] 113 + 114 + [[package]] 115 + name = "bit-vec" 116 + version = "0.6.3" 117 + source = "registry+https://github.com/rust-lang/crates.io-index" 118 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 119 + 120 + [[package]] 121 + name = "bitflags" 122 + version = "2.5.0" 123 + source = "registry+https://github.com/rust-lang/crates.io-index" 124 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 125 + 126 + [[package]] 127 + name = "bitvec" 128 + version = "1.0.1" 129 + source = "registry+https://github.com/rust-lang/crates.io-index" 130 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 131 + dependencies = [ 132 + "funty", 133 + "radium", 134 + "tap", 135 + "wyz", 136 + ] 137 + 138 + [[package]] 139 + name = "borsh" 140 + version = "1.4.0" 141 + source = "registry+https://github.com/rust-lang/crates.io-index" 142 + checksum = "0901fc8eb0aca4c83be0106d6f2db17d86a08dfc2c25f0e84464bf381158add6" 143 + dependencies = [ 144 + "borsh-derive", 145 + "cfg_aliases", 146 + ] 147 + 148 + [[package]] 149 + name = "borsh-derive" 150 + version = "1.4.0" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "51670c3aa053938b0ee3bd67c3817e471e626151131b934038e83c5bf8de48f5" 153 + dependencies = [ 154 + "once_cell", 155 + "proc-macro-crate", 156 + "proc-macro2", 157 + "quote", 158 + "syn 2.0.60", 159 + "syn_derive", 160 + ] 161 + 162 + [[package]] 163 + name = "bumpalo" 164 + version = "3.16.0" 165 + source = "registry+https://github.com/rust-lang/crates.io-index" 166 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 167 + 168 + [[package]] 169 + name = "byte-unit" 170 + version = "5.1.4" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e" 173 + dependencies = [ 174 + "rust_decimal", 175 + "serde", 176 + "utf8-width", 177 + ] 178 + 179 + [[package]] 180 + name = "bytecheck" 181 + version = "0.6.12" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 184 + dependencies = [ 185 + "bytecheck_derive", 186 + "ptr_meta", 187 + "simdutf8", 188 + ] 189 + 190 + [[package]] 191 + name = "bytecheck_derive" 192 + version = "0.6.12" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 195 + dependencies = [ 196 + "proc-macro2", 197 + "quote", 198 + "syn 1.0.109", 199 + ] 200 + 201 + [[package]] 202 + name = "byteorder" 203 + version = "1.5.0" 204 + source = "registry+https://github.com/rust-lang/crates.io-index" 205 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 206 + 207 + [[package]] 208 + name = "bytes" 209 + version = "1.6.0" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 212 + 213 + [[package]] 214 + name = "cc" 215 + version = "1.0.95" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" 218 + 219 + [[package]] 220 + name = "cexpr" 221 + version = "0.6.0" 222 + source = "registry+https://github.com/rust-lang/crates.io-index" 223 + checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 224 + dependencies = [ 225 + "nom", 226 + ] 227 + 228 + [[package]] 229 + name = "cfg-if" 230 + version = "1.0.0" 231 + source = "registry+https://github.com/rust-lang/crates.io-index" 232 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 233 + 234 + [[package]] 235 + name = "cfg_aliases" 236 + version = "0.1.1" 237 + source = "registry+https://github.com/rust-lang/crates.io-index" 238 + checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 239 + 240 + [[package]] 241 + name = "chrono" 242 + version = "0.4.38" 243 + source = "registry+https://github.com/rust-lang/crates.io-index" 244 + checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 245 + dependencies = [ 246 + "android-tzdata", 247 + "iana-time-zone", 248 + "num-traits", 249 + "pure-rust-locales", 250 + "serde", 251 + "windows-targets 0.52.5", 252 + ] 253 + 254 + [[package]] 255 + name = "chrono-humanize" 256 + version = "0.2.3" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "799627e6b4d27827a814e837b9d8a504832086081806d45b1afa34dc982b023b" 259 + dependencies = [ 260 + "chrono", 261 + ] 262 + 263 + [[package]] 264 + name = "clang-sys" 265 + version = "1.7.0" 266 + source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 268 + dependencies = [ 269 + "glob", 270 + "libc", 271 + "libloading", 272 + ] 273 + 274 + [[package]] 275 + name = "core-foundation-sys" 276 + version = "0.8.6" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 279 + 280 + [[package]] 281 + name = "crc32fast" 282 + version = "1.4.0" 283 + source = "registry+https://github.com/rust-lang/crates.io-index" 284 + checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 285 + dependencies = [ 286 + "cfg-if", 287 + ] 288 + 289 + [[package]] 290 + name = "crossbeam-deque" 291 + version = "0.8.5" 292 + source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 294 + dependencies = [ 295 + "crossbeam-epoch", 296 + "crossbeam-utils", 297 + ] 298 + 299 + [[package]] 300 + name = "crossbeam-epoch" 301 + version = "0.9.18" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 304 + dependencies = [ 305 + "crossbeam-utils", 306 + ] 307 + 308 + [[package]] 309 + name = "crossbeam-utils" 310 + version = "0.8.19" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 313 + 314 + [[package]] 315 + name = "crossterm_winapi" 316 + version = "0.9.1" 317 + source = "registry+https://github.com/rust-lang/crates.io-index" 318 + checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 319 + dependencies = [ 320 + "winapi", 321 + ] 322 + 323 + [[package]] 324 + name = "dbus" 325 + version = "0.9.7" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 328 + dependencies = [ 329 + "libc", 330 + "libdbus-sys", 331 + "winapi", 332 + ] 333 + 334 + [[package]] 335 + name = "dirs-next" 336 + version = "2.0.0" 337 + source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 339 + dependencies = [ 340 + "cfg-if", 341 + "dirs-sys-next", 342 + ] 343 + 344 + [[package]] 345 + name = "dirs-sys-next" 346 + version = "0.1.2" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 349 + dependencies = [ 350 + "libc", 351 + "redox_users", 352 + "winapi", 353 + ] 354 + 355 + [[package]] 356 + name = "either" 357 + version = "1.11.0" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" 360 + 361 + [[package]] 362 + name = "equivalent" 363 + version = "1.0.1" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 366 + 367 + [[package]] 368 + name = "erased-serde" 369 + version = "0.4.4" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3" 372 + dependencies = [ 373 + "serde", 374 + ] 375 + 376 + [[package]] 377 + name = "errno" 378 + version = "0.3.8" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 381 + dependencies = [ 382 + "libc", 383 + "windows-sys 0.52.0", 384 + ] 385 + 386 + [[package]] 387 + name = "fancy-regex" 388 + version = "0.13.0" 389 + source = "registry+https://github.com/rust-lang/crates.io-index" 390 + checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" 391 + dependencies = [ 392 + "bit-set", 393 + "regex-automata", 394 + "regex-syntax", 395 + ] 396 + 397 + [[package]] 398 + name = "flate2" 399 + version = "1.0.29" 400 + source = "registry+https://github.com/rust-lang/crates.io-index" 401 + checksum = "4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7" 402 + dependencies = [ 403 + "crc32fast", 404 + "miniz_oxide", 405 + ] 406 + 407 + [[package]] 408 + name = "funty" 409 + version = "2.0.0" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 412 + 413 + [[package]] 414 + name = "getrandom" 415 + version = "0.2.14" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 418 + dependencies = [ 419 + "cfg-if", 420 + "libc", 421 + "wasi", 422 + ] 423 + 424 + [[package]] 425 + name = "glob" 426 + version = "0.3.1" 427 + source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 429 + 430 + [[package]] 431 + name = "hashbrown" 432 + version = "0.12.3" 433 + source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 435 + dependencies = [ 436 + "ahash 0.7.8", 437 + ] 438 + 439 + [[package]] 440 + name = "hashbrown" 441 + version = "0.14.5" 442 + source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 444 + dependencies = [ 445 + "ahash 0.8.11", 446 + "allocator-api2", 447 + ] 448 + 449 + [[package]] 450 + name = "hex" 451 + version = "0.4.3" 452 + source = "registry+https://github.com/rust-lang/crates.io-index" 453 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 454 + 455 + [[package]] 456 + name = "iana-time-zone" 457 + version = "0.1.60" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 460 + dependencies = [ 461 + "android_system_properties", 462 + "core-foundation-sys", 463 + "iana-time-zone-haiku", 464 + "js-sys", 465 + "wasm-bindgen", 466 + "windows-core 0.52.0", 467 + ] 468 + 469 + [[package]] 470 + name = "iana-time-zone-haiku" 471 + version = "0.1.2" 472 + source = "registry+https://github.com/rust-lang/crates.io-index" 473 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 474 + dependencies = [ 475 + "cc", 476 + ] 477 + 478 + [[package]] 479 + name = "indexmap" 480 + version = "2.2.6" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 483 + dependencies = [ 484 + "equivalent", 485 + "hashbrown 0.14.5", 486 + ] 487 + 488 + [[package]] 489 + name = "inventory" 490 + version = "0.3.15" 491 + source = "registry+https://github.com/rust-lang/crates.io-index" 492 + checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767" 493 + 494 + [[package]] 495 + name = "is_ci" 496 + version = "1.2.0" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 499 + 500 + [[package]] 501 + name = "itertools" 502 + version = "0.12.1" 503 + source = "registry+https://github.com/rust-lang/crates.io-index" 504 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 505 + dependencies = [ 506 + "either", 507 + ] 508 + 509 + [[package]] 510 + name = "itoa" 511 + version = "1.0.11" 512 + source = "registry+https://github.com/rust-lang/crates.io-index" 513 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 514 + 515 + [[package]] 516 + name = "js-sys" 517 + version = "0.3.69" 518 + source = "registry+https://github.com/rust-lang/crates.io-index" 519 + checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 520 + dependencies = [ 521 + "wasm-bindgen", 522 + ] 523 + 524 + [[package]] 525 + name = "lazy_static" 526 + version = "1.4.0" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 529 + 530 + [[package]] 531 + name = "lazycell" 532 + version = "1.3.0" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 535 + 536 + [[package]] 537 + name = "libc" 538 + version = "0.2.153" 539 + source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 541 + 542 + [[package]] 543 + name = "libdbus-sys" 544 + version = "0.2.5" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72" 547 + dependencies = [ 548 + "pkg-config", 549 + ] 550 + 551 + [[package]] 552 + name = "libloading" 553 + version = "0.8.3" 554 + source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 556 + dependencies = [ 557 + "cfg-if", 558 + "windows-targets 0.52.5", 559 + ] 560 + 561 + [[package]] 562 + name = "libproc" 563 + version = "0.14.8" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "ae9ea4b75e1a81675429dafe43441df1caea70081e82246a8cccf514884a88bb" 566 + dependencies = [ 567 + "bindgen", 568 + "errno", 569 + "libc", 570 + ] 571 + 572 + [[package]] 573 + name = "libredox" 574 + version = "0.1.3" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 577 + dependencies = [ 578 + "bitflags", 579 + "libc", 580 + ] 581 + 582 + [[package]] 583 + name = "linux-raw-sys" 584 + version = "0.4.13" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 587 + 588 + [[package]] 589 + name = "log" 590 + version = "0.4.21" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 593 + 594 + [[package]] 595 + name = "lru" 596 + version = "0.12.3" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 599 + dependencies = [ 600 + "hashbrown 0.14.5", 601 + ] 602 + 603 + [[package]] 604 + name = "lscolors" 605 + version = "0.17.0" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "53304fff6ab1e597661eee37e42ea8c47a146fca280af902bb76bff8a896e523" 608 + dependencies = [ 609 + "nu-ansi-term", 610 + ] 611 + 612 + [[package]] 613 + name = "mach2" 614 + version = "0.4.2" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709" 617 + dependencies = [ 618 + "libc", 619 + ] 620 + 621 + [[package]] 622 + name = "memchr" 623 + version = "2.7.2" 624 + source = "registry+https://github.com/rust-lang/crates.io-index" 625 + checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 626 + 627 + [[package]] 628 + name = "miette" 629 + version = "7.2.0" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1" 632 + dependencies = [ 633 + "cfg-if", 634 + "miette-derive", 635 + "owo-colors", 636 + "supports-color", 637 + "supports-hyperlinks", 638 + "supports-unicode", 639 + "terminal_size", 640 + "textwrap", 641 + "thiserror", 642 + "unicode-width", 643 + ] 644 + 645 + [[package]] 646 + name = "miette-derive" 647 + version = "7.2.0" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c" 650 + dependencies = [ 651 + "proc-macro2", 652 + "quote", 653 + "syn 2.0.60", 654 + ] 655 + 656 + [[package]] 657 + name = "minimal-lexical" 658 + version = "0.2.1" 659 + source = "registry+https://github.com/rust-lang/crates.io-index" 660 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 661 + 662 + [[package]] 663 + name = "miniz_oxide" 664 + version = "0.7.2" 665 + source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 667 + dependencies = [ 668 + "adler", 669 + ] 670 + 671 + [[package]] 672 + name = "nix" 673 + version = "0.28.0" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 676 + dependencies = [ 677 + "bitflags", 678 + "cfg-if", 679 + "cfg_aliases", 680 + "libc", 681 + ] 682 + 683 + [[package]] 684 + name = "nom" 685 + version = "7.1.3" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 688 + dependencies = [ 689 + "memchr", 690 + "minimal-lexical", 691 + ] 692 + 693 + [[package]] 694 + name = "ntapi" 695 + version = "0.4.1" 696 + source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 698 + dependencies = [ 699 + "winapi", 700 + ] 701 + 702 + [[package]] 703 + name = "nu-ansi-term" 704 + version = "0.50.0" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "dd2800e1520bdc966782168a627aa5d1ad92e33b984bf7c7615d31280c83ff14" 707 + dependencies = [ 708 + "windows-sys 0.48.0", 709 + ] 710 + 711 + [[package]] 712 + name = "nu-engine" 713 + version = "0.92.2" 714 + source = "registry+https://github.com/rust-lang/crates.io-index" 715 + checksum = "bd8c05bbc579270cc037ccea32553ea19aec0d355a659b39dc029174a38917c7" 716 + dependencies = [ 717 + "nu-glob", 718 + "nu-path", 719 + "nu-protocol", 720 + "nu-utils", 721 + ] 722 + 723 + [[package]] 724 + name = "nu-glob" 725 + version = "0.92.2" 726 + source = "registry+https://github.com/rust-lang/crates.io-index" 727 + checksum = "f99c4b5313cee673237644ea8d5e60992306ee452325388e473e0ec28f4bea28" 728 + 729 + [[package]] 730 + name = "nu-path" 731 + version = "0.92.2" 732 + source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "ec3d36a8cfb454e06fc191676bccc67c629373506ba188f9c11706956eb813ee" 734 + dependencies = [ 735 + "dirs-next", 736 + "omnipath", 737 + "pwd", 738 + ] 739 + 740 + [[package]] 741 + name = "nu-plugin" 742 + version = "0.92.2" 743 + source = "registry+https://github.com/rust-lang/crates.io-index" 744 + checksum = "229ab6cac7946774dd5c626ffe57b079897beb6ad43bc4e9bcfa5a55bcf307d9" 745 + dependencies = [ 746 + "bincode", 747 + "log", 748 + "miette", 749 + "nu-engine", 750 + "nu-protocol", 751 + "rmp-serde", 752 + "semver", 753 + "serde", 754 + "serde_json", 755 + "thiserror", 756 + "typetag", 757 + "windows 0.54.0", 758 + ] 759 + 760 + [[package]] 761 + name = "nu-protocol" 762 + version = "0.92.2" 763 + source = "registry+https://github.com/rust-lang/crates.io-index" 764 + checksum = "8860469803075ffe108f74efbc57edf42f853800eb845ce29efb1d9c09d91ede" 765 + dependencies = [ 766 + "byte-unit", 767 + "chrono", 768 + "chrono-humanize", 769 + "fancy-regex", 770 + "indexmap", 771 + "lru", 772 + "miette", 773 + "nu-path", 774 + "nu-system", 775 + "nu-utils", 776 + "num-format", 777 + "serde", 778 + "serde_json", 779 + "thiserror", 780 + "typetag", 781 + ] 782 + 783 + [[package]] 784 + name = "nu-system" 785 + version = "0.92.2" 786 + source = "registry+https://github.com/rust-lang/crates.io-index" 787 + checksum = "80a3fc4b70530667f73622d5eee802684afaf9eefc39ce4fd1b078913c8fe9b7" 788 + dependencies = [ 789 + "chrono", 790 + "libc", 791 + "libproc", 792 + "log", 793 + "mach2", 794 + "nix", 795 + "ntapi", 796 + "once_cell", 797 + "procfs", 798 + "sysinfo", 799 + "windows 0.54.0", 800 + ] 801 + 802 + [[package]] 803 + name = "nu-utils" 804 + version = "0.92.2" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "d30cd61d70368f7c197bc8d1edd894c4828a51e1c78e825f81bf5ff4de182d8b" 807 + dependencies = [ 808 + "crossterm_winapi", 809 + "log", 810 + "lscolors", 811 + "num-format", 812 + "strip-ansi-escapes", 813 + "sys-locale", 814 + "unicase", 815 + ] 816 + 817 + [[package]] 818 + name = "nu_plugin_dbus" 819 + version = "0.5.0" 820 + dependencies = [ 821 + "dbus", 822 + "nu-plugin", 823 + "nu-protocol", 824 + "serde", 825 + "serde-xml-rs", 826 + ] 827 + 828 + [[package]] 829 + name = "num-format" 830 + version = "0.4.4" 831 + source = "registry+https://github.com/rust-lang/crates.io-index" 832 + checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 833 + dependencies = [ 834 + "arrayvec", 835 + "itoa", 836 + ] 837 + 838 + [[package]] 839 + name = "num-traits" 840 + version = "0.2.18" 841 + source = "registry+https://github.com/rust-lang/crates.io-index" 842 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 843 + dependencies = [ 844 + "autocfg", 845 + ] 846 + 847 + [[package]] 848 + name = "omnipath" 849 + version = "0.1.6" 850 + source = "registry+https://github.com/rust-lang/crates.io-index" 851 + checksum = "80adb31078122c880307e9cdfd4e3361e6545c319f9b9dcafcb03acd3b51a575" 852 + 853 + [[package]] 854 + name = "once_cell" 855 + version = "1.19.0" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 858 + 859 + [[package]] 860 + name = "owo-colors" 861 + version = "4.0.0" 862 + source = "registry+https://github.com/rust-lang/crates.io-index" 863 + checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" 864 + 865 + [[package]] 866 + name = "paste" 867 + version = "1.0.14" 868 + source = "registry+https://github.com/rust-lang/crates.io-index" 869 + checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 870 + 871 + [[package]] 872 + name = "pkg-config" 873 + version = "0.3.30" 874 + source = "registry+https://github.com/rust-lang/crates.io-index" 875 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 876 + 877 + [[package]] 878 + name = "ppv-lite86" 879 + version = "0.2.17" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 882 + 883 + [[package]] 884 + name = "proc-macro-crate" 885 + version = "3.1.0" 886 + source = "registry+https://github.com/rust-lang/crates.io-index" 887 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 888 + dependencies = [ 889 + "toml_edit", 890 + ] 891 + 892 + [[package]] 893 + name = "proc-macro-error" 894 + version = "1.0.4" 895 + source = "registry+https://github.com/rust-lang/crates.io-index" 896 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 897 + dependencies = [ 898 + "proc-macro-error-attr", 899 + "proc-macro2", 900 + "quote", 901 + "version_check", 902 + ] 903 + 904 + [[package]] 905 + name = "proc-macro-error-attr" 906 + version = "1.0.4" 907 + source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 909 + dependencies = [ 910 + "proc-macro2", 911 + "quote", 912 + "version_check", 913 + ] 914 + 915 + [[package]] 916 + name = "proc-macro2" 917 + version = "1.0.81" 918 + source = "registry+https://github.com/rust-lang/crates.io-index" 919 + checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 920 + dependencies = [ 921 + "unicode-ident", 922 + ] 923 + 924 + [[package]] 925 + name = "procfs" 926 + version = "0.16.0" 927 + source = "registry+https://github.com/rust-lang/crates.io-index" 928 + checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" 929 + dependencies = [ 930 + "bitflags", 931 + "chrono", 932 + "flate2", 933 + "hex", 934 + "lazy_static", 935 + "procfs-core", 936 + "rustix", 937 + ] 938 + 939 + [[package]] 940 + name = "procfs-core" 941 + version = "0.16.0" 942 + source = "registry+https://github.com/rust-lang/crates.io-index" 943 + checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 944 + dependencies = [ 945 + "bitflags", 946 + "chrono", 947 + "hex", 948 + ] 949 + 950 + [[package]] 951 + name = "ptr_meta" 952 + version = "0.1.4" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 955 + dependencies = [ 956 + "ptr_meta_derive", 957 + ] 958 + 959 + [[package]] 960 + name = "ptr_meta_derive" 961 + version = "0.1.4" 962 + source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 964 + dependencies = [ 965 + "proc-macro2", 966 + "quote", 967 + "syn 1.0.109", 968 + ] 969 + 970 + [[package]] 971 + name = "pure-rust-locales" 972 + version = "0.8.1" 973 + source = "registry+https://github.com/rust-lang/crates.io-index" 974 + checksum = "1190fd18ae6ce9e137184f207593877e70f39b015040156b1e05081cdfe3733a" 975 + 976 + [[package]] 977 + name = "pwd" 978 + version = "1.4.0" 979 + source = "registry+https://github.com/rust-lang/crates.io-index" 980 + checksum = "72c71c0c79b9701efe4e1e4b563b2016dd4ee789eb99badcb09d61ac4b92e4a2" 981 + dependencies = [ 982 + "libc", 983 + "thiserror", 984 + ] 985 + 986 + [[package]] 987 + name = "quote" 988 + version = "1.0.36" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 991 + dependencies = [ 992 + "proc-macro2", 993 + ] 994 + 995 + [[package]] 996 + name = "radium" 997 + version = "0.7.0" 998 + source = "registry+https://github.com/rust-lang/crates.io-index" 999 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 1000 + 1001 + [[package]] 1002 + name = "rand" 1003 + version = "0.8.5" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1006 + dependencies = [ 1007 + "libc", 1008 + "rand_chacha", 1009 + "rand_core", 1010 + ] 1011 + 1012 + [[package]] 1013 + name = "rand_chacha" 1014 + version = "0.3.1" 1015 + source = "registry+https://github.com/rust-lang/crates.io-index" 1016 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1017 + dependencies = [ 1018 + "ppv-lite86", 1019 + "rand_core", 1020 + ] 1021 + 1022 + [[package]] 1023 + name = "rand_core" 1024 + version = "0.6.4" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1027 + dependencies = [ 1028 + "getrandom", 1029 + ] 1030 + 1031 + [[package]] 1032 + name = "rayon" 1033 + version = "1.10.0" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1036 + dependencies = [ 1037 + "either", 1038 + "rayon-core", 1039 + ] 1040 + 1041 + [[package]] 1042 + name = "rayon-core" 1043 + version = "1.12.1" 1044 + source = "registry+https://github.com/rust-lang/crates.io-index" 1045 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1046 + dependencies = [ 1047 + "crossbeam-deque", 1048 + "crossbeam-utils", 1049 + ] 1050 + 1051 + [[package]] 1052 + name = "redox_users" 1053 + version = "0.4.5" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 1056 + dependencies = [ 1057 + "getrandom", 1058 + "libredox", 1059 + "thiserror", 1060 + ] 1061 + 1062 + [[package]] 1063 + name = "regex" 1064 + version = "1.10.4" 1065 + source = "registry+https://github.com/rust-lang/crates.io-index" 1066 + checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1067 + dependencies = [ 1068 + "aho-corasick", 1069 + "memchr", 1070 + "regex-automata", 1071 + "regex-syntax", 1072 + ] 1073 + 1074 + [[package]] 1075 + name = "regex-automata" 1076 + version = "0.4.6" 1077 + source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1079 + dependencies = [ 1080 + "aho-corasick", 1081 + "memchr", 1082 + "regex-syntax", 1083 + ] 1084 + 1085 + [[package]] 1086 + name = "regex-syntax" 1087 + version = "0.8.3" 1088 + source = "registry+https://github.com/rust-lang/crates.io-index" 1089 + checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1090 + 1091 + [[package]] 1092 + name = "rend" 1093 + version = "0.4.2" 1094 + source = "registry+https://github.com/rust-lang/crates.io-index" 1095 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 1096 + dependencies = [ 1097 + "bytecheck", 1098 + ] 1099 + 1100 + [[package]] 1101 + name = "rkyv" 1102 + version = "0.7.44" 1103 + source = "registry+https://github.com/rust-lang/crates.io-index" 1104 + checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 1105 + dependencies = [ 1106 + "bitvec", 1107 + "bytecheck", 1108 + "bytes", 1109 + "hashbrown 0.12.3", 1110 + "ptr_meta", 1111 + "rend", 1112 + "rkyv_derive", 1113 + "seahash", 1114 + "tinyvec", 1115 + "uuid", 1116 + ] 1117 + 1118 + [[package]] 1119 + name = "rkyv_derive" 1120 + version = "0.7.44" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 1123 + dependencies = [ 1124 + "proc-macro2", 1125 + "quote", 1126 + "syn 1.0.109", 1127 + ] 1128 + 1129 + [[package]] 1130 + name = "rmp" 1131 + version = "0.8.14" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4" 1134 + dependencies = [ 1135 + "byteorder", 1136 + "num-traits", 1137 + "paste", 1138 + ] 1139 + 1140 + [[package]] 1141 + name = "rmp-serde" 1142 + version = "1.2.0" 1143 + source = "registry+https://github.com/rust-lang/crates.io-index" 1144 + checksum = "938a142ab806f18b88a97b0dea523d39e0fd730a064b035726adcfc58a8a5188" 1145 + dependencies = [ 1146 + "byteorder", 1147 + "rmp", 1148 + "serde", 1149 + ] 1150 + 1151 + [[package]] 1152 + name = "rust_decimal" 1153 + version = "1.35.0" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" 1156 + dependencies = [ 1157 + "arrayvec", 1158 + "borsh", 1159 + "bytes", 1160 + "num-traits", 1161 + "rand", 1162 + "rkyv", 1163 + "serde", 1164 + "serde_json", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "rustc-hash" 1169 + version = "1.1.0" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1172 + 1173 + [[package]] 1174 + name = "rustix" 1175 + version = "0.38.34" 1176 + source = "registry+https://github.com/rust-lang/crates.io-index" 1177 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1178 + dependencies = [ 1179 + "bitflags", 1180 + "errno", 1181 + "libc", 1182 + "linux-raw-sys", 1183 + "windows-sys 0.52.0", 1184 + ] 1185 + 1186 + [[package]] 1187 + name = "ryu" 1188 + version = "1.0.17" 1189 + source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 1191 + 1192 + [[package]] 1193 + name = "seahash" 1194 + version = "4.1.0" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 1197 + 1198 + [[package]] 1199 + name = "semver" 1200 + version = "1.0.22" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 1203 + 1204 + [[package]] 1205 + name = "serde" 1206 + version = "1.0.199" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" 1209 + dependencies = [ 1210 + "serde_derive", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "serde-xml-rs" 1215 + version = "0.6.0" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782" 1218 + dependencies = [ 1219 + "log", 1220 + "serde", 1221 + "thiserror", 1222 + "xml-rs", 1223 + ] 1224 + 1225 + [[package]] 1226 + name = "serde_derive" 1227 + version = "1.0.199" 1228 + source = "registry+https://github.com/rust-lang/crates.io-index" 1229 + checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" 1230 + dependencies = [ 1231 + "proc-macro2", 1232 + "quote", 1233 + "syn 2.0.60", 1234 + ] 1235 + 1236 + [[package]] 1237 + name = "serde_json" 1238 + version = "1.0.116" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 1241 + dependencies = [ 1242 + "itoa", 1243 + "ryu", 1244 + "serde", 1245 + ] 1246 + 1247 + [[package]] 1248 + name = "shlex" 1249 + version = "1.3.0" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1252 + 1253 + [[package]] 1254 + name = "simdutf8" 1255 + version = "0.1.4" 1256 + source = "registry+https://github.com/rust-lang/crates.io-index" 1257 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 1258 + 1259 + [[package]] 1260 + name = "smawk" 1261 + version = "0.3.2" 1262 + source = "registry+https://github.com/rust-lang/crates.io-index" 1263 + checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 1264 + 1265 + [[package]] 1266 + name = "strip-ansi-escapes" 1267 + version = "0.2.0" 1268 + source = "registry+https://github.com/rust-lang/crates.io-index" 1269 + checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" 1270 + dependencies = [ 1271 + "vte", 1272 + ] 1273 + 1274 + [[package]] 1275 + name = "supports-color" 1276 + version = "3.0.0" 1277 + source = "registry+https://github.com/rust-lang/crates.io-index" 1278 + checksum = "9829b314621dfc575df4e409e79f9d6a66a3bd707ab73f23cb4aa3a854ac854f" 1279 + dependencies = [ 1280 + "is_ci", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "supports-hyperlinks" 1285 + version = "3.0.0" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "2c0a1e5168041f5f3ff68ff7d95dcb9c8749df29f6e7e89ada40dd4c9de404ee" 1288 + 1289 + [[package]] 1290 + name = "supports-unicode" 1291 + version = "3.0.0" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2" 1294 + 1295 + [[package]] 1296 + name = "syn" 1297 + version = "1.0.109" 1298 + source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1300 + dependencies = [ 1301 + "proc-macro2", 1302 + "quote", 1303 + "unicode-ident", 1304 + ] 1305 + 1306 + [[package]] 1307 + name = "syn" 1308 + version = "2.0.60" 1309 + source = "registry+https://github.com/rust-lang/crates.io-index" 1310 + checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 1311 + dependencies = [ 1312 + "proc-macro2", 1313 + "quote", 1314 + "unicode-ident", 1315 + ] 1316 + 1317 + [[package]] 1318 + name = "syn_derive" 1319 + version = "0.1.8" 1320 + source = "registry+https://github.com/rust-lang/crates.io-index" 1321 + checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 1322 + dependencies = [ 1323 + "proc-macro-error", 1324 + "proc-macro2", 1325 + "quote", 1326 + "syn 2.0.60", 1327 + ] 1328 + 1329 + [[package]] 1330 + name = "sys-locale" 1331 + version = "0.3.1" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 1334 + dependencies = [ 1335 + "libc", 1336 + ] 1337 + 1338 + [[package]] 1339 + name = "sysinfo" 1340 + version = "0.30.11" 1341 + source = "registry+https://github.com/rust-lang/crates.io-index" 1342 + checksum = "87341a165d73787554941cd5ef55ad728011566fe714e987d1b976c15dbc3a83" 1343 + dependencies = [ 1344 + "cfg-if", 1345 + "core-foundation-sys", 1346 + "libc", 1347 + "ntapi", 1348 + "once_cell", 1349 + "rayon", 1350 + "windows 0.52.0", 1351 + ] 1352 + 1353 + [[package]] 1354 + name = "tap" 1355 + version = "1.0.1" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1358 + 1359 + [[package]] 1360 + name = "terminal_size" 1361 + version = "0.3.0" 1362 + source = "registry+https://github.com/rust-lang/crates.io-index" 1363 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 1364 + dependencies = [ 1365 + "rustix", 1366 + "windows-sys 0.48.0", 1367 + ] 1368 + 1369 + [[package]] 1370 + name = "textwrap" 1371 + version = "0.16.1" 1372 + source = "registry+https://github.com/rust-lang/crates.io-index" 1373 + checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 1374 + dependencies = [ 1375 + "smawk", 1376 + "unicode-linebreak", 1377 + "unicode-width", 1378 + ] 1379 + 1380 + [[package]] 1381 + name = "thiserror" 1382 + version = "1.0.59" 1383 + source = "registry+https://github.com/rust-lang/crates.io-index" 1384 + checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" 1385 + dependencies = [ 1386 + "thiserror-impl", 1387 + ] 1388 + 1389 + [[package]] 1390 + name = "thiserror-impl" 1391 + version = "1.0.59" 1392 + source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" 1394 + dependencies = [ 1395 + "proc-macro2", 1396 + "quote", 1397 + "syn 2.0.60", 1398 + ] 1399 + 1400 + [[package]] 1401 + name = "tinyvec" 1402 + version = "1.6.0" 1403 + source = "registry+https://github.com/rust-lang/crates.io-index" 1404 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1405 + dependencies = [ 1406 + "tinyvec_macros", 1407 + ] 1408 + 1409 + [[package]] 1410 + name = "tinyvec_macros" 1411 + version = "0.1.1" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1414 + 1415 + [[package]] 1416 + name = "toml_datetime" 1417 + version = "0.6.5" 1418 + source = "registry+https://github.com/rust-lang/crates.io-index" 1419 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 1420 + 1421 + [[package]] 1422 + name = "toml_edit" 1423 + version = "0.21.1" 1424 + source = "registry+https://github.com/rust-lang/crates.io-index" 1425 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 1426 + dependencies = [ 1427 + "indexmap", 1428 + "toml_datetime", 1429 + "winnow", 1430 + ] 1431 + 1432 + [[package]] 1433 + name = "typetag" 1434 + version = "0.2.16" 1435 + source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + checksum = "661d18414ec032a49ece2d56eee03636e43c4e8d577047ab334c0ba892e29aaf" 1437 + dependencies = [ 1438 + "erased-serde", 1439 + "inventory", 1440 + "once_cell", 1441 + "serde", 1442 + "typetag-impl", 1443 + ] 1444 + 1445 + [[package]] 1446 + name = "typetag-impl" 1447 + version = "0.2.16" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "ac73887f47b9312552aa90ef477927ff014d63d1920ca8037c6c1951eab64bb1" 1450 + dependencies = [ 1451 + "proc-macro2", 1452 + "quote", 1453 + "syn 2.0.60", 1454 + ] 1455 + 1456 + [[package]] 1457 + name = "unicase" 1458 + version = "2.7.0" 1459 + source = "registry+https://github.com/rust-lang/crates.io-index" 1460 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 1461 + dependencies = [ 1462 + "version_check", 1463 + ] 1464 + 1465 + [[package]] 1466 + name = "unicode-ident" 1467 + version = "1.0.12" 1468 + source = "registry+https://github.com/rust-lang/crates.io-index" 1469 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1470 + 1471 + [[package]] 1472 + name = "unicode-linebreak" 1473 + version = "0.1.5" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 1476 + 1477 + [[package]] 1478 + name = "unicode-width" 1479 + version = "0.1.12" 1480 + source = "registry+https://github.com/rust-lang/crates.io-index" 1481 + checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" 1482 + 1483 + [[package]] 1484 + name = "utf8-width" 1485 + version = "0.1.7" 1486 + source = "registry+https://github.com/rust-lang/crates.io-index" 1487 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 1488 + 1489 + [[package]] 1490 + name = "utf8parse" 1491 + version = "0.2.1" 1492 + source = "registry+https://github.com/rust-lang/crates.io-index" 1493 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1494 + 1495 + [[package]] 1496 + name = "uuid" 1497 + version = "1.8.0" 1498 + source = "registry+https://github.com/rust-lang/crates.io-index" 1499 + checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 1500 + 1501 + [[package]] 1502 + name = "version_check" 1503 + version = "0.9.4" 1504 + source = "registry+https://github.com/rust-lang/crates.io-index" 1505 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1506 + 1507 + [[package]] 1508 + name = "vte" 1509 + version = "0.11.1" 1510 + source = "registry+https://github.com/rust-lang/crates.io-index" 1511 + checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 1512 + dependencies = [ 1513 + "utf8parse", 1514 + "vte_generate_state_changes", 1515 + ] 1516 + 1517 + [[package]] 1518 + name = "vte_generate_state_changes" 1519 + version = "0.1.1" 1520 + source = "registry+https://github.com/rust-lang/crates.io-index" 1521 + checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 1522 + dependencies = [ 1523 + "proc-macro2", 1524 + "quote", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "wasi" 1529 + version = "0.11.0+wasi-snapshot-preview1" 1530 + source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1532 + 1533 + [[package]] 1534 + name = "wasm-bindgen" 1535 + version = "0.2.92" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 1538 + dependencies = [ 1539 + "cfg-if", 1540 + "wasm-bindgen-macro", 1541 + ] 1542 + 1543 + [[package]] 1544 + name = "wasm-bindgen-backend" 1545 + version = "0.2.92" 1546 + source = "registry+https://github.com/rust-lang/crates.io-index" 1547 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 1548 + dependencies = [ 1549 + "bumpalo", 1550 + "log", 1551 + "once_cell", 1552 + "proc-macro2", 1553 + "quote", 1554 + "syn 2.0.60", 1555 + "wasm-bindgen-shared", 1556 + ] 1557 + 1558 + [[package]] 1559 + name = "wasm-bindgen-macro" 1560 + version = "0.2.92" 1561 + source = "registry+https://github.com/rust-lang/crates.io-index" 1562 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 1563 + dependencies = [ 1564 + "quote", 1565 + "wasm-bindgen-macro-support", 1566 + ] 1567 + 1568 + [[package]] 1569 + name = "wasm-bindgen-macro-support" 1570 + version = "0.2.92" 1571 + source = "registry+https://github.com/rust-lang/crates.io-index" 1572 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 1573 + dependencies = [ 1574 + "proc-macro2", 1575 + "quote", 1576 + "syn 2.0.60", 1577 + "wasm-bindgen-backend", 1578 + "wasm-bindgen-shared", 1579 + ] 1580 + 1581 + [[package]] 1582 + name = "wasm-bindgen-shared" 1583 + version = "0.2.92" 1584 + source = "registry+https://github.com/rust-lang/crates.io-index" 1585 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 1586 + 1587 + [[package]] 1588 + name = "winapi" 1589 + version = "0.3.9" 1590 + source = "registry+https://github.com/rust-lang/crates.io-index" 1591 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1592 + dependencies = [ 1593 + "winapi-i686-pc-windows-gnu", 1594 + "winapi-x86_64-pc-windows-gnu", 1595 + ] 1596 + 1597 + [[package]] 1598 + name = "winapi-i686-pc-windows-gnu" 1599 + version = "0.4.0" 1600 + source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1602 + 1603 + [[package]] 1604 + name = "winapi-x86_64-pc-windows-gnu" 1605 + version = "0.4.0" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1608 + 1609 + [[package]] 1610 + name = "windows" 1611 + version = "0.52.0" 1612 + source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 1614 + dependencies = [ 1615 + "windows-core 0.52.0", 1616 + "windows-targets 0.52.5", 1617 + ] 1618 + 1619 + [[package]] 1620 + name = "windows" 1621 + version = "0.54.0" 1622 + source = "registry+https://github.com/rust-lang/crates.io-index" 1623 + checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49" 1624 + dependencies = [ 1625 + "windows-core 0.54.0", 1626 + "windows-targets 0.52.5", 1627 + ] 1628 + 1629 + [[package]] 1630 + name = "windows-core" 1631 + version = "0.52.0" 1632 + source = "registry+https://github.com/rust-lang/crates.io-index" 1633 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1634 + dependencies = [ 1635 + "windows-targets 0.52.5", 1636 + ] 1637 + 1638 + [[package]] 1639 + name = "windows-core" 1640 + version = "0.54.0" 1641 + source = "registry+https://github.com/rust-lang/crates.io-index" 1642 + checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65" 1643 + dependencies = [ 1644 + "windows-result", 1645 + "windows-targets 0.52.5", 1646 + ] 1647 + 1648 + [[package]] 1649 + name = "windows-result" 1650 + version = "0.1.1" 1651 + source = "registry+https://github.com/rust-lang/crates.io-index" 1652 + checksum = "749f0da9cc72d82e600d8d2e44cadd0b9eedb9038f71a1c58556ac1c5791813b" 1653 + dependencies = [ 1654 + "windows-targets 0.52.5", 1655 + ] 1656 + 1657 + [[package]] 1658 + name = "windows-sys" 1659 + version = "0.48.0" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1662 + dependencies = [ 1663 + "windows-targets 0.48.5", 1664 + ] 1665 + 1666 + [[package]] 1667 + name = "windows-sys" 1668 + version = "0.52.0" 1669 + source = "registry+https://github.com/rust-lang/crates.io-index" 1670 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1671 + dependencies = [ 1672 + "windows-targets 0.52.5", 1673 + ] 1674 + 1675 + [[package]] 1676 + name = "windows-targets" 1677 + version = "0.48.5" 1678 + source = "registry+https://github.com/rust-lang/crates.io-index" 1679 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1680 + dependencies = [ 1681 + "windows_aarch64_gnullvm 0.48.5", 1682 + "windows_aarch64_msvc 0.48.5", 1683 + "windows_i686_gnu 0.48.5", 1684 + "windows_i686_msvc 0.48.5", 1685 + "windows_x86_64_gnu 0.48.5", 1686 + "windows_x86_64_gnullvm 0.48.5", 1687 + "windows_x86_64_msvc 0.48.5", 1688 + ] 1689 + 1690 + [[package]] 1691 + name = "windows-targets" 1692 + version = "0.52.5" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 1695 + dependencies = [ 1696 + "windows_aarch64_gnullvm 0.52.5", 1697 + "windows_aarch64_msvc 0.52.5", 1698 + "windows_i686_gnu 0.52.5", 1699 + "windows_i686_gnullvm", 1700 + "windows_i686_msvc 0.52.5", 1701 + "windows_x86_64_gnu 0.52.5", 1702 + "windows_x86_64_gnullvm 0.52.5", 1703 + "windows_x86_64_msvc 0.52.5", 1704 + ] 1705 + 1706 + [[package]] 1707 + name = "windows_aarch64_gnullvm" 1708 + version = "0.48.5" 1709 + source = "registry+https://github.com/rust-lang/crates.io-index" 1710 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1711 + 1712 + [[package]] 1713 + name = "windows_aarch64_gnullvm" 1714 + version = "0.52.5" 1715 + source = "registry+https://github.com/rust-lang/crates.io-index" 1716 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 1717 + 1718 + [[package]] 1719 + name = "windows_aarch64_msvc" 1720 + version = "0.48.5" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1723 + 1724 + [[package]] 1725 + name = "windows_aarch64_msvc" 1726 + version = "0.52.5" 1727 + source = "registry+https://github.com/rust-lang/crates.io-index" 1728 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 1729 + 1730 + [[package]] 1731 + name = "windows_i686_gnu" 1732 + version = "0.48.5" 1733 + source = "registry+https://github.com/rust-lang/crates.io-index" 1734 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1735 + 1736 + [[package]] 1737 + name = "windows_i686_gnu" 1738 + version = "0.52.5" 1739 + source = "registry+https://github.com/rust-lang/crates.io-index" 1740 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 1741 + 1742 + [[package]] 1743 + name = "windows_i686_gnullvm" 1744 + version = "0.52.5" 1745 + source = "registry+https://github.com/rust-lang/crates.io-index" 1746 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 1747 + 1748 + [[package]] 1749 + name = "windows_i686_msvc" 1750 + version = "0.48.5" 1751 + source = "registry+https://github.com/rust-lang/crates.io-index" 1752 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1753 + 1754 + [[package]] 1755 + name = "windows_i686_msvc" 1756 + version = "0.52.5" 1757 + source = "registry+https://github.com/rust-lang/crates.io-index" 1758 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 1759 + 1760 + [[package]] 1761 + name = "windows_x86_64_gnu" 1762 + version = "0.48.5" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1765 + 1766 + [[package]] 1767 + name = "windows_x86_64_gnu" 1768 + version = "0.52.5" 1769 + source = "registry+https://github.com/rust-lang/crates.io-index" 1770 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 1771 + 1772 + [[package]] 1773 + name = "windows_x86_64_gnullvm" 1774 + version = "0.48.5" 1775 + source = "registry+https://github.com/rust-lang/crates.io-index" 1776 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1777 + 1778 + [[package]] 1779 + name = "windows_x86_64_gnullvm" 1780 + version = "0.52.5" 1781 + source = "registry+https://github.com/rust-lang/crates.io-index" 1782 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 1783 + 1784 + [[package]] 1785 + name = "windows_x86_64_msvc" 1786 + version = "0.48.5" 1787 + source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1789 + 1790 + [[package]] 1791 + name = "windows_x86_64_msvc" 1792 + version = "0.52.5" 1793 + source = "registry+https://github.com/rust-lang/crates.io-index" 1794 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 1795 + 1796 + [[package]] 1797 + name = "winnow" 1798 + version = "0.5.40" 1799 + source = "registry+https://github.com/rust-lang/crates.io-index" 1800 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 1801 + dependencies = [ 1802 + "memchr", 1803 + ] 1804 + 1805 + [[package]] 1806 + name = "wyz" 1807 + version = "0.5.1" 1808 + source = "registry+https://github.com/rust-lang/crates.io-index" 1809 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 1810 + dependencies = [ 1811 + "tap", 1812 + ] 1813 + 1814 + [[package]] 1815 + name = "xml-rs" 1816 + version = "0.8.20" 1817 + source = "registry+https://github.com/rust-lang/crates.io-index" 1818 + checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 1819 + 1820 + [[package]] 1821 + name = "zerocopy" 1822 + version = "0.7.32" 1823 + source = "registry+https://github.com/rust-lang/crates.io-index" 1824 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 1825 + dependencies = [ 1826 + "zerocopy-derive", 1827 + ] 1828 + 1829 + [[package]] 1830 + name = "zerocopy-derive" 1831 + version = "0.7.32" 1832 + source = "registry+https://github.com/rust-lang/crates.io-index" 1833 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 1834 + dependencies = [ 1835 + "proc-macro2", 1836 + "quote", 1837 + "syn 2.0.60", 1838 + ]