Merge pull request #232835 from GaetanLepage/sniprun

vimPlugins.sniprun: 1.3.1 -> 1.3.3

authored by

figsoda and committed by
GitHub
5dcb4a7a b2fc0b72

+816 -3
+9 -3
pkgs/applications/editors/vim/plugins/overrides.nix
··· 919 919 920 920 sniprun = 921 921 let 922 - version = "1.3.1"; 922 + version = "1.3.3"; 923 923 src = fetchFromGitHub { 924 924 owner = "michaelb"; 925 925 repo = "sniprun"; 926 926 rev = "v${version}"; 927 - hash = "sha256-grrrqvdqoYTBtlU+HLrSQJsAmMA/+OHbuoVvOwHYPnk="; 927 + hash = "sha256-my06P2fqWjZAnxVjVzIV8q+FQOlxRLVZs3OZ0XBR6N0="; 928 928 }; 929 929 sniprun-bin = rustPlatform.buildRustPackage { 930 930 pname = "sniprun-bin"; 931 931 inherit version src; 932 932 933 - cargoSha256 = "sha256-hmZXYJFIeKgYyhT6mSrmX+7M9GQQHHzliYHjsBoHgOc="; 933 + cargoLock = { 934 + lockFile = ./sniprun/Cargo.lock; 935 + }; 936 + 937 + postPatch = '' 938 + ln -s ${./sniprun/Cargo.lock} Cargo.lock 939 + ''; 934 940 935 941 nativeBuildInputs = [ makeWrapper ]; 936 942
+807
pkgs/applications/editors/vim/plugins/sniprun/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.19.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "aho-corasick" 22 + version = "1.0.1" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 25 + dependencies = [ 26 + "memchr", 27 + ] 28 + 29 + [[package]] 30 + name = "arrayvec" 31 + version = "0.5.2" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 34 + 35 + [[package]] 36 + name = "autocfg" 37 + version = "1.1.0" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 40 + 41 + [[package]] 42 + name = "backtrace" 43 + version = "0.3.67" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 46 + dependencies = [ 47 + "addr2line", 48 + "cc", 49 + "cfg-if 1.0.0", 50 + "libc", 51 + "miniz_oxide", 52 + "object", 53 + "rustc-demangle", 54 + ] 55 + 56 + [[package]] 57 + name = "bitflags" 58 + version = "1.3.2" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 61 + 62 + [[package]] 63 + name = "byteorder" 64 + version = "1.4.3" 65 + source = "registry+https://github.com/rust-lang/crates.io-index" 66 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 67 + 68 + [[package]] 69 + name = "cc" 70 + version = "1.0.79" 71 + source = "registry+https://github.com/rust-lang/crates.io-index" 72 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 73 + 74 + [[package]] 75 + name = "cfg-if" 76 + version = "0.1.10" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 79 + 80 + [[package]] 81 + name = "cfg-if" 82 + version = "1.0.0" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 85 + 86 + [[package]] 87 + name = "close_fds" 88 + version = "0.3.2" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "3bc416f33de9d59e79e57560f450d21ff8393adcf1cdfc3e6d8fb93d5f88a2ed" 91 + dependencies = [ 92 + "cfg-if 1.0.0", 93 + "libc", 94 + ] 95 + 96 + [[package]] 97 + name = "dashmap" 98 + version = "5.4.0" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 101 + dependencies = [ 102 + "cfg-if 1.0.0", 103 + "hashbrown", 104 + "lock_api", 105 + "once_cell", 106 + "parking_lot_core", 107 + ] 108 + 109 + [[package]] 110 + name = "dirs" 111 + version = "5.0.1" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 114 + dependencies = [ 115 + "dirs-sys", 116 + ] 117 + 118 + [[package]] 119 + name = "dirs-sys" 120 + version = "0.4.1" 121 + source = "registry+https://github.com/rust-lang/crates.io-index" 122 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 123 + dependencies = [ 124 + "libc", 125 + "option-ext", 126 + "redox_users", 127 + "windows-sys 0.48.0", 128 + ] 129 + 130 + [[package]] 131 + name = "futures" 132 + version = "0.3.28" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 135 + dependencies = [ 136 + "futures-channel", 137 + "futures-core", 138 + "futures-executor", 139 + "futures-io", 140 + "futures-sink", 141 + "futures-task", 142 + "futures-util", 143 + ] 144 + 145 + [[package]] 146 + name = "futures-channel" 147 + version = "0.3.28" 148 + source = "registry+https://github.com/rust-lang/crates.io-index" 149 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 150 + dependencies = [ 151 + "futures-core", 152 + "futures-sink", 153 + ] 154 + 155 + [[package]] 156 + name = "futures-core" 157 + version = "0.3.28" 158 + source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 160 + 161 + [[package]] 162 + name = "futures-executor" 163 + version = "0.3.28" 164 + source = "registry+https://github.com/rust-lang/crates.io-index" 165 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 166 + dependencies = [ 167 + "futures-core", 168 + "futures-task", 169 + "futures-util", 170 + ] 171 + 172 + [[package]] 173 + name = "futures-io" 174 + version = "0.3.28" 175 + source = "registry+https://github.com/rust-lang/crates.io-index" 176 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 177 + 178 + [[package]] 179 + name = "futures-sink" 180 + version = "0.3.28" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 183 + 184 + [[package]] 185 + name = "futures-task" 186 + version = "0.3.28" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 189 + 190 + [[package]] 191 + name = "futures-util" 192 + version = "0.3.28" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 195 + dependencies = [ 196 + "futures-channel", 197 + "futures-core", 198 + "futures-io", 199 + "futures-sink", 200 + "futures-task", 201 + "memchr", 202 + "pin-project-lite", 203 + "pin-utils", 204 + "slab", 205 + ] 206 + 207 + [[package]] 208 + name = "getrandom" 209 + version = "0.2.9" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 212 + dependencies = [ 213 + "cfg-if 1.0.0", 214 + "libc", 215 + "wasi", 216 + ] 217 + 218 + [[package]] 219 + name = "gimli" 220 + version = "0.27.2" 221 + source = "registry+https://github.com/rust-lang/crates.io-index" 222 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 223 + 224 + [[package]] 225 + name = "hashbrown" 226 + version = "0.12.3" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 229 + 230 + [[package]] 231 + name = "lazy_static" 232 + version = "1.4.0" 233 + source = "registry+https://github.com/rust-lang/crates.io-index" 234 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 235 + 236 + [[package]] 237 + name = "libc" 238 + version = "0.2.144" 239 + source = "registry+https://github.com/rust-lang/crates.io-index" 240 + checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 241 + 242 + [[package]] 243 + name = "lock_api" 244 + version = "0.4.9" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 247 + dependencies = [ 248 + "autocfg", 249 + "scopeguard", 250 + ] 251 + 252 + [[package]] 253 + name = "log" 254 + version = "0.4.17" 255 + source = "registry+https://github.com/rust-lang/crates.io-index" 256 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 257 + dependencies = [ 258 + "cfg-if 1.0.0", 259 + ] 260 + 261 + [[package]] 262 + name = "log-panics" 263 + version = "2.1.0" 264 + source = "registry+https://github.com/rust-lang/crates.io-index" 265 + checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f" 266 + dependencies = [ 267 + "backtrace", 268 + "log", 269 + ] 270 + 271 + [[package]] 272 + name = "memchr" 273 + version = "2.5.0" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 276 + 277 + [[package]] 278 + name = "miniz_oxide" 279 + version = "0.6.2" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 282 + dependencies = [ 283 + "adler", 284 + ] 285 + 286 + [[package]] 287 + name = "neovim-lib" 288 + version = "0.6.1" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "d6a8f5a1e1be160ce2b669c2c495a34ade6f3a525d4afafd7370c1792070f587" 291 + dependencies = [ 292 + "log", 293 + "rmp", 294 + "rmpv", 295 + "unix_socket", 296 + ] 297 + 298 + [[package]] 299 + name = "num-traits" 300 + version = "0.2.15" 301 + source = "registry+https://github.com/rust-lang/crates.io-index" 302 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 303 + dependencies = [ 304 + "autocfg", 305 + ] 306 + 307 + [[package]] 308 + name = "object" 309 + version = "0.30.3" 310 + source = "registry+https://github.com/rust-lang/crates.io-index" 311 + checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 312 + dependencies = [ 313 + "memchr", 314 + ] 315 + 316 + [[package]] 317 + name = "once_cell" 318 + version = "1.17.1" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 321 + 322 + [[package]] 323 + name = "option-ext" 324 + version = "0.2.0" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 327 + 328 + [[package]] 329 + name = "parking_lot" 330 + version = "0.12.1" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 333 + dependencies = [ 334 + "lock_api", 335 + "parking_lot_core", 336 + ] 337 + 338 + [[package]] 339 + name = "parking_lot_core" 340 + version = "0.9.7" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 343 + dependencies = [ 344 + "cfg-if 1.0.0", 345 + "libc", 346 + "redox_syscall 0.2.16", 347 + "smallvec", 348 + "windows-sys 0.45.0", 349 + ] 350 + 351 + [[package]] 352 + name = "paste" 353 + version = "1.0.12" 354 + source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 356 + 357 + [[package]] 358 + name = "pin-project-lite" 359 + version = "0.2.9" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 362 + 363 + [[package]] 364 + name = "pin-utils" 365 + version = "0.1.0" 366 + source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 368 + 369 + [[package]] 370 + name = "proc-macro2" 371 + version = "1.0.58" 372 + source = "registry+https://github.com/rust-lang/crates.io-index" 373 + checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 374 + dependencies = [ 375 + "unicode-ident", 376 + ] 377 + 378 + [[package]] 379 + name = "quote" 380 + version = "1.0.27" 381 + source = "registry+https://github.com/rust-lang/crates.io-index" 382 + checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 383 + dependencies = [ 384 + "proc-macro2", 385 + ] 386 + 387 + [[package]] 388 + name = "redox_syscall" 389 + version = "0.1.57" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 392 + 393 + [[package]] 394 + name = "redox_syscall" 395 + version = "0.2.16" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 398 + dependencies = [ 399 + "bitflags", 400 + ] 401 + 402 + [[package]] 403 + name = "redox_users" 404 + version = "0.4.3" 405 + source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 407 + dependencies = [ 408 + "getrandom", 409 + "redox_syscall 0.2.16", 410 + "thiserror", 411 + ] 412 + 413 + [[package]] 414 + name = "regex" 415 + version = "1.8.1" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 418 + dependencies = [ 419 + "aho-corasick", 420 + "memchr", 421 + "regex-syntax", 422 + ] 423 + 424 + [[package]] 425 + name = "regex-syntax" 426 + version = "0.7.1" 427 + source = "registry+https://github.com/rust-lang/crates.io-index" 428 + checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 429 + 430 + [[package]] 431 + name = "rmp" 432 + version = "0.8.11" 433 + source = "registry+https://github.com/rust-lang/crates.io-index" 434 + checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 435 + dependencies = [ 436 + "byteorder", 437 + "num-traits", 438 + "paste", 439 + ] 440 + 441 + [[package]] 442 + name = "rmpv" 443 + version = "0.4.7" 444 + source = "registry+https://github.com/rust-lang/crates.io-index" 445 + checksum = "7c760afe11955e16121e36485b6b828326c3f0eaff1c31758d96dbeb5cf09fd5" 446 + dependencies = [ 447 + "num-traits", 448 + "rmp", 449 + "serde", 450 + "serde_bytes", 451 + ] 452 + 453 + [[package]] 454 + name = "rustc-demangle" 455 + version = "0.1.23" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 458 + 459 + [[package]] 460 + name = "scopeguard" 461 + version = "1.1.0" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 464 + 465 + [[package]] 466 + name = "serde" 467 + version = "1.0.163" 468 + source = "registry+https://github.com/rust-lang/crates.io-index" 469 + checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 470 + 471 + [[package]] 472 + name = "serde_bytes" 473 + version = "0.11.9" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 476 + dependencies = [ 477 + "serde", 478 + ] 479 + 480 + [[package]] 481 + name = "serial_test" 482 + version = "2.0.0" 483 + source = "registry+https://github.com/rust-lang/crates.io-index" 484 + checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d" 485 + dependencies = [ 486 + "dashmap", 487 + "futures", 488 + "lazy_static", 489 + "log", 490 + "parking_lot", 491 + "serial_test_derive", 492 + ] 493 + 494 + [[package]] 495 + name = "serial_test_derive" 496 + version = "2.0.0" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" 499 + dependencies = [ 500 + "proc-macro2", 501 + "quote", 502 + "syn", 503 + ] 504 + 505 + [[package]] 506 + name = "simple-logging" 507 + version = "2.0.2" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "b00d48e85675326bb182a2286ea7c1a0b264333ae10f27a937a72be08628b542" 510 + dependencies = [ 511 + "lazy_static", 512 + "log", 513 + "thread-id", 514 + ] 515 + 516 + [[package]] 517 + name = "slab" 518 + version = "0.4.8" 519 + source = "registry+https://github.com/rust-lang/crates.io-index" 520 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 521 + dependencies = [ 522 + "autocfg", 523 + ] 524 + 525 + [[package]] 526 + name = "smallvec" 527 + version = "1.10.0" 528 + source = "registry+https://github.com/rust-lang/crates.io-index" 529 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 530 + 531 + [[package]] 532 + name = "sniprun" 533 + version = "1.3.3" 534 + dependencies = [ 535 + "close_fds", 536 + "dirs", 537 + "libc", 538 + "log", 539 + "log-panics", 540 + "neovim-lib", 541 + "regex", 542 + "serial_test", 543 + "simple-logging", 544 + "strip-ansi-escapes", 545 + "thiserror", 546 + "unindent", 547 + ] 548 + 549 + [[package]] 550 + name = "strip-ansi-escapes" 551 + version = "0.1.1" 552 + source = "registry+https://github.com/rust-lang/crates.io-index" 553 + checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" 554 + dependencies = [ 555 + "vte", 556 + ] 557 + 558 + [[package]] 559 + name = "syn" 560 + version = "2.0.16" 561 + source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 563 + dependencies = [ 564 + "proc-macro2", 565 + "quote", 566 + "unicode-ident", 567 + ] 568 + 569 + [[package]] 570 + name = "thiserror" 571 + version = "1.0.40" 572 + source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 574 + dependencies = [ 575 + "thiserror-impl", 576 + ] 577 + 578 + [[package]] 579 + name = "thiserror-impl" 580 + version = "1.0.40" 581 + source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 583 + dependencies = [ 584 + "proc-macro2", 585 + "quote", 586 + "syn", 587 + ] 588 + 589 + [[package]] 590 + name = "thread-id" 591 + version = "3.3.0" 592 + source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" 594 + dependencies = [ 595 + "libc", 596 + "redox_syscall 0.1.57", 597 + "winapi", 598 + ] 599 + 600 + [[package]] 601 + name = "unicode-ident" 602 + version = "1.0.8" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 605 + 606 + [[package]] 607 + name = "unindent" 608 + version = "0.2.1" 609 + source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "5aa30f5ea51ff7edfc797c6d3f9ec8cbd8cfedef5371766b7181d33977f4814f" 611 + 612 + [[package]] 613 + name = "unix_socket" 614 + version = "0.5.0" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "6aa2700417c405c38f5e6902d699345241c28c0b7ade4abaad71e35a87eb1564" 617 + dependencies = [ 618 + "cfg-if 0.1.10", 619 + "libc", 620 + ] 621 + 622 + [[package]] 623 + name = "utf8parse" 624 + version = "0.2.1" 625 + source = "registry+https://github.com/rust-lang/crates.io-index" 626 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 627 + 628 + [[package]] 629 + name = "vte" 630 + version = "0.10.1" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" 633 + dependencies = [ 634 + "arrayvec", 635 + "utf8parse", 636 + "vte_generate_state_changes", 637 + ] 638 + 639 + [[package]] 640 + name = "vte_generate_state_changes" 641 + version = "0.1.1" 642 + source = "registry+https://github.com/rust-lang/crates.io-index" 643 + checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 644 + dependencies = [ 645 + "proc-macro2", 646 + "quote", 647 + ] 648 + 649 + [[package]] 650 + name = "wasi" 651 + version = "0.11.0+wasi-snapshot-preview1" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 654 + 655 + [[package]] 656 + name = "winapi" 657 + version = "0.3.9" 658 + source = "registry+https://github.com/rust-lang/crates.io-index" 659 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 660 + dependencies = [ 661 + "winapi-i686-pc-windows-gnu", 662 + "winapi-x86_64-pc-windows-gnu", 663 + ] 664 + 665 + [[package]] 666 + name = "winapi-i686-pc-windows-gnu" 667 + version = "0.4.0" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 670 + 671 + [[package]] 672 + name = "winapi-x86_64-pc-windows-gnu" 673 + version = "0.4.0" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 676 + 677 + [[package]] 678 + name = "windows-sys" 679 + version = "0.45.0" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 682 + dependencies = [ 683 + "windows-targets 0.42.2", 684 + ] 685 + 686 + [[package]] 687 + name = "windows-sys" 688 + version = "0.48.0" 689 + source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 691 + dependencies = [ 692 + "windows-targets 0.48.0", 693 + ] 694 + 695 + [[package]] 696 + name = "windows-targets" 697 + version = "0.42.2" 698 + source = "registry+https://github.com/rust-lang/crates.io-index" 699 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 700 + dependencies = [ 701 + "windows_aarch64_gnullvm 0.42.2", 702 + "windows_aarch64_msvc 0.42.2", 703 + "windows_i686_gnu 0.42.2", 704 + "windows_i686_msvc 0.42.2", 705 + "windows_x86_64_gnu 0.42.2", 706 + "windows_x86_64_gnullvm 0.42.2", 707 + "windows_x86_64_msvc 0.42.2", 708 + ] 709 + 710 + [[package]] 711 + name = "windows-targets" 712 + version = "0.48.0" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 715 + dependencies = [ 716 + "windows_aarch64_gnullvm 0.48.0", 717 + "windows_aarch64_msvc 0.48.0", 718 + "windows_i686_gnu 0.48.0", 719 + "windows_i686_msvc 0.48.0", 720 + "windows_x86_64_gnu 0.48.0", 721 + "windows_x86_64_gnullvm 0.48.0", 722 + "windows_x86_64_msvc 0.48.0", 723 + ] 724 + 725 + [[package]] 726 + name = "windows_aarch64_gnullvm" 727 + version = "0.42.2" 728 + source = "registry+https://github.com/rust-lang/crates.io-index" 729 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 730 + 731 + [[package]] 732 + name = "windows_aarch64_gnullvm" 733 + version = "0.48.0" 734 + source = "registry+https://github.com/rust-lang/crates.io-index" 735 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 736 + 737 + [[package]] 738 + name = "windows_aarch64_msvc" 739 + version = "0.42.2" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 742 + 743 + [[package]] 744 + name = "windows_aarch64_msvc" 745 + version = "0.48.0" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 748 + 749 + [[package]] 750 + name = "windows_i686_gnu" 751 + version = "0.42.2" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 754 + 755 + [[package]] 756 + name = "windows_i686_gnu" 757 + version = "0.48.0" 758 + source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 760 + 761 + [[package]] 762 + name = "windows_i686_msvc" 763 + version = "0.42.2" 764 + source = "registry+https://github.com/rust-lang/crates.io-index" 765 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 766 + 767 + [[package]] 768 + name = "windows_i686_msvc" 769 + version = "0.48.0" 770 + source = "registry+https://github.com/rust-lang/crates.io-index" 771 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 772 + 773 + [[package]] 774 + name = "windows_x86_64_gnu" 775 + version = "0.42.2" 776 + source = "registry+https://github.com/rust-lang/crates.io-index" 777 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 778 + 779 + [[package]] 780 + name = "windows_x86_64_gnu" 781 + version = "0.48.0" 782 + source = "registry+https://github.com/rust-lang/crates.io-index" 783 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 784 + 785 + [[package]] 786 + name = "windows_x86_64_gnullvm" 787 + version = "0.42.2" 788 + source = "registry+https://github.com/rust-lang/crates.io-index" 789 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 790 + 791 + [[package]] 792 + name = "windows_x86_64_gnullvm" 793 + version = "0.48.0" 794 + source = "registry+https://github.com/rust-lang/crates.io-index" 795 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 796 + 797 + [[package]] 798 + name = "windows_x86_64_msvc" 799 + version = "0.42.2" 800 + source = "registry+https://github.com/rust-lang/crates.io-index" 801 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 802 + 803 + [[package]] 804 + name = "windows_x86_64_msvc" 805 + version = "0.48.0" 806 + source = "registry+https://github.com/rust-lang/crates.io-index" 807 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"