├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env 3 | -------------------------------------------------------------------------------- /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 = "ab_glyph" 7 | version = "0.2.23" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "80179d7dd5d7e8c285d67c4a1e652972a92de7475beddfb92028c76463b13225" 10 | dependencies = [ 11 | "ab_glyph_rasterizer", 12 | "owned_ttf_parser", 13 | ] 14 | 15 | [[package]] 16 | name = "ab_glyph_rasterizer" 17 | version = "0.1.8" 18 | source = "registry+https://github.com/rust-lang/crates.io-index" 19 | checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046" 20 | 21 | [[package]] 22 | name = "accesskit" 23 | version = "0.11.2" 24 | source = "registry+https://github.com/rust-lang/crates.io-index" 25 | checksum = "76eb1adf08c5bcaa8490b9851fd53cca27fa9880076f178ea9d29f05196728a8" 26 | 27 | [[package]] 28 | name = "accesskit_consumer" 29 | version = "0.15.2" 30 | source = "registry+https://github.com/rust-lang/crates.io-index" 31 | checksum = "04bb4d9e4772fe0d47df57d0d5dbe5d85dd05e2f37ae1ddb6b105e76be58fb00" 32 | dependencies = [ 33 | "accesskit", 34 | ] 35 | 36 | [[package]] 37 | name = "accesskit_macos" 38 | version = "0.9.0" 39 | source = "registry+https://github.com/rust-lang/crates.io-index" 40 | checksum = "134d0acf6acb667c89d3332999b1a5df4edbc8d6113910f392ebb73f2b03bb56" 41 | dependencies = [ 42 | "accesskit", 43 | "accesskit_consumer", 44 | "objc2", 45 | "once_cell", 46 | ] 47 | 48 | [[package]] 49 | name = "accesskit_unix" 50 | version = "0.5.2" 51 | source = "registry+https://github.com/rust-lang/crates.io-index" 52 | checksum = "e084cb5168790c0c112626175412dc5ad127083441a8248ae49ddf6725519e83" 53 | dependencies = [ 54 | "accesskit", 55 | "accesskit_consumer", 56 | "async-channel 1.9.0", 57 | "atspi", 58 | "futures-lite 1.13.0", 59 | "serde", 60 | "zbus", 61 | ] 62 | 63 | [[package]] 64 | name = "accesskit_windows" 65 | version = "0.14.3" 66 | source = "registry+https://github.com/rust-lang/crates.io-index" 67 | checksum = "9eac0a7f2d7cd7a93b938af401d3d8e8b7094217989a7c25c55a953023436e31" 68 | dependencies = [ 69 | "accesskit", 70 | "accesskit_consumer", 71 | "arrayvec", 72 | "once_cell", 73 | "paste", 74 | "windows", 75 | ] 76 | 77 | [[package]] 78 | name = "accesskit_winit" 79 | version = "0.14.4" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | checksum = "825d23acee1bd6d25cbaa3ca6ed6e73faf24122a774ec33d52c5c86c6ab423c0" 82 | dependencies = [ 83 | "accesskit", 84 | "accesskit_macos", 85 | "accesskit_unix", 86 | "accesskit_windows", 87 | "winit", 88 | ] 89 | 90 | [[package]] 91 | name = "addr2line" 92 | version = "0.21.0" 93 | source = "registry+https://github.com/rust-lang/crates.io-index" 94 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 95 | dependencies = [ 96 | "gimli", 97 | ] 98 | 99 | [[package]] 100 | name = "adler" 101 | version = "1.0.2" 102 | source = "registry+https://github.com/rust-lang/crates.io-index" 103 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 104 | 105 | [[package]] 106 | name = "ahash" 107 | version = "0.8.6" 108 | source = "registry+https://github.com/rust-lang/crates.io-index" 109 | checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" 110 | dependencies = [ 111 | "cfg-if", 112 | "getrandom", 113 | "once_cell", 114 | "version_check", 115 | "zerocopy", 116 | ] 117 | 118 | [[package]] 119 | name = "aho-corasick" 120 | version = "1.1.2" 121 | source = "registry+https://github.com/rust-lang/crates.io-index" 122 | checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 123 | dependencies = [ 124 | "memchr", 125 | ] 126 | 127 | [[package]] 128 | name = "android-activity" 129 | version = "0.4.3" 130 | source = "registry+https://github.com/rust-lang/crates.io-index" 131 | checksum = "64529721f27c2314ced0890ce45e469574a73e5e6fdd6e9da1860eb29285f5e0" 132 | dependencies = [ 133 | "android-properties", 134 | "bitflags 1.3.2", 135 | "cc", 136 | "jni-sys", 137 | "libc", 138 | "log", 139 | "ndk", 140 | "ndk-context", 141 | "ndk-sys", 142 | "num_enum 0.6.1", 143 | ] 144 | 145 | [[package]] 146 | name = "android-properties" 147 | version = "0.2.2" 148 | source = "registry+https://github.com/rust-lang/crates.io-index" 149 | checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 150 | 151 | [[package]] 152 | name = "android-tzdata" 153 | version = "0.1.1" 154 | source = "registry+https://github.com/rust-lang/crates.io-index" 155 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 156 | 157 | [[package]] 158 | name = "android_system_properties" 159 | version = "0.1.5" 160 | source = "registry+https://github.com/rust-lang/crates.io-index" 161 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 162 | dependencies = [ 163 | "libc", 164 | ] 165 | 166 | [[package]] 167 | name = "arboard" 168 | version = "3.3.0" 169 | source = "registry+https://github.com/rust-lang/crates.io-index" 170 | checksum = "aafb29b107435aa276664c1db8954ac27a6e105cdad3c88287a199eb0e313c08" 171 | dependencies = [ 172 | "clipboard-win", 173 | "log", 174 | "objc", 175 | "objc-foundation", 176 | "objc_id", 177 | "parking_lot", 178 | "thiserror", 179 | "winapi", 180 | "x11rb", 181 | ] 182 | 183 | [[package]] 184 | name = "arrayref" 185 | version = "0.3.7" 186 | source = "registry+https://github.com/rust-lang/crates.io-index" 187 | checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 188 | 189 | [[package]] 190 | name = "arrayvec" 191 | version = "0.7.4" 192 | source = "registry+https://github.com/rust-lang/crates.io-index" 193 | checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 194 | 195 | [[package]] 196 | name = "async-broadcast" 197 | version = "0.5.1" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 200 | dependencies = [ 201 | "event-listener 2.5.3", 202 | "futures-core", 203 | ] 204 | 205 | [[package]] 206 | name = "async-channel" 207 | version = "1.9.0" 208 | source = "registry+https://github.com/rust-lang/crates.io-index" 209 | checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 210 | dependencies = [ 211 | "concurrent-queue", 212 | "event-listener 2.5.3", 213 | "futures-core", 214 | ] 215 | 216 | [[package]] 217 | name = "async-channel" 218 | version = "2.1.1" 219 | source = "registry+https://github.com/rust-lang/crates.io-index" 220 | checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 221 | dependencies = [ 222 | "concurrent-queue", 223 | "event-listener 4.0.0", 224 | "event-listener-strategy", 225 | "futures-core", 226 | "pin-project-lite", 227 | ] 228 | 229 | [[package]] 230 | name = "async-executor" 231 | version = "1.8.0" 232 | source = "registry+https://github.com/rust-lang/crates.io-index" 233 | checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 234 | dependencies = [ 235 | "async-lock 3.2.0", 236 | "async-task", 237 | "concurrent-queue", 238 | "fastrand 2.0.1", 239 | "futures-lite 2.1.0", 240 | "slab", 241 | ] 242 | 243 | [[package]] 244 | name = "async-fs" 245 | version = "1.6.0" 246 | source = "registry+https://github.com/rust-lang/crates.io-index" 247 | checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 248 | dependencies = [ 249 | "async-lock 2.8.0", 250 | "autocfg", 251 | "blocking", 252 | "futures-lite 1.13.0", 253 | ] 254 | 255 | [[package]] 256 | name = "async-io" 257 | version = "1.13.0" 258 | source = "registry+https://github.com/rust-lang/crates.io-index" 259 | checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 260 | dependencies = [ 261 | "async-lock 2.8.0", 262 | "autocfg", 263 | "cfg-if", 264 | "concurrent-queue", 265 | "futures-lite 1.13.0", 266 | "log", 267 | "parking", 268 | "polling 2.8.0", 269 | "rustix 0.37.27", 270 | "slab", 271 | "socket2 0.4.10", 272 | "waker-fn", 273 | ] 274 | 275 | [[package]] 276 | name = "async-io" 277 | version = "2.2.1" 278 | source = "registry+https://github.com/rust-lang/crates.io-index" 279 | checksum = "d6d3b15875ba253d1110c740755e246537483f152fa334f91abd7fe84c88b3ff" 280 | dependencies = [ 281 | "async-lock 3.2.0", 282 | "cfg-if", 283 | "concurrent-queue", 284 | "futures-io", 285 | "futures-lite 2.1.0", 286 | "parking", 287 | "polling 3.3.1", 288 | "rustix 0.38.27", 289 | "slab", 290 | "tracing", 291 | "windows-sys 0.52.0", 292 | ] 293 | 294 | [[package]] 295 | name = "async-lock" 296 | version = "2.8.0" 297 | source = "registry+https://github.com/rust-lang/crates.io-index" 298 | checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 299 | dependencies = [ 300 | "event-listener 2.5.3", 301 | ] 302 | 303 | [[package]] 304 | name = "async-lock" 305 | version = "3.2.0" 306 | source = "registry+https://github.com/rust-lang/crates.io-index" 307 | checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" 308 | dependencies = [ 309 | "event-listener 4.0.0", 310 | "event-listener-strategy", 311 | "pin-project-lite", 312 | ] 313 | 314 | [[package]] 315 | name = "async-process" 316 | version = "1.8.1" 317 | source = "registry+https://github.com/rust-lang/crates.io-index" 318 | checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 319 | dependencies = [ 320 | "async-io 1.13.0", 321 | "async-lock 2.8.0", 322 | "async-signal", 323 | "blocking", 324 | "cfg-if", 325 | "event-listener 3.1.0", 326 | "futures-lite 1.13.0", 327 | "rustix 0.38.27", 328 | "windows-sys 0.48.0", 329 | ] 330 | 331 | [[package]] 332 | name = "async-recursion" 333 | version = "1.0.5" 334 | source = "registry+https://github.com/rust-lang/crates.io-index" 335 | checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 336 | dependencies = [ 337 | "proc-macro2", 338 | "quote", 339 | "syn 2.0.39", 340 | ] 341 | 342 | [[package]] 343 | name = "async-signal" 344 | version = "0.2.5" 345 | source = "registry+https://github.com/rust-lang/crates.io-index" 346 | checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 347 | dependencies = [ 348 | "async-io 2.2.1", 349 | "async-lock 2.8.0", 350 | "atomic-waker", 351 | "cfg-if", 352 | "futures-core", 353 | "futures-io", 354 | "rustix 0.38.27", 355 | "signal-hook-registry", 356 | "slab", 357 | "windows-sys 0.48.0", 358 | ] 359 | 360 | [[package]] 361 | name = "async-task" 362 | version = "4.5.0" 363 | source = "registry+https://github.com/rust-lang/crates.io-index" 364 | checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" 365 | 366 | [[package]] 367 | name = "async-trait" 368 | version = "0.1.74" 369 | source = "registry+https://github.com/rust-lang/crates.io-index" 370 | checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 371 | dependencies = [ 372 | "proc-macro2", 373 | "quote", 374 | "syn 2.0.39", 375 | ] 376 | 377 | [[package]] 378 | name = "atomic-waker" 379 | version = "1.1.2" 380 | source = "registry+https://github.com/rust-lang/crates.io-index" 381 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 382 | 383 | [[package]] 384 | name = "atspi" 385 | version = "0.10.1" 386 | source = "registry+https://github.com/rust-lang/crates.io-index" 387 | checksum = "674e7a3376837b2e7d12d34d58ac47073c491dc3bf6f71a7adaf687d4d817faa" 388 | dependencies = [ 389 | "async-recursion", 390 | "async-trait", 391 | "atspi-macros", 392 | "enumflags2", 393 | "futures-lite 1.13.0", 394 | "serde", 395 | "tracing", 396 | "zbus", 397 | "zbus_names", 398 | ] 399 | 400 | [[package]] 401 | name = "atspi-macros" 402 | version = "0.2.0" 403 | source = "registry+https://github.com/rust-lang/crates.io-index" 404 | checksum = "97fb4870a32c0eaa17e35bca0e6b16020635157121fb7d45593d242c295bc768" 405 | dependencies = [ 406 | "quote", 407 | "syn 1.0.109", 408 | ] 409 | 410 | [[package]] 411 | name = "autocfg" 412 | version = "1.1.0" 413 | source = "registry+https://github.com/rust-lang/crates.io-index" 414 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 415 | 416 | [[package]] 417 | name = "backtrace" 418 | version = "0.3.69" 419 | source = "registry+https://github.com/rust-lang/crates.io-index" 420 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 421 | dependencies = [ 422 | "addr2line", 423 | "cc", 424 | "cfg-if", 425 | "libc", 426 | "miniz_oxide", 427 | "object", 428 | "rustc-demangle", 429 | ] 430 | 431 | [[package]] 432 | name = "base64" 433 | version = "0.13.1" 434 | source = "registry+https://github.com/rust-lang/crates.io-index" 435 | checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 436 | 437 | [[package]] 438 | name = "base64" 439 | version = "0.21.5" 440 | source = "registry+https://github.com/rust-lang/crates.io-index" 441 | checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 442 | 443 | [[package]] 444 | name = "bitflags" 445 | version = "1.3.2" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 448 | 449 | [[package]] 450 | name = "bitflags" 451 | version = "2.4.1" 452 | source = "registry+https://github.com/rust-lang/crates.io-index" 453 | checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 454 | 455 | [[package]] 456 | name = "bitvec" 457 | version = "1.0.1" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 460 | dependencies = [ 461 | "funty", 462 | "radium", 463 | "tap", 464 | "wyz", 465 | ] 466 | 467 | [[package]] 468 | name = "block" 469 | version = "0.1.6" 470 | source = "registry+https://github.com/rust-lang/crates.io-index" 471 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 472 | 473 | [[package]] 474 | name = "block-buffer" 475 | version = "0.10.4" 476 | source = "registry+https://github.com/rust-lang/crates.io-index" 477 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 478 | dependencies = [ 479 | "generic-array", 480 | ] 481 | 482 | [[package]] 483 | name = "block-sys" 484 | version = "0.1.0-beta.1" 485 | source = "registry+https://github.com/rust-lang/crates.io-index" 486 | checksum = "0fa55741ee90902547802152aaf3f8e5248aab7e21468089560d4c8840561146" 487 | dependencies = [ 488 | "objc-sys", 489 | ] 490 | 491 | [[package]] 492 | name = "block2" 493 | version = "0.2.0-alpha.6" 494 | source = "registry+https://github.com/rust-lang/crates.io-index" 495 | checksum = "8dd9e63c1744f755c2f60332b88de39d341e5e86239014ad839bd71c106dec42" 496 | dependencies = [ 497 | "block-sys", 498 | "objc2-encode", 499 | ] 500 | 501 | [[package]] 502 | name = "blocking" 503 | version = "1.5.1" 504 | source = "registry+https://github.com/rust-lang/crates.io-index" 505 | checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 506 | dependencies = [ 507 | "async-channel 2.1.1", 508 | "async-lock 3.2.0", 509 | "async-task", 510 | "fastrand 2.0.1", 511 | "futures-io", 512 | "futures-lite 2.1.0", 513 | "piper", 514 | "tracing", 515 | ] 516 | 517 | [[package]] 518 | name = "bson" 519 | version = "2.7.0" 520 | source = "registry+https://github.com/rust-lang/crates.io-index" 521 | checksum = "58da0ae1e701ea752cc46c1bb9f39d5ecefc7395c3ecd526261a566d4f16e0c2" 522 | dependencies = [ 523 | "ahash", 524 | "base64 0.13.1", 525 | "bitvec", 526 | "hex", 527 | "indexmap 1.9.3", 528 | "js-sys", 529 | "once_cell", 530 | "rand", 531 | "serde", 532 | "serde_bytes", 533 | "serde_json", 534 | "time", 535 | "uuid", 536 | ] 537 | 538 | [[package]] 539 | name = "bumpalo" 540 | version = "3.14.0" 541 | source = "registry+https://github.com/rust-lang/crates.io-index" 542 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 543 | 544 | [[package]] 545 | name = "bytemuck" 546 | version = "1.14.0" 547 | source = "registry+https://github.com/rust-lang/crates.io-index" 548 | checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 549 | dependencies = [ 550 | "bytemuck_derive", 551 | ] 552 | 553 | [[package]] 554 | name = "bytemuck_derive" 555 | version = "1.5.0" 556 | source = "registry+https://github.com/rust-lang/crates.io-index" 557 | checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" 558 | dependencies = [ 559 | "proc-macro2", 560 | "quote", 561 | "syn 2.0.39", 562 | ] 563 | 564 | [[package]] 565 | name = "byteorder" 566 | version = "1.5.0" 567 | source = "registry+https://github.com/rust-lang/crates.io-index" 568 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 569 | 570 | [[package]] 571 | name = "bytes" 572 | version = "1.5.0" 573 | source = "registry+https://github.com/rust-lang/crates.io-index" 574 | checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 575 | 576 | [[package]] 577 | name = "calloop" 578 | version = "0.10.6" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8" 581 | dependencies = [ 582 | "bitflags 1.3.2", 583 | "log", 584 | "nix 0.25.1", 585 | "slotmap", 586 | "thiserror", 587 | "vec_map", 588 | ] 589 | 590 | [[package]] 591 | name = "cc" 592 | version = "1.0.83" 593 | source = "registry+https://github.com/rust-lang/crates.io-index" 594 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 595 | dependencies = [ 596 | "jobserver", 597 | "libc", 598 | ] 599 | 600 | [[package]] 601 | name = "cesu8" 602 | version = "1.1.0" 603 | source = "registry+https://github.com/rust-lang/crates.io-index" 604 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 605 | 606 | [[package]] 607 | name = "cfg-if" 608 | version = "1.0.0" 609 | source = "registry+https://github.com/rust-lang/crates.io-index" 610 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 611 | 612 | [[package]] 613 | name = "cfg_aliases" 614 | version = "0.1.1" 615 | source = "registry+https://github.com/rust-lang/crates.io-index" 616 | checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 617 | 618 | [[package]] 619 | name = "cgl" 620 | version = "0.3.2" 621 | source = "registry+https://github.com/rust-lang/crates.io-index" 622 | checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff" 623 | dependencies = [ 624 | "libc", 625 | ] 626 | 627 | [[package]] 628 | name = "chrono" 629 | version = "0.4.31" 630 | source = "registry+https://github.com/rust-lang/crates.io-index" 631 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 632 | dependencies = [ 633 | "android-tzdata", 634 | "iana-time-zone", 635 | "num-traits", 636 | "windows-targets 0.48.5", 637 | ] 638 | 639 | [[package]] 640 | name = "clipboard-win" 641 | version = "4.5.0" 642 | source = "registry+https://github.com/rust-lang/crates.io-index" 643 | checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 644 | dependencies = [ 645 | "error-code", 646 | "str-buf", 647 | "winapi", 648 | ] 649 | 650 | [[package]] 651 | name = "cocoa" 652 | version = "0.24.1" 653 | source = "registry+https://github.com/rust-lang/crates.io-index" 654 | checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 655 | dependencies = [ 656 | "bitflags 1.3.2", 657 | "block", 658 | "cocoa-foundation", 659 | "core-foundation", 660 | "core-graphics", 661 | "foreign-types", 662 | "libc", 663 | "objc", 664 | ] 665 | 666 | [[package]] 667 | name = "cocoa-foundation" 668 | version = "0.1.2" 669 | source = "registry+https://github.com/rust-lang/crates.io-index" 670 | checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 671 | dependencies = [ 672 | "bitflags 1.3.2", 673 | "block", 674 | "core-foundation", 675 | "core-graphics-types", 676 | "libc", 677 | "objc", 678 | ] 679 | 680 | [[package]] 681 | name = "color_quant" 682 | version = "1.1.0" 683 | source = "registry+https://github.com/rust-lang/crates.io-index" 684 | checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 685 | 686 | [[package]] 687 | name = "combine" 688 | version = "4.6.6" 689 | source = "registry+https://github.com/rust-lang/crates.io-index" 690 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 691 | dependencies = [ 692 | "bytes", 693 | "memchr", 694 | ] 695 | 696 | [[package]] 697 | name = "concurrent-queue" 698 | version = "2.4.0" 699 | source = "registry+https://github.com/rust-lang/crates.io-index" 700 | checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 701 | dependencies = [ 702 | "crossbeam-utils", 703 | ] 704 | 705 | [[package]] 706 | name = "convert_case" 707 | version = "0.4.0" 708 | source = "registry+https://github.com/rust-lang/crates.io-index" 709 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 710 | 711 | [[package]] 712 | name = "core-foundation" 713 | version = "0.9.4" 714 | source = "registry+https://github.com/rust-lang/crates.io-index" 715 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 716 | dependencies = [ 717 | "core-foundation-sys", 718 | "libc", 719 | ] 720 | 721 | [[package]] 722 | name = "core-foundation-sys" 723 | version = "0.8.6" 724 | source = "registry+https://github.com/rust-lang/crates.io-index" 725 | checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 726 | 727 | [[package]] 728 | name = "core-graphics" 729 | version = "0.22.3" 730 | source = "registry+https://github.com/rust-lang/crates.io-index" 731 | checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 732 | dependencies = [ 733 | "bitflags 1.3.2", 734 | "core-foundation", 735 | "core-graphics-types", 736 | "foreign-types", 737 | "libc", 738 | ] 739 | 740 | [[package]] 741 | name = "core-graphics-types" 742 | version = "0.1.3" 743 | source = "registry+https://github.com/rust-lang/crates.io-index" 744 | checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 745 | dependencies = [ 746 | "bitflags 1.3.2", 747 | "core-foundation", 748 | "libc", 749 | ] 750 | 751 | [[package]] 752 | name = "cpufeatures" 753 | version = "0.2.11" 754 | source = "registry+https://github.com/rust-lang/crates.io-index" 755 | checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 756 | dependencies = [ 757 | "libc", 758 | ] 759 | 760 | [[package]] 761 | name = "crc32fast" 762 | version = "1.3.2" 763 | source = "registry+https://github.com/rust-lang/crates.io-index" 764 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 765 | dependencies = [ 766 | "cfg-if", 767 | ] 768 | 769 | [[package]] 770 | name = "crossbeam-utils" 771 | version = "0.8.16" 772 | source = "registry+https://github.com/rust-lang/crates.io-index" 773 | checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 774 | dependencies = [ 775 | "cfg-if", 776 | ] 777 | 778 | [[package]] 779 | name = "crypto-common" 780 | version = "0.1.6" 781 | source = "registry+https://github.com/rust-lang/crates.io-index" 782 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 783 | dependencies = [ 784 | "generic-array", 785 | "typenum", 786 | ] 787 | 788 | [[package]] 789 | name = "darling" 790 | version = "0.13.4" 791 | source = "registry+https://github.com/rust-lang/crates.io-index" 792 | checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 793 | dependencies = [ 794 | "darling_core", 795 | "darling_macro", 796 | ] 797 | 798 | [[package]] 799 | name = "darling_core" 800 | version = "0.13.4" 801 | source = "registry+https://github.com/rust-lang/crates.io-index" 802 | checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 803 | dependencies = [ 804 | "fnv", 805 | "ident_case", 806 | "proc-macro2", 807 | "quote", 808 | "strsim", 809 | "syn 1.0.109", 810 | ] 811 | 812 | [[package]] 813 | name = "darling_macro" 814 | version = "0.13.4" 815 | source = "registry+https://github.com/rust-lang/crates.io-index" 816 | checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 817 | dependencies = [ 818 | "darling_core", 819 | "quote", 820 | "syn 1.0.109", 821 | ] 822 | 823 | [[package]] 824 | name = "data-encoding" 825 | version = "2.5.0" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" 828 | 829 | [[package]] 830 | name = "deranged" 831 | version = "0.3.10" 832 | source = "registry+https://github.com/rust-lang/crates.io-index" 833 | checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 834 | dependencies = [ 835 | "powerfmt", 836 | ] 837 | 838 | [[package]] 839 | name = "derivative" 840 | version = "2.2.0" 841 | source = "registry+https://github.com/rust-lang/crates.io-index" 842 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 843 | dependencies = [ 844 | "proc-macro2", 845 | "quote", 846 | "syn 1.0.109", 847 | ] 848 | 849 | [[package]] 850 | name = "derive_more" 851 | version = "0.99.17" 852 | source = "registry+https://github.com/rust-lang/crates.io-index" 853 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 854 | dependencies = [ 855 | "convert_case", 856 | "proc-macro2", 857 | "quote", 858 | "rustc_version 0.4.0", 859 | "syn 1.0.109", 860 | ] 861 | 862 | [[package]] 863 | name = "digest" 864 | version = "0.10.7" 865 | source = "registry+https://github.com/rust-lang/crates.io-index" 866 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 867 | dependencies = [ 868 | "block-buffer", 869 | "crypto-common", 870 | "subtle", 871 | ] 872 | 873 | [[package]] 874 | name = "dispatch" 875 | version = "0.2.0" 876 | source = "registry+https://github.com/rust-lang/crates.io-index" 877 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 878 | 879 | [[package]] 880 | name = "dlib" 881 | version = "0.5.2" 882 | source = "registry+https://github.com/rust-lang/crates.io-index" 883 | checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 884 | dependencies = [ 885 | "libloading 0.8.1", 886 | ] 887 | 888 | [[package]] 889 | name = "dotenv" 890 | version = "0.15.0" 891 | source = "registry+https://github.com/rust-lang/crates.io-index" 892 | checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 893 | 894 | [[package]] 895 | name = "downcast-rs" 896 | version = "1.2.0" 897 | source = "registry+https://github.com/rust-lang/crates.io-index" 898 | checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 899 | 900 | [[package]] 901 | name = "ecolor" 902 | version = "0.23.0" 903 | source = "registry+https://github.com/rust-lang/crates.io-index" 904 | checksum = "cfdf4e52dbbb615cfd30cf5a5265335c217b5fd8d669593cea74a517d9c605af" 905 | dependencies = [ 906 | "bytemuck", 907 | ] 908 | 909 | [[package]] 910 | name = "eframe" 911 | version = "0.23.0" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | checksum = "26d9efede6c8905d3fc51a5ec9a506d4da4011bbcae0253d0304580fe40af3f5" 914 | dependencies = [ 915 | "bytemuck", 916 | "cocoa", 917 | "egui", 918 | "egui-winit", 919 | "egui_glow", 920 | "glow", 921 | "glutin", 922 | "glutin-winit", 923 | "image", 924 | "js-sys", 925 | "log", 926 | "objc", 927 | "parking_lot", 928 | "percent-encoding", 929 | "raw-window-handle", 930 | "static_assertions", 931 | "thiserror", 932 | "wasm-bindgen", 933 | "wasm-bindgen-futures", 934 | "web-sys", 935 | "winapi", 936 | "winit", 937 | ] 938 | 939 | [[package]] 940 | name = "egui" 941 | version = "0.23.0" 942 | source = "registry+https://github.com/rust-lang/crates.io-index" 943 | checksum = "8bd69fed5fcf4fbb8225b24e80ea6193b61e17a625db105ef0c4d71dde6eb8b7" 944 | dependencies = [ 945 | "accesskit", 946 | "ahash", 947 | "epaint", 948 | "log", 949 | "nohash-hasher", 950 | ] 951 | 952 | [[package]] 953 | name = "egui-winit" 954 | version = "0.23.0" 955 | source = "registry+https://github.com/rust-lang/crates.io-index" 956 | checksum = "c15479a96d9fadccf5dac690bdc6373b97b8e1c0dd28367058f25a5298da0195" 957 | dependencies = [ 958 | "accesskit_winit", 959 | "arboard", 960 | "egui", 961 | "log", 962 | "raw-window-handle", 963 | "smithay-clipboard", 964 | "web-time", 965 | "webbrowser", 966 | "winit", 967 | ] 968 | 969 | [[package]] 970 | name = "egui_glow" 971 | version = "0.23.0" 972 | source = "registry+https://github.com/rust-lang/crates.io-index" 973 | checksum = "ce6726c08798822280038bbad2e32f4fc3cbed800cd51c6e34e99cd2d60cc1bc" 974 | dependencies = [ 975 | "bytemuck", 976 | "egui", 977 | "glow", 978 | "log", 979 | "memoffset 0.6.5", 980 | "wasm-bindgen", 981 | "web-sys", 982 | ] 983 | 984 | [[package]] 985 | name = "emath" 986 | version = "0.23.0" 987 | source = "registry+https://github.com/rust-lang/crates.io-index" 988 | checksum = "1ef2b29de53074e575c18b694167ccbe6e5191f7b25fe65175a0d905a32eeec0" 989 | dependencies = [ 990 | "bytemuck", 991 | ] 992 | 993 | [[package]] 994 | name = "enum-as-inner" 995 | version = "0.4.0" 996 | source = "registry+https://github.com/rust-lang/crates.io-index" 997 | checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" 998 | dependencies = [ 999 | "heck", 1000 | "proc-macro2", 1001 | "quote", 1002 | "syn 1.0.109", 1003 | ] 1004 | 1005 | [[package]] 1006 | name = "enumflags2" 1007 | version = "0.7.8" 1008 | source = "registry+https://github.com/rust-lang/crates.io-index" 1009 | checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1010 | dependencies = [ 1011 | "enumflags2_derive", 1012 | "serde", 1013 | ] 1014 | 1015 | [[package]] 1016 | name = "enumflags2_derive" 1017 | version = "0.7.8" 1018 | source = "registry+https://github.com/rust-lang/crates.io-index" 1019 | checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1020 | dependencies = [ 1021 | "proc-macro2", 1022 | "quote", 1023 | "syn 2.0.39", 1024 | ] 1025 | 1026 | [[package]] 1027 | name = "epaint" 1028 | version = "0.23.0" 1029 | source = "registry+https://github.com/rust-lang/crates.io-index" 1030 | checksum = "58067b840d009143934d91d8dcb8ded054d8301d7c11a517ace0a99bb1e1595e" 1031 | dependencies = [ 1032 | "ab_glyph", 1033 | "ahash", 1034 | "bytemuck", 1035 | "ecolor", 1036 | "emath", 1037 | "log", 1038 | "nohash-hasher", 1039 | "parking_lot", 1040 | ] 1041 | 1042 | [[package]] 1043 | name = "equivalent" 1044 | version = "1.0.1" 1045 | source = "registry+https://github.com/rust-lang/crates.io-index" 1046 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1047 | 1048 | [[package]] 1049 | name = "errno" 1050 | version = "0.3.8" 1051 | source = "registry+https://github.com/rust-lang/crates.io-index" 1052 | checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1053 | dependencies = [ 1054 | "libc", 1055 | "windows-sys 0.52.0", 1056 | ] 1057 | 1058 | [[package]] 1059 | name = "error-code" 1060 | version = "2.3.1" 1061 | source = "registry+https://github.com/rust-lang/crates.io-index" 1062 | checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 1063 | dependencies = [ 1064 | "libc", 1065 | "str-buf", 1066 | ] 1067 | 1068 | [[package]] 1069 | name = "event-listener" 1070 | version = "2.5.3" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1073 | 1074 | [[package]] 1075 | name = "event-listener" 1076 | version = "3.1.0" 1077 | source = "registry+https://github.com/rust-lang/crates.io-index" 1078 | checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 1079 | dependencies = [ 1080 | "concurrent-queue", 1081 | "parking", 1082 | "pin-project-lite", 1083 | ] 1084 | 1085 | [[package]] 1086 | name = "event-listener" 1087 | version = "4.0.0" 1088 | source = "registry+https://github.com/rust-lang/crates.io-index" 1089 | checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" 1090 | dependencies = [ 1091 | "concurrent-queue", 1092 | "parking", 1093 | "pin-project-lite", 1094 | ] 1095 | 1096 | [[package]] 1097 | name = "event-listener-strategy" 1098 | version = "0.4.0" 1099 | source = "registry+https://github.com/rust-lang/crates.io-index" 1100 | checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1101 | dependencies = [ 1102 | "event-listener 4.0.0", 1103 | "pin-project-lite", 1104 | ] 1105 | 1106 | [[package]] 1107 | name = "fastrand" 1108 | version = "1.9.0" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1111 | dependencies = [ 1112 | "instant", 1113 | ] 1114 | 1115 | [[package]] 1116 | name = "fastrand" 1117 | version = "2.0.1" 1118 | source = "registry+https://github.com/rust-lang/crates.io-index" 1119 | checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1120 | 1121 | [[package]] 1122 | name = "fdeflate" 1123 | version = "0.3.1" 1124 | source = "registry+https://github.com/rust-lang/crates.io-index" 1125 | checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 1126 | dependencies = [ 1127 | "simd-adler32", 1128 | ] 1129 | 1130 | [[package]] 1131 | name = "finl_unicode" 1132 | version = "1.2.0" 1133 | source = "registry+https://github.com/rust-lang/crates.io-index" 1134 | checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 1135 | 1136 | [[package]] 1137 | name = "flate2" 1138 | version = "1.0.28" 1139 | source = "registry+https://github.com/rust-lang/crates.io-index" 1140 | checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 1141 | dependencies = [ 1142 | "crc32fast", 1143 | "miniz_oxide", 1144 | ] 1145 | 1146 | [[package]] 1147 | name = "fnv" 1148 | version = "1.0.7" 1149 | source = "registry+https://github.com/rust-lang/crates.io-index" 1150 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1151 | 1152 | [[package]] 1153 | name = "foreign-types" 1154 | version = "0.3.2" 1155 | source = "registry+https://github.com/rust-lang/crates.io-index" 1156 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1157 | dependencies = [ 1158 | "foreign-types-shared", 1159 | ] 1160 | 1161 | [[package]] 1162 | name = "foreign-types-shared" 1163 | version = "0.1.1" 1164 | source = "registry+https://github.com/rust-lang/crates.io-index" 1165 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1166 | 1167 | [[package]] 1168 | name = "form_urlencoded" 1169 | version = "1.2.1" 1170 | source = "registry+https://github.com/rust-lang/crates.io-index" 1171 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1172 | dependencies = [ 1173 | "percent-encoding", 1174 | ] 1175 | 1176 | [[package]] 1177 | name = "funty" 1178 | version = "2.0.0" 1179 | source = "registry+https://github.com/rust-lang/crates.io-index" 1180 | checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1181 | 1182 | [[package]] 1183 | name = "futures" 1184 | version = "0.3.29" 1185 | source = "registry+https://github.com/rust-lang/crates.io-index" 1186 | checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1187 | dependencies = [ 1188 | "futures-channel", 1189 | "futures-core", 1190 | "futures-executor", 1191 | "futures-io", 1192 | "futures-sink", 1193 | "futures-task", 1194 | "futures-util", 1195 | ] 1196 | 1197 | [[package]] 1198 | name = "futures-channel" 1199 | version = "0.3.29" 1200 | source = "registry+https://github.com/rust-lang/crates.io-index" 1201 | checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1202 | dependencies = [ 1203 | "futures-core", 1204 | "futures-sink", 1205 | ] 1206 | 1207 | [[package]] 1208 | name = "futures-core" 1209 | version = "0.3.29" 1210 | source = "registry+https://github.com/rust-lang/crates.io-index" 1211 | checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1212 | 1213 | [[package]] 1214 | name = "futures-executor" 1215 | version = "0.3.29" 1216 | source = "registry+https://github.com/rust-lang/crates.io-index" 1217 | checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1218 | dependencies = [ 1219 | "futures-core", 1220 | "futures-task", 1221 | "futures-util", 1222 | ] 1223 | 1224 | [[package]] 1225 | name = "futures-io" 1226 | version = "0.3.29" 1227 | source = "registry+https://github.com/rust-lang/crates.io-index" 1228 | checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1229 | 1230 | [[package]] 1231 | name = "futures-lite" 1232 | version = "1.13.0" 1233 | source = "registry+https://github.com/rust-lang/crates.io-index" 1234 | checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1235 | dependencies = [ 1236 | "fastrand 1.9.0", 1237 | "futures-core", 1238 | "futures-io", 1239 | "memchr", 1240 | "parking", 1241 | "pin-project-lite", 1242 | "waker-fn", 1243 | ] 1244 | 1245 | [[package]] 1246 | name = "futures-lite" 1247 | version = "2.1.0" 1248 | source = "registry+https://github.com/rust-lang/crates.io-index" 1249 | checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" 1250 | dependencies = [ 1251 | "fastrand 2.0.1", 1252 | "futures-core", 1253 | "futures-io", 1254 | "parking", 1255 | "pin-project-lite", 1256 | ] 1257 | 1258 | [[package]] 1259 | name = "futures-macro" 1260 | version = "0.3.29" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1263 | dependencies = [ 1264 | "proc-macro2", 1265 | "quote", 1266 | "syn 2.0.39", 1267 | ] 1268 | 1269 | [[package]] 1270 | name = "futures-sink" 1271 | version = "0.3.29" 1272 | source = "registry+https://github.com/rust-lang/crates.io-index" 1273 | checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1274 | 1275 | [[package]] 1276 | name = "futures-task" 1277 | version = "0.3.29" 1278 | source = "registry+https://github.com/rust-lang/crates.io-index" 1279 | checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1280 | 1281 | [[package]] 1282 | name = "futures-util" 1283 | version = "0.3.29" 1284 | source = "registry+https://github.com/rust-lang/crates.io-index" 1285 | checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1286 | dependencies = [ 1287 | "futures-channel", 1288 | "futures-core", 1289 | "futures-io", 1290 | "futures-macro", 1291 | "futures-sink", 1292 | "futures-task", 1293 | "memchr", 1294 | "pin-project-lite", 1295 | "pin-utils", 1296 | "slab", 1297 | ] 1298 | 1299 | [[package]] 1300 | name = "generic-array" 1301 | version = "0.14.7" 1302 | source = "registry+https://github.com/rust-lang/crates.io-index" 1303 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1304 | dependencies = [ 1305 | "typenum", 1306 | "version_check", 1307 | ] 1308 | 1309 | [[package]] 1310 | name = "gethostname" 1311 | version = "0.3.0" 1312 | source = "registry+https://github.com/rust-lang/crates.io-index" 1313 | checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177" 1314 | dependencies = [ 1315 | "libc", 1316 | "winapi", 1317 | ] 1318 | 1319 | [[package]] 1320 | name = "getrandom" 1321 | version = "0.2.11" 1322 | source = "registry+https://github.com/rust-lang/crates.io-index" 1323 | checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1324 | dependencies = [ 1325 | "cfg-if", 1326 | "libc", 1327 | "wasi", 1328 | ] 1329 | 1330 | [[package]] 1331 | name = "gimli" 1332 | version = "0.28.1" 1333 | source = "registry+https://github.com/rust-lang/crates.io-index" 1334 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1335 | 1336 | [[package]] 1337 | name = "gl_generator" 1338 | version = "0.14.0" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" 1341 | dependencies = [ 1342 | "khronos_api", 1343 | "log", 1344 | "xml-rs", 1345 | ] 1346 | 1347 | [[package]] 1348 | name = "glow" 1349 | version = "0.12.3" 1350 | source = "registry+https://github.com/rust-lang/crates.io-index" 1351 | checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728" 1352 | dependencies = [ 1353 | "js-sys", 1354 | "slotmap", 1355 | "wasm-bindgen", 1356 | "web-sys", 1357 | ] 1358 | 1359 | [[package]] 1360 | name = "glutin" 1361 | version = "0.30.10" 1362 | source = "registry+https://github.com/rust-lang/crates.io-index" 1363 | checksum = "8fc93b03242719b8ad39fb26ed2b01737144ce7bd4bfc7adadcef806596760fe" 1364 | dependencies = [ 1365 | "bitflags 1.3.2", 1366 | "cfg_aliases", 1367 | "cgl", 1368 | "core-foundation", 1369 | "dispatch", 1370 | "glutin_egl_sys", 1371 | "glutin_glx_sys", 1372 | "glutin_wgl_sys", 1373 | "libloading 0.7.4", 1374 | "objc2", 1375 | "once_cell", 1376 | "raw-window-handle", 1377 | "wayland-sys 0.30.1", 1378 | "windows-sys 0.45.0", 1379 | "x11-dl", 1380 | ] 1381 | 1382 | [[package]] 1383 | name = "glutin-winit" 1384 | version = "0.3.0" 1385 | source = "registry+https://github.com/rust-lang/crates.io-index" 1386 | checksum = "629a873fc04062830bfe8f97c03773bcd7b371e23bcc465d0a61448cd1588fa4" 1387 | dependencies = [ 1388 | "cfg_aliases", 1389 | "glutin", 1390 | "raw-window-handle", 1391 | "winit", 1392 | ] 1393 | 1394 | [[package]] 1395 | name = "glutin_egl_sys" 1396 | version = "0.5.1" 1397 | source = "registry+https://github.com/rust-lang/crates.io-index" 1398 | checksum = "af784eb26c5a68ec85391268e074f0aa618c096eadb5d6330b0911cf34fe57c5" 1399 | dependencies = [ 1400 | "gl_generator", 1401 | "windows-sys 0.45.0", 1402 | ] 1403 | 1404 | [[package]] 1405 | name = "glutin_glx_sys" 1406 | version = "0.4.0" 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" 1408 | checksum = "1b53cb5fe568964aa066a3ba91eac5ecbac869fb0842cd0dc9e412434f1a1494" 1409 | dependencies = [ 1410 | "gl_generator", 1411 | "x11-dl", 1412 | ] 1413 | 1414 | [[package]] 1415 | name = "glutin_wgl_sys" 1416 | version = "0.4.0" 1417 | source = "registry+https://github.com/rust-lang/crates.io-index" 1418 | checksum = "ef89398e90033fc6bc65e9bd42fd29bbbfd483bda5b56dc5562f455550618165" 1419 | dependencies = [ 1420 | "gl_generator", 1421 | ] 1422 | 1423 | [[package]] 1424 | name = "hashbrown" 1425 | version = "0.12.3" 1426 | source = "registry+https://github.com/rust-lang/crates.io-index" 1427 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1428 | 1429 | [[package]] 1430 | name = "hashbrown" 1431 | version = "0.14.3" 1432 | source = "registry+https://github.com/rust-lang/crates.io-index" 1433 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1434 | 1435 | [[package]] 1436 | name = "heck" 1437 | version = "0.4.1" 1438 | source = "registry+https://github.com/rust-lang/crates.io-index" 1439 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1440 | 1441 | [[package]] 1442 | name = "hermit-abi" 1443 | version = "0.3.3" 1444 | source = "registry+https://github.com/rust-lang/crates.io-index" 1445 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1446 | 1447 | [[package]] 1448 | name = "hex" 1449 | version = "0.4.3" 1450 | source = "registry+https://github.com/rust-lang/crates.io-index" 1451 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1452 | 1453 | [[package]] 1454 | name = "hmac" 1455 | version = "0.12.1" 1456 | source = "registry+https://github.com/rust-lang/crates.io-index" 1457 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1458 | dependencies = [ 1459 | "digest", 1460 | ] 1461 | 1462 | [[package]] 1463 | name = "home" 1464 | version = "0.5.5" 1465 | source = "registry+https://github.com/rust-lang/crates.io-index" 1466 | checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1467 | dependencies = [ 1468 | "windows-sys 0.48.0", 1469 | ] 1470 | 1471 | [[package]] 1472 | name = "hostname" 1473 | version = "0.3.1" 1474 | source = "registry+https://github.com/rust-lang/crates.io-index" 1475 | checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 1476 | dependencies = [ 1477 | "libc", 1478 | "match_cfg", 1479 | "winapi", 1480 | ] 1481 | 1482 | [[package]] 1483 | name = "iana-time-zone" 1484 | version = "0.1.58" 1485 | source = "registry+https://github.com/rust-lang/crates.io-index" 1486 | checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 1487 | dependencies = [ 1488 | "android_system_properties", 1489 | "core-foundation-sys", 1490 | "iana-time-zone-haiku", 1491 | "js-sys", 1492 | "wasm-bindgen", 1493 | "windows-core", 1494 | ] 1495 | 1496 | [[package]] 1497 | name = "iana-time-zone-haiku" 1498 | version = "0.1.2" 1499 | source = "registry+https://github.com/rust-lang/crates.io-index" 1500 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1501 | dependencies = [ 1502 | "cc", 1503 | ] 1504 | 1505 | [[package]] 1506 | name = "ident_case" 1507 | version = "1.0.1" 1508 | source = "registry+https://github.com/rust-lang/crates.io-index" 1509 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1510 | 1511 | [[package]] 1512 | name = "idna" 1513 | version = "0.2.3" 1514 | source = "registry+https://github.com/rust-lang/crates.io-index" 1515 | checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 1516 | dependencies = [ 1517 | "matches", 1518 | "unicode-bidi", 1519 | "unicode-normalization", 1520 | ] 1521 | 1522 | [[package]] 1523 | name = "idna" 1524 | version = "0.5.0" 1525 | source = "registry+https://github.com/rust-lang/crates.io-index" 1526 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1527 | dependencies = [ 1528 | "unicode-bidi", 1529 | "unicode-normalization", 1530 | ] 1531 | 1532 | [[package]] 1533 | name = "image" 1534 | version = "0.24.7" 1535 | source = "registry+https://github.com/rust-lang/crates.io-index" 1536 | checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 1537 | dependencies = [ 1538 | "bytemuck", 1539 | "byteorder", 1540 | "color_quant", 1541 | "num-rational", 1542 | "num-traits", 1543 | "png", 1544 | ] 1545 | 1546 | [[package]] 1547 | name = "indexmap" 1548 | version = "1.9.3" 1549 | source = "registry+https://github.com/rust-lang/crates.io-index" 1550 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1551 | dependencies = [ 1552 | "autocfg", 1553 | "hashbrown 0.12.3", 1554 | ] 1555 | 1556 | [[package]] 1557 | name = "indexmap" 1558 | version = "2.1.0" 1559 | source = "registry+https://github.com/rust-lang/crates.io-index" 1560 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 1561 | dependencies = [ 1562 | "equivalent", 1563 | "hashbrown 0.14.3", 1564 | ] 1565 | 1566 | [[package]] 1567 | name = "instant" 1568 | version = "0.1.12" 1569 | source = "registry+https://github.com/rust-lang/crates.io-index" 1570 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1571 | dependencies = [ 1572 | "cfg-if", 1573 | "js-sys", 1574 | "wasm-bindgen", 1575 | "web-sys", 1576 | ] 1577 | 1578 | [[package]] 1579 | name = "io-lifetimes" 1580 | version = "1.0.11" 1581 | source = "registry+https://github.com/rust-lang/crates.io-index" 1582 | checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1583 | dependencies = [ 1584 | "hermit-abi", 1585 | "libc", 1586 | "windows-sys 0.48.0", 1587 | ] 1588 | 1589 | [[package]] 1590 | name = "ipconfig" 1591 | version = "0.3.2" 1592 | source = "registry+https://github.com/rust-lang/crates.io-index" 1593 | checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1594 | dependencies = [ 1595 | "socket2 0.5.5", 1596 | "widestring", 1597 | "windows-sys 0.48.0", 1598 | "winreg", 1599 | ] 1600 | 1601 | [[package]] 1602 | name = "ipnet" 1603 | version = "2.9.0" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1606 | 1607 | [[package]] 1608 | name = "itoa" 1609 | version = "1.0.9" 1610 | source = "registry+https://github.com/rust-lang/crates.io-index" 1611 | checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1612 | 1613 | [[package]] 1614 | name = "jni" 1615 | version = "0.21.1" 1616 | source = "registry+https://github.com/rust-lang/crates.io-index" 1617 | checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1618 | dependencies = [ 1619 | "cesu8", 1620 | "cfg-if", 1621 | "combine", 1622 | "jni-sys", 1623 | "log", 1624 | "thiserror", 1625 | "walkdir", 1626 | "windows-sys 0.45.0", 1627 | ] 1628 | 1629 | [[package]] 1630 | name = "jni-sys" 1631 | version = "0.3.0" 1632 | source = "registry+https://github.com/rust-lang/crates.io-index" 1633 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1634 | 1635 | [[package]] 1636 | name = "jobserver" 1637 | version = "0.1.27" 1638 | source = "registry+https://github.com/rust-lang/crates.io-index" 1639 | checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 1640 | dependencies = [ 1641 | "libc", 1642 | ] 1643 | 1644 | [[package]] 1645 | name = "js-sys" 1646 | version = "0.3.66" 1647 | source = "registry+https://github.com/rust-lang/crates.io-index" 1648 | checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 1649 | dependencies = [ 1650 | "wasm-bindgen", 1651 | ] 1652 | 1653 | [[package]] 1654 | name = "khronos_api" 1655 | version = "3.1.0" 1656 | source = "registry+https://github.com/rust-lang/crates.io-index" 1657 | checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 1658 | 1659 | [[package]] 1660 | name = "lazy_static" 1661 | version = "1.4.0" 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" 1663 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1664 | 1665 | [[package]] 1666 | name = "libc" 1667 | version = "0.2.150" 1668 | source = "registry+https://github.com/rust-lang/crates.io-index" 1669 | checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 1670 | 1671 | [[package]] 1672 | name = "libloading" 1673 | version = "0.7.4" 1674 | source = "registry+https://github.com/rust-lang/crates.io-index" 1675 | checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1676 | dependencies = [ 1677 | "cfg-if", 1678 | "winapi", 1679 | ] 1680 | 1681 | [[package]] 1682 | name = "libloading" 1683 | version = "0.8.1" 1684 | source = "registry+https://github.com/rust-lang/crates.io-index" 1685 | checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 1686 | dependencies = [ 1687 | "cfg-if", 1688 | "windows-sys 0.48.0", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "libredox" 1693 | version = "0.0.2" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607" 1696 | dependencies = [ 1697 | "bitflags 2.4.1", 1698 | "libc", 1699 | "redox_syscall 0.4.1", 1700 | ] 1701 | 1702 | [[package]] 1703 | name = "linked-hash-map" 1704 | version = "0.5.6" 1705 | source = "registry+https://github.com/rust-lang/crates.io-index" 1706 | checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1707 | 1708 | [[package]] 1709 | name = "linux-raw-sys" 1710 | version = "0.3.8" 1711 | source = "registry+https://github.com/rust-lang/crates.io-index" 1712 | checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1713 | 1714 | [[package]] 1715 | name = "linux-raw-sys" 1716 | version = "0.4.12" 1717 | source = "registry+https://github.com/rust-lang/crates.io-index" 1718 | checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 1719 | 1720 | [[package]] 1721 | name = "lock_api" 1722 | version = "0.4.11" 1723 | source = "registry+https://github.com/rust-lang/crates.io-index" 1724 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 1725 | dependencies = [ 1726 | "autocfg", 1727 | "scopeguard", 1728 | ] 1729 | 1730 | [[package]] 1731 | name = "log" 1732 | version = "0.4.20" 1733 | source = "registry+https://github.com/rust-lang/crates.io-index" 1734 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1735 | 1736 | [[package]] 1737 | name = "lru-cache" 1738 | version = "0.1.2" 1739 | source = "registry+https://github.com/rust-lang/crates.io-index" 1740 | checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 1741 | dependencies = [ 1742 | "linked-hash-map", 1743 | ] 1744 | 1745 | [[package]] 1746 | name = "malloc_buf" 1747 | version = "0.0.6" 1748 | source = "registry+https://github.com/rust-lang/crates.io-index" 1749 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1750 | dependencies = [ 1751 | "libc", 1752 | ] 1753 | 1754 | [[package]] 1755 | name = "match_cfg" 1756 | version = "0.1.0" 1757 | source = "registry+https://github.com/rust-lang/crates.io-index" 1758 | checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 1759 | 1760 | [[package]] 1761 | name = "matches" 1762 | version = "0.1.10" 1763 | source = "registry+https://github.com/rust-lang/crates.io-index" 1764 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1765 | 1766 | [[package]] 1767 | name = "md-5" 1768 | version = "0.10.6" 1769 | source = "registry+https://github.com/rust-lang/crates.io-index" 1770 | checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 1771 | dependencies = [ 1772 | "cfg-if", 1773 | "digest", 1774 | ] 1775 | 1776 | [[package]] 1777 | name = "memchr" 1778 | version = "2.6.4" 1779 | source = "registry+https://github.com/rust-lang/crates.io-index" 1780 | checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1781 | 1782 | [[package]] 1783 | name = "memmap2" 1784 | version = "0.5.10" 1785 | source = "registry+https://github.com/rust-lang/crates.io-index" 1786 | checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1787 | dependencies = [ 1788 | "libc", 1789 | ] 1790 | 1791 | [[package]] 1792 | name = "memoffset" 1793 | version = "0.6.5" 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" 1795 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1796 | dependencies = [ 1797 | "autocfg", 1798 | ] 1799 | 1800 | [[package]] 1801 | name = "memoffset" 1802 | version = "0.7.1" 1803 | source = "registry+https://github.com/rust-lang/crates.io-index" 1804 | checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1805 | dependencies = [ 1806 | "autocfg", 1807 | ] 1808 | 1809 | [[package]] 1810 | name = "minimal-lexical" 1811 | version = "0.2.1" 1812 | source = "registry+https://github.com/rust-lang/crates.io-index" 1813 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1814 | 1815 | [[package]] 1816 | name = "miniz_oxide" 1817 | version = "0.7.1" 1818 | source = "registry+https://github.com/rust-lang/crates.io-index" 1819 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1820 | dependencies = [ 1821 | "adler", 1822 | "simd-adler32", 1823 | ] 1824 | 1825 | [[package]] 1826 | name = "mio" 1827 | version = "0.8.11" 1828 | source = "registry+https://github.com/rust-lang/crates.io-index" 1829 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1830 | dependencies = [ 1831 | "libc", 1832 | "log", 1833 | "wasi", 1834 | "windows-sys 0.48.0", 1835 | ] 1836 | 1837 | [[package]] 1838 | name = "mongodb" 1839 | version = "2.7.1" 1840 | source = "registry+https://github.com/rust-lang/crates.io-index" 1841 | checksum = "e7c926772050c3a3f87c837626bf6135c8ca688d91d31dd39a3da547fc2bc9fe" 1842 | dependencies = [ 1843 | "async-trait", 1844 | "base64 0.13.1", 1845 | "bitflags 1.3.2", 1846 | "bson", 1847 | "chrono", 1848 | "derivative", 1849 | "derive_more", 1850 | "futures-core", 1851 | "futures-executor", 1852 | "futures-io", 1853 | "futures-util", 1854 | "hex", 1855 | "hmac", 1856 | "lazy_static", 1857 | "md-5", 1858 | "pbkdf2", 1859 | "percent-encoding", 1860 | "rand", 1861 | "rustc_version_runtime", 1862 | "rustls", 1863 | "rustls-pemfile", 1864 | "serde", 1865 | "serde_bytes", 1866 | "serde_with", 1867 | "sha-1", 1868 | "sha2", 1869 | "socket2 0.4.10", 1870 | "stringprep", 1871 | "strsim", 1872 | "take_mut", 1873 | "thiserror", 1874 | "tokio", 1875 | "tokio-rustls", 1876 | "tokio-util", 1877 | "trust-dns-proto", 1878 | "trust-dns-resolver", 1879 | "typed-builder", 1880 | "uuid", 1881 | "webpki-roots", 1882 | ] 1883 | 1884 | [[package]] 1885 | name = "ndk" 1886 | version = "0.7.0" 1887 | source = "registry+https://github.com/rust-lang/crates.io-index" 1888 | checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" 1889 | dependencies = [ 1890 | "bitflags 1.3.2", 1891 | "jni-sys", 1892 | "ndk-sys", 1893 | "num_enum 0.5.11", 1894 | "raw-window-handle", 1895 | "thiserror", 1896 | ] 1897 | 1898 | [[package]] 1899 | name = "ndk-context" 1900 | version = "0.1.1" 1901 | source = "registry+https://github.com/rust-lang/crates.io-index" 1902 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1903 | 1904 | [[package]] 1905 | name = "ndk-sys" 1906 | version = "0.4.1+23.1.7779620" 1907 | source = "registry+https://github.com/rust-lang/crates.io-index" 1908 | checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" 1909 | dependencies = [ 1910 | "jni-sys", 1911 | ] 1912 | 1913 | [[package]] 1914 | name = "nix" 1915 | version = "0.24.3" 1916 | source = "registry+https://github.com/rust-lang/crates.io-index" 1917 | checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 1918 | dependencies = [ 1919 | "bitflags 1.3.2", 1920 | "cfg-if", 1921 | "libc", 1922 | "memoffset 0.6.5", 1923 | ] 1924 | 1925 | [[package]] 1926 | name = "nix" 1927 | version = "0.25.1" 1928 | source = "registry+https://github.com/rust-lang/crates.io-index" 1929 | checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" 1930 | dependencies = [ 1931 | "autocfg", 1932 | "bitflags 1.3.2", 1933 | "cfg-if", 1934 | "libc", 1935 | "memoffset 0.6.5", 1936 | ] 1937 | 1938 | [[package]] 1939 | name = "nix" 1940 | version = "0.26.4" 1941 | source = "registry+https://github.com/rust-lang/crates.io-index" 1942 | checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 1943 | dependencies = [ 1944 | "bitflags 1.3.2", 1945 | "cfg-if", 1946 | "libc", 1947 | "memoffset 0.7.1", 1948 | ] 1949 | 1950 | [[package]] 1951 | name = "nohash-hasher" 1952 | version = "0.2.0" 1953 | source = "registry+https://github.com/rust-lang/crates.io-index" 1954 | checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" 1955 | 1956 | [[package]] 1957 | name = "nom" 1958 | version = "7.1.3" 1959 | source = "registry+https://github.com/rust-lang/crates.io-index" 1960 | checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1961 | dependencies = [ 1962 | "memchr", 1963 | "minimal-lexical", 1964 | ] 1965 | 1966 | [[package]] 1967 | name = "num-integer" 1968 | version = "0.1.45" 1969 | source = "registry+https://github.com/rust-lang/crates.io-index" 1970 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1971 | dependencies = [ 1972 | "autocfg", 1973 | "num-traits", 1974 | ] 1975 | 1976 | [[package]] 1977 | name = "num-rational" 1978 | version = "0.4.1" 1979 | source = "registry+https://github.com/rust-lang/crates.io-index" 1980 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1981 | dependencies = [ 1982 | "autocfg", 1983 | "num-integer", 1984 | "num-traits", 1985 | ] 1986 | 1987 | [[package]] 1988 | name = "num-traits" 1989 | version = "0.2.17" 1990 | source = "registry+https://github.com/rust-lang/crates.io-index" 1991 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1992 | dependencies = [ 1993 | "autocfg", 1994 | ] 1995 | 1996 | [[package]] 1997 | name = "num_cpus" 1998 | version = "1.16.0" 1999 | source = "registry+https://github.com/rust-lang/crates.io-index" 2000 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2001 | dependencies = [ 2002 | "hermit-abi", 2003 | "libc", 2004 | ] 2005 | 2006 | [[package]] 2007 | name = "num_enum" 2008 | version = "0.5.11" 2009 | source = "registry+https://github.com/rust-lang/crates.io-index" 2010 | checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2011 | dependencies = [ 2012 | "num_enum_derive 0.5.11", 2013 | ] 2014 | 2015 | [[package]] 2016 | name = "num_enum" 2017 | version = "0.6.1" 2018 | source = "registry+https://github.com/rust-lang/crates.io-index" 2019 | checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 2020 | dependencies = [ 2021 | "num_enum_derive 0.6.1", 2022 | ] 2023 | 2024 | [[package]] 2025 | name = "num_enum_derive" 2026 | version = "0.5.11" 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" 2028 | checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2029 | dependencies = [ 2030 | "proc-macro-crate", 2031 | "proc-macro2", 2032 | "quote", 2033 | "syn 1.0.109", 2034 | ] 2035 | 2036 | [[package]] 2037 | name = "num_enum_derive" 2038 | version = "0.6.1" 2039 | source = "registry+https://github.com/rust-lang/crates.io-index" 2040 | checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 2041 | dependencies = [ 2042 | "proc-macro-crate", 2043 | "proc-macro2", 2044 | "quote", 2045 | "syn 2.0.39", 2046 | ] 2047 | 2048 | [[package]] 2049 | name = "objc" 2050 | version = "0.2.7" 2051 | source = "registry+https://github.com/rust-lang/crates.io-index" 2052 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2053 | dependencies = [ 2054 | "malloc_buf", 2055 | ] 2056 | 2057 | [[package]] 2058 | name = "objc-foundation" 2059 | version = "0.1.1" 2060 | source = "registry+https://github.com/rust-lang/crates.io-index" 2061 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 2062 | dependencies = [ 2063 | "block", 2064 | "objc", 2065 | "objc_id", 2066 | ] 2067 | 2068 | [[package]] 2069 | name = "objc-sys" 2070 | version = "0.2.0-beta.2" 2071 | source = "registry+https://github.com/rust-lang/crates.io-index" 2072 | checksum = "df3b9834c1e95694a05a828b59f55fa2afec6288359cda67146126b3f90a55d7" 2073 | 2074 | [[package]] 2075 | name = "objc2" 2076 | version = "0.3.0-beta.3.patch-leaks.3" 2077 | source = "registry+https://github.com/rust-lang/crates.io-index" 2078 | checksum = "7e01640f9f2cb1220bbe80325e179e532cb3379ebcd1bf2279d703c19fe3a468" 2079 | dependencies = [ 2080 | "block2", 2081 | "objc-sys", 2082 | "objc2-encode", 2083 | ] 2084 | 2085 | [[package]] 2086 | name = "objc2-encode" 2087 | version = "2.0.0-pre.2" 2088 | source = "registry+https://github.com/rust-lang/crates.io-index" 2089 | checksum = "abfcac41015b00a120608fdaa6938c44cb983fee294351cc4bac7638b4e50512" 2090 | dependencies = [ 2091 | "objc-sys", 2092 | ] 2093 | 2094 | [[package]] 2095 | name = "objc_id" 2096 | version = "0.1.1" 2097 | source = "registry+https://github.com/rust-lang/crates.io-index" 2098 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 2099 | dependencies = [ 2100 | "objc", 2101 | ] 2102 | 2103 | [[package]] 2104 | name = "object" 2105 | version = "0.32.1" 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" 2107 | checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 2108 | dependencies = [ 2109 | "memchr", 2110 | ] 2111 | 2112 | [[package]] 2113 | name = "once_cell" 2114 | version = "1.19.0" 2115 | source = "registry+https://github.com/rust-lang/crates.io-index" 2116 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2117 | 2118 | [[package]] 2119 | name = "orbclient" 2120 | version = "0.3.47" 2121 | source = "registry+https://github.com/rust-lang/crates.io-index" 2122 | checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166" 2123 | dependencies = [ 2124 | "libredox", 2125 | ] 2126 | 2127 | [[package]] 2128 | name = "ordered-stream" 2129 | version = "0.2.0" 2130 | source = "registry+https://github.com/rust-lang/crates.io-index" 2131 | checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2132 | dependencies = [ 2133 | "futures-core", 2134 | "pin-project-lite", 2135 | ] 2136 | 2137 | [[package]] 2138 | name = "owned_ttf_parser" 2139 | version = "0.20.0" 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" 2141 | checksum = "d4586edfe4c648c71797a74c84bacb32b52b212eff5dfe2bb9f2c599844023e7" 2142 | dependencies = [ 2143 | "ttf-parser", 2144 | ] 2145 | 2146 | [[package]] 2147 | name = "parking" 2148 | version = "2.2.0" 2149 | source = "registry+https://github.com/rust-lang/crates.io-index" 2150 | checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 2151 | 2152 | [[package]] 2153 | name = "parking_lot" 2154 | version = "0.12.1" 2155 | source = "registry+https://github.com/rust-lang/crates.io-index" 2156 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2157 | dependencies = [ 2158 | "lock_api", 2159 | "parking_lot_core", 2160 | ] 2161 | 2162 | [[package]] 2163 | name = "parking_lot_core" 2164 | version = "0.9.9" 2165 | source = "registry+https://github.com/rust-lang/crates.io-index" 2166 | checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2167 | dependencies = [ 2168 | "cfg-if", 2169 | "libc", 2170 | "redox_syscall 0.4.1", 2171 | "smallvec", 2172 | "windows-targets 0.48.5", 2173 | ] 2174 | 2175 | [[package]] 2176 | name = "paste" 2177 | version = "1.0.14" 2178 | source = "registry+https://github.com/rust-lang/crates.io-index" 2179 | checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2180 | 2181 | [[package]] 2182 | name = "pbkdf2" 2183 | version = "0.11.0" 2184 | source = "registry+https://github.com/rust-lang/crates.io-index" 2185 | checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2186 | dependencies = [ 2187 | "digest", 2188 | ] 2189 | 2190 | [[package]] 2191 | name = "percent-encoding" 2192 | version = "2.3.1" 2193 | source = "registry+https://github.com/rust-lang/crates.io-index" 2194 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2195 | 2196 | [[package]] 2197 | name = "pin-project-lite" 2198 | version = "0.2.13" 2199 | source = "registry+https://github.com/rust-lang/crates.io-index" 2200 | checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2201 | 2202 | [[package]] 2203 | name = "pin-utils" 2204 | version = "0.1.0" 2205 | source = "registry+https://github.com/rust-lang/crates.io-index" 2206 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2207 | 2208 | [[package]] 2209 | name = "piper" 2210 | version = "0.2.1" 2211 | source = "registry+https://github.com/rust-lang/crates.io-index" 2212 | checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 2213 | dependencies = [ 2214 | "atomic-waker", 2215 | "fastrand 2.0.1", 2216 | "futures-io", 2217 | ] 2218 | 2219 | [[package]] 2220 | name = "pkg-config" 2221 | version = "0.3.27" 2222 | source = "registry+https://github.com/rust-lang/crates.io-index" 2223 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2224 | 2225 | [[package]] 2226 | name = "png" 2227 | version = "0.17.10" 2228 | source = "registry+https://github.com/rust-lang/crates.io-index" 2229 | checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 2230 | dependencies = [ 2231 | "bitflags 1.3.2", 2232 | "crc32fast", 2233 | "fdeflate", 2234 | "flate2", 2235 | "miniz_oxide", 2236 | ] 2237 | 2238 | [[package]] 2239 | name = "polling" 2240 | version = "2.8.0" 2241 | source = "registry+https://github.com/rust-lang/crates.io-index" 2242 | checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 2243 | dependencies = [ 2244 | "autocfg", 2245 | "bitflags 1.3.2", 2246 | "cfg-if", 2247 | "concurrent-queue", 2248 | "libc", 2249 | "log", 2250 | "pin-project-lite", 2251 | "windows-sys 0.48.0", 2252 | ] 2253 | 2254 | [[package]] 2255 | name = "polling" 2256 | version = "3.3.1" 2257 | source = "registry+https://github.com/rust-lang/crates.io-index" 2258 | checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 2259 | dependencies = [ 2260 | "cfg-if", 2261 | "concurrent-queue", 2262 | "pin-project-lite", 2263 | "rustix 0.38.27", 2264 | "tracing", 2265 | "windows-sys 0.52.0", 2266 | ] 2267 | 2268 | [[package]] 2269 | name = "powerfmt" 2270 | version = "0.2.0" 2271 | source = "registry+https://github.com/rust-lang/crates.io-index" 2272 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2273 | 2274 | [[package]] 2275 | name = "ppv-lite86" 2276 | version = "0.2.17" 2277 | source = "registry+https://github.com/rust-lang/crates.io-index" 2278 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2279 | 2280 | [[package]] 2281 | name = "proc-macro-crate" 2282 | version = "1.3.1" 2283 | source = "registry+https://github.com/rust-lang/crates.io-index" 2284 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2285 | dependencies = [ 2286 | "once_cell", 2287 | "toml_edit", 2288 | ] 2289 | 2290 | [[package]] 2291 | name = "proc-macro2" 2292 | version = "1.0.70" 2293 | source = "registry+https://github.com/rust-lang/crates.io-index" 2294 | checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" 2295 | dependencies = [ 2296 | "unicode-ident", 2297 | ] 2298 | 2299 | [[package]] 2300 | name = "quick-error" 2301 | version = "1.2.3" 2302 | source = "registry+https://github.com/rust-lang/crates.io-index" 2303 | checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 2304 | 2305 | [[package]] 2306 | name = "quote" 2307 | version = "1.0.33" 2308 | source = "registry+https://github.com/rust-lang/crates.io-index" 2309 | checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2310 | dependencies = [ 2311 | "proc-macro2", 2312 | ] 2313 | 2314 | [[package]] 2315 | name = "radium" 2316 | version = "0.7.0" 2317 | source = "registry+https://github.com/rust-lang/crates.io-index" 2318 | checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2319 | 2320 | [[package]] 2321 | name = "rand" 2322 | version = "0.8.5" 2323 | source = "registry+https://github.com/rust-lang/crates.io-index" 2324 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2325 | dependencies = [ 2326 | "libc", 2327 | "rand_chacha", 2328 | "rand_core", 2329 | ] 2330 | 2331 | [[package]] 2332 | name = "rand_chacha" 2333 | version = "0.3.1" 2334 | source = "registry+https://github.com/rust-lang/crates.io-index" 2335 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2336 | dependencies = [ 2337 | "ppv-lite86", 2338 | "rand_core", 2339 | ] 2340 | 2341 | [[package]] 2342 | name = "rand_core" 2343 | version = "0.6.4" 2344 | source = "registry+https://github.com/rust-lang/crates.io-index" 2345 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2346 | dependencies = [ 2347 | "getrandom", 2348 | ] 2349 | 2350 | [[package]] 2351 | name = "raw-window-handle" 2352 | version = "0.5.2" 2353 | source = "registry+https://github.com/rust-lang/crates.io-index" 2354 | checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 2355 | 2356 | [[package]] 2357 | name = "redox_syscall" 2358 | version = "0.3.5" 2359 | source = "registry+https://github.com/rust-lang/crates.io-index" 2360 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2361 | dependencies = [ 2362 | "bitflags 1.3.2", 2363 | ] 2364 | 2365 | [[package]] 2366 | name = "redox_syscall" 2367 | version = "0.4.1" 2368 | source = "registry+https://github.com/rust-lang/crates.io-index" 2369 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 2370 | dependencies = [ 2371 | "bitflags 1.3.2", 2372 | ] 2373 | 2374 | [[package]] 2375 | name = "regex" 2376 | version = "1.10.2" 2377 | source = "registry+https://github.com/rust-lang/crates.io-index" 2378 | checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 2379 | dependencies = [ 2380 | "aho-corasick", 2381 | "memchr", 2382 | "regex-automata", 2383 | "regex-syntax", 2384 | ] 2385 | 2386 | [[package]] 2387 | name = "regex-automata" 2388 | version = "0.4.3" 2389 | source = "registry+https://github.com/rust-lang/crates.io-index" 2390 | checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 2391 | dependencies = [ 2392 | "aho-corasick", 2393 | "memchr", 2394 | "regex-syntax", 2395 | ] 2396 | 2397 | [[package]] 2398 | name = "regex-syntax" 2399 | version = "0.8.2" 2400 | source = "registry+https://github.com/rust-lang/crates.io-index" 2401 | checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 2402 | 2403 | [[package]] 2404 | name = "resolv-conf" 2405 | version = "0.7.0" 2406 | source = "registry+https://github.com/rust-lang/crates.io-index" 2407 | checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 2408 | dependencies = [ 2409 | "hostname", 2410 | "quick-error", 2411 | ] 2412 | 2413 | [[package]] 2414 | name = "ring" 2415 | version = "0.17.7" 2416 | source = "registry+https://github.com/rust-lang/crates.io-index" 2417 | checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 2418 | dependencies = [ 2419 | "cc", 2420 | "getrandom", 2421 | "libc", 2422 | "spin", 2423 | "untrusted", 2424 | "windows-sys 0.48.0", 2425 | ] 2426 | 2427 | [[package]] 2428 | name = "rustc-demangle" 2429 | version = "0.1.23" 2430 | source = "registry+https://github.com/rust-lang/crates.io-index" 2431 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2432 | 2433 | [[package]] 2434 | name = "rustc_version" 2435 | version = "0.2.3" 2436 | source = "registry+https://github.com/rust-lang/crates.io-index" 2437 | checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 2438 | dependencies = [ 2439 | "semver 0.9.0", 2440 | ] 2441 | 2442 | [[package]] 2443 | name = "rustc_version" 2444 | version = "0.4.0" 2445 | source = "registry+https://github.com/rust-lang/crates.io-index" 2446 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2447 | dependencies = [ 2448 | "semver 1.0.20", 2449 | ] 2450 | 2451 | [[package]] 2452 | name = "rustc_version_runtime" 2453 | version = "0.2.1" 2454 | source = "registry+https://github.com/rust-lang/crates.io-index" 2455 | checksum = "d31b7153270ebf48bf91c65ae5b0c00e749c4cfad505f66530ac74950249582f" 2456 | dependencies = [ 2457 | "rustc_version 0.2.3", 2458 | "semver 0.9.0", 2459 | ] 2460 | 2461 | [[package]] 2462 | name = "rustix" 2463 | version = "0.37.27" 2464 | source = "registry+https://github.com/rust-lang/crates.io-index" 2465 | checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 2466 | dependencies = [ 2467 | "bitflags 1.3.2", 2468 | "errno", 2469 | "io-lifetimes", 2470 | "libc", 2471 | "linux-raw-sys 0.3.8", 2472 | "windows-sys 0.48.0", 2473 | ] 2474 | 2475 | [[package]] 2476 | name = "rustix" 2477 | version = "0.38.27" 2478 | source = "registry+https://github.com/rust-lang/crates.io-index" 2479 | checksum = "bfeae074e687625746172d639330f1de242a178bf3189b51e35a7a21573513ac" 2480 | dependencies = [ 2481 | "bitflags 2.4.1", 2482 | "errno", 2483 | "libc", 2484 | "linux-raw-sys 0.4.12", 2485 | "windows-sys 0.52.0", 2486 | ] 2487 | 2488 | [[package]] 2489 | name = "rustls" 2490 | version = "0.21.11" 2491 | source = "registry+https://github.com/rust-lang/crates.io-index" 2492 | checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4" 2493 | dependencies = [ 2494 | "log", 2495 | "ring", 2496 | "rustls-webpki", 2497 | "sct", 2498 | ] 2499 | 2500 | [[package]] 2501 | name = "rustls-pemfile" 2502 | version = "1.0.4" 2503 | source = "registry+https://github.com/rust-lang/crates.io-index" 2504 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 2505 | dependencies = [ 2506 | "base64 0.21.5", 2507 | ] 2508 | 2509 | [[package]] 2510 | name = "rustls-webpki" 2511 | version = "0.101.7" 2512 | source = "registry+https://github.com/rust-lang/crates.io-index" 2513 | checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 2514 | dependencies = [ 2515 | "ring", 2516 | "untrusted", 2517 | ] 2518 | 2519 | [[package]] 2520 | name = "ryu" 2521 | version = "1.0.15" 2522 | source = "registry+https://github.com/rust-lang/crates.io-index" 2523 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2524 | 2525 | [[package]] 2526 | name = "same-file" 2527 | version = "1.0.6" 2528 | source = "registry+https://github.com/rust-lang/crates.io-index" 2529 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2530 | dependencies = [ 2531 | "winapi-util", 2532 | ] 2533 | 2534 | [[package]] 2535 | name = "scoped-tls" 2536 | version = "1.0.1" 2537 | source = "registry+https://github.com/rust-lang/crates.io-index" 2538 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2539 | 2540 | [[package]] 2541 | name = "scopeguard" 2542 | version = "1.2.0" 2543 | source = "registry+https://github.com/rust-lang/crates.io-index" 2544 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2545 | 2546 | [[package]] 2547 | name = "sct" 2548 | version = "0.7.1" 2549 | source = "registry+https://github.com/rust-lang/crates.io-index" 2550 | checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 2551 | dependencies = [ 2552 | "ring", 2553 | "untrusted", 2554 | ] 2555 | 2556 | [[package]] 2557 | name = "sctk-adwaita" 2558 | version = "0.5.4" 2559 | source = "registry+https://github.com/rust-lang/crates.io-index" 2560 | checksum = "cda4e97be1fd174ccc2aae81c8b694e803fa99b34e8fd0f057a9d70698e3ed09" 2561 | dependencies = [ 2562 | "ab_glyph", 2563 | "log", 2564 | "memmap2", 2565 | "smithay-client-toolkit", 2566 | "tiny-skia", 2567 | ] 2568 | 2569 | [[package]] 2570 | name = "secure-cypher" 2571 | version = "0.1.0" 2572 | dependencies = [ 2573 | "dotenv", 2574 | "eframe", 2575 | "egui", 2576 | "futures", 2577 | "mongodb", 2578 | "serde", 2579 | "serde_json", 2580 | "tokio", 2581 | ] 2582 | 2583 | [[package]] 2584 | name = "semver" 2585 | version = "0.9.0" 2586 | source = "registry+https://github.com/rust-lang/crates.io-index" 2587 | checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 2588 | dependencies = [ 2589 | "semver-parser", 2590 | ] 2591 | 2592 | [[package]] 2593 | name = "semver" 2594 | version = "1.0.20" 2595 | source = "registry+https://github.com/rust-lang/crates.io-index" 2596 | checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 2597 | 2598 | [[package]] 2599 | name = "semver-parser" 2600 | version = "0.7.0" 2601 | source = "registry+https://github.com/rust-lang/crates.io-index" 2602 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 2603 | 2604 | [[package]] 2605 | name = "serde" 2606 | version = "1.0.193" 2607 | source = "registry+https://github.com/rust-lang/crates.io-index" 2608 | checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" 2609 | dependencies = [ 2610 | "serde_derive", 2611 | ] 2612 | 2613 | [[package]] 2614 | name = "serde_bytes" 2615 | version = "0.11.12" 2616 | source = "registry+https://github.com/rust-lang/crates.io-index" 2617 | checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 2618 | dependencies = [ 2619 | "serde", 2620 | ] 2621 | 2622 | [[package]] 2623 | name = "serde_derive" 2624 | version = "1.0.193" 2625 | source = "registry+https://github.com/rust-lang/crates.io-index" 2626 | checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" 2627 | dependencies = [ 2628 | "proc-macro2", 2629 | "quote", 2630 | "syn 2.0.39", 2631 | ] 2632 | 2633 | [[package]] 2634 | name = "serde_json" 2635 | version = "1.0.108" 2636 | source = "registry+https://github.com/rust-lang/crates.io-index" 2637 | checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 2638 | dependencies = [ 2639 | "indexmap 2.1.0", 2640 | "itoa", 2641 | "ryu", 2642 | "serde", 2643 | ] 2644 | 2645 | [[package]] 2646 | name = "serde_repr" 2647 | version = "0.1.17" 2648 | source = "registry+https://github.com/rust-lang/crates.io-index" 2649 | checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 2650 | dependencies = [ 2651 | "proc-macro2", 2652 | "quote", 2653 | "syn 2.0.39", 2654 | ] 2655 | 2656 | [[package]] 2657 | name = "serde_with" 2658 | version = "1.14.0" 2659 | source = "registry+https://github.com/rust-lang/crates.io-index" 2660 | checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2661 | dependencies = [ 2662 | "serde", 2663 | "serde_with_macros", 2664 | ] 2665 | 2666 | [[package]] 2667 | name = "serde_with_macros" 2668 | version = "1.5.2" 2669 | source = "registry+https://github.com/rust-lang/crates.io-index" 2670 | checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2671 | dependencies = [ 2672 | "darling", 2673 | "proc-macro2", 2674 | "quote", 2675 | "syn 1.0.109", 2676 | ] 2677 | 2678 | [[package]] 2679 | name = "sha-1" 2680 | version = "0.10.1" 2681 | source = "registry+https://github.com/rust-lang/crates.io-index" 2682 | checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 2683 | dependencies = [ 2684 | "cfg-if", 2685 | "cpufeatures", 2686 | "digest", 2687 | ] 2688 | 2689 | [[package]] 2690 | name = "sha1" 2691 | version = "0.10.6" 2692 | source = "registry+https://github.com/rust-lang/crates.io-index" 2693 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2694 | dependencies = [ 2695 | "cfg-if", 2696 | "cpufeatures", 2697 | "digest", 2698 | ] 2699 | 2700 | [[package]] 2701 | name = "sha2" 2702 | version = "0.10.8" 2703 | source = "registry+https://github.com/rust-lang/crates.io-index" 2704 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2705 | dependencies = [ 2706 | "cfg-if", 2707 | "cpufeatures", 2708 | "digest", 2709 | ] 2710 | 2711 | [[package]] 2712 | name = "signal-hook-registry" 2713 | version = "1.4.1" 2714 | source = "registry+https://github.com/rust-lang/crates.io-index" 2715 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2716 | dependencies = [ 2717 | "libc", 2718 | ] 2719 | 2720 | [[package]] 2721 | name = "simd-adler32" 2722 | version = "0.3.7" 2723 | source = "registry+https://github.com/rust-lang/crates.io-index" 2724 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2725 | 2726 | [[package]] 2727 | name = "slab" 2728 | version = "0.4.9" 2729 | source = "registry+https://github.com/rust-lang/crates.io-index" 2730 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2731 | dependencies = [ 2732 | "autocfg", 2733 | ] 2734 | 2735 | [[package]] 2736 | name = "slotmap" 2737 | version = "1.0.7" 2738 | source = "registry+https://github.com/rust-lang/crates.io-index" 2739 | checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 2740 | dependencies = [ 2741 | "version_check", 2742 | ] 2743 | 2744 | [[package]] 2745 | name = "smallvec" 2746 | version = "1.11.2" 2747 | source = "registry+https://github.com/rust-lang/crates.io-index" 2748 | checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2749 | 2750 | [[package]] 2751 | name = "smithay-client-toolkit" 2752 | version = "0.16.1" 2753 | source = "registry+https://github.com/rust-lang/crates.io-index" 2754 | checksum = "870427e30b8f2cbe64bf43ec4b86e88fe39b0a84b3f15efd9c9c2d020bc86eb9" 2755 | dependencies = [ 2756 | "bitflags 1.3.2", 2757 | "calloop", 2758 | "dlib", 2759 | "lazy_static", 2760 | "log", 2761 | "memmap2", 2762 | "nix 0.24.3", 2763 | "pkg-config", 2764 | "wayland-client", 2765 | "wayland-cursor", 2766 | "wayland-protocols", 2767 | ] 2768 | 2769 | [[package]] 2770 | name = "smithay-clipboard" 2771 | version = "0.6.6" 2772 | source = "registry+https://github.com/rust-lang/crates.io-index" 2773 | checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8" 2774 | dependencies = [ 2775 | "smithay-client-toolkit", 2776 | "wayland-client", 2777 | ] 2778 | 2779 | [[package]] 2780 | name = "socket2" 2781 | version = "0.4.10" 2782 | source = "registry+https://github.com/rust-lang/crates.io-index" 2783 | checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 2784 | dependencies = [ 2785 | "libc", 2786 | "winapi", 2787 | ] 2788 | 2789 | [[package]] 2790 | name = "socket2" 2791 | version = "0.5.5" 2792 | source = "registry+https://github.com/rust-lang/crates.io-index" 2793 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 2794 | dependencies = [ 2795 | "libc", 2796 | "windows-sys 0.48.0", 2797 | ] 2798 | 2799 | [[package]] 2800 | name = "spin" 2801 | version = "0.9.8" 2802 | source = "registry+https://github.com/rust-lang/crates.io-index" 2803 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2804 | 2805 | [[package]] 2806 | name = "static_assertions" 2807 | version = "1.1.0" 2808 | source = "registry+https://github.com/rust-lang/crates.io-index" 2809 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2810 | 2811 | [[package]] 2812 | name = "str-buf" 2813 | version = "1.0.6" 2814 | source = "registry+https://github.com/rust-lang/crates.io-index" 2815 | checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 2816 | 2817 | [[package]] 2818 | name = "strict-num" 2819 | version = "0.1.1" 2820 | source = "registry+https://github.com/rust-lang/crates.io-index" 2821 | checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 2822 | 2823 | [[package]] 2824 | name = "stringprep" 2825 | version = "0.1.4" 2826 | source = "registry+https://github.com/rust-lang/crates.io-index" 2827 | checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" 2828 | dependencies = [ 2829 | "finl_unicode", 2830 | "unicode-bidi", 2831 | "unicode-normalization", 2832 | ] 2833 | 2834 | [[package]] 2835 | name = "strsim" 2836 | version = "0.10.0" 2837 | source = "registry+https://github.com/rust-lang/crates.io-index" 2838 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2839 | 2840 | [[package]] 2841 | name = "subtle" 2842 | version = "2.5.0" 2843 | source = "registry+https://github.com/rust-lang/crates.io-index" 2844 | checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2845 | 2846 | [[package]] 2847 | name = "syn" 2848 | version = "1.0.109" 2849 | source = "registry+https://github.com/rust-lang/crates.io-index" 2850 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2851 | dependencies = [ 2852 | "proc-macro2", 2853 | "quote", 2854 | "unicode-ident", 2855 | ] 2856 | 2857 | [[package]] 2858 | name = "syn" 2859 | version = "2.0.39" 2860 | source = "registry+https://github.com/rust-lang/crates.io-index" 2861 | checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" 2862 | dependencies = [ 2863 | "proc-macro2", 2864 | "quote", 2865 | "unicode-ident", 2866 | ] 2867 | 2868 | [[package]] 2869 | name = "take_mut" 2870 | version = "0.2.2" 2871 | source = "registry+https://github.com/rust-lang/crates.io-index" 2872 | checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" 2873 | 2874 | [[package]] 2875 | name = "tap" 2876 | version = "1.0.1" 2877 | source = "registry+https://github.com/rust-lang/crates.io-index" 2878 | checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 2879 | 2880 | [[package]] 2881 | name = "tempfile" 2882 | version = "3.8.1" 2883 | source = "registry+https://github.com/rust-lang/crates.io-index" 2884 | checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2885 | dependencies = [ 2886 | "cfg-if", 2887 | "fastrand 2.0.1", 2888 | "redox_syscall 0.4.1", 2889 | "rustix 0.38.27", 2890 | "windows-sys 0.48.0", 2891 | ] 2892 | 2893 | [[package]] 2894 | name = "thiserror" 2895 | version = "1.0.50" 2896 | source = "registry+https://github.com/rust-lang/crates.io-index" 2897 | checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 2898 | dependencies = [ 2899 | "thiserror-impl", 2900 | ] 2901 | 2902 | [[package]] 2903 | name = "thiserror-impl" 2904 | version = "1.0.50" 2905 | source = "registry+https://github.com/rust-lang/crates.io-index" 2906 | checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 2907 | dependencies = [ 2908 | "proc-macro2", 2909 | "quote", 2910 | "syn 2.0.39", 2911 | ] 2912 | 2913 | [[package]] 2914 | name = "time" 2915 | version = "0.3.30" 2916 | source = "registry+https://github.com/rust-lang/crates.io-index" 2917 | checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 2918 | dependencies = [ 2919 | "deranged", 2920 | "itoa", 2921 | "powerfmt", 2922 | "serde", 2923 | "time-core", 2924 | "time-macros", 2925 | ] 2926 | 2927 | [[package]] 2928 | name = "time-core" 2929 | version = "0.1.2" 2930 | source = "registry+https://github.com/rust-lang/crates.io-index" 2931 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2932 | 2933 | [[package]] 2934 | name = "time-macros" 2935 | version = "0.2.15" 2936 | source = "registry+https://github.com/rust-lang/crates.io-index" 2937 | checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 2938 | dependencies = [ 2939 | "time-core", 2940 | ] 2941 | 2942 | [[package]] 2943 | name = "tiny-skia" 2944 | version = "0.8.4" 2945 | source = "registry+https://github.com/rust-lang/crates.io-index" 2946 | checksum = "df8493a203431061e901613751931f047d1971337153f96d0e5e363d6dbf6a67" 2947 | dependencies = [ 2948 | "arrayref", 2949 | "arrayvec", 2950 | "bytemuck", 2951 | "cfg-if", 2952 | "png", 2953 | "tiny-skia-path", 2954 | ] 2955 | 2956 | [[package]] 2957 | name = "tiny-skia-path" 2958 | version = "0.8.4" 2959 | source = "registry+https://github.com/rust-lang/crates.io-index" 2960 | checksum = "adbfb5d3f3dd57a0e11d12f4f13d4ebbbc1b5c15b7ab0a156d030b21da5f677c" 2961 | dependencies = [ 2962 | "arrayref", 2963 | "bytemuck", 2964 | "strict-num", 2965 | ] 2966 | 2967 | [[package]] 2968 | name = "tinyvec" 2969 | version = "1.6.0" 2970 | source = "registry+https://github.com/rust-lang/crates.io-index" 2971 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2972 | dependencies = [ 2973 | "tinyvec_macros", 2974 | ] 2975 | 2976 | [[package]] 2977 | name = "tinyvec_macros" 2978 | version = "0.1.1" 2979 | source = "registry+https://github.com/rust-lang/crates.io-index" 2980 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2981 | 2982 | [[package]] 2983 | name = "tokio" 2984 | version = "1.34.0" 2985 | source = "registry+https://github.com/rust-lang/crates.io-index" 2986 | checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 2987 | dependencies = [ 2988 | "backtrace", 2989 | "bytes", 2990 | "libc", 2991 | "mio", 2992 | "num_cpus", 2993 | "parking_lot", 2994 | "pin-project-lite", 2995 | "signal-hook-registry", 2996 | "socket2 0.5.5", 2997 | "tokio-macros", 2998 | "windows-sys 0.48.0", 2999 | ] 3000 | 3001 | [[package]] 3002 | name = "tokio-macros" 3003 | version = "2.2.0" 3004 | source = "registry+https://github.com/rust-lang/crates.io-index" 3005 | checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 3006 | dependencies = [ 3007 | "proc-macro2", 3008 | "quote", 3009 | "syn 2.0.39", 3010 | ] 3011 | 3012 | [[package]] 3013 | name = "tokio-rustls" 3014 | version = "0.24.1" 3015 | source = "registry+https://github.com/rust-lang/crates.io-index" 3016 | checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 3017 | dependencies = [ 3018 | "rustls", 3019 | "tokio", 3020 | ] 3021 | 3022 | [[package]] 3023 | name = "tokio-util" 3024 | version = "0.7.10" 3025 | source = "registry+https://github.com/rust-lang/crates.io-index" 3026 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 3027 | dependencies = [ 3028 | "bytes", 3029 | "futures-core", 3030 | "futures-io", 3031 | "futures-sink", 3032 | "pin-project-lite", 3033 | "tokio", 3034 | ] 3035 | 3036 | [[package]] 3037 | name = "toml_datetime" 3038 | version = "0.6.5" 3039 | source = "registry+https://github.com/rust-lang/crates.io-index" 3040 | checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 3041 | 3042 | [[package]] 3043 | name = "toml_edit" 3044 | version = "0.19.15" 3045 | source = "registry+https://github.com/rust-lang/crates.io-index" 3046 | checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3047 | dependencies = [ 3048 | "indexmap 2.1.0", 3049 | "toml_datetime", 3050 | "winnow", 3051 | ] 3052 | 3053 | [[package]] 3054 | name = "tracing" 3055 | version = "0.1.40" 3056 | source = "registry+https://github.com/rust-lang/crates.io-index" 3057 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 3058 | dependencies = [ 3059 | "pin-project-lite", 3060 | "tracing-attributes", 3061 | "tracing-core", 3062 | ] 3063 | 3064 | [[package]] 3065 | name = "tracing-attributes" 3066 | version = "0.1.27" 3067 | source = "registry+https://github.com/rust-lang/crates.io-index" 3068 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 3069 | dependencies = [ 3070 | "proc-macro2", 3071 | "quote", 3072 | "syn 2.0.39", 3073 | ] 3074 | 3075 | [[package]] 3076 | name = "tracing-core" 3077 | version = "0.1.32" 3078 | source = "registry+https://github.com/rust-lang/crates.io-index" 3079 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 3080 | dependencies = [ 3081 | "once_cell", 3082 | ] 3083 | 3084 | [[package]] 3085 | name = "trust-dns-proto" 3086 | version = "0.21.2" 3087 | source = "registry+https://github.com/rust-lang/crates.io-index" 3088 | checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d" 3089 | dependencies = [ 3090 | "async-trait", 3091 | "cfg-if", 3092 | "data-encoding", 3093 | "enum-as-inner", 3094 | "futures-channel", 3095 | "futures-io", 3096 | "futures-util", 3097 | "idna 0.2.3", 3098 | "ipnet", 3099 | "lazy_static", 3100 | "log", 3101 | "rand", 3102 | "smallvec", 3103 | "thiserror", 3104 | "tinyvec", 3105 | "tokio", 3106 | "url", 3107 | ] 3108 | 3109 | [[package]] 3110 | name = "trust-dns-resolver" 3111 | version = "0.21.2" 3112 | source = "registry+https://github.com/rust-lang/crates.io-index" 3113 | checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558" 3114 | dependencies = [ 3115 | "cfg-if", 3116 | "futures-util", 3117 | "ipconfig", 3118 | "lazy_static", 3119 | "log", 3120 | "lru-cache", 3121 | "parking_lot", 3122 | "resolv-conf", 3123 | "smallvec", 3124 | "thiserror", 3125 | "tokio", 3126 | "trust-dns-proto", 3127 | ] 3128 | 3129 | [[package]] 3130 | name = "ttf-parser" 3131 | version = "0.20.0" 3132 | source = "registry+https://github.com/rust-lang/crates.io-index" 3133 | checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4" 3134 | 3135 | [[package]] 3136 | name = "typed-builder" 3137 | version = "0.10.0" 3138 | source = "registry+https://github.com/rust-lang/crates.io-index" 3139 | checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c" 3140 | dependencies = [ 3141 | "proc-macro2", 3142 | "quote", 3143 | "syn 1.0.109", 3144 | ] 3145 | 3146 | [[package]] 3147 | name = "typenum" 3148 | version = "1.17.0" 3149 | source = "registry+https://github.com/rust-lang/crates.io-index" 3150 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 3151 | 3152 | [[package]] 3153 | name = "uds_windows" 3154 | version = "1.0.2" 3155 | source = "registry+https://github.com/rust-lang/crates.io-index" 3156 | checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 3157 | dependencies = [ 3158 | "tempfile", 3159 | "winapi", 3160 | ] 3161 | 3162 | [[package]] 3163 | name = "unicode-bidi" 3164 | version = "0.3.14" 3165 | source = "registry+https://github.com/rust-lang/crates.io-index" 3166 | checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 3167 | 3168 | [[package]] 3169 | name = "unicode-ident" 3170 | version = "1.0.12" 3171 | source = "registry+https://github.com/rust-lang/crates.io-index" 3172 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3173 | 3174 | [[package]] 3175 | name = "unicode-normalization" 3176 | version = "0.1.22" 3177 | source = "registry+https://github.com/rust-lang/crates.io-index" 3178 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3179 | dependencies = [ 3180 | "tinyvec", 3181 | ] 3182 | 3183 | [[package]] 3184 | name = "untrusted" 3185 | version = "0.9.0" 3186 | source = "registry+https://github.com/rust-lang/crates.io-index" 3187 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3188 | 3189 | [[package]] 3190 | name = "url" 3191 | version = "2.5.0" 3192 | source = "registry+https://github.com/rust-lang/crates.io-index" 3193 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 3194 | dependencies = [ 3195 | "form_urlencoded", 3196 | "idna 0.5.0", 3197 | "percent-encoding", 3198 | ] 3199 | 3200 | [[package]] 3201 | name = "uuid" 3202 | version = "1.6.1" 3203 | source = "registry+https://github.com/rust-lang/crates.io-index" 3204 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 3205 | dependencies = [ 3206 | "getrandom", 3207 | "serde", 3208 | ] 3209 | 3210 | [[package]] 3211 | name = "vec_map" 3212 | version = "0.8.2" 3213 | source = "registry+https://github.com/rust-lang/crates.io-index" 3214 | checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 3215 | 3216 | [[package]] 3217 | name = "version_check" 3218 | version = "0.9.4" 3219 | source = "registry+https://github.com/rust-lang/crates.io-index" 3220 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3221 | 3222 | [[package]] 3223 | name = "waker-fn" 3224 | version = "1.1.1" 3225 | source = "registry+https://github.com/rust-lang/crates.io-index" 3226 | checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 3227 | 3228 | [[package]] 3229 | name = "walkdir" 3230 | version = "2.4.0" 3231 | source = "registry+https://github.com/rust-lang/crates.io-index" 3232 | checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3233 | dependencies = [ 3234 | "same-file", 3235 | "winapi-util", 3236 | ] 3237 | 3238 | [[package]] 3239 | name = "wasi" 3240 | version = "0.11.0+wasi-snapshot-preview1" 3241 | source = "registry+https://github.com/rust-lang/crates.io-index" 3242 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3243 | 3244 | [[package]] 3245 | name = "wasm-bindgen" 3246 | version = "0.2.89" 3247 | source = "registry+https://github.com/rust-lang/crates.io-index" 3248 | checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 3249 | dependencies = [ 3250 | "cfg-if", 3251 | "wasm-bindgen-macro", 3252 | ] 3253 | 3254 | [[package]] 3255 | name = "wasm-bindgen-backend" 3256 | version = "0.2.89" 3257 | source = "registry+https://github.com/rust-lang/crates.io-index" 3258 | checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 3259 | dependencies = [ 3260 | "bumpalo", 3261 | "log", 3262 | "once_cell", 3263 | "proc-macro2", 3264 | "quote", 3265 | "syn 2.0.39", 3266 | "wasm-bindgen-shared", 3267 | ] 3268 | 3269 | [[package]] 3270 | name = "wasm-bindgen-futures" 3271 | version = "0.4.39" 3272 | source = "registry+https://github.com/rust-lang/crates.io-index" 3273 | checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 3274 | dependencies = [ 3275 | "cfg-if", 3276 | "js-sys", 3277 | "wasm-bindgen", 3278 | "web-sys", 3279 | ] 3280 | 3281 | [[package]] 3282 | name = "wasm-bindgen-macro" 3283 | version = "0.2.89" 3284 | source = "registry+https://github.com/rust-lang/crates.io-index" 3285 | checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 3286 | dependencies = [ 3287 | "quote", 3288 | "wasm-bindgen-macro-support", 3289 | ] 3290 | 3291 | [[package]] 3292 | name = "wasm-bindgen-macro-support" 3293 | version = "0.2.89" 3294 | source = "registry+https://github.com/rust-lang/crates.io-index" 3295 | checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 3296 | dependencies = [ 3297 | "proc-macro2", 3298 | "quote", 3299 | "syn 2.0.39", 3300 | "wasm-bindgen-backend", 3301 | "wasm-bindgen-shared", 3302 | ] 3303 | 3304 | [[package]] 3305 | name = "wasm-bindgen-shared" 3306 | version = "0.2.89" 3307 | source = "registry+https://github.com/rust-lang/crates.io-index" 3308 | checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 3309 | 3310 | [[package]] 3311 | name = "wayland-client" 3312 | version = "0.29.5" 3313 | source = "registry+https://github.com/rust-lang/crates.io-index" 3314 | checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" 3315 | dependencies = [ 3316 | "bitflags 1.3.2", 3317 | "downcast-rs", 3318 | "libc", 3319 | "nix 0.24.3", 3320 | "scoped-tls", 3321 | "wayland-commons", 3322 | "wayland-scanner", 3323 | "wayland-sys 0.29.5", 3324 | ] 3325 | 3326 | [[package]] 3327 | name = "wayland-commons" 3328 | version = "0.29.5" 3329 | source = "registry+https://github.com/rust-lang/crates.io-index" 3330 | checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902" 3331 | dependencies = [ 3332 | "nix 0.24.3", 3333 | "once_cell", 3334 | "smallvec", 3335 | "wayland-sys 0.29.5", 3336 | ] 3337 | 3338 | [[package]] 3339 | name = "wayland-cursor" 3340 | version = "0.29.5" 3341 | source = "registry+https://github.com/rust-lang/crates.io-index" 3342 | checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661" 3343 | dependencies = [ 3344 | "nix 0.24.3", 3345 | "wayland-client", 3346 | "xcursor", 3347 | ] 3348 | 3349 | [[package]] 3350 | name = "wayland-protocols" 3351 | version = "0.29.5" 3352 | source = "registry+https://github.com/rust-lang/crates.io-index" 3353 | checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" 3354 | dependencies = [ 3355 | "bitflags 1.3.2", 3356 | "wayland-client", 3357 | "wayland-commons", 3358 | "wayland-scanner", 3359 | ] 3360 | 3361 | [[package]] 3362 | name = "wayland-scanner" 3363 | version = "0.29.5" 3364 | source = "registry+https://github.com/rust-lang/crates.io-index" 3365 | checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53" 3366 | dependencies = [ 3367 | "proc-macro2", 3368 | "quote", 3369 | "xml-rs", 3370 | ] 3371 | 3372 | [[package]] 3373 | name = "wayland-sys" 3374 | version = "0.29.5" 3375 | source = "registry+https://github.com/rust-lang/crates.io-index" 3376 | checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4" 3377 | dependencies = [ 3378 | "dlib", 3379 | "lazy_static", 3380 | "pkg-config", 3381 | ] 3382 | 3383 | [[package]] 3384 | name = "wayland-sys" 3385 | version = "0.30.1" 3386 | source = "registry+https://github.com/rust-lang/crates.io-index" 3387 | checksum = "96b2a02ac608e07132978689a6f9bf4214949c85998c247abadd4f4129b1aa06" 3388 | dependencies = [ 3389 | "dlib", 3390 | "lazy_static", 3391 | "log", 3392 | "pkg-config", 3393 | ] 3394 | 3395 | [[package]] 3396 | name = "web-sys" 3397 | version = "0.3.66" 3398 | source = "registry+https://github.com/rust-lang/crates.io-index" 3399 | checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 3400 | dependencies = [ 3401 | "js-sys", 3402 | "wasm-bindgen", 3403 | ] 3404 | 3405 | [[package]] 3406 | name = "web-time" 3407 | version = "0.2.3" 3408 | source = "registry+https://github.com/rust-lang/crates.io-index" 3409 | checksum = "57099a701fb3a8043f993e8228dc24229c7b942e2b009a1b962e54489ba1d3bf" 3410 | dependencies = [ 3411 | "js-sys", 3412 | "wasm-bindgen", 3413 | ] 3414 | 3415 | [[package]] 3416 | name = "webbrowser" 3417 | version = "0.8.12" 3418 | source = "registry+https://github.com/rust-lang/crates.io-index" 3419 | checksum = "82b2391658b02c27719fc5a0a73d6e696285138e8b12fba9d4baa70451023c71" 3420 | dependencies = [ 3421 | "core-foundation", 3422 | "home", 3423 | "jni", 3424 | "log", 3425 | "ndk-context", 3426 | "objc", 3427 | "raw-window-handle", 3428 | "url", 3429 | "web-sys", 3430 | ] 3431 | 3432 | [[package]] 3433 | name = "webpki-roots" 3434 | version = "0.25.3" 3435 | source = "registry+https://github.com/rust-lang/crates.io-index" 3436 | checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 3437 | 3438 | [[package]] 3439 | name = "widestring" 3440 | version = "1.0.2" 3441 | source = "registry+https://github.com/rust-lang/crates.io-index" 3442 | checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 3443 | 3444 | [[package]] 3445 | name = "winapi" 3446 | version = "0.3.9" 3447 | source = "registry+https://github.com/rust-lang/crates.io-index" 3448 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3449 | dependencies = [ 3450 | "winapi-i686-pc-windows-gnu", 3451 | "winapi-x86_64-pc-windows-gnu", 3452 | ] 3453 | 3454 | [[package]] 3455 | name = "winapi-i686-pc-windows-gnu" 3456 | version = "0.4.0" 3457 | source = "registry+https://github.com/rust-lang/crates.io-index" 3458 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3459 | 3460 | [[package]] 3461 | name = "winapi-util" 3462 | version = "0.1.6" 3463 | source = "registry+https://github.com/rust-lang/crates.io-index" 3464 | checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 3465 | dependencies = [ 3466 | "winapi", 3467 | ] 3468 | 3469 | [[package]] 3470 | name = "winapi-wsapoll" 3471 | version = "0.1.1" 3472 | source = "registry+https://github.com/rust-lang/crates.io-index" 3473 | checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e" 3474 | dependencies = [ 3475 | "winapi", 3476 | ] 3477 | 3478 | [[package]] 3479 | name = "winapi-x86_64-pc-windows-gnu" 3480 | version = "0.4.0" 3481 | source = "registry+https://github.com/rust-lang/crates.io-index" 3482 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3483 | 3484 | [[package]] 3485 | name = "windows" 3486 | version = "0.48.0" 3487 | source = "registry+https://github.com/rust-lang/crates.io-index" 3488 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 3489 | dependencies = [ 3490 | "windows-implement", 3491 | "windows-interface", 3492 | "windows-targets 0.48.5", 3493 | ] 3494 | 3495 | [[package]] 3496 | name = "windows-core" 3497 | version = "0.51.1" 3498 | source = "registry+https://github.com/rust-lang/crates.io-index" 3499 | checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 3500 | dependencies = [ 3501 | "windows-targets 0.48.5", 3502 | ] 3503 | 3504 | [[package]] 3505 | name = "windows-implement" 3506 | version = "0.48.0" 3507 | source = "registry+https://github.com/rust-lang/crates.io-index" 3508 | checksum = "5e2ee588991b9e7e6c8338edf3333fbe4da35dc72092643958ebb43f0ab2c49c" 3509 | dependencies = [ 3510 | "proc-macro2", 3511 | "quote", 3512 | "syn 1.0.109", 3513 | ] 3514 | 3515 | [[package]] 3516 | name = "windows-interface" 3517 | version = "0.48.0" 3518 | source = "registry+https://github.com/rust-lang/crates.io-index" 3519 | checksum = "e6fb8df20c9bcaa8ad6ab513f7b40104840c8867d5751126e4df3b08388d0cc7" 3520 | dependencies = [ 3521 | "proc-macro2", 3522 | "quote", 3523 | "syn 1.0.109", 3524 | ] 3525 | 3526 | [[package]] 3527 | name = "windows-sys" 3528 | version = "0.45.0" 3529 | source = "registry+https://github.com/rust-lang/crates.io-index" 3530 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3531 | dependencies = [ 3532 | "windows-targets 0.42.2", 3533 | ] 3534 | 3535 | [[package]] 3536 | name = "windows-sys" 3537 | version = "0.48.0" 3538 | source = "registry+https://github.com/rust-lang/crates.io-index" 3539 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3540 | dependencies = [ 3541 | "windows-targets 0.48.5", 3542 | ] 3543 | 3544 | [[package]] 3545 | name = "windows-sys" 3546 | version = "0.52.0" 3547 | source = "registry+https://github.com/rust-lang/crates.io-index" 3548 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3549 | dependencies = [ 3550 | "windows-targets 0.52.0", 3551 | ] 3552 | 3553 | [[package]] 3554 | name = "windows-targets" 3555 | version = "0.42.2" 3556 | source = "registry+https://github.com/rust-lang/crates.io-index" 3557 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3558 | dependencies = [ 3559 | "windows_aarch64_gnullvm 0.42.2", 3560 | "windows_aarch64_msvc 0.42.2", 3561 | "windows_i686_gnu 0.42.2", 3562 | "windows_i686_msvc 0.42.2", 3563 | "windows_x86_64_gnu 0.42.2", 3564 | "windows_x86_64_gnullvm 0.42.2", 3565 | "windows_x86_64_msvc 0.42.2", 3566 | ] 3567 | 3568 | [[package]] 3569 | name = "windows-targets" 3570 | version = "0.48.5" 3571 | source = "registry+https://github.com/rust-lang/crates.io-index" 3572 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3573 | dependencies = [ 3574 | "windows_aarch64_gnullvm 0.48.5", 3575 | "windows_aarch64_msvc 0.48.5", 3576 | "windows_i686_gnu 0.48.5", 3577 | "windows_i686_msvc 0.48.5", 3578 | "windows_x86_64_gnu 0.48.5", 3579 | "windows_x86_64_gnullvm 0.48.5", 3580 | "windows_x86_64_msvc 0.48.5", 3581 | ] 3582 | 3583 | [[package]] 3584 | name = "windows-targets" 3585 | version = "0.52.0" 3586 | source = "registry+https://github.com/rust-lang/crates.io-index" 3587 | checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 3588 | dependencies = [ 3589 | "windows_aarch64_gnullvm 0.52.0", 3590 | "windows_aarch64_msvc 0.52.0", 3591 | "windows_i686_gnu 0.52.0", 3592 | "windows_i686_msvc 0.52.0", 3593 | "windows_x86_64_gnu 0.52.0", 3594 | "windows_x86_64_gnullvm 0.52.0", 3595 | "windows_x86_64_msvc 0.52.0", 3596 | ] 3597 | 3598 | [[package]] 3599 | name = "windows_aarch64_gnullvm" 3600 | version = "0.42.2" 3601 | source = "registry+https://github.com/rust-lang/crates.io-index" 3602 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3603 | 3604 | [[package]] 3605 | name = "windows_aarch64_gnullvm" 3606 | version = "0.48.5" 3607 | source = "registry+https://github.com/rust-lang/crates.io-index" 3608 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3609 | 3610 | [[package]] 3611 | name = "windows_aarch64_gnullvm" 3612 | version = "0.52.0" 3613 | source = "registry+https://github.com/rust-lang/crates.io-index" 3614 | checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 3615 | 3616 | [[package]] 3617 | name = "windows_aarch64_msvc" 3618 | version = "0.42.2" 3619 | source = "registry+https://github.com/rust-lang/crates.io-index" 3620 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3621 | 3622 | [[package]] 3623 | name = "windows_aarch64_msvc" 3624 | version = "0.48.5" 3625 | source = "registry+https://github.com/rust-lang/crates.io-index" 3626 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3627 | 3628 | [[package]] 3629 | name = "windows_aarch64_msvc" 3630 | version = "0.52.0" 3631 | source = "registry+https://github.com/rust-lang/crates.io-index" 3632 | checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 3633 | 3634 | [[package]] 3635 | name = "windows_i686_gnu" 3636 | version = "0.42.2" 3637 | source = "registry+https://github.com/rust-lang/crates.io-index" 3638 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3639 | 3640 | [[package]] 3641 | name = "windows_i686_gnu" 3642 | version = "0.48.5" 3643 | source = "registry+https://github.com/rust-lang/crates.io-index" 3644 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3645 | 3646 | [[package]] 3647 | name = "windows_i686_gnu" 3648 | version = "0.52.0" 3649 | source = "registry+https://github.com/rust-lang/crates.io-index" 3650 | checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 3651 | 3652 | [[package]] 3653 | name = "windows_i686_msvc" 3654 | version = "0.42.2" 3655 | source = "registry+https://github.com/rust-lang/crates.io-index" 3656 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3657 | 3658 | [[package]] 3659 | name = "windows_i686_msvc" 3660 | version = "0.48.5" 3661 | source = "registry+https://github.com/rust-lang/crates.io-index" 3662 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3663 | 3664 | [[package]] 3665 | name = "windows_i686_msvc" 3666 | version = "0.52.0" 3667 | source = "registry+https://github.com/rust-lang/crates.io-index" 3668 | checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 3669 | 3670 | [[package]] 3671 | name = "windows_x86_64_gnu" 3672 | version = "0.42.2" 3673 | source = "registry+https://github.com/rust-lang/crates.io-index" 3674 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3675 | 3676 | [[package]] 3677 | name = "windows_x86_64_gnu" 3678 | version = "0.48.5" 3679 | source = "registry+https://github.com/rust-lang/crates.io-index" 3680 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3681 | 3682 | [[package]] 3683 | name = "windows_x86_64_gnu" 3684 | version = "0.52.0" 3685 | source = "registry+https://github.com/rust-lang/crates.io-index" 3686 | checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 3687 | 3688 | [[package]] 3689 | name = "windows_x86_64_gnullvm" 3690 | version = "0.42.2" 3691 | source = "registry+https://github.com/rust-lang/crates.io-index" 3692 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3693 | 3694 | [[package]] 3695 | name = "windows_x86_64_gnullvm" 3696 | version = "0.48.5" 3697 | source = "registry+https://github.com/rust-lang/crates.io-index" 3698 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3699 | 3700 | [[package]] 3701 | name = "windows_x86_64_gnullvm" 3702 | version = "0.52.0" 3703 | source = "registry+https://github.com/rust-lang/crates.io-index" 3704 | checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 3705 | 3706 | [[package]] 3707 | name = "windows_x86_64_msvc" 3708 | version = "0.42.2" 3709 | source = "registry+https://github.com/rust-lang/crates.io-index" 3710 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3711 | 3712 | [[package]] 3713 | name = "windows_x86_64_msvc" 3714 | version = "0.48.5" 3715 | source = "registry+https://github.com/rust-lang/crates.io-index" 3716 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3717 | 3718 | [[package]] 3719 | name = "windows_x86_64_msvc" 3720 | version = "0.52.0" 3721 | source = "registry+https://github.com/rust-lang/crates.io-index" 3722 | checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 3723 | 3724 | [[package]] 3725 | name = "winit" 3726 | version = "0.28.7" 3727 | source = "registry+https://github.com/rust-lang/crates.io-index" 3728 | checksum = "9596d90b45384f5281384ab204224876e8e8bf7d58366d9b795ad99aa9894b94" 3729 | dependencies = [ 3730 | "android-activity", 3731 | "bitflags 1.3.2", 3732 | "cfg_aliases", 3733 | "core-foundation", 3734 | "core-graphics", 3735 | "dispatch", 3736 | "instant", 3737 | "libc", 3738 | "log", 3739 | "mio", 3740 | "ndk", 3741 | "objc2", 3742 | "once_cell", 3743 | "orbclient", 3744 | "percent-encoding", 3745 | "raw-window-handle", 3746 | "redox_syscall 0.3.5", 3747 | "sctk-adwaita", 3748 | "smithay-client-toolkit", 3749 | "wasm-bindgen", 3750 | "wayland-client", 3751 | "wayland-commons", 3752 | "wayland-protocols", 3753 | "wayland-scanner", 3754 | "web-sys", 3755 | "windows-sys 0.45.0", 3756 | "x11-dl", 3757 | ] 3758 | 3759 | [[package]] 3760 | name = "winnow" 3761 | version = "0.5.26" 3762 | source = "registry+https://github.com/rust-lang/crates.io-index" 3763 | checksum = "b67b5f0a4e7a27a64c651977932b9dc5667ca7fc31ac44b03ed37a0cf42fdfff" 3764 | dependencies = [ 3765 | "memchr", 3766 | ] 3767 | 3768 | [[package]] 3769 | name = "winreg" 3770 | version = "0.50.0" 3771 | source = "registry+https://github.com/rust-lang/crates.io-index" 3772 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3773 | dependencies = [ 3774 | "cfg-if", 3775 | "windows-sys 0.48.0", 3776 | ] 3777 | 3778 | [[package]] 3779 | name = "wyz" 3780 | version = "0.5.1" 3781 | source = "registry+https://github.com/rust-lang/crates.io-index" 3782 | checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 3783 | dependencies = [ 3784 | "tap", 3785 | ] 3786 | 3787 | [[package]] 3788 | name = "x11-dl" 3789 | version = "2.21.0" 3790 | source = "registry+https://github.com/rust-lang/crates.io-index" 3791 | checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 3792 | dependencies = [ 3793 | "libc", 3794 | "once_cell", 3795 | "pkg-config", 3796 | ] 3797 | 3798 | [[package]] 3799 | name = "x11rb" 3800 | version = "0.12.0" 3801 | source = "registry+https://github.com/rust-lang/crates.io-index" 3802 | checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 3803 | dependencies = [ 3804 | "gethostname", 3805 | "nix 0.26.4", 3806 | "winapi", 3807 | "winapi-wsapoll", 3808 | "x11rb-protocol", 3809 | ] 3810 | 3811 | [[package]] 3812 | name = "x11rb-protocol" 3813 | version = "0.12.0" 3814 | source = "registry+https://github.com/rust-lang/crates.io-index" 3815 | checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 3816 | dependencies = [ 3817 | "nix 0.26.4", 3818 | ] 3819 | 3820 | [[package]] 3821 | name = "xcursor" 3822 | version = "0.3.4" 3823 | source = "registry+https://github.com/rust-lang/crates.io-index" 3824 | checksum = "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7" 3825 | dependencies = [ 3826 | "nom", 3827 | ] 3828 | 3829 | [[package]] 3830 | name = "xdg-home" 3831 | version = "1.0.0" 3832 | source = "registry+https://github.com/rust-lang/crates.io-index" 3833 | checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 3834 | dependencies = [ 3835 | "nix 0.26.4", 3836 | "winapi", 3837 | ] 3838 | 3839 | [[package]] 3840 | name = "xml-rs" 3841 | version = "0.8.19" 3842 | source = "registry+https://github.com/rust-lang/crates.io-index" 3843 | checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 3844 | 3845 | [[package]] 3846 | name = "zbus" 3847 | version = "3.14.1" 3848 | source = "registry+https://github.com/rust-lang/crates.io-index" 3849 | checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 3850 | dependencies = [ 3851 | "async-broadcast", 3852 | "async-executor", 3853 | "async-fs", 3854 | "async-io 1.13.0", 3855 | "async-lock 2.8.0", 3856 | "async-process", 3857 | "async-recursion", 3858 | "async-task", 3859 | "async-trait", 3860 | "blocking", 3861 | "byteorder", 3862 | "derivative", 3863 | "enumflags2", 3864 | "event-listener 2.5.3", 3865 | "futures-core", 3866 | "futures-sink", 3867 | "futures-util", 3868 | "hex", 3869 | "nix 0.26.4", 3870 | "once_cell", 3871 | "ordered-stream", 3872 | "rand", 3873 | "serde", 3874 | "serde_repr", 3875 | "sha1", 3876 | "static_assertions", 3877 | "tracing", 3878 | "uds_windows", 3879 | "winapi", 3880 | "xdg-home", 3881 | "zbus_macros", 3882 | "zbus_names", 3883 | "zvariant", 3884 | ] 3885 | 3886 | [[package]] 3887 | name = "zbus_macros" 3888 | version = "3.14.1" 3889 | source = "registry+https://github.com/rust-lang/crates.io-index" 3890 | checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 3891 | dependencies = [ 3892 | "proc-macro-crate", 3893 | "proc-macro2", 3894 | "quote", 3895 | "regex", 3896 | "syn 1.0.109", 3897 | "zvariant_utils", 3898 | ] 3899 | 3900 | [[package]] 3901 | name = "zbus_names" 3902 | version = "2.6.0" 3903 | source = "registry+https://github.com/rust-lang/crates.io-index" 3904 | checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 3905 | dependencies = [ 3906 | "serde", 3907 | "static_assertions", 3908 | "zvariant", 3909 | ] 3910 | 3911 | [[package]] 3912 | name = "zerocopy" 3913 | version = "0.7.31" 3914 | source = "registry+https://github.com/rust-lang/crates.io-index" 3915 | checksum = "1c4061bedbb353041c12f413700357bec76df2c7e2ca8e4df8bac24c6bf68e3d" 3916 | dependencies = [ 3917 | "zerocopy-derive", 3918 | ] 3919 | 3920 | [[package]] 3921 | name = "zerocopy-derive" 3922 | version = "0.7.31" 3923 | source = "registry+https://github.com/rust-lang/crates.io-index" 3924 | checksum = "b3c129550b3e6de3fd0ba67ba5c81818f9805e58b8d7fee80a3a59d2c9fc601a" 3925 | dependencies = [ 3926 | "proc-macro2", 3927 | "quote", 3928 | "syn 2.0.39", 3929 | ] 3930 | 3931 | [[package]] 3932 | name = "zvariant" 3933 | version = "3.15.0" 3934 | source = "registry+https://github.com/rust-lang/crates.io-index" 3935 | checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 3936 | dependencies = [ 3937 | "byteorder", 3938 | "enumflags2", 3939 | "libc", 3940 | "serde", 3941 | "static_assertions", 3942 | "zvariant_derive", 3943 | ] 3944 | 3945 | [[package]] 3946 | name = "zvariant_derive" 3947 | version = "3.15.0" 3948 | source = "registry+https://github.com/rust-lang/crates.io-index" 3949 | checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 3950 | dependencies = [ 3951 | "proc-macro-crate", 3952 | "proc-macro2", 3953 | "quote", 3954 | "syn 1.0.109", 3955 | "zvariant_utils", 3956 | ] 3957 | 3958 | [[package]] 3959 | name = "zvariant_utils" 3960 | version = "1.0.1" 3961 | source = "registry+https://github.com/rust-lang/crates.io-index" 3962 | checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 3963 | dependencies = [ 3964 | "proc-macro2", 3965 | "quote", 3966 | "syn 1.0.109", 3967 | ] 3968 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "secure-cypher" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | eframe = "0.23.0" 10 | egui = "0.23.0" 11 | serde = "1.0.188" 12 | futures = "0.3.28" 13 | tokio = {version = "1.32.0", features = ["full"]} 14 | serde_json = "1.0.108" 15 | dotenv = "0.15.0" 16 | 17 | [dependencies.mongodb] 18 | version = "2.7.1" 19 | features = ["tokio-runtime"] 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Secure-Cipher 2 | 3 | [![made-with-rust](https://img.shields.io/badge/Made%20with-Rust-1f425f.svg)](https://www.rust-lang.org/) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) [![Documentation Status](https://readthedocs.org/projects/ansicolortags/badge/?version=latest)](http://ansicolortags.readthedocs.io/?badge=latest) 4 | 5 | A self hosted free and open source password manager for linux, Built using Rust, Egui, MongoDB 6 | 7 | Many times we have forgotten our account password and had to recent it which is a hassle and annoying , there are alternative to save password using third party apps but we can never be sure wheather its safe or not. 8 | 9 | By using secure cypher you can host your own database and store your passwords in your very own DB and make sure nobody can snoop them and its always secure 10 | 11 | ## How it works 12 | 13 | The app is connected to MongoDB database , So when the password is typed into the password field and clicked on save, the password get securely saved in your own database, and the user can also click on "show password" to view all your saved password retrived from the database 14 | 15 | ## Requirments 16 | - Rust 17 | - MongoDB account 18 | 19 | ## Instructions 20 | Git clone the repo 21 | ``` 22 | git clone https://github.com/PrethamMuthappa/secure-cipher.git 23 | ``` 24 | 25 | create a .env file in the root of your folder 26 | ``` 27 | URL=" PUT YOUR MONGODB CREDENTIALS HERE" 28 | ``` 29 | 30 | 31 | Run from your terminal in your current working project directory 32 | ``` 33 | cargo run 34 | 35 | ``` 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | use dotenv::dotenv; 2 | use eframe::{egui, HardwareAcceleration, Theme}; 3 | use egui::{Align, Color32, Layout, RichText, Vec2}; 4 | use futures::stream::TryStreamExt; 5 | use mongodb::{ 6 | bson::{doc, Document}, 7 | options::FindOptions, 8 | Client, Collection, 9 | }; 10 | use serde_json::Error; 11 | 12 | fn main() { 13 | dotenv().ok(); 14 | let nativeoption = eframe::NativeOptions { 15 | always_on_top: false, 16 | maximized: false, 17 | decorated: true, 18 | fullscreen: false, 19 | drag_and_drop_support: true, 20 | icon_data: None, 21 | initial_window_pos: None, 22 | initial_window_size: Option::from(Vec2::new(550f32, 350f32)), 23 | min_window_size: None, 24 | max_window_size: None, 25 | resizable: true, 26 | transparent: false, 27 | mouse_passthrough: false, 28 | active: false, 29 | vsync: true, 30 | multisampling: 0, 31 | depth_buffer: 0, 32 | stencil_buffer: 0, 33 | hardware_acceleration: HardwareAcceleration::Off, 34 | renderer: Default::default(), 35 | follow_system_theme: false, 36 | default_theme: Theme::Dark, 37 | run_and_return: false, 38 | event_loop_builder: None, 39 | window_builder: None, 40 | shader_version: None, 41 | centered: false, 42 | app_id: None, 43 | persist_window: false, 44 | }; 45 | eframe::run_native( 46 | "secure-cypher", 47 | nativeoption, 48 | Box::new(|cc| Box::new(MyEguiApp::new(cc))), 49 | ) 50 | .expect("error") 51 | } 52 | 53 | #[allow(dead_code)] 54 | #[derive(Default)] 55 | pub struct MyEguiApp { 56 | showslide: bool, 57 | editte: String, 58 | texts: String, 59 | itssaved: String, 60 | show: bool, 61 | resultdisplay: String, 62 | } 63 | 64 | impl MyEguiApp { 65 | pub fn new(_cc: &eframe::CreationContext<'_>) -> Self { 66 | Self { 67 | showslide: false, 68 | editte: String::new(), 69 | texts: String::new(), 70 | itssaved: String::new(), 71 | show: false, 72 | resultdisplay: String::new(), 73 | }; 74 | 75 | Self::default() 76 | } 77 | } 78 | 79 | #[tokio::main] 80 | async fn dbconnect(vars: String) -> mongodb::error::Result<()> { 81 | let uri = std::env::var("URL").expect("no url found"); 82 | let client = Client::with_uri_str(uri).await?; 83 | println!("connection established"); 84 | let db = client.database("Secure-cypher"); 85 | let coll: Collection = db.collection("usersavedpasswords"); 86 | let docs = doc! {"mypass":vars}; 87 | coll.insert_one(docs, None).await?; 88 | println!("your password has been saved"); 89 | Ok(()) 90 | } 91 | 92 | impl MyEguiApp { 93 | #[tokio::main] 94 | pub async fn display(&mut self) -> mongodb::error::Result<()> { 95 | let uri = std::env::var("URL").expect("no url found"); 96 | let client = Client::with_uri_str(uri).await?; 97 | println!("new display db"); 98 | let db = client.database("Secure-cypher"); 99 | let coll: Collection = db.collection("usersavedpasswords"); 100 | let filter = doc! {}; 101 | let projection = doc! {"_id":0}; 102 | let findopt = FindOptions::builder() 103 | .sort(doc! {"mypass":1}) 104 | .projection(projection) 105 | .build(); 106 | let mut cursor = coll.find(filter, findopt).await?; 107 | while let Some(abcd) = cursor.try_next().await? { 108 | let result: Result = serde_json::to_string(&abcd); 109 | match result { 110 | Ok(json_string) => { 111 | self.resultdisplay += &json_string; 112 | self.resultdisplay += "\n"; 113 | } 114 | Err(error) => { 115 | eprintln!("error {}", error) 116 | } 117 | } 118 | println!("{}", abcd) 119 | } 120 | 121 | Ok(()) 122 | } 123 | } 124 | 125 | impl eframe::App for MyEguiApp { 126 | fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) { 127 | egui::CentralPanel::default().show(ctx, |ui| { 128 | ui.with_layout(Layout::top_down(Align::Center), |ui| { 129 | ui.heading(RichText::new("SECURE CYPHER").color(Color32::WHITE)); 130 | }); 131 | ui.add_space(20.0); 132 | ui.with_layout(Layout::top_down(Align::Center), |ui| { 133 | ui.label( 134 | RichText::new("A self hosted password manager for linux. Free and open source") 135 | .color(Color32::WHITE), 136 | ) 137 | }); 138 | ui.add_space(20.10); 139 | 140 | ui.with_layout(Layout::top_down(Align::Center), |ui| { 141 | ui.text_edit_multiline(&mut self.editte); 142 | ui.add_space(10.0); 143 | if ui 144 | .button(RichText::new("Save").color(Color32::WHITE)) 145 | .clicked() 146 | { 147 | if let Err(err) = dbconnect(self.editte.clone()) { 148 | eprintln!("{}", err); 149 | } 150 | self.itssaved = "PASSWORD HAS BEEN SAVED".to_string(); 151 | } 152 | ui.add_space(3.99); 153 | ui.label(RichText::new(&self.itssaved).color(Color32::WHITE)); 154 | ui.add_space(7.90); 155 | if ui 156 | .button(RichText::new("Saved Passwords").color(Color32::WHITE)) 157 | .clicked() 158 | { 159 | self.show = true; 160 | }; 161 | if self.show == true { 162 | egui::CentralPanel::default().show(ctx, |ui| { 163 | ui.with_layout(Layout::top_down(Align::Center), |ui| { 164 | ui.heading(RichText::new("MY PASSWORDS").color(Color32::WHITE)); 165 | ui.separator(); 166 | }); 167 | 168 | if let Err(err) = MyEguiApp::display(self) { 169 | eprintln!("{}", err); 170 | } 171 | ui.label(RichText::new("Display password").color(Color32::WHITE)); 172 | ui.add_space(9.0); 173 | ui.label(RichText::new(&self.resultdisplay).color(Color32::WHITE)) 174 | }); 175 | }; 176 | }); 177 | }); 178 | } 179 | } 180 | --------------------------------------------------------------------------------