lol

bottom-rs: unstable-2021-04-27 -> 1.2.0, clean up

figsoda 550ac38a 743302be

+8 -800
-791
pkgs/tools/misc/bottom-rs/cargo-lock.patch
··· 1 - diff --git a/Cargo.lock b/Cargo.lock 2 - new file mode 100644 3 - index 0000000..edc9428 4 - --- /dev/null 5 - +++ b/Cargo.lock 6 - @@ -0,0 +1,785 @@ 7 - +# This file is automatically @generated by Cargo. 8 - +# It is not intended for manual editing. 9 - +[[package]] 10 - +name = "ansi_term" 11 - +version = "0.11.0" 12 - +source = "registry+https://github.com/rust-lang/crates.io-index" 13 - +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 14 - +dependencies = [ 15 - + "winapi", 16 - +] 17 - + 18 - +[[package]] 19 - +name = "anyhow" 20 - +version = "1.0.40" 21 - +source = "registry+https://github.com/rust-lang/crates.io-index" 22 - +checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b" 23 - + 24 - +[[package]] 25 - +name = "atty" 26 - +version = "0.2.14" 27 - +source = "registry+https://github.com/rust-lang/crates.io-index" 28 - +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 29 - +dependencies = [ 30 - + "hermit-abi", 31 - + "libc", 32 - + "winapi", 33 - +] 34 - + 35 - +[[package]] 36 - +name = "autocfg" 37 - +version = "1.0.1" 38 - +source = "registry+https://github.com/rust-lang/crates.io-index" 39 - +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 40 - + 41 - +[[package]] 42 - +name = "bitflags" 43 - +version = "1.2.1" 44 - +source = "registry+https://github.com/rust-lang/crates.io-index" 45 - +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 46 - + 47 - +[[package]] 48 - +name = "bottom-bench" 49 - +version = "0.1.0" 50 - +dependencies = [ 51 - + "bottomify", 52 - + "criterion", 53 - +] 54 - + 55 - +[[package]] 56 - +name = "bottomify" 57 - +version = "1.2.0" 58 - +dependencies = [ 59 - + "anyhow", 60 - + "clap", 61 - + "phf", 62 - + "phf_codegen", 63 - +] 64 - + 65 - +[[package]] 66 - +name = "bstr" 67 - +version = "0.2.15" 68 - +source = "registry+https://github.com/rust-lang/crates.io-index" 69 - +checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d" 70 - +dependencies = [ 71 - + "lazy_static", 72 - + "memchr", 73 - + "regex-automata", 74 - + "serde", 75 - +] 76 - + 77 - +[[package]] 78 - +name = "bumpalo" 79 - +version = "3.6.1" 80 - +source = "registry+https://github.com/rust-lang/crates.io-index" 81 - +checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe" 82 - + 83 - +[[package]] 84 - +name = "byteorder" 85 - +version = "1.4.3" 86 - +source = "registry+https://github.com/rust-lang/crates.io-index" 87 - +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 88 - + 89 - +[[package]] 90 - +name = "cast" 91 - +version = "0.2.5" 92 - +source = "registry+https://github.com/rust-lang/crates.io-index" 93 - +checksum = "cc38c385bfd7e444464011bb24820f40dd1c76bcdfa1b78611cb7c2e5cafab75" 94 - +dependencies = [ 95 - + "rustc_version", 96 - +] 97 - + 98 - +[[package]] 99 - +name = "cfg-if" 100 - +version = "1.0.0" 101 - +source = "registry+https://github.com/rust-lang/crates.io-index" 102 - +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 103 - + 104 - +[[package]] 105 - +name = "clap" 106 - +version = "2.33.3" 107 - +source = "registry+https://github.com/rust-lang/crates.io-index" 108 - +checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" 109 - +dependencies = [ 110 - + "ansi_term", 111 - + "atty", 112 - + "bitflags", 113 - + "strsim", 114 - + "textwrap", 115 - + "unicode-width", 116 - + "vec_map", 117 - +] 118 - + 119 - +[[package]] 120 - +name = "criterion" 121 - +version = "0.3.4" 122 - +source = "registry+https://github.com/rust-lang/crates.io-index" 123 - +checksum = "ab327ed7354547cc2ef43cbe20ef68b988e70b4b593cbd66a2a61733123a3d23" 124 - +dependencies = [ 125 - + "atty", 126 - + "cast", 127 - + "clap", 128 - + "criterion-plot", 129 - + "csv", 130 - + "itertools 0.10.0", 131 - + "lazy_static", 132 - + "num-traits", 133 - + "oorandom", 134 - + "plotters", 135 - + "rayon", 136 - + "regex", 137 - + "serde", 138 - + "serde_cbor", 139 - + "serde_derive", 140 - + "serde_json", 141 - + "tinytemplate", 142 - + "walkdir", 143 - +] 144 - + 145 - +[[package]] 146 - +name = "criterion-plot" 147 - +version = "0.4.3" 148 - +source = "registry+https://github.com/rust-lang/crates.io-index" 149 - +checksum = "e022feadec601fba1649cfa83586381a4ad31c6bf3a9ab7d408118b05dd9889d" 150 - +dependencies = [ 151 - + "cast", 152 - + "itertools 0.9.0", 153 - +] 154 - + 155 - +[[package]] 156 - +name = "crossbeam-channel" 157 - +version = "0.5.1" 158 - +source = "registry+https://github.com/rust-lang/crates.io-index" 159 - +checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" 160 - +dependencies = [ 161 - + "cfg-if", 162 - + "crossbeam-utils", 163 - +] 164 - + 165 - +[[package]] 166 - +name = "crossbeam-deque" 167 - +version = "0.8.0" 168 - +source = "registry+https://github.com/rust-lang/crates.io-index" 169 - +checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" 170 - +dependencies = [ 171 - + "cfg-if", 172 - + "crossbeam-epoch", 173 - + "crossbeam-utils", 174 - +] 175 - + 176 - +[[package]] 177 - +name = "crossbeam-epoch" 178 - +version = "0.9.3" 179 - +source = "registry+https://github.com/rust-lang/crates.io-index" 180 - +checksum = "2584f639eb95fea8c798496315b297cf81b9b58b6d30ab066a75455333cf4b12" 181 - +dependencies = [ 182 - + "cfg-if", 183 - + "crossbeam-utils", 184 - + "lazy_static", 185 - + "memoffset", 186 - + "scopeguard", 187 - +] 188 - + 189 - +[[package]] 190 - +name = "crossbeam-utils" 191 - +version = "0.8.3" 192 - +source = "registry+https://github.com/rust-lang/crates.io-index" 193 - +checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49" 194 - +dependencies = [ 195 - + "autocfg", 196 - + "cfg-if", 197 - + "lazy_static", 198 - +] 199 - + 200 - +[[package]] 201 - +name = "csv" 202 - +version = "1.1.6" 203 - +source = "registry+https://github.com/rust-lang/crates.io-index" 204 - +checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 205 - +dependencies = [ 206 - + "bstr", 207 - + "csv-core", 208 - + "itoa", 209 - + "ryu", 210 - + "serde", 211 - +] 212 - + 213 - +[[package]] 214 - +name = "csv-core" 215 - +version = "0.1.10" 216 - +source = "registry+https://github.com/rust-lang/crates.io-index" 217 - +checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 218 - +dependencies = [ 219 - + "memchr", 220 - +] 221 - + 222 - +[[package]] 223 - +name = "either" 224 - +version = "1.6.1" 225 - +source = "registry+https://github.com/rust-lang/crates.io-index" 226 - +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 227 - + 228 - +[[package]] 229 - +name = "getrandom" 230 - +version = "0.1.16" 231 - +source = "registry+https://github.com/rust-lang/crates.io-index" 232 - +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 233 - +dependencies = [ 234 - + "cfg-if", 235 - + "libc", 236 - + "wasi", 237 - +] 238 - + 239 - +[[package]] 240 - +name = "half" 241 - +version = "1.7.1" 242 - +source = "registry+https://github.com/rust-lang/crates.io-index" 243 - +checksum = "62aca2aba2d62b4a7f5b33f3712cb1b0692779a56fb510499d5c0aa594daeaf3" 244 - + 245 - +[[package]] 246 - +name = "hermit-abi" 247 - +version = "0.1.18" 248 - +source = "registry+https://github.com/rust-lang/crates.io-index" 249 - +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" 250 - +dependencies = [ 251 - + "libc", 252 - +] 253 - + 254 - +[[package]] 255 - +name = "itertools" 256 - +version = "0.9.0" 257 - +source = "registry+https://github.com/rust-lang/crates.io-index" 258 - +checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 259 - +dependencies = [ 260 - + "either", 261 - +] 262 - + 263 - +[[package]] 264 - +name = "itertools" 265 - +version = "0.10.0" 266 - +source = "registry+https://github.com/rust-lang/crates.io-index" 267 - +checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319" 268 - +dependencies = [ 269 - + "either", 270 - +] 271 - + 272 - +[[package]] 273 - +name = "itoa" 274 - +version = "0.4.7" 275 - +source = "registry+https://github.com/rust-lang/crates.io-index" 276 - +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" 277 - + 278 - +[[package]] 279 - +name = "js-sys" 280 - +version = "0.3.50" 281 - +source = "registry+https://github.com/rust-lang/crates.io-index" 282 - +checksum = "2d99f9e3e84b8f67f846ef5b4cbbc3b1c29f6c759fcbce6f01aa0e73d932a24c" 283 - +dependencies = [ 284 - + "wasm-bindgen", 285 - +] 286 - + 287 - +[[package]] 288 - +name = "lazy_static" 289 - +version = "1.4.0" 290 - +source = "registry+https://github.com/rust-lang/crates.io-index" 291 - +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 292 - + 293 - +[[package]] 294 - +name = "libc" 295 - +version = "0.2.94" 296 - +source = "registry+https://github.com/rust-lang/crates.io-index" 297 - +checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e" 298 - + 299 - +[[package]] 300 - +name = "log" 301 - +version = "0.4.14" 302 - +source = "registry+https://github.com/rust-lang/crates.io-index" 303 - +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 304 - +dependencies = [ 305 - + "cfg-if", 306 - +] 307 - + 308 - +[[package]] 309 - +name = "memchr" 310 - +version = "2.3.4" 311 - +source = "registry+https://github.com/rust-lang/crates.io-index" 312 - +checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 313 - + 314 - +[[package]] 315 - +name = "memoffset" 316 - +version = "0.6.3" 317 - +source = "registry+https://github.com/rust-lang/crates.io-index" 318 - +checksum = "f83fb6581e8ed1f85fd45c116db8405483899489e38406156c25eb743554361d" 319 - +dependencies = [ 320 - + "autocfg", 321 - +] 322 - + 323 - +[[package]] 324 - +name = "num-traits" 325 - +version = "0.2.14" 326 - +source = "registry+https://github.com/rust-lang/crates.io-index" 327 - +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 328 - +dependencies = [ 329 - + "autocfg", 330 - +] 331 - + 332 - +[[package]] 333 - +name = "num_cpus" 334 - +version = "1.13.0" 335 - +source = "registry+https://github.com/rust-lang/crates.io-index" 336 - +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 337 - +dependencies = [ 338 - + "hermit-abi", 339 - + "libc", 340 - +] 341 - + 342 - +[[package]] 343 - +name = "oorandom" 344 - +version = "11.1.3" 345 - +source = "registry+https://github.com/rust-lang/crates.io-index" 346 - +checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 347 - + 348 - +[[package]] 349 - +name = "phf" 350 - +version = "0.8.0" 351 - +source = "registry+https://github.com/rust-lang/crates.io-index" 352 - +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 353 - +dependencies = [ 354 - + "phf_shared", 355 - +] 356 - + 357 - +[[package]] 358 - +name = "phf_codegen" 359 - +version = "0.8.0" 360 - +source = "registry+https://github.com/rust-lang/crates.io-index" 361 - +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 362 - +dependencies = [ 363 - + "phf_generator", 364 - + "phf_shared", 365 - +] 366 - + 367 - +[[package]] 368 - +name = "phf_generator" 369 - +version = "0.8.0" 370 - +source = "registry+https://github.com/rust-lang/crates.io-index" 371 - +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 372 - +dependencies = [ 373 - + "phf_shared", 374 - + "rand", 375 - +] 376 - + 377 - +[[package]] 378 - +name = "phf_shared" 379 - +version = "0.8.0" 380 - +source = "registry+https://github.com/rust-lang/crates.io-index" 381 - +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 382 - +dependencies = [ 383 - + "siphasher", 384 - +] 385 - + 386 - +[[package]] 387 - +name = "plotters" 388 - +version = "0.3.0" 389 - +source = "registry+https://github.com/rust-lang/crates.io-index" 390 - +checksum = "45ca0ae5f169d0917a7c7f5a9c1a3d3d9598f18f529dd2b8373ed988efea307a" 391 - +dependencies = [ 392 - + "num-traits", 393 - + "plotters-backend", 394 - + "plotters-svg", 395 - + "wasm-bindgen", 396 - + "web-sys", 397 - +] 398 - + 399 - +[[package]] 400 - +name = "plotters-backend" 401 - +version = "0.3.0" 402 - +source = "registry+https://github.com/rust-lang/crates.io-index" 403 - +checksum = "b07fffcddc1cb3a1de753caa4e4df03b79922ba43cf882acc1bdd7e8df9f4590" 404 - + 405 - +[[package]] 406 - +name = "plotters-svg" 407 - +version = "0.3.0" 408 - +source = "registry+https://github.com/rust-lang/crates.io-index" 409 - +checksum = "b38a02e23bd9604b842a812063aec4ef702b57989c37b655254bb61c471ad211" 410 - +dependencies = [ 411 - + "plotters-backend", 412 - +] 413 - + 414 - +[[package]] 415 - +name = "ppv-lite86" 416 - +version = "0.2.10" 417 - +source = "registry+https://github.com/rust-lang/crates.io-index" 418 - +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 419 - + 420 - +[[package]] 421 - +name = "proc-macro2" 422 - +version = "1.0.26" 423 - +source = "registry+https://github.com/rust-lang/crates.io-index" 424 - +checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" 425 - +dependencies = [ 426 - + "unicode-xid", 427 - +] 428 - + 429 - +[[package]] 430 - +name = "quote" 431 - +version = "1.0.9" 432 - +source = "registry+https://github.com/rust-lang/crates.io-index" 433 - +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 434 - +dependencies = [ 435 - + "proc-macro2", 436 - +] 437 - + 438 - +[[package]] 439 - +name = "rand" 440 - +version = "0.7.3" 441 - +source = "registry+https://github.com/rust-lang/crates.io-index" 442 - +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 443 - +dependencies = [ 444 - + "getrandom", 445 - + "libc", 446 - + "rand_chacha", 447 - + "rand_core", 448 - + "rand_hc", 449 - + "rand_pcg", 450 - +] 451 - + 452 - +[[package]] 453 - +name = "rand_chacha" 454 - +version = "0.2.2" 455 - +source = "registry+https://github.com/rust-lang/crates.io-index" 456 - +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 457 - +dependencies = [ 458 - + "ppv-lite86", 459 - + "rand_core", 460 - +] 461 - + 462 - +[[package]] 463 - +name = "rand_core" 464 - +version = "0.5.1" 465 - +source = "registry+https://github.com/rust-lang/crates.io-index" 466 - +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 467 - +dependencies = [ 468 - + "getrandom", 469 - +] 470 - + 471 - +[[package]] 472 - +name = "rand_hc" 473 - +version = "0.2.0" 474 - +source = "registry+https://github.com/rust-lang/crates.io-index" 475 - +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 476 - +dependencies = [ 477 - + "rand_core", 478 - +] 479 - + 480 - +[[package]] 481 - +name = "rand_pcg" 482 - +version = "0.2.1" 483 - +source = "registry+https://github.com/rust-lang/crates.io-index" 484 - +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 485 - +dependencies = [ 486 - + "rand_core", 487 - +] 488 - + 489 - +[[package]] 490 - +name = "rayon" 491 - +version = "1.5.0" 492 - +source = "registry+https://github.com/rust-lang/crates.io-index" 493 - +checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" 494 - +dependencies = [ 495 - + "autocfg", 496 - + "crossbeam-deque", 497 - + "either", 498 - + "rayon-core", 499 - +] 500 - + 501 - +[[package]] 502 - +name = "rayon-core" 503 - +version = "1.9.0" 504 - +source = "registry+https://github.com/rust-lang/crates.io-index" 505 - +checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" 506 - +dependencies = [ 507 - + "crossbeam-channel", 508 - + "crossbeam-deque", 509 - + "crossbeam-utils", 510 - + "lazy_static", 511 - + "num_cpus", 512 - +] 513 - + 514 - +[[package]] 515 - +name = "regex" 516 - +version = "1.4.6" 517 - +source = "registry+https://github.com/rust-lang/crates.io-index" 518 - +checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759" 519 - +dependencies = [ 520 - + "regex-syntax", 521 - +] 522 - + 523 - +[[package]] 524 - +name = "regex-automata" 525 - +version = "0.1.9" 526 - +source = "registry+https://github.com/rust-lang/crates.io-index" 527 - +checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4" 528 - +dependencies = [ 529 - + "byteorder", 530 - +] 531 - + 532 - +[[package]] 533 - +name = "regex-syntax" 534 - +version = "0.6.23" 535 - +source = "registry+https://github.com/rust-lang/crates.io-index" 536 - +checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548" 537 - + 538 - +[[package]] 539 - +name = "rustc_version" 540 - +version = "0.2.3" 541 - +source = "registry+https://github.com/rust-lang/crates.io-index" 542 - +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 543 - +dependencies = [ 544 - + "semver", 545 - +] 546 - + 547 - +[[package]] 548 - +name = "ryu" 549 - +version = "1.0.5" 550 - +source = "registry+https://github.com/rust-lang/crates.io-index" 551 - +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 552 - + 553 - +[[package]] 554 - +name = "same-file" 555 - +version = "1.0.6" 556 - +source = "registry+https://github.com/rust-lang/crates.io-index" 557 - +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 558 - +dependencies = [ 559 - + "winapi-util", 560 - +] 561 - + 562 - +[[package]] 563 - +name = "scopeguard" 564 - +version = "1.1.0" 565 - +source = "registry+https://github.com/rust-lang/crates.io-index" 566 - +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 567 - + 568 - +[[package]] 569 - +name = "semver" 570 - +version = "0.9.0" 571 - +source = "registry+https://github.com/rust-lang/crates.io-index" 572 - +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 573 - +dependencies = [ 574 - + "semver-parser", 575 - +] 576 - + 577 - +[[package]] 578 - +name = "semver-parser" 579 - +version = "0.7.0" 580 - +source = "registry+https://github.com/rust-lang/crates.io-index" 581 - +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 582 - + 583 - +[[package]] 584 - +name = "serde" 585 - +version = "1.0.125" 586 - +source = "registry+https://github.com/rust-lang/crates.io-index" 587 - +checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" 588 - + 589 - +[[package]] 590 - +name = "serde_cbor" 591 - +version = "0.11.1" 592 - +source = "registry+https://github.com/rust-lang/crates.io-index" 593 - +checksum = "1e18acfa2f90e8b735b2836ab8d538de304cbb6729a7360729ea5a895d15a622" 594 - +dependencies = [ 595 - + "half", 596 - + "serde", 597 - +] 598 - + 599 - +[[package]] 600 - +name = "serde_derive" 601 - +version = "1.0.125" 602 - +source = "registry+https://github.com/rust-lang/crates.io-index" 603 - +checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" 604 - +dependencies = [ 605 - + "proc-macro2", 606 - + "quote", 607 - + "syn", 608 - +] 609 - + 610 - +[[package]] 611 - +name = "serde_json" 612 - +version = "1.0.64" 613 - +source = "registry+https://github.com/rust-lang/crates.io-index" 614 - +checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" 615 - +dependencies = [ 616 - + "itoa", 617 - + "ryu", 618 - + "serde", 619 - +] 620 - + 621 - +[[package]] 622 - +name = "siphasher" 623 - +version = "0.3.5" 624 - +source = "registry+https://github.com/rust-lang/crates.io-index" 625 - +checksum = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27" 626 - + 627 - +[[package]] 628 - +name = "strsim" 629 - +version = "0.8.0" 630 - +source = "registry+https://github.com/rust-lang/crates.io-index" 631 - +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 632 - + 633 - +[[package]] 634 - +name = "syn" 635 - +version = "1.0.70" 636 - +source = "registry+https://github.com/rust-lang/crates.io-index" 637 - +checksum = "b9505f307c872bab8eb46f77ae357c8eba1fdacead58ee5a850116b1d7f82883" 638 - +dependencies = [ 639 - + "proc-macro2", 640 - + "quote", 641 - + "unicode-xid", 642 - +] 643 - + 644 - +[[package]] 645 - +name = "textwrap" 646 - +version = "0.11.0" 647 - +source = "registry+https://github.com/rust-lang/crates.io-index" 648 - +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 649 - +dependencies = [ 650 - + "unicode-width", 651 - +] 652 - + 653 - +[[package]] 654 - +name = "tinytemplate" 655 - +version = "1.2.1" 656 - +source = "registry+https://github.com/rust-lang/crates.io-index" 657 - +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 658 - +dependencies = [ 659 - + "serde", 660 - + "serde_json", 661 - +] 662 - + 663 - +[[package]] 664 - +name = "unicode-width" 665 - +version = "0.1.8" 666 - +source = "registry+https://github.com/rust-lang/crates.io-index" 667 - +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" 668 - + 669 - +[[package]] 670 - +name = "unicode-xid" 671 - +version = "0.2.1" 672 - +source = "registry+https://github.com/rust-lang/crates.io-index" 673 - +checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 674 - + 675 - +[[package]] 676 - +name = "vec_map" 677 - +version = "0.8.2" 678 - +source = "registry+https://github.com/rust-lang/crates.io-index" 679 - +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 680 - + 681 - +[[package]] 682 - +name = "walkdir" 683 - +version = "2.3.2" 684 - +source = "registry+https://github.com/rust-lang/crates.io-index" 685 - +checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 686 - +dependencies = [ 687 - + "same-file", 688 - + "winapi", 689 - + "winapi-util", 690 - +] 691 - + 692 - +[[package]] 693 - +name = "wasi" 694 - +version = "0.9.0+wasi-snapshot-preview1" 695 - +source = "registry+https://github.com/rust-lang/crates.io-index" 696 - +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 697 - + 698 - +[[package]] 699 - +name = "wasm-bindgen" 700 - +version = "0.2.73" 701 - +source = "registry+https://github.com/rust-lang/crates.io-index" 702 - +checksum = "83240549659d187488f91f33c0f8547cbfef0b2088bc470c116d1d260ef623d9" 703 - +dependencies = [ 704 - + "cfg-if", 705 - + "wasm-bindgen-macro", 706 - +] 707 - + 708 - +[[package]] 709 - +name = "wasm-bindgen-backend" 710 - +version = "0.2.73" 711 - +source = "registry+https://github.com/rust-lang/crates.io-index" 712 - +checksum = "ae70622411ca953215ca6d06d3ebeb1e915f0f6613e3b495122878d7ebec7dae" 713 - +dependencies = [ 714 - + "bumpalo", 715 - + "lazy_static", 716 - + "log", 717 - + "proc-macro2", 718 - + "quote", 719 - + "syn", 720 - + "wasm-bindgen-shared", 721 - +] 722 - + 723 - +[[package]] 724 - +name = "wasm-bindgen-macro" 725 - +version = "0.2.73" 726 - +source = "registry+https://github.com/rust-lang/crates.io-index" 727 - +checksum = "3e734d91443f177bfdb41969de821e15c516931c3c3db3d318fa1b68975d0f6f" 728 - +dependencies = [ 729 - + "quote", 730 - + "wasm-bindgen-macro-support", 731 - +] 732 - + 733 - +[[package]] 734 - +name = "wasm-bindgen-macro-support" 735 - +version = "0.2.73" 736 - +source = "registry+https://github.com/rust-lang/crates.io-index" 737 - +checksum = "d53739ff08c8a68b0fdbcd54c372b8ab800b1449ab3c9d706503bc7dd1621b2c" 738 - +dependencies = [ 739 - + "proc-macro2", 740 - + "quote", 741 - + "syn", 742 - + "wasm-bindgen-backend", 743 - + "wasm-bindgen-shared", 744 - +] 745 - + 746 - +[[package]] 747 - +name = "wasm-bindgen-shared" 748 - +version = "0.2.73" 749 - +source = "registry+https://github.com/rust-lang/crates.io-index" 750 - +checksum = "d9a543ae66aa233d14bb765ed9af4a33e81b8b58d1584cf1b47ff8cd0b9e4489" 751 - + 752 - +[[package]] 753 - +name = "web-sys" 754 - +version = "0.3.50" 755 - +source = "registry+https://github.com/rust-lang/crates.io-index" 756 - +checksum = "a905d57e488fec8861446d3393670fb50d27a262344013181c2cdf9fff5481be" 757 - +dependencies = [ 758 - + "js-sys", 759 - + "wasm-bindgen", 760 - +] 761 - + 762 - +[[package]] 763 - +name = "winapi" 764 - +version = "0.3.9" 765 - +source = "registry+https://github.com/rust-lang/crates.io-index" 766 - +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 767 - +dependencies = [ 768 - + "winapi-i686-pc-windows-gnu", 769 - + "winapi-x86_64-pc-windows-gnu", 770 - +] 771 - + 772 - +[[package]] 773 - +name = "winapi-i686-pc-windows-gnu" 774 - +version = "0.4.0" 775 - +source = "registry+https://github.com/rust-lang/crates.io-index" 776 - +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 777 - + 778 - +[[package]] 779 - +name = "winapi-util" 780 - +version = "0.1.5" 781 - +source = "registry+https://github.com/rust-lang/crates.io-index" 782 - +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 783 - +dependencies = [ 784 - + "winapi", 785 - +] 786 - + 787 - +[[package]] 788 - +name = "winapi-x86_64-pc-windows-gnu" 789 - +version = "0.4.0" 790 - +source = "registry+https://github.com/rust-lang/crates.io-index" 791 - +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+8 -9
pkgs/tools/misc/bottom-rs/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { lib, rustPlatform, fetchCrate }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "bottom-rs"; 5 - version = "unstable-2021-04-27"; 5 + version = "1.2.0"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "bottom-software-foundation"; 9 - repo = pname; 10 - rev = "3451cdadd7c4e64fe8e7f43e986a18628a741dec"; 11 - sha256 = "0kr18q80021s1n9zzzff6w6yvbbjnk6zbbabi5b42b0rfv6fnfn2"; 7 + src = fetchCrate { 8 + inherit version; 9 + crateName = "bottomify"; 10 + sha256 = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc="; 12 11 }; 13 12 14 - cargoPatches = [ ./cargo-lock.patch ]; 15 - cargoSha256 = "0nyzg6pg69bf9vvc3r5lnhmkb9s1508c1gqcra3y43zffdlwml1y"; 13 + cargoSha256 = "sha256-7xD65ookkK09XwCBH6fXqmWRYlmvpwAocojBg/dHzUI="; 16 14 17 15 meta = with lib; { 18 16 description = "Fantastic (maybe) CLI for translating between bottom and human-readable text"; 19 17 homepage = "https://github.com/bottom-software-foundation/bottom-rs"; 20 18 license = licenses.mit; 21 19 maintainers = with maintainers; [ winterqt ]; 20 + mainProgram = "bottomify"; 22 21 }; 23 22 }