Merge pull request #243603 from misuzu/alfis-update

alfis: 0.8.3 -> 0.8.4

authored by

Weijia Wang and committed by
GitHub
b32c7620 2001de14

+1928 -12
+1920
pkgs/applications/blockchains/alfis/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 = "aead" 13 + version = "0.3.2" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 16 + dependencies = [ 17 + "generic-array", 18 + ] 19 + 20 + [[package]] 21 + name = "aead" 22 + version = "0.4.3" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 25 + dependencies = [ 26 + "generic-array", 27 + ] 28 + 29 + [[package]] 30 + name = "aes" 31 + version = "0.6.0" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" 34 + dependencies = [ 35 + "aes-soft", 36 + "aesni", 37 + "cipher 0.2.5", 38 + ] 39 + 40 + [[package]] 41 + name = "aes-gcm" 42 + version = "0.8.0" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 45 + dependencies = [ 46 + "aead 0.3.2", 47 + "aes", 48 + "cipher 0.2.5", 49 + "ctr", 50 + "ghash", 51 + "subtle", 52 + ] 53 + 54 + [[package]] 55 + name = "aes-soft" 56 + version = "0.6.4" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 59 + dependencies = [ 60 + "cipher 0.2.5", 61 + "opaque-debug", 62 + ] 63 + 64 + [[package]] 65 + name = "aesni" 66 + version = "0.10.0" 67 + source = "registry+https://github.com/rust-lang/crates.io-index" 68 + checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 69 + dependencies = [ 70 + "cipher 0.2.5", 71 + "opaque-debug", 72 + ] 73 + 74 + [[package]] 75 + name = "ahash" 76 + version = "0.8.3" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 79 + dependencies = [ 80 + "cfg-if", 81 + "once_cell", 82 + "version_check", 83 + ] 84 + 85 + [[package]] 86 + name = "alfis" 87 + version = "0.8.4" 88 + dependencies = [ 89 + "base64 0.21.0", 90 + "bincode", 91 + "blakeout", 92 + "byteorder", 93 + "chacha20poly1305", 94 + "chrono", 95 + "derive_more", 96 + "digest 0.10.5", 97 + "ecies-ed25519", 98 + "ed25519-dalek", 99 + "getopts", 100 + "lazy_static", 101 + "log", 102 + "lru", 103 + "mio", 104 + "num-bigint", 105 + "num-traits", 106 + "num_cpus", 107 + "open", 108 + "rand 0.7.3", 109 + "rand 0.8.5", 110 + "serde", 111 + "serde_bytes", 112 + "serde_cbor", 113 + "serde_derive", 114 + "serde_json", 115 + "sha2 0.10.6", 116 + "signature 2.0.0", 117 + "simplelog", 118 + "spmc", 119 + "sqlite", 120 + "thread-priority", 121 + "time 0.3.14", 122 + "tinyfiledialogs", 123 + "toml 0.7.2", 124 + "ureq", 125 + "uuid", 126 + "web-view", 127 + "winapi", 128 + "winres", 129 + "x25519-dalek", 130 + ] 131 + 132 + [[package]] 133 + name = "android_system_properties" 134 + version = "0.1.5" 135 + source = "registry+https://github.com/rust-lang/crates.io-index" 136 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 137 + dependencies = [ 138 + "libc", 139 + ] 140 + 141 + [[package]] 142 + name = "atk-sys" 143 + version = "0.10.0" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "f530e4af131d94cc4fa15c5c9d0348f0ef28bac64ba660b6b2a1cf2605dedfce" 146 + dependencies = [ 147 + "glib-sys", 148 + "gobject-sys", 149 + "libc", 150 + "system-deps", 151 + ] 152 + 153 + [[package]] 154 + name = "autocfg" 155 + version = "1.0.1" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 158 + 159 + [[package]] 160 + name = "base64" 161 + version = "0.13.1" 162 + source = "registry+https://github.com/rust-lang/crates.io-index" 163 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 164 + 165 + [[package]] 166 + name = "base64" 167 + version = "0.21.0" 168 + source = "registry+https://github.com/rust-lang/crates.io-index" 169 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 170 + 171 + [[package]] 172 + name = "bincode" 173 + version = "1.3.3" 174 + source = "registry+https://github.com/rust-lang/crates.io-index" 175 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 176 + dependencies = [ 177 + "serde", 178 + ] 179 + 180 + [[package]] 181 + name = "bitflags" 182 + version = "1.3.2" 183 + source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 185 + 186 + [[package]] 187 + name = "blake2" 188 + version = "0.9.2" 189 + source = "registry+https://github.com/rust-lang/crates.io-index" 190 + checksum = "0a4e37d16930f5459780f5621038b6382b9bb37c19016f39fb6b5808d831f174" 191 + dependencies = [ 192 + "crypto-mac 0.8.0", 193 + "digest 0.9.0", 194 + "opaque-debug", 195 + ] 196 + 197 + [[package]] 198 + name = "blakeout" 199 + version = "0.3.0" 200 + source = "registry+https://github.com/rust-lang/crates.io-index" 201 + checksum = "81efe7c4220f454dd7fb0eeea7f44f0eb7785dae55115c8fad02b52ef578ac37" 202 + dependencies = [ 203 + "blake2", 204 + "digest 0.9.0", 205 + ] 206 + 207 + [[package]] 208 + name = "block-buffer" 209 + version = "0.9.0" 210 + source = "registry+https://github.com/rust-lang/crates.io-index" 211 + checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 212 + dependencies = [ 213 + "generic-array", 214 + ] 215 + 216 + [[package]] 217 + name = "block-buffer" 218 + version = "0.10.0" 219 + source = "registry+https://github.com/rust-lang/crates.io-index" 220 + checksum = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95" 221 + dependencies = [ 222 + "generic-array", 223 + ] 224 + 225 + [[package]] 226 + name = "boxfnonce" 227 + version = "0.1.1" 228 + source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "5988cb1d626264ac94100be357308f29ff7cbdd3b36bda27f450a4ee3f713426" 230 + 231 + [[package]] 232 + name = "bumpalo" 233 + version = "3.8.0" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c" 236 + 237 + [[package]] 238 + name = "byteorder" 239 + version = "1.4.3" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 242 + 243 + [[package]] 244 + name = "cairo-sys-rs" 245 + version = "0.10.0" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7" 248 + dependencies = [ 249 + "libc", 250 + "system-deps", 251 + ] 252 + 253 + [[package]] 254 + name = "cc" 255 + version = "1.0.71" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd" 258 + 259 + [[package]] 260 + name = "cfg-if" 261 + version = "1.0.0" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 264 + 265 + [[package]] 266 + name = "chacha20" 267 + version = "0.8.1" 268 + source = "registry+https://github.com/rust-lang/crates.io-index" 269 + checksum = "01b72a433d0cf2aef113ba70f62634c56fddb0f244e6377185c56a7cadbd8f91" 270 + dependencies = [ 271 + "cfg-if", 272 + "cipher 0.3.0", 273 + "cpufeatures", 274 + "zeroize", 275 + ] 276 + 277 + [[package]] 278 + name = "chacha20poly1305" 279 + version = "0.9.1" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" 282 + dependencies = [ 283 + "aead 0.4.3", 284 + "chacha20", 285 + "cipher 0.3.0", 286 + "poly1305", 287 + "zeroize", 288 + ] 289 + 290 + [[package]] 291 + name = "chrono" 292 + version = "0.4.22" 293 + source = "registry+https://github.com/rust-lang/crates.io-index" 294 + checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" 295 + dependencies = [ 296 + "iana-time-zone", 297 + "js-sys", 298 + "num-integer", 299 + "num-traits", 300 + "serde", 301 + "time 0.1.44", 302 + "wasm-bindgen", 303 + "winapi", 304 + ] 305 + 306 + [[package]] 307 + name = "chunked_transfer" 308 + version = "1.4.0" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e" 311 + 312 + [[package]] 313 + name = "cipher" 314 + version = "0.2.5" 315 + source = "registry+https://github.com/rust-lang/crates.io-index" 316 + checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 317 + dependencies = [ 318 + "generic-array", 319 + ] 320 + 321 + [[package]] 322 + name = "cipher" 323 + version = "0.3.0" 324 + source = "registry+https://github.com/rust-lang/crates.io-index" 325 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 326 + dependencies = [ 327 + "generic-array", 328 + ] 329 + 330 + [[package]] 331 + name = "convert_case" 332 + version = "0.4.0" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 335 + 336 + [[package]] 337 + name = "core-foundation-sys" 338 + version = "0.8.3" 339 + source = "registry+https://github.com/rust-lang/crates.io-index" 340 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 341 + 342 + [[package]] 343 + name = "cpufeatures" 344 + version = "0.2.1" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 347 + dependencies = [ 348 + "libc", 349 + ] 350 + 351 + [[package]] 352 + name = "cpuid-bool" 353 + version = "0.2.0" 354 + source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 356 + 357 + [[package]] 358 + name = "crc32fast" 359 + version = "1.3.0" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "738c290dfaea84fc1ca15ad9c168d083b05a714e1efddd8edaab678dc28d2836" 362 + dependencies = [ 363 + "cfg-if", 364 + ] 365 + 366 + [[package]] 367 + name = "crypto-common" 368 + version = "0.1.3" 369 + source = "registry+https://github.com/rust-lang/crates.io-index" 370 + checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 371 + dependencies = [ 372 + "generic-array", 373 + "typenum", 374 + ] 375 + 376 + [[package]] 377 + name = "crypto-mac" 378 + version = "0.8.0" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 381 + dependencies = [ 382 + "generic-array", 383 + "subtle", 384 + ] 385 + 386 + [[package]] 387 + name = "crypto-mac" 388 + version = "0.10.1" 389 + source = "registry+https://github.com/rust-lang/crates.io-index" 390 + checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 391 + dependencies = [ 392 + "generic-array", 393 + "subtle", 394 + ] 395 + 396 + [[package]] 397 + name = "ctr" 398 + version = "0.6.0" 399 + source = "registry+https://github.com/rust-lang/crates.io-index" 400 + checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 401 + dependencies = [ 402 + "cipher 0.2.5", 403 + ] 404 + 405 + [[package]] 406 + name = "curve25519-dalek" 407 + version = "3.2.0" 408 + source = "registry+https://github.com/rust-lang/crates.io-index" 409 + checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" 410 + dependencies = [ 411 + "byteorder", 412 + "digest 0.9.0", 413 + "rand_core 0.5.1", 414 + "subtle", 415 + "zeroize", 416 + ] 417 + 418 + [[package]] 419 + name = "derive_more" 420 + version = "0.99.17" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 423 + dependencies = [ 424 + "convert_case", 425 + "proc-macro2", 426 + "quote", 427 + "rustc_version", 428 + "syn", 429 + ] 430 + 431 + [[package]] 432 + name = "digest" 433 + version = "0.9.0" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 436 + dependencies = [ 437 + "generic-array", 438 + ] 439 + 440 + [[package]] 441 + name = "digest" 442 + version = "0.10.5" 443 + source = "registry+https://github.com/rust-lang/crates.io-index" 444 + checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" 445 + dependencies = [ 446 + "block-buffer 0.10.0", 447 + "crypto-common", 448 + ] 449 + 450 + [[package]] 451 + name = "ecies-ed25519" 452 + version = "0.5.1" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "0a882353828f086290bedd0b598e18863a4d2135f8e632c4325ed89a4e5535db" 455 + dependencies = [ 456 + "aes-gcm", 457 + "curve25519-dalek", 458 + "digest 0.9.0", 459 + "hex", 460 + "hkdf", 461 + "rand 0.7.3", 462 + "sha2 0.9.8", 463 + "thiserror", 464 + "zeroize", 465 + ] 466 + 467 + [[package]] 468 + name = "ed25519" 469 + version = "1.2.0" 470 + source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "4620d40f6d2601794401d6dd95a5cf69b6c157852539470eeda433a99b3c0efc" 472 + dependencies = [ 473 + "signature 1.6.0", 474 + ] 475 + 476 + [[package]] 477 + name = "ed25519-dalek" 478 + version = "1.0.1" 479 + source = "registry+https://github.com/rust-lang/crates.io-index" 480 + checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" 481 + dependencies = [ 482 + "curve25519-dalek", 483 + "ed25519", 484 + "rand 0.7.3", 485 + "serde", 486 + "sha2 0.9.8", 487 + "zeroize", 488 + ] 489 + 490 + [[package]] 491 + name = "flate2" 492 + version = "1.0.22" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f" 495 + dependencies = [ 496 + "cfg-if", 497 + "crc32fast", 498 + "libc", 499 + "miniz_oxide", 500 + ] 501 + 502 + [[package]] 503 + name = "form_urlencoded" 504 + version = "1.0.1" 505 + source = "registry+https://github.com/rust-lang/crates.io-index" 506 + checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 507 + dependencies = [ 508 + "matches", 509 + "percent-encoding", 510 + ] 511 + 512 + [[package]] 513 + name = "gdk-pixbuf-sys" 514 + version = "0.10.0" 515 + source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "3bfe468a7f43e97b8d193a762b6c5cf67a7d36cacbc0b9291dbcae24bfea1e8f" 517 + dependencies = [ 518 + "gio-sys", 519 + "glib-sys", 520 + "gobject-sys", 521 + "libc", 522 + "system-deps", 523 + ] 524 + 525 + [[package]] 526 + name = "gdk-sys" 527 + version = "0.10.0" 528 + source = "registry+https://github.com/rust-lang/crates.io-index" 529 + checksum = "0a9653cfc500fd268015b1ac055ddbc3df7a5c9ea3f4ccef147b3957bd140d69" 530 + dependencies = [ 531 + "cairo-sys-rs", 532 + "gdk-pixbuf-sys", 533 + "gio-sys", 534 + "glib-sys", 535 + "gobject-sys", 536 + "libc", 537 + "pango-sys", 538 + "pkg-config", 539 + "system-deps", 540 + ] 541 + 542 + [[package]] 543 + name = "generic-array" 544 + version = "0.14.4" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 547 + dependencies = [ 548 + "typenum", 549 + "version_check", 550 + ] 551 + 552 + [[package]] 553 + name = "getopts" 554 + version = "0.2.21" 555 + source = "registry+https://github.com/rust-lang/crates.io-index" 556 + checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 557 + dependencies = [ 558 + "unicode-width", 559 + ] 560 + 561 + [[package]] 562 + name = "getrandom" 563 + version = "0.1.16" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 566 + dependencies = [ 567 + "cfg-if", 568 + "libc", 569 + "wasi 0.9.0+wasi-snapshot-preview1", 570 + ] 571 + 572 + [[package]] 573 + name = "getrandom" 574 + version = "0.2.3" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 577 + dependencies = [ 578 + "cfg-if", 579 + "libc", 580 + "wasi 0.10.0+wasi-snapshot-preview1", 581 + ] 582 + 583 + [[package]] 584 + name = "ghash" 585 + version = "0.3.1" 586 + source = "registry+https://github.com/rust-lang/crates.io-index" 587 + checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 588 + dependencies = [ 589 + "opaque-debug", 590 + "polyval", 591 + ] 592 + 593 + [[package]] 594 + name = "gio-sys" 595 + version = "0.10.1" 596 + source = "registry+https://github.com/rust-lang/crates.io-index" 597 + checksum = "5e24fb752f8f5d2cf6bbc2c606fd2bc989c81c5e2fe321ab974d54f8b6344eac" 598 + dependencies = [ 599 + "glib-sys", 600 + "gobject-sys", 601 + "libc", 602 + "system-deps", 603 + "winapi", 604 + ] 605 + 606 + [[package]] 607 + name = "glib-sys" 608 + version = "0.10.1" 609 + source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "c7e9b997a66e9a23d073f2b1abb4dbfc3925e0b8952f67efd8d9b6e168e4cdc1" 611 + dependencies = [ 612 + "libc", 613 + "system-deps", 614 + ] 615 + 616 + [[package]] 617 + name = "gobject-sys" 618 + version = "0.10.0" 619 + source = "registry+https://github.com/rust-lang/crates.io-index" 620 + checksum = "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c" 621 + dependencies = [ 622 + "glib-sys", 623 + "libc", 624 + "system-deps", 625 + ] 626 + 627 + [[package]] 628 + name = "gtk-sys" 629 + version = "0.10.0" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "89acda6f084863307d948ba64a4b1ef674e8527dddab147ee4cdcc194c880457" 632 + dependencies = [ 633 + "atk-sys", 634 + "cairo-sys-rs", 635 + "gdk-pixbuf-sys", 636 + "gdk-sys", 637 + "gio-sys", 638 + "glib-sys", 639 + "gobject-sys", 640 + "libc", 641 + "pango-sys", 642 + "system-deps", 643 + ] 644 + 645 + [[package]] 646 + name = "half" 647 + version = "1.8.1" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "3bd566f08830dd1fa75b2a5f1d8def8336de7f08b2692a9a71efbe7188aea36f" 650 + 651 + [[package]] 652 + name = "hashbrown" 653 + version = "0.12.3" 654 + source = "registry+https://github.com/rust-lang/crates.io-index" 655 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 656 + 657 + [[package]] 658 + name = "hashbrown" 659 + version = "0.13.2" 660 + source = "registry+https://github.com/rust-lang/crates.io-index" 661 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 662 + dependencies = [ 663 + "ahash", 664 + ] 665 + 666 + [[package]] 667 + name = "heck" 668 + version = "0.3.3" 669 + source = "registry+https://github.com/rust-lang/crates.io-index" 670 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 671 + dependencies = [ 672 + "unicode-segmentation", 673 + ] 674 + 675 + [[package]] 676 + name = "hermit-abi" 677 + version = "0.1.19" 678 + source = "registry+https://github.com/rust-lang/crates.io-index" 679 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 680 + dependencies = [ 681 + "libc", 682 + ] 683 + 684 + [[package]] 685 + name = "hex" 686 + version = "0.4.3" 687 + source = "registry+https://github.com/rust-lang/crates.io-index" 688 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 689 + 690 + [[package]] 691 + name = "hkdf" 692 + version = "0.10.0" 693 + source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 695 + dependencies = [ 696 + "digest 0.9.0", 697 + "hmac", 698 + ] 699 + 700 + [[package]] 701 + name = "hmac" 702 + version = "0.10.1" 703 + source = "registry+https://github.com/rust-lang/crates.io-index" 704 + checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 705 + dependencies = [ 706 + "crypto-mac 0.10.1", 707 + "digest 0.9.0", 708 + ] 709 + 710 + [[package]] 711 + name = "iana-time-zone" 712 + version = "0.1.47" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7" 715 + dependencies = [ 716 + "android_system_properties", 717 + "core-foundation-sys", 718 + "js-sys", 719 + "once_cell", 720 + "wasm-bindgen", 721 + "winapi", 722 + ] 723 + 724 + [[package]] 725 + name = "idna" 726 + version = "0.2.3" 727 + source = "registry+https://github.com/rust-lang/crates.io-index" 728 + checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 729 + dependencies = [ 730 + "matches", 731 + "unicode-bidi", 732 + "unicode-normalization", 733 + ] 734 + 735 + [[package]] 736 + name = "indexmap" 737 + version = "1.9.2" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 740 + dependencies = [ 741 + "autocfg", 742 + "hashbrown 0.12.3", 743 + ] 744 + 745 + [[package]] 746 + name = "itoa" 747 + version = "1.0.1" 748 + source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" 750 + 751 + [[package]] 752 + name = "javascriptcore-rs-sys" 753 + version = "0.2.0" 754 + source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "3f46ada8a08dcd75a10afae872fbfb51275df4a8ae0d46b8cc7c708f08dd2998" 756 + dependencies = [ 757 + "libc", 758 + ] 759 + 760 + [[package]] 761 + name = "js-sys" 762 + version = "0.3.59" 763 + source = "registry+https://github.com/rust-lang/crates.io-index" 764 + checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 765 + dependencies = [ 766 + "wasm-bindgen", 767 + ] 768 + 769 + [[package]] 770 + name = "lazy_static" 771 + version = "1.4.0" 772 + source = "registry+https://github.com/rust-lang/crates.io-index" 773 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 774 + 775 + [[package]] 776 + name = "libc" 777 + version = "0.2.132" 778 + source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5" 780 + 781 + [[package]] 782 + name = "log" 783 + version = "0.4.17" 784 + source = "registry+https://github.com/rust-lang/crates.io-index" 785 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 786 + dependencies = [ 787 + "cfg-if", 788 + ] 789 + 790 + [[package]] 791 + name = "lru" 792 + version = "0.9.0" 793 + source = "registry+https://github.com/rust-lang/crates.io-index" 794 + checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17" 795 + dependencies = [ 796 + "hashbrown 0.13.2", 797 + ] 798 + 799 + [[package]] 800 + name = "matches" 801 + version = "0.1.9" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 804 + 805 + [[package]] 806 + name = "memchr" 807 + version = "2.5.0" 808 + source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 810 + 811 + [[package]] 812 + name = "miniz_oxide" 813 + version = "0.4.4" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 816 + dependencies = [ 817 + "adler", 818 + "autocfg", 819 + ] 820 + 821 + [[package]] 822 + name = "mio" 823 + version = "0.8.5" 824 + source = "registry+https://github.com/rust-lang/crates.io-index" 825 + checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 826 + dependencies = [ 827 + "libc", 828 + "log", 829 + "wasi 0.11.0+wasi-snapshot-preview1", 830 + "windows-sys 0.42.0", 831 + ] 832 + 833 + [[package]] 834 + name = "num-bigint" 835 + version = "0.4.3" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 838 + dependencies = [ 839 + "autocfg", 840 + "num-integer", 841 + "num-traits", 842 + ] 843 + 844 + [[package]] 845 + name = "num-integer" 846 + version = "0.1.44" 847 + source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 849 + dependencies = [ 850 + "autocfg", 851 + "num-traits", 852 + ] 853 + 854 + [[package]] 855 + name = "num-traits" 856 + version = "0.2.15" 857 + source = "registry+https://github.com/rust-lang/crates.io-index" 858 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 859 + dependencies = [ 860 + "autocfg", 861 + ] 862 + 863 + [[package]] 864 + name = "num_cpus" 865 + version = "1.13.1" 866 + source = "registry+https://github.com/rust-lang/crates.io-index" 867 + checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 868 + dependencies = [ 869 + "hermit-abi", 870 + "libc", 871 + ] 872 + 873 + [[package]] 874 + name = "num_threads" 875 + version = "0.1.6" 876 + source = "registry+https://github.com/rust-lang/crates.io-index" 877 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 878 + dependencies = [ 879 + "libc", 880 + ] 881 + 882 + [[package]] 883 + name = "once_cell" 884 + version = "1.14.0" 885 + source = "registry+https://github.com/rust-lang/crates.io-index" 886 + checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" 887 + 888 + [[package]] 889 + name = "opaque-debug" 890 + version = "0.3.0" 891 + source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 893 + 894 + [[package]] 895 + name = "open" 896 + version = "3.0.3" 897 + source = "registry+https://github.com/rust-lang/crates.io-index" 898 + checksum = "b4a3100141f1733ea40b53381b0ae3117330735ef22309a190ac57b9576ea716" 899 + dependencies = [ 900 + "pathdiff", 901 + "windows-sys 0.36.1", 902 + ] 903 + 904 + [[package]] 905 + name = "pango-sys" 906 + version = "0.10.0" 907 + source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890" 909 + dependencies = [ 910 + "glib-sys", 911 + "gobject-sys", 912 + "libc", 913 + "system-deps", 914 + ] 915 + 916 + [[package]] 917 + name = "pathdiff" 918 + version = "0.2.1" 919 + source = "registry+https://github.com/rust-lang/crates.io-index" 920 + checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 921 + 922 + [[package]] 923 + name = "percent-encoding" 924 + version = "2.1.0" 925 + source = "registry+https://github.com/rust-lang/crates.io-index" 926 + checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 927 + 928 + [[package]] 929 + name = "pkg-config" 930 + version = "0.3.20" 931 + source = "registry+https://github.com/rust-lang/crates.io-index" 932 + checksum = "7c9b1041b4387893b91ee6746cddfc28516aff326a3519fb2adf820932c5e6cb" 933 + 934 + [[package]] 935 + name = "poly1305" 936 + version = "0.7.2" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" 939 + dependencies = [ 940 + "cpufeatures", 941 + "opaque-debug", 942 + "universal-hash", 943 + ] 944 + 945 + [[package]] 946 + name = "polyval" 947 + version = "0.4.5" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 950 + dependencies = [ 951 + "cpuid-bool", 952 + "opaque-debug", 953 + "universal-hash", 954 + ] 955 + 956 + [[package]] 957 + name = "ppv-lite86" 958 + version = "0.2.14" 959 + source = "registry+https://github.com/rust-lang/crates.io-index" 960 + checksum = "c3ca011bd0129ff4ae15cd04c4eef202cadf6c51c21e47aba319b4e0501db741" 961 + 962 + [[package]] 963 + name = "proc-macro2" 964 + version = "1.0.51" 965 + source = "registry+https://github.com/rust-lang/crates.io-index" 966 + checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 967 + dependencies = [ 968 + "unicode-ident", 969 + ] 970 + 971 + [[package]] 972 + name = "quote" 973 + version = "1.0.10" 974 + source = "registry+https://github.com/rust-lang/crates.io-index" 975 + checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" 976 + dependencies = [ 977 + "proc-macro2", 978 + ] 979 + 980 + [[package]] 981 + name = "rand" 982 + version = "0.7.3" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 985 + dependencies = [ 986 + "getrandom 0.1.16", 987 + "libc", 988 + "rand_chacha 0.2.2", 989 + "rand_core 0.5.1", 990 + "rand_hc", 991 + ] 992 + 993 + [[package]] 994 + name = "rand" 995 + version = "0.8.5" 996 + source = "registry+https://github.com/rust-lang/crates.io-index" 997 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 998 + dependencies = [ 999 + "libc", 1000 + "rand_chacha 0.3.1", 1001 + "rand_core 0.6.3", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "rand_chacha" 1006 + version = "0.2.2" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1009 + dependencies = [ 1010 + "ppv-lite86", 1011 + "rand_core 0.5.1", 1012 + ] 1013 + 1014 + [[package]] 1015 + name = "rand_chacha" 1016 + version = "0.3.1" 1017 + source = "registry+https://github.com/rust-lang/crates.io-index" 1018 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1019 + dependencies = [ 1020 + "ppv-lite86", 1021 + "rand_core 0.6.3", 1022 + ] 1023 + 1024 + [[package]] 1025 + name = "rand_core" 1026 + version = "0.5.1" 1027 + source = "registry+https://github.com/rust-lang/crates.io-index" 1028 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1029 + dependencies = [ 1030 + "getrandom 0.1.16", 1031 + ] 1032 + 1033 + [[package]] 1034 + name = "rand_core" 1035 + version = "0.6.3" 1036 + source = "registry+https://github.com/rust-lang/crates.io-index" 1037 + checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1038 + dependencies = [ 1039 + "getrandom 0.2.3", 1040 + ] 1041 + 1042 + [[package]] 1043 + name = "rand_hc" 1044 + version = "0.2.0" 1045 + source = "registry+https://github.com/rust-lang/crates.io-index" 1046 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1047 + dependencies = [ 1048 + "rand_core 0.5.1", 1049 + ] 1050 + 1051 + [[package]] 1052 + name = "ring" 1053 + version = "0.16.20" 1054 + source = "registry+https://github.com/rust-lang/crates.io-index" 1055 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1056 + dependencies = [ 1057 + "cc", 1058 + "libc", 1059 + "once_cell", 1060 + "spin", 1061 + "untrusted", 1062 + "web-sys", 1063 + "winapi", 1064 + ] 1065 + 1066 + [[package]] 1067 + name = "rustc_version" 1068 + version = "0.4.0" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1071 + dependencies = [ 1072 + "semver", 1073 + ] 1074 + 1075 + [[package]] 1076 + name = "rustls" 1077 + version = "0.20.2" 1078 + source = "registry+https://github.com/rust-lang/crates.io-index" 1079 + checksum = "d37e5e2290f3e040b594b1a9e04377c2c671f1a1cfd9bfdef82106ac1c113f84" 1080 + dependencies = [ 1081 + "log", 1082 + "ring", 1083 + "sct", 1084 + "webpki", 1085 + ] 1086 + 1087 + [[package]] 1088 + name = "ryu" 1089 + version = "1.0.5" 1090 + source = "registry+https://github.com/rust-lang/crates.io-index" 1091 + checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 1092 + 1093 + [[package]] 1094 + name = "sct" 1095 + version = "0.7.0" 1096 + source = "registry+https://github.com/rust-lang/crates.io-index" 1097 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1098 + dependencies = [ 1099 + "ring", 1100 + "untrusted", 1101 + ] 1102 + 1103 + [[package]] 1104 + name = "semver" 1105 + version = "1.0.4" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012" 1108 + 1109 + [[package]] 1110 + name = "serde" 1111 + version = "1.0.152" 1112 + source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 1114 + dependencies = [ 1115 + "serde_derive", 1116 + ] 1117 + 1118 + [[package]] 1119 + name = "serde_bytes" 1120 + version = "0.11.7" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b" 1123 + dependencies = [ 1124 + "serde", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "serde_cbor" 1129 + version = "0.11.2" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 1132 + dependencies = [ 1133 + "half", 1134 + "serde", 1135 + ] 1136 + 1137 + [[package]] 1138 + name = "serde_derive" 1139 + version = "1.0.152" 1140 + source = "registry+https://github.com/rust-lang/crates.io-index" 1141 + checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 1142 + dependencies = [ 1143 + "proc-macro2", 1144 + "quote", 1145 + "syn", 1146 + ] 1147 + 1148 + [[package]] 1149 + name = "serde_json" 1150 + version = "1.0.85" 1151 + source = "registry+https://github.com/rust-lang/crates.io-index" 1152 + checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 1153 + dependencies = [ 1154 + "itoa", 1155 + "ryu", 1156 + "serde", 1157 + ] 1158 + 1159 + [[package]] 1160 + name = "serde_spanned" 1161 + version = "0.6.1" 1162 + source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 1164 + dependencies = [ 1165 + "serde", 1166 + ] 1167 + 1168 + [[package]] 1169 + name = "sha2" 1170 + version = "0.9.8" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa" 1173 + dependencies = [ 1174 + "block-buffer 0.9.0", 1175 + "cfg-if", 1176 + "cpufeatures", 1177 + "digest 0.9.0", 1178 + "opaque-debug", 1179 + ] 1180 + 1181 + [[package]] 1182 + name = "sha2" 1183 + version = "0.10.6" 1184 + source = "registry+https://github.com/rust-lang/crates.io-index" 1185 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1186 + dependencies = [ 1187 + "cfg-if", 1188 + "cpufeatures", 1189 + "digest 0.10.5", 1190 + ] 1191 + 1192 + [[package]] 1193 + name = "signature" 1194 + version = "1.6.0" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "f0ea32af43239f0d353a7dd75a22d94c329c8cdaafdcb4c1c1335aa10c298a4a" 1197 + 1198 + [[package]] 1199 + name = "signature" 1200 + version = "2.0.0" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" 1203 + 1204 + [[package]] 1205 + name = "simplelog" 1206 + version = "0.12.0" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786" 1209 + dependencies = [ 1210 + "log", 1211 + "termcolor", 1212 + "time 0.3.14", 1213 + ] 1214 + 1215 + [[package]] 1216 + name = "soup-sys" 1217 + version = "0.10.0" 1218 + source = "registry+https://github.com/rust-lang/crates.io-index" 1219 + checksum = "c3c7adf08565630bbb71f955f11f8a68464817ded2703a3549747c235b58a13e" 1220 + dependencies = [ 1221 + "bitflags", 1222 + "gio-sys", 1223 + "glib-sys", 1224 + "gobject-sys", 1225 + "libc", 1226 + "pkg-config", 1227 + "system-deps", 1228 + ] 1229 + 1230 + [[package]] 1231 + name = "spin" 1232 + version = "0.5.2" 1233 + source = "registry+https://github.com/rust-lang/crates.io-index" 1234 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1235 + 1236 + [[package]] 1237 + name = "spmc" 1238 + version = "0.3.0" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "02a8428da277a8e3a15271d79943e80ccc2ef254e78813a166a08d65e4c3ece5" 1241 + 1242 + [[package]] 1243 + name = "sqlite" 1244 + version = "0.30.4" 1245 + source = "registry+https://github.com/rust-lang/crates.io-index" 1246 + checksum = "8b1908664131c21a38e5b531344d52a196ec338af5bf44f7fa2c83d539e9561d" 1247 + dependencies = [ 1248 + "libc", 1249 + "sqlite3-sys", 1250 + ] 1251 + 1252 + [[package]] 1253 + name = "sqlite3-src" 1254 + version = "0.4.0" 1255 + source = "registry+https://github.com/rust-lang/crates.io-index" 1256 + checksum = "d1815a7a02c996eb8e5c64f61fcb6fd9b12e593ce265c512c5853b2513635691" 1257 + dependencies = [ 1258 + "cc", 1259 + "pkg-config", 1260 + ] 1261 + 1262 + [[package]] 1263 + name = "sqlite3-sys" 1264 + version = "0.14.0" 1265 + source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + checksum = "d47c99824fc55360ba00caf28de0b8a0458369b832e016a64c13af0ad9fbb9ee" 1267 + dependencies = [ 1268 + "libc", 1269 + "sqlite3-src", 1270 + ] 1271 + 1272 + [[package]] 1273 + name = "strum" 1274 + version = "0.18.0" 1275 + source = "registry+https://github.com/rust-lang/crates.io-index" 1276 + checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b" 1277 + 1278 + [[package]] 1279 + name = "strum_macros" 1280 + version = "0.18.0" 1281 + source = "registry+https://github.com/rust-lang/crates.io-index" 1282 + checksum = "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c" 1283 + dependencies = [ 1284 + "heck", 1285 + "proc-macro2", 1286 + "quote", 1287 + "syn", 1288 + ] 1289 + 1290 + [[package]] 1291 + name = "subtle" 1292 + version = "2.4.1" 1293 + source = "registry+https://github.com/rust-lang/crates.io-index" 1294 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1295 + 1296 + [[package]] 1297 + name = "syn" 1298 + version = "1.0.109" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1301 + dependencies = [ 1302 + "proc-macro2", 1303 + "quote", 1304 + "unicode-ident", 1305 + ] 1306 + 1307 + [[package]] 1308 + name = "synstructure" 1309 + version = "0.12.6" 1310 + source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 1312 + dependencies = [ 1313 + "proc-macro2", 1314 + "quote", 1315 + "syn", 1316 + "unicode-xid", 1317 + ] 1318 + 1319 + [[package]] 1320 + name = "system-deps" 1321 + version = "1.3.2" 1322 + source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + checksum = "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b" 1324 + dependencies = [ 1325 + "heck", 1326 + "pkg-config", 1327 + "strum", 1328 + "strum_macros", 1329 + "thiserror", 1330 + "toml 0.5.9", 1331 + "version-compare", 1332 + ] 1333 + 1334 + [[package]] 1335 + name = "termcolor" 1336 + version = "1.1.2" 1337 + source = "registry+https://github.com/rust-lang/crates.io-index" 1338 + checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 1339 + dependencies = [ 1340 + "winapi-util", 1341 + ] 1342 + 1343 + [[package]] 1344 + name = "thiserror" 1345 + version = "1.0.30" 1346 + source = "registry+https://github.com/rust-lang/crates.io-index" 1347 + checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 1348 + dependencies = [ 1349 + "thiserror-impl", 1350 + ] 1351 + 1352 + [[package]] 1353 + name = "thiserror-impl" 1354 + version = "1.0.30" 1355 + source = "registry+https://github.com/rust-lang/crates.io-index" 1356 + checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 1357 + dependencies = [ 1358 + "proc-macro2", 1359 + "quote", 1360 + "syn", 1361 + ] 1362 + 1363 + [[package]] 1364 + name = "thread-priority" 1365 + version = "0.10.0" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "978519ae4c6891352f964b88da4ab5a3a9b74a40247cda5baee145dae6cd3b71" 1368 + dependencies = [ 1369 + "cfg-if", 1370 + "libc", 1371 + "log", 1372 + "winapi", 1373 + ] 1374 + 1375 + [[package]] 1376 + name = "time" 1377 + version = "0.1.44" 1378 + source = "registry+https://github.com/rust-lang/crates.io-index" 1379 + checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 1380 + dependencies = [ 1381 + "libc", 1382 + "wasi 0.10.0+wasi-snapshot-preview1", 1383 + "winapi", 1384 + ] 1385 + 1386 + [[package]] 1387 + name = "time" 1388 + version = "0.3.14" 1389 + source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" 1391 + dependencies = [ 1392 + "itoa", 1393 + "libc", 1394 + "num_threads", 1395 + "time-macros", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "time-macros" 1400 + version = "0.2.4" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" 1403 + 1404 + [[package]] 1405 + name = "tinyfiledialogs" 1406 + version = "3.9.1" 1407 + source = "registry+https://github.com/rust-lang/crates.io-index" 1408 + checksum = "e25fa0bc43a6566e2cc6d7ac96df3fa5a57beba34445bead1b368ba8fe9ca568" 1409 + dependencies = [ 1410 + "cc", 1411 + "libc", 1412 + ] 1413 + 1414 + [[package]] 1415 + name = "tinyvec" 1416 + version = "1.5.0" 1417 + source = "registry+https://github.com/rust-lang/crates.io-index" 1418 + checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7" 1419 + dependencies = [ 1420 + "tinyvec_macros", 1421 + ] 1422 + 1423 + [[package]] 1424 + name = "tinyvec_macros" 1425 + version = "0.1.0" 1426 + source = "registry+https://github.com/rust-lang/crates.io-index" 1427 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1428 + 1429 + [[package]] 1430 + name = "toml" 1431 + version = "0.5.9" 1432 + source = "registry+https://github.com/rust-lang/crates.io-index" 1433 + checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 1434 + dependencies = [ 1435 + "serde", 1436 + ] 1437 + 1438 + [[package]] 1439 + name = "toml" 1440 + version = "0.7.2" 1441 + source = "registry+https://github.com/rust-lang/crates.io-index" 1442 + checksum = "f7afcae9e3f0fe2c370fd4657108972cbb2fa9db1b9f84849cefd80741b01cb6" 1443 + dependencies = [ 1444 + "serde", 1445 + "serde_spanned", 1446 + "toml_datetime", 1447 + "toml_edit", 1448 + ] 1449 + 1450 + [[package]] 1451 + name = "toml_datetime" 1452 + version = "0.6.1" 1453 + source = "registry+https://github.com/rust-lang/crates.io-index" 1454 + checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 1455 + dependencies = [ 1456 + "serde", 1457 + ] 1458 + 1459 + [[package]] 1460 + name = "toml_edit" 1461 + version = "0.19.4" 1462 + source = "registry+https://github.com/rust-lang/crates.io-index" 1463 + checksum = "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" 1464 + dependencies = [ 1465 + "indexmap", 1466 + "serde", 1467 + "serde_spanned", 1468 + "toml_datetime", 1469 + "winnow", 1470 + ] 1471 + 1472 + [[package]] 1473 + name = "typenum" 1474 + version = "1.14.0" 1475 + source = "registry+https://github.com/rust-lang/crates.io-index" 1476 + checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" 1477 + 1478 + [[package]] 1479 + name = "unicode-bidi" 1480 + version = "0.3.7" 1481 + source = "registry+https://github.com/rust-lang/crates.io-index" 1482 + checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f" 1483 + 1484 + [[package]] 1485 + name = "unicode-ident" 1486 + version = "1.0.6" 1487 + source = "registry+https://github.com/rust-lang/crates.io-index" 1488 + checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 1489 + 1490 + [[package]] 1491 + name = "unicode-normalization" 1492 + version = "0.1.19" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 1495 + dependencies = [ 1496 + "tinyvec", 1497 + ] 1498 + 1499 + [[package]] 1500 + name = "unicode-segmentation" 1501 + version = "1.8.0" 1502 + source = "registry+https://github.com/rust-lang/crates.io-index" 1503 + checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 1504 + 1505 + [[package]] 1506 + name = "unicode-width" 1507 + version = "0.1.9" 1508 + source = "registry+https://github.com/rust-lang/crates.io-index" 1509 + checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 1510 + 1511 + [[package]] 1512 + name = "unicode-xid" 1513 + version = "0.2.2" 1514 + source = "registry+https://github.com/rust-lang/crates.io-index" 1515 + checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 1516 + 1517 + [[package]] 1518 + name = "universal-hash" 1519 + version = "0.4.1" 1520 + source = "registry+https://github.com/rust-lang/crates.io-index" 1521 + checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 1522 + dependencies = [ 1523 + "generic-array", 1524 + "subtle", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "untrusted" 1529 + version = "0.7.1" 1530 + source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 1532 + 1533 + [[package]] 1534 + name = "ureq" 1535 + version = "2.5.0" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "b97acb4c28a254fd7a4aeec976c46a7fa404eac4d7c134b30c75144846d7cb8f" 1538 + dependencies = [ 1539 + "base64 0.13.1", 1540 + "chunked_transfer", 1541 + "flate2", 1542 + "log", 1543 + "once_cell", 1544 + "rustls", 1545 + "url", 1546 + "webpki", 1547 + "webpki-roots", 1548 + ] 1549 + 1550 + [[package]] 1551 + name = "url" 1552 + version = "2.2.2" 1553 + source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 1555 + dependencies = [ 1556 + "form_urlencoded", 1557 + "idna", 1558 + "matches", 1559 + "percent-encoding", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "urlencoding" 1564 + version = "1.3.3" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "5a1f0175e03a0973cf4afd476bef05c26e228520400eb1fd473ad417b1c00ffb" 1567 + 1568 + [[package]] 1569 + name = "uuid" 1570 + version = "1.3.0" 1571 + source = "registry+https://github.com/rust-lang/crates.io-index" 1572 + checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" 1573 + dependencies = [ 1574 + "getrandom 0.2.3", 1575 + "serde", 1576 + ] 1577 + 1578 + [[package]] 1579 + name = "version-compare" 1580 + version = "0.0.10" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" 1583 + 1584 + [[package]] 1585 + name = "version_check" 1586 + version = "0.9.4" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1589 + 1590 + [[package]] 1591 + name = "wasi" 1592 + version = "0.9.0+wasi-snapshot-preview1" 1593 + source = "registry+https://github.com/rust-lang/crates.io-index" 1594 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 1595 + 1596 + [[package]] 1597 + name = "wasi" 1598 + version = "0.10.0+wasi-snapshot-preview1" 1599 + source = "registry+https://github.com/rust-lang/crates.io-index" 1600 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1601 + 1602 + [[package]] 1603 + name = "wasi" 1604 + version = "0.11.0+wasi-snapshot-preview1" 1605 + source = "registry+https://github.com/rust-lang/crates.io-index" 1606 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1607 + 1608 + [[package]] 1609 + name = "wasm-bindgen" 1610 + version = "0.2.82" 1611 + source = "registry+https://github.com/rust-lang/crates.io-index" 1612 + checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 1613 + dependencies = [ 1614 + "cfg-if", 1615 + "wasm-bindgen-macro", 1616 + ] 1617 + 1618 + [[package]] 1619 + name = "wasm-bindgen-backend" 1620 + version = "0.2.82" 1621 + source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 1623 + dependencies = [ 1624 + "bumpalo", 1625 + "log", 1626 + "once_cell", 1627 + "proc-macro2", 1628 + "quote", 1629 + "syn", 1630 + "wasm-bindgen-shared", 1631 + ] 1632 + 1633 + [[package]] 1634 + name = "wasm-bindgen-macro" 1635 + version = "0.2.82" 1636 + source = "registry+https://github.com/rust-lang/crates.io-index" 1637 + checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 1638 + dependencies = [ 1639 + "quote", 1640 + "wasm-bindgen-macro-support", 1641 + ] 1642 + 1643 + [[package]] 1644 + name = "wasm-bindgen-macro-support" 1645 + version = "0.2.82" 1646 + source = "registry+https://github.com/rust-lang/crates.io-index" 1647 + checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 1648 + dependencies = [ 1649 + "proc-macro2", 1650 + "quote", 1651 + "syn", 1652 + "wasm-bindgen-backend", 1653 + "wasm-bindgen-shared", 1654 + ] 1655 + 1656 + [[package]] 1657 + name = "wasm-bindgen-shared" 1658 + version = "0.2.82" 1659 + source = "registry+https://github.com/rust-lang/crates.io-index" 1660 + checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 1661 + 1662 + [[package]] 1663 + name = "web-sys" 1664 + version = "0.3.55" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb" 1667 + dependencies = [ 1668 + "js-sys", 1669 + "wasm-bindgen", 1670 + ] 1671 + 1672 + [[package]] 1673 + name = "web-view" 1674 + version = "0.7.3" 1675 + source = "git+https://github.com/Boscop/web-view#e87e08cab3a2d500d54068ec9c7aaa055a711465" 1676 + dependencies = [ 1677 + "boxfnonce", 1678 + "tinyfiledialogs", 1679 + "urlencoding", 1680 + "webview-sys", 1681 + ] 1682 + 1683 + [[package]] 1684 + name = "webkit2gtk-sys" 1685 + version = "0.12.0" 1686 + source = "registry+https://github.com/rust-lang/crates.io-index" 1687 + checksum = "389e5138c85a0d111b9bda05b59efa8562315e1d657d72451410e12c858f0619" 1688 + dependencies = [ 1689 + "atk-sys", 1690 + "bitflags", 1691 + "cairo-sys-rs", 1692 + "gdk-pixbuf-sys", 1693 + "gdk-sys", 1694 + "gio-sys", 1695 + "glib-sys", 1696 + "gobject-sys", 1697 + "gtk-sys", 1698 + "javascriptcore-rs-sys", 1699 + "libc", 1700 + "pango-sys", 1701 + "pkg-config", 1702 + "soup-sys", 1703 + ] 1704 + 1705 + [[package]] 1706 + name = "webpki" 1707 + version = "0.22.0" 1708 + source = "registry+https://github.com/rust-lang/crates.io-index" 1709 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 1710 + dependencies = [ 1711 + "ring", 1712 + "untrusted", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "webpki-roots" 1717 + version = "0.22.1" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "c475786c6f47219345717a043a37ec04cb4bc185e28853adcc4fa0a947eba630" 1720 + dependencies = [ 1721 + "webpki", 1722 + ] 1723 + 1724 + [[package]] 1725 + name = "webview-sys" 1726 + version = "0.6.2" 1727 + source = "git+https://github.com/Boscop/web-view#e87e08cab3a2d500d54068ec9c7aaa055a711465" 1728 + dependencies = [ 1729 + "cc", 1730 + "gdk-sys", 1731 + "gio-sys", 1732 + "glib-sys", 1733 + "gobject-sys", 1734 + "gtk-sys", 1735 + "javascriptcore-rs-sys", 1736 + "libc", 1737 + "pkg-config", 1738 + "webkit2gtk-sys", 1739 + ] 1740 + 1741 + [[package]] 1742 + name = "winapi" 1743 + version = "0.3.9" 1744 + source = "registry+https://github.com/rust-lang/crates.io-index" 1745 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1746 + dependencies = [ 1747 + "winapi-i686-pc-windows-gnu", 1748 + "winapi-x86_64-pc-windows-gnu", 1749 + ] 1750 + 1751 + [[package]] 1752 + name = "winapi-i686-pc-windows-gnu" 1753 + version = "0.4.0" 1754 + source = "registry+https://github.com/rust-lang/crates.io-index" 1755 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1756 + 1757 + [[package]] 1758 + name = "winapi-util" 1759 + version = "0.1.5" 1760 + source = "registry+https://github.com/rust-lang/crates.io-index" 1761 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1762 + dependencies = [ 1763 + "winapi", 1764 + ] 1765 + 1766 + [[package]] 1767 + name = "winapi-x86_64-pc-windows-gnu" 1768 + version = "0.4.0" 1769 + source = "registry+https://github.com/rust-lang/crates.io-index" 1770 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1771 + 1772 + [[package]] 1773 + name = "windows-sys" 1774 + version = "0.36.1" 1775 + source = "registry+https://github.com/rust-lang/crates.io-index" 1776 + checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 1777 + dependencies = [ 1778 + "windows_aarch64_msvc 0.36.1", 1779 + "windows_i686_gnu 0.36.1", 1780 + "windows_i686_msvc 0.36.1", 1781 + "windows_x86_64_gnu 0.36.1", 1782 + "windows_x86_64_msvc 0.36.1", 1783 + ] 1784 + 1785 + [[package]] 1786 + name = "windows-sys" 1787 + version = "0.42.0" 1788 + source = "registry+https://github.com/rust-lang/crates.io-index" 1789 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1790 + dependencies = [ 1791 + "windows_aarch64_gnullvm", 1792 + "windows_aarch64_msvc 0.42.0", 1793 + "windows_i686_gnu 0.42.0", 1794 + "windows_i686_msvc 0.42.0", 1795 + "windows_x86_64_gnu 0.42.0", 1796 + "windows_x86_64_gnullvm", 1797 + "windows_x86_64_msvc 0.42.0", 1798 + ] 1799 + 1800 + [[package]] 1801 + name = "windows_aarch64_gnullvm" 1802 + version = "0.42.0" 1803 + source = "registry+https://github.com/rust-lang/crates.io-index" 1804 + checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 1805 + 1806 + [[package]] 1807 + name = "windows_aarch64_msvc" 1808 + version = "0.36.1" 1809 + source = "registry+https://github.com/rust-lang/crates.io-index" 1810 + checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 1811 + 1812 + [[package]] 1813 + name = "windows_aarch64_msvc" 1814 + version = "0.42.0" 1815 + source = "registry+https://github.com/rust-lang/crates.io-index" 1816 + checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 1817 + 1818 + [[package]] 1819 + name = "windows_i686_gnu" 1820 + version = "0.36.1" 1821 + source = "registry+https://github.com/rust-lang/crates.io-index" 1822 + checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 1823 + 1824 + [[package]] 1825 + name = "windows_i686_gnu" 1826 + version = "0.42.0" 1827 + source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 1829 + 1830 + [[package]] 1831 + name = "windows_i686_msvc" 1832 + version = "0.36.1" 1833 + source = "registry+https://github.com/rust-lang/crates.io-index" 1834 + checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 1835 + 1836 + [[package]] 1837 + name = "windows_i686_msvc" 1838 + version = "0.42.0" 1839 + source = "registry+https://github.com/rust-lang/crates.io-index" 1840 + checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 1841 + 1842 + [[package]] 1843 + name = "windows_x86_64_gnu" 1844 + version = "0.36.1" 1845 + source = "registry+https://github.com/rust-lang/crates.io-index" 1846 + checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 1847 + 1848 + [[package]] 1849 + name = "windows_x86_64_gnu" 1850 + version = "0.42.0" 1851 + source = "registry+https://github.com/rust-lang/crates.io-index" 1852 + checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 1853 + 1854 + [[package]] 1855 + name = "windows_x86_64_gnullvm" 1856 + version = "0.42.0" 1857 + source = "registry+https://github.com/rust-lang/crates.io-index" 1858 + checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 1859 + 1860 + [[package]] 1861 + name = "windows_x86_64_msvc" 1862 + version = "0.36.1" 1863 + source = "registry+https://github.com/rust-lang/crates.io-index" 1864 + checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 1865 + 1866 + [[package]] 1867 + name = "windows_x86_64_msvc" 1868 + version = "0.42.0" 1869 + source = "registry+https://github.com/rust-lang/crates.io-index" 1870 + checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 1871 + 1872 + [[package]] 1873 + name = "winnow" 1874 + version = "0.3.3" 1875 + source = "registry+https://github.com/rust-lang/crates.io-index" 1876 + checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" 1877 + dependencies = [ 1878 + "memchr", 1879 + ] 1880 + 1881 + [[package]] 1882 + name = "winres" 1883 + version = "0.1.12" 1884 + source = "registry+https://github.com/rust-lang/crates.io-index" 1885 + checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 1886 + dependencies = [ 1887 + "toml 0.5.9", 1888 + ] 1889 + 1890 + [[package]] 1891 + name = "x25519-dalek" 1892 + version = "1.2.0" 1893 + source = "registry+https://github.com/rust-lang/crates.io-index" 1894 + checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077" 1895 + dependencies = [ 1896 + "curve25519-dalek", 1897 + "rand_core 0.5.1", 1898 + "zeroize", 1899 + ] 1900 + 1901 + [[package]] 1902 + name = "zeroize" 1903 + version = "1.3.0" 1904 + source = "registry+https://github.com/rust-lang/crates.io-index" 1905 + checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" 1906 + dependencies = [ 1907 + "zeroize_derive", 1908 + ] 1909 + 1910 + [[package]] 1911 + name = "zeroize_derive" 1912 + version = "1.2.0" 1913 + source = "registry+https://github.com/rust-lang/crates.io-index" 1914 + checksum = "bdff2024a851a322b08f179173ae2ba620445aef1e838f0c196820eade4ae0c7" 1915 + dependencies = [ 1916 + "proc-macro2", 1917 + "quote", 1918 + "syn", 1919 + "synstructure", 1920 + ]
+8 -12
pkgs/applications/blockchains/alfis/default.nix
··· 2 2 , lib 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , pkg-config 7 6 , makeWrapper 8 7 , webkitgtk ··· 15 14 16 15 rustPlatform.buildRustPackage rec { 17 16 pname = "alfis"; 18 - version = "0.8.3"; 17 + version = "0.8.4"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "Revertron"; 22 21 repo = "Alfis"; 23 22 rev = "v${version}"; 24 - sha256 = "sha256-QOKFnre5MW9EvrKrKBHWpOxi2fBKTDMhzCDX3ISd2cQ="; 23 + sha256 = "sha256-BNpz4SjWeZ20CxjyEIaFI43X7P3uoyWqOQssFb38Gv8="; 25 24 }; 26 25 27 - cargoPatches = [ 28 - (fetchpatch { 29 - name = "bump-rust-web-view.patch"; 30 - url = "https://github.com/Revertron/Alfis/commit/03b461a740ab6ccbacd576eafc7a3faf4a66648f.patch"; 31 - sha256 = "sha256-CSqSMdVD31w7QxxXWtjKmqlaEirmbs1EVuiefSf1NKY="; 32 - }) 33 - ]; 34 - 35 - cargoSha256 = "sha256-B4xI++U6RCljXCyaOmNj/SwA6I16zoiZsgk2VTiKfkg="; 26 + cargoLock = { 27 + lockFile = ./Cargo.lock; 28 + outputHashes = { 29 + "web-view-0.7.3" = "sha256-8C/2bXAbxP5tdo9RLvNn89krzy08+yKy3kERfz31HJE="; 30 + }; 31 + }; 36 32 37 33 checkFlags = [ 38 34 # these want internet access, disable them