My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.
2
fork

Configure Feed

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

feat/db: connection to sqlite working

+1892 -18
+1814 -8
Cargo.lock
··· 18 18 checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 19 20 20 [[package]] 21 + name = "ahash" 22 + version = "0.7.8" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 + dependencies = [ 26 + "getrandom 0.2.17", 27 + "once_cell", 28 + "version_check", 29 + ] 30 + 31 + [[package]] 32 + name = "ahash" 33 + version = "0.8.12" 34 + source = "registry+https://github.com/rust-lang/crates.io-index" 35 + checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 36 + dependencies = [ 37 + "cfg-if", 38 + "const-random", 39 + "getrandom 0.3.4", 40 + "once_cell", 41 + "version_check", 42 + "zerocopy", 43 + ] 44 + 45 + [[package]] 21 46 name = "aho-corasick" 22 47 version = "1.1.4" 23 48 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 27 52 ] 28 53 29 54 [[package]] 55 + name = "aliasable" 56 + version = "0.1.3" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 59 + 60 + [[package]] 30 61 name = "allocator-api2" 31 62 version = "0.2.21" 32 63 source = "registry+https://github.com/rust-lang/crates.io-index" 33 64 checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 65 + 66 + [[package]] 67 + name = "android_system_properties" 68 + version = "0.1.5" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 71 + dependencies = [ 72 + "libc", 73 + ] 34 74 35 75 [[package]] 36 76 name = "anstream" ··· 98 138 ] 99 139 100 140 [[package]] 141 + name = "arrayvec" 142 + version = "0.7.6" 143 + source = "registry+https://github.com/rust-lang/crates.io-index" 144 + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 145 + 146 + [[package]] 147 + name = "arrow" 148 + version = "57.3.0" 149 + source = "registry+https://github.com/rust-lang/crates.io-index" 150 + checksum = "e4754a624e5ae42081f464514be454b39711daae0458906dacde5f4c632f33a8" 151 + dependencies = [ 152 + "arrow-arith", 153 + "arrow-array", 154 + "arrow-buffer", 155 + "arrow-cast", 156 + "arrow-data", 157 + "arrow-ord", 158 + "arrow-row", 159 + "arrow-schema", 160 + "arrow-select", 161 + "arrow-string", 162 + ] 163 + 164 + [[package]] 165 + name = "arrow-arith" 166 + version = "57.3.0" 167 + source = "registry+https://github.com/rust-lang/crates.io-index" 168 + checksum = "f7b3141e0ec5145a22d8694ea8b6d6f69305971c4fa1c1a13ef0195aef2d678b" 169 + dependencies = [ 170 + "arrow-array", 171 + "arrow-buffer", 172 + "arrow-data", 173 + "arrow-schema", 174 + "chrono", 175 + "num-traits", 176 + ] 177 + 178 + [[package]] 179 + name = "arrow-array" 180 + version = "57.3.0" 181 + source = "registry+https://github.com/rust-lang/crates.io-index" 182 + checksum = "4c8955af33b25f3b175ee10af580577280b4bd01f7e823d94c7cdef7cf8c9aef" 183 + dependencies = [ 184 + "ahash 0.8.12", 185 + "arrow-buffer", 186 + "arrow-data", 187 + "arrow-schema", 188 + "chrono", 189 + "half", 190 + "hashbrown 0.16.1", 191 + "num-complex", 192 + "num-integer", 193 + "num-traits", 194 + ] 195 + 196 + [[package]] 197 + name = "arrow-buffer" 198 + version = "57.3.0" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "c697ddca96183182f35b3a18e50b9110b11e916d7b7799cbfd4d34662f2c56c2" 201 + dependencies = [ 202 + "bytes", 203 + "half", 204 + "num-bigint", 205 + "num-traits", 206 + ] 207 + 208 + [[package]] 209 + name = "arrow-cast" 210 + version = "57.3.0" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "646bbb821e86fd57189c10b4fcdaa941deaf4181924917b0daa92735baa6ada5" 213 + dependencies = [ 214 + "arrow-array", 215 + "arrow-buffer", 216 + "arrow-data", 217 + "arrow-ord", 218 + "arrow-schema", 219 + "arrow-select", 220 + "atoi", 221 + "base64", 222 + "chrono", 223 + "half", 224 + "lexical-core", 225 + "num-traits", 226 + "ryu", 227 + ] 228 + 229 + [[package]] 230 + name = "arrow-data" 231 + version = "57.3.0" 232 + source = "registry+https://github.com/rust-lang/crates.io-index" 233 + checksum = "1fdd994a9d28e6365aa78e15da3f3950c0fdcea6b963a12fa1c391afb637b304" 234 + dependencies = [ 235 + "arrow-buffer", 236 + "arrow-schema", 237 + "half", 238 + "num-integer", 239 + "num-traits", 240 + ] 241 + 242 + [[package]] 243 + name = "arrow-ord" 244 + version = "57.3.0" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "f7d8f1870e03d4cbed632959498bcc84083b5a24bded52905ae1695bd29da45b" 247 + dependencies = [ 248 + "arrow-array", 249 + "arrow-buffer", 250 + "arrow-data", 251 + "arrow-schema", 252 + "arrow-select", 253 + ] 254 + 255 + [[package]] 256 + name = "arrow-row" 257 + version = "57.3.0" 258 + source = "registry+https://github.com/rust-lang/crates.io-index" 259 + checksum = "18228633bad92bff92a95746bbeb16e5fc318e8382b75619dec26db79e4de4c0" 260 + dependencies = [ 261 + "arrow-array", 262 + "arrow-buffer", 263 + "arrow-data", 264 + "arrow-schema", 265 + "half", 266 + ] 267 + 268 + [[package]] 269 + name = "arrow-schema" 270 + version = "57.3.0" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "8c872d36b7bf2a6a6a2b40de9156265f0242910791db366a2c17476ba8330d68" 273 + 274 + [[package]] 275 + name = "arrow-select" 276 + version = "57.3.0" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "68bf3e3efbd1278f770d67e5dc410257300b161b93baedb3aae836144edcaf4b" 279 + dependencies = [ 280 + "ahash 0.8.12", 281 + "arrow-array", 282 + "arrow-buffer", 283 + "arrow-data", 284 + "arrow-schema", 285 + "num-traits", 286 + ] 287 + 288 + [[package]] 289 + name = "arrow-string" 290 + version = "57.3.0" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "85e968097061b3c0e9fe3079cf2e703e487890700546b5b0647f60fca1b5a8d8" 293 + dependencies = [ 294 + "arrow-array", 295 + "arrow-buffer", 296 + "arrow-data", 297 + "arrow-schema", 298 + "arrow-select", 299 + "memchr", 300 + "num-traits", 301 + "regex", 302 + "regex-syntax", 303 + ] 304 + 305 + [[package]] 306 + name = "async-stream" 307 + version = "0.3.6" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 310 + dependencies = [ 311 + "async-stream-impl", 312 + "futures-core", 313 + "pin-project-lite", 314 + ] 315 + 316 + [[package]] 317 + name = "async-stream-impl" 318 + version = "0.3.6" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 321 + dependencies = [ 322 + "proc-macro2", 323 + "quote", 324 + "syn 2.0.117", 325 + ] 326 + 327 + [[package]] 328 + name = "async-trait" 329 + version = "0.1.89" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 332 + dependencies = [ 333 + "proc-macro2", 334 + "quote", 335 + "syn 2.0.117", 336 + ] 337 + 338 + [[package]] 339 + name = "atoi" 340 + version = "2.0.0" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 343 + dependencies = [ 344 + "num-traits", 345 + ] 346 + 347 + [[package]] 101 348 name = "atomic" 102 349 version = "0.6.1" 103 350 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 182 429 checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 183 430 184 431 [[package]] 432 + name = "base64ct" 433 + version = "1.8.3" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 436 + 437 + [[package]] 185 438 name = "better-panic" 186 439 version = "0.3.0" 187 440 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 192 445 ] 193 446 194 447 [[package]] 448 + name = "bigdecimal" 449 + version = "0.4.10" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" 452 + dependencies = [ 453 + "autocfg", 454 + "libm", 455 + "num-bigint", 456 + "num-integer", 457 + "num-traits", 458 + "serde", 459 + ] 460 + 461 + [[package]] 195 462 name = "bit-set" 196 463 version = "0.5.3" 197 464 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 217 484 version = "2.11.0" 218 485 source = "registry+https://github.com/rust-lang/crates.io-index" 219 486 checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 487 + dependencies = [ 488 + "serde_core", 489 + ] 490 + 491 + [[package]] 492 + name = "bitvec" 493 + version = "1.0.1" 494 + source = "registry+https://github.com/rust-lang/crates.io-index" 495 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 496 + dependencies = [ 497 + "funty", 498 + "radium", 499 + "tap", 500 + "wyz", 501 + ] 220 502 221 503 [[package]] 222 504 name = "block-buffer" ··· 242 524 source = "registry+https://github.com/rust-lang/crates.io-index" 243 525 checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" 244 526 dependencies = [ 527 + "borsh-derive", 245 528 "cfg_aliases", 246 529 ] 247 530 248 531 [[package]] 532 + name = "borsh-derive" 533 + version = "1.6.0" 534 + source = "registry+https://github.com/rust-lang/crates.io-index" 535 + checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" 536 + dependencies = [ 537 + "once_cell", 538 + "proc-macro-crate", 539 + "proc-macro2", 540 + "quote", 541 + "syn 2.0.117", 542 + ] 543 + 544 + [[package]] 249 545 name = "bstr" 250 546 version = "1.12.1" 251 547 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 263 559 checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 264 560 265 561 [[package]] 562 + name = "bytecheck" 563 + version = "0.6.12" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 566 + dependencies = [ 567 + "bytecheck_derive", 568 + "ptr_meta", 569 + "simdutf8", 570 + ] 571 + 572 + [[package]] 573 + name = "bytecheck_derive" 574 + version = "0.6.12" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 577 + dependencies = [ 578 + "proc-macro2", 579 + "quote", 580 + "syn 1.0.109", 581 + ] 582 + 583 + [[package]] 266 584 name = "bytemuck" 267 585 version = "1.25.0" 268 586 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 320 638 checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a" 321 639 dependencies = [ 322 640 "rustversion", 641 + ] 642 + 643 + [[package]] 644 + name = "cc" 645 + version = "1.2.57" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423" 648 + dependencies = [ 649 + "find-msvc-tools", 650 + "shlex", 323 651 ] 324 652 325 653 [[package]] ··· 335 663 checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 336 664 337 665 [[package]] 666 + name = "chrono" 667 + version = "0.4.44" 668 + source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 670 + dependencies = [ 671 + "iana-time-zone", 672 + "num-traits", 673 + "serde", 674 + "windows-link 0.2.1", 675 + ] 676 + 677 + [[package]] 338 678 name = "clap" 339 679 version = "4.5.60" 340 680 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 365 705 source = "registry+https://github.com/rust-lang/crates.io-index" 366 706 checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" 367 707 dependencies = [ 368 - "heck", 708 + "heck 0.5.0", 369 709 "proc-macro2", 370 710 "quote", 371 711 "syn 2.0.117", ··· 434 774 ] 435 775 436 776 [[package]] 777 + name = "concurrent-queue" 778 + version = "2.5.0" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 781 + dependencies = [ 782 + "crossbeam-utils", 783 + ] 784 + 785 + [[package]] 437 786 name = "console" 438 787 version = "0.15.11" 439 788 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 444 793 "once_cell", 445 794 "windows-sys 0.59.0", 446 795 ] 796 + 797 + [[package]] 798 + name = "const-oid" 799 + version = "0.9.6" 800 + source = "registry+https://github.com/rust-lang/crates.io-index" 801 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 447 802 448 803 [[package]] 449 804 name = "const-oid" ··· 452 807 checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" 453 808 454 809 [[package]] 810 + name = "const-random" 811 + version = "0.1.18" 812 + source = "registry+https://github.com/rust-lang/crates.io-index" 813 + checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 814 + dependencies = [ 815 + "const-random-macro", 816 + ] 817 + 818 + [[package]] 819 + name = "const-random-macro" 820 + version = "0.1.16" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 823 + dependencies = [ 824 + "getrandom 0.2.17", 825 + "once_cell", 826 + "tiny-keccak", 827 + ] 828 + 829 + [[package]] 455 830 name = "convert_case" 456 831 version = "0.10.0" 457 832 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 461 836 ] 462 837 463 838 [[package]] 839 + name = "core-foundation-sys" 840 + version = "0.8.7" 841 + source = "registry+https://github.com/rust-lang/crates.io-index" 842 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 843 + 844 + [[package]] 464 845 name = "cpufeatures" 465 846 version = "0.2.17" 466 847 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 470 851 ] 471 852 472 853 [[package]] 854 + name = "crc" 855 + version = "3.4.0" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 858 + dependencies = [ 859 + "crc-catalog", 860 + ] 861 + 862 + [[package]] 863 + name = "crc-catalog" 864 + version = "2.4.0" 865 + source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 867 + 868 + [[package]] 473 869 name = "crc32fast" 474 870 version = "1.5.0" 475 871 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 479 875 ] 480 876 481 877 [[package]] 878 + name = "crossbeam-queue" 879 + version = "0.3.12" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 882 + dependencies = [ 883 + "crossbeam-utils", 884 + ] 885 + 886 + [[package]] 482 887 name = "crossbeam-utils" 483 888 version = "0.8.21" 484 889 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 511 916 dependencies = [ 512 917 "winapi", 513 918 ] 919 + 920 + [[package]] 921 + name = "crunchy" 922 + version = "0.2.4" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 514 925 515 926 [[package]] 516 927 name = "crypto-common" ··· 627 1038 [[package]] 628 1039 name = "db" 629 1040 version = "0.1.0" 1041 + dependencies = [ 1042 + "sea-orm", 1043 + "thiserror 2.0.18", 1044 + "tokio", 1045 + "tracing", 1046 + ] 630 1047 631 1048 [[package]] 632 1049 name = "deltae" ··· 635 1052 checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4" 636 1053 637 1054 [[package]] 1055 + name = "der" 1056 + version = "0.7.10" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1059 + dependencies = [ 1060 + "const-oid 0.9.6", 1061 + "pem-rfc7468", 1062 + "zeroize", 1063 + ] 1064 + 1065 + [[package]] 638 1066 name = "deranged" 639 1067 version = "0.5.8" 640 1068 source = "registry+https://github.com/rust-lang/crates.io-index" 641 1069 checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" 642 1070 dependencies = [ 643 1071 "powerfmt", 1072 + "serde_core", 644 1073 ] 645 1074 646 1075 [[package]] ··· 694 1123 "quote", 695 1124 "rustc_version", 696 1125 "syn 2.0.117", 1126 + "unicode-xid", 697 1127 ] 698 1128 699 1129 [[package]] ··· 703 1133 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 704 1134 dependencies = [ 705 1135 "block-buffer 0.10.4", 1136 + "const-oid 0.9.6", 706 1137 "crypto-common 0.1.7", 1138 + "subtle", 707 1139 ] 708 1140 709 1141 [[package]] ··· 713 1145 checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c" 714 1146 dependencies = [ 715 1147 "block-buffer 0.12.0", 716 - "const-oid", 1148 + "const-oid 0.10.2", 717 1149 "crypto-common 0.2.1", 718 1150 ] 719 1151 ··· 739 1171 ] 740 1172 741 1173 [[package]] 1174 + name = "displaydoc" 1175 + version = "0.2.5" 1176 + source = "registry+https://github.com/rust-lang/crates.io-index" 1177 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1178 + dependencies = [ 1179 + "proc-macro2", 1180 + "quote", 1181 + "syn 2.0.117", 1182 + ] 1183 + 1184 + [[package]] 742 1185 name = "document-features" 743 1186 version = "0.2.12" 744 1187 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 748 1191 ] 749 1192 750 1193 [[package]] 1194 + name = "dotenvy" 1195 + version = "0.15.7" 1196 + source = "registry+https://github.com/rust-lang/crates.io-index" 1197 + checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1198 + 1199 + [[package]] 751 1200 name = "dunce" 752 1201 version = "1.0.5" 753 1202 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 758 1207 version = "1.15.0" 759 1208 source = "registry+https://github.com/rust-lang/crates.io-index" 760 1209 checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1210 + dependencies = [ 1211 + "serde", 1212 + ] 761 1213 762 1214 [[package]] 763 1215 name = "encode_unicode" ··· 791 1243 ] 792 1244 793 1245 [[package]] 1246 + name = "etcetera" 1247 + version = "0.8.0" 1248 + source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1250 + dependencies = [ 1251 + "cfg-if", 1252 + "home", 1253 + "windows-sys 0.48.0", 1254 + ] 1255 + 1256 + [[package]] 794 1257 name = "euclid" 795 1258 version = "0.22.13" 796 1259 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 800 1263 ] 801 1264 802 1265 [[package]] 1266 + name = "event-listener" 1267 + version = "5.4.1" 1268 + source = "registry+https://github.com/rust-lang/crates.io-index" 1269 + checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1270 + dependencies = [ 1271 + "concurrent-queue", 1272 + "parking", 1273 + "pin-project-lite", 1274 + ] 1275 + 1276 + [[package]] 803 1277 name = "eyre" 804 1278 version = "0.6.12" 805 1279 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 844 1318 "clap", 845 1319 "color-eyre", 846 1320 "crossterm", 1321 + "db", 847 1322 "directories", 848 1323 "futures", 849 1324 "human-panic", ··· 883 1358 ] 884 1359 885 1360 [[package]] 1361 + name = "find-msvc-tools" 1362 + version = "0.1.9" 1363 + source = "registry+https://github.com/rust-lang/crates.io-index" 1364 + checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 1365 + 1366 + [[package]] 886 1367 name = "finl_unicode" 887 1368 version = "1.4.0" 888 1369 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 905 1386 ] 906 1387 907 1388 [[package]] 1389 + name = "flume" 1390 + version = "0.11.1" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 1393 + dependencies = [ 1394 + "futures-core", 1395 + "futures-sink", 1396 + "spin", 1397 + ] 1398 + 1399 + [[package]] 908 1400 name = "fnv" 909 1401 version = "1.0.7" 910 1402 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 923 1415 checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 924 1416 925 1417 [[package]] 1418 + name = "form_urlencoded" 1419 + version = "1.2.2" 1420 + source = "registry+https://github.com/rust-lang/crates.io-index" 1421 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1422 + dependencies = [ 1423 + "percent-encoding", 1424 + ] 1425 + 1426 + [[package]] 1427 + name = "funty" 1428 + version = "2.0.0" 1429 + source = "registry+https://github.com/rust-lang/crates.io-index" 1430 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1431 + 1432 + [[package]] 926 1433 name = "futures" 927 1434 version = "0.3.32" 928 1435 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 962 1469 "futures-core", 963 1470 "futures-task", 964 1471 "futures-util", 1472 + ] 1473 + 1474 + [[package]] 1475 + name = "futures-intrusive" 1476 + version = "0.5.0" 1477 + source = "registry+https://github.com/rust-lang/crates.io-index" 1478 + checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1479 + dependencies = [ 1480 + "futures-core", 1481 + "lock_api", 1482 + "parking_lot", 965 1483 ] 966 1484 967 1485 [[package]] ··· 1802 2320 ] 1803 2321 1804 2322 [[package]] 2323 + name = "half" 2324 + version = "2.7.1" 2325 + source = "registry+https://github.com/rust-lang/crates.io-index" 2326 + checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2327 + dependencies = [ 2328 + "cfg-if", 2329 + "crunchy", 2330 + "num-traits", 2331 + "zerocopy", 2332 + ] 2333 + 2334 + [[package]] 1805 2335 name = "hash32" 1806 2336 version = "0.3.1" 1807 2337 source = "registry+https://github.com/rust-lang/crates.io-index" 1808 2338 checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 1809 2339 dependencies = [ 1810 2340 "byteorder", 2341 + ] 2342 + 2343 + [[package]] 2344 + name = "hashbrown" 2345 + version = "0.12.3" 2346 + source = "registry+https://github.com/rust-lang/crates.io-index" 2347 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2348 + dependencies = [ 2349 + "ahash 0.7.8", 1811 2350 ] 1812 2351 1813 2352 [[package]] ··· 1822 2361 source = "registry+https://github.com/rust-lang/crates.io-index" 1823 2362 checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1824 2363 dependencies = [ 2364 + "allocator-api2", 2365 + "equivalent", 1825 2366 "foldhash 0.1.5", 1826 2367 ] 1827 2368 ··· 1837 2378 ] 1838 2379 1839 2380 [[package]] 2381 + name = "hashlink" 2382 + version = "0.10.0" 2383 + source = "registry+https://github.com/rust-lang/crates.io-index" 2384 + checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 2385 + dependencies = [ 2386 + "hashbrown 0.15.5", 2387 + ] 2388 + 2389 + [[package]] 1840 2390 name = "heapless" 1841 2391 version = "0.8.0" 1842 2392 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1845 2395 "hash32", 1846 2396 "stable_deref_trait", 1847 2397 ] 2398 + 2399 + [[package]] 2400 + name = "heck" 2401 + version = "0.4.1" 2402 + source = "registry+https://github.com/rust-lang/crates.io-index" 2403 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1848 2404 1849 2405 [[package]] 1850 2406 name = "heck" ··· 1869 2425 ] 1870 2426 1871 2427 [[package]] 2428 + name = "hkdf" 2429 + version = "0.12.4" 2430 + source = "registry+https://github.com/rust-lang/crates.io-index" 2431 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2432 + dependencies = [ 2433 + "hmac", 2434 + ] 2435 + 2436 + [[package]] 2437 + name = "hmac" 2438 + version = "0.12.1" 2439 + source = "registry+https://github.com/rust-lang/crates.io-index" 2440 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2441 + dependencies = [ 2442 + "digest 0.10.7", 2443 + ] 2444 + 2445 + [[package]] 2446 + name = "home" 2447 + version = "0.5.12" 2448 + source = "registry+https://github.com/rust-lang/crates.io-index" 2449 + checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 2450 + dependencies = [ 2451 + "windows-sys 0.61.2", 2452 + ] 2453 + 2454 + [[package]] 1872 2455 name = "human-panic" 1873 2456 version = "2.0.6" 1874 2457 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1894 2477 ] 1895 2478 1896 2479 [[package]] 2480 + name = "iana-time-zone" 2481 + version = "0.1.65" 2482 + source = "registry+https://github.com/rust-lang/crates.io-index" 2483 + checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 2484 + dependencies = [ 2485 + "android_system_properties", 2486 + "core-foundation-sys", 2487 + "iana-time-zone-haiku", 2488 + "js-sys", 2489 + "log", 2490 + "wasm-bindgen", 2491 + "windows-core", 2492 + ] 2493 + 2494 + [[package]] 2495 + name = "iana-time-zone-haiku" 2496 + version = "0.1.2" 2497 + source = "registry+https://github.com/rust-lang/crates.io-index" 2498 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2499 + dependencies = [ 2500 + "cc", 2501 + ] 2502 + 2503 + [[package]] 2504 + name = "icu_collections" 2505 + version = "2.1.1" 2506 + source = "registry+https://github.com/rust-lang/crates.io-index" 2507 + checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 2508 + dependencies = [ 2509 + "displaydoc", 2510 + "potential_utf", 2511 + "yoke", 2512 + "zerofrom", 2513 + "zerovec", 2514 + ] 2515 + 2516 + [[package]] 2517 + name = "icu_locale_core" 2518 + version = "2.1.1" 2519 + source = "registry+https://github.com/rust-lang/crates.io-index" 2520 + checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 2521 + dependencies = [ 2522 + "displaydoc", 2523 + "litemap", 2524 + "tinystr", 2525 + "writeable", 2526 + "zerovec", 2527 + ] 2528 + 2529 + [[package]] 2530 + name = "icu_normalizer" 2531 + version = "2.1.1" 2532 + source = "registry+https://github.com/rust-lang/crates.io-index" 2533 + checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 2534 + dependencies = [ 2535 + "icu_collections", 2536 + "icu_normalizer_data", 2537 + "icu_properties", 2538 + "icu_provider", 2539 + "smallvec", 2540 + "zerovec", 2541 + ] 2542 + 2543 + [[package]] 2544 + name = "icu_normalizer_data" 2545 + version = "2.1.1" 2546 + source = "registry+https://github.com/rust-lang/crates.io-index" 2547 + checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 2548 + 2549 + [[package]] 2550 + name = "icu_properties" 2551 + version = "2.1.2" 2552 + source = "registry+https://github.com/rust-lang/crates.io-index" 2553 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 2554 + dependencies = [ 2555 + "icu_collections", 2556 + "icu_locale_core", 2557 + "icu_properties_data", 2558 + "icu_provider", 2559 + "zerotrie", 2560 + "zerovec", 2561 + ] 2562 + 2563 + [[package]] 2564 + name = "icu_properties_data" 2565 + version = "2.1.2" 2566 + source = "registry+https://github.com/rust-lang/crates.io-index" 2567 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 2568 + 2569 + [[package]] 2570 + name = "icu_provider" 2571 + version = "2.1.1" 2572 + source = "registry+https://github.com/rust-lang/crates.io-index" 2573 + checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 2574 + dependencies = [ 2575 + "displaydoc", 2576 + "icu_locale_core", 2577 + "writeable", 2578 + "yoke", 2579 + "zerofrom", 2580 + "zerotrie", 2581 + "zerovec", 2582 + ] 2583 + 2584 + [[package]] 1897 2585 name = "id-arena" 1898 2586 version = "2.3.0" 1899 2587 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1906 2594 checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1907 2595 1908 2596 [[package]] 2597 + name = "idna" 2598 + version = "1.1.0" 2599 + source = "registry+https://github.com/rust-lang/crates.io-index" 2600 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 2601 + dependencies = [ 2602 + "idna_adapter", 2603 + "smallvec", 2604 + "utf8_iter", 2605 + ] 2606 + 2607 + [[package]] 2608 + name = "idna_adapter" 2609 + version = "1.2.1" 2610 + source = "registry+https://github.com/rust-lang/crates.io-index" 2611 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2612 + dependencies = [ 2613 + "icu_normalizer", 2614 + "icu_properties", 2615 + ] 2616 + 2617 + [[package]] 1909 2618 name = "imara-diff" 1910 2619 version = "0.1.8" 1911 2620 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1939 2648 checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 1940 2649 dependencies = [ 1941 2650 "rustversion", 2651 + ] 2652 + 2653 + [[package]] 2654 + name = "inherent" 2655 + version = "1.0.13" 2656 + source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + checksum = "c727f80bfa4a6c6e2508d2f05b6f4bfce242030bd88ed15ae5331c5b5d30fba7" 2658 + dependencies = [ 2659 + "proc-macro2", 2660 + "quote", 2661 + "syn 2.0.117", 1942 2662 ] 1943 2663 1944 2664 [[package]] ··· 2068 2788 version = "1.5.0" 2069 2789 source = "registry+https://github.com/rust-lang/crates.io-index" 2070 2790 checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2791 + dependencies = [ 2792 + "spin", 2793 + ] 2071 2794 2072 2795 [[package]] 2073 2796 name = "leb128" ··· 2082 2805 checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 2083 2806 2084 2807 [[package]] 2808 + name = "lexical-core" 2809 + version = "1.0.6" 2810 + source = "registry+https://github.com/rust-lang/crates.io-index" 2811 + checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" 2812 + dependencies = [ 2813 + "lexical-parse-float", 2814 + "lexical-parse-integer", 2815 + "lexical-util", 2816 + "lexical-write-float", 2817 + "lexical-write-integer", 2818 + ] 2819 + 2820 + [[package]] 2821 + name = "lexical-parse-float" 2822 + version = "1.0.6" 2823 + source = "registry+https://github.com/rust-lang/crates.io-index" 2824 + checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" 2825 + dependencies = [ 2826 + "lexical-parse-integer", 2827 + "lexical-util", 2828 + ] 2829 + 2830 + [[package]] 2831 + name = "lexical-parse-integer" 2832 + version = "1.0.6" 2833 + source = "registry+https://github.com/rust-lang/crates.io-index" 2834 + checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" 2835 + dependencies = [ 2836 + "lexical-util", 2837 + ] 2838 + 2839 + [[package]] 2840 + name = "lexical-util" 2841 + version = "1.0.7" 2842 + source = "registry+https://github.com/rust-lang/crates.io-index" 2843 + checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17" 2844 + 2845 + [[package]] 2846 + name = "lexical-write-float" 2847 + version = "1.0.6" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" 2850 + dependencies = [ 2851 + "lexical-util", 2852 + "lexical-write-integer", 2853 + ] 2854 + 2855 + [[package]] 2856 + name = "lexical-write-integer" 2857 + version = "1.0.6" 2858 + source = "registry+https://github.com/rust-lang/crates.io-index" 2859 + checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" 2860 + dependencies = [ 2861 + "lexical-util", 2862 + ] 2863 + 2864 + [[package]] 2085 2865 name = "libc" 2086 2866 version = "0.2.182" 2087 2867 source = "registry+https://github.com/rust-lang/crates.io-index" 2088 2868 checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" 2089 2869 2090 2870 [[package]] 2871 + name = "libm" 2872 + version = "0.2.16" 2873 + source = "registry+https://github.com/rust-lang/crates.io-index" 2874 + checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" 2875 + 2876 + [[package]] 2091 2877 name = "libredox" 2092 2878 version = "0.1.14" 2093 2879 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2100 2886 ] 2101 2887 2102 2888 [[package]] 2889 + name = "libsqlite3-sys" 2890 + version = "0.30.1" 2891 + source = "registry+https://github.com/rust-lang/crates.io-index" 2892 + checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 2893 + dependencies = [ 2894 + "cc", 2895 + "pkg-config", 2896 + "vcpkg", 2897 + ] 2898 + 2899 + [[package]] 2103 2900 name = "line-clipping" 2104 2901 version = "0.3.5" 2105 2902 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2113 2910 version = "0.12.1" 2114 2911 source = "registry+https://github.com/rust-lang/crates.io-index" 2115 2912 checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 2913 + 2914 + [[package]] 2915 + name = "litemap" 2916 + version = "0.8.1" 2917 + source = "registry+https://github.com/rust-lang/crates.io-index" 2918 + checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 2116 2919 2117 2920 [[package]] 2118 2921 name = "litrs" ··· 2151 2954 checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303" 2152 2955 dependencies = [ 2153 2956 "nix", 2957 + "serde", 2154 2958 "winapi", 2155 2959 ] 2156 2960 ··· 2172 2976 "proc-macro2", 2173 2977 "quote", 2174 2978 "syn 2.0.117", 2979 + ] 2980 + 2981 + [[package]] 2982 + name = "md-5" 2983 + version = "0.10.6" 2984 + source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2986 + dependencies = [ 2987 + "cfg-if", 2988 + "digest 0.10.7", 2175 2989 ] 2176 2990 2177 2991 [[package]] ··· 2308 3122 ] 2309 3123 2310 3124 [[package]] 3125 + name = "num-bigint-dig" 3126 + version = "0.8.6" 3127 + source = "registry+https://github.com/rust-lang/crates.io-index" 3128 + checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 3129 + dependencies = [ 3130 + "lazy_static", 3131 + "libm", 3132 + "num-integer", 3133 + "num-iter", 3134 + "num-traits", 3135 + "rand 0.8.5", 3136 + "smallvec", 3137 + "zeroize", 3138 + ] 3139 + 3140 + [[package]] 2311 3141 name = "num-complex" 2312 3142 version = "0.4.6" 2313 3143 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2371 3201 checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2372 3202 dependencies = [ 2373 3203 "autocfg", 3204 + "libm", 2374 3205 ] 2375 3206 2376 3207 [[package]] ··· 2438 3269 ] 2439 3270 2440 3271 [[package]] 3272 + name = "ouroboros" 3273 + version = "0.18.5" 3274 + source = "registry+https://github.com/rust-lang/crates.io-index" 3275 + checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 3276 + dependencies = [ 3277 + "aliasable", 3278 + "ouroboros_macro", 3279 + "static_assertions", 3280 + ] 3281 + 3282 + [[package]] 3283 + name = "ouroboros_macro" 3284 + version = "0.18.5" 3285 + source = "registry+https://github.com/rust-lang/crates.io-index" 3286 + checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 3287 + dependencies = [ 3288 + "heck 0.4.1", 3289 + "proc-macro2", 3290 + "proc-macro2-diagnostics", 3291 + "quote", 3292 + "syn 2.0.117", 3293 + ] 3294 + 3295 + [[package]] 2441 3296 name = "owo-colors" 2442 3297 version = "4.3.0" 2443 3298 source = "registry+https://github.com/rust-lang/crates.io-index" 2444 3299 checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d" 3300 + 3301 + [[package]] 3302 + name = "parking" 3303 + version = "2.2.1" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2445 3306 2446 3307 [[package]] 2447 3308 name = "parking_lot" ··· 2467 3328 ] 2468 3329 2469 3330 [[package]] 3331 + name = "pem-rfc7468" 3332 + version = "0.7.0" 3333 + source = "registry+https://github.com/rust-lang/crates.io-index" 3334 + checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3335 + dependencies = [ 3336 + "base64ct", 3337 + ] 3338 + 3339 + [[package]] 2470 3340 name = "percent-encoding" 2471 3341 version = "2.3.2" 2472 3342 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2513 3383 dependencies = [ 2514 3384 "pest", 2515 3385 "sha2 0.10.9", 3386 + ] 3387 + 3388 + [[package]] 3389 + name = "pgvector" 3390 + version = "0.4.1" 3391 + source = "registry+https://github.com/rust-lang/crates.io-index" 3392 + checksum = "fc58e2d255979a31caa7cabfa7aac654af0354220719ab7a68520ae7a91e8c0b" 3393 + dependencies = [ 3394 + "serde", 2516 3395 ] 2517 3396 2518 3397 [[package]] ··· 2574 3453 checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 2575 3454 2576 3455 [[package]] 3456 + name = "pkcs1" 3457 + version = "0.7.5" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3460 + dependencies = [ 3461 + "der", 3462 + "pkcs8", 3463 + "spki", 3464 + ] 3465 + 3466 + [[package]] 3467 + name = "pkcs8" 3468 + version = "0.10.2" 3469 + source = "registry+https://github.com/rust-lang/crates.io-index" 3470 + checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3471 + dependencies = [ 3472 + "der", 3473 + "spki", 3474 + ] 3475 + 3476 + [[package]] 3477 + name = "pkg-config" 3478 + version = "0.3.32" 3479 + source = "registry+https://github.com/rust-lang/crates.io-index" 3480 + checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 3481 + 3482 + [[package]] 2577 3483 name = "plain" 2578 3484 version = "0.2.3" 2579 3485 source = "registry+https://github.com/rust-lang/crates.io-index" 2580 3486 checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 2581 3487 2582 3488 [[package]] 3489 + name = "pluralizer" 3490 + version = "0.5.0" 3491 + source = "registry+https://github.com/rust-lang/crates.io-index" 3492 + checksum = "4b3eba432a00a1f6c16f39147847a870e94e2e9b992759b503e330efec778cbe" 3493 + dependencies = [ 3494 + "once_cell", 3495 + "regex", 3496 + ] 3497 + 3498 + [[package]] 2583 3499 name = "portable-atomic" 2584 3500 version = "1.13.1" 2585 3501 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2595 3511 ] 2596 3512 2597 3513 [[package]] 3514 + name = "potential_utf" 3515 + version = "0.1.4" 3516 + source = "registry+https://github.com/rust-lang/crates.io-index" 3517 + checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 3518 + dependencies = [ 3519 + "zerovec", 3520 + ] 3521 + 3522 + [[package]] 2598 3523 name = "powerfmt" 2599 3524 version = "0.2.0" 2600 3525 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2620 3545 ] 2621 3546 2622 3547 [[package]] 3548 + name = "proc-macro-crate" 3549 + version = "3.5.0" 3550 + source = "registry+https://github.com/rust-lang/crates.io-index" 3551 + checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 3552 + dependencies = [ 3553 + "toml_edit", 3554 + ] 3555 + 3556 + [[package]] 3557 + name = "proc-macro-error-attr2" 3558 + version = "2.0.0" 3559 + source = "registry+https://github.com/rust-lang/crates.io-index" 3560 + checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 3561 + dependencies = [ 3562 + "proc-macro2", 3563 + "quote", 3564 + ] 3565 + 3566 + [[package]] 3567 + name = "proc-macro-error2" 3568 + version = "2.0.1" 3569 + source = "registry+https://github.com/rust-lang/crates.io-index" 3570 + checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 3571 + dependencies = [ 3572 + "proc-macro-error-attr2", 3573 + "proc-macro2", 3574 + "quote", 3575 + "syn 2.0.117", 3576 + ] 3577 + 3578 + [[package]] 2623 3579 name = "proc-macro2" 2624 3580 version = "1.0.106" 2625 3581 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2629 3585 ] 2630 3586 2631 3587 [[package]] 3588 + name = "proc-macro2-diagnostics" 3589 + version = "0.10.1" 3590 + source = "registry+https://github.com/rust-lang/crates.io-index" 3591 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 3592 + dependencies = [ 3593 + "proc-macro2", 3594 + "quote", 3595 + "syn 2.0.117", 3596 + "version_check", 3597 + "yansi", 3598 + ] 3599 + 3600 + [[package]] 2632 3601 name = "prodash" 2633 3602 version = "30.0.1" 2634 3603 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2638 3607 ] 2639 3608 2640 3609 [[package]] 3610 + name = "ptr_meta" 3611 + version = "0.1.4" 3612 + source = "registry+https://github.com/rust-lang/crates.io-index" 3613 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 3614 + dependencies = [ 3615 + "ptr_meta_derive", 3616 + ] 3617 + 3618 + [[package]] 3619 + name = "ptr_meta_derive" 3620 + version = "0.1.4" 3621 + source = "registry+https://github.com/rust-lang/crates.io-index" 3622 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 3623 + dependencies = [ 3624 + "proc-macro2", 3625 + "quote", 3626 + "syn 1.0.109", 3627 + ] 3628 + 3629 + [[package]] 2641 3630 name = "quote" 2642 3631 version = "1.0.45" 2643 3632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2659 3648 checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2660 3649 2661 3650 [[package]] 3651 + name = "radium" 3652 + version = "0.7.0" 3653 + source = "registry+https://github.com/rust-lang/crates.io-index" 3654 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 3655 + 3656 + [[package]] 2662 3657 name = "rand" 2663 3658 version = "0.8.5" 2664 3659 source = "registry+https://github.com/rust-lang/crates.io-index" 2665 3660 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2666 3661 dependencies = [ 3662 + "libc", 3663 + "rand_chacha 0.3.1", 2667 3664 "rand_core 0.6.4", 2668 3665 ] 2669 3666 ··· 2673 3670 source = "registry+https://github.com/rust-lang/crates.io-index" 2674 3671 checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2675 3672 dependencies = [ 2676 - "rand_chacha", 3673 + "rand_chacha 0.9.0", 2677 3674 "rand_core 0.9.5", 2678 3675 ] 2679 3676 2680 3677 [[package]] 2681 3678 name = "rand_chacha" 3679 + version = "0.3.1" 3680 + source = "registry+https://github.com/rust-lang/crates.io-index" 3681 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3682 + dependencies = [ 3683 + "ppv-lite86", 3684 + "rand_core 0.6.4", 3685 + ] 3686 + 3687 + [[package]] 3688 + name = "rand_chacha" 2682 3689 version = "0.9.0" 2683 3690 source = "registry+https://github.com/rust-lang/crates.io-index" 2684 3691 checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" ··· 2692 3699 version = "0.6.4" 2693 3700 source = "registry+https://github.com/rust-lang/crates.io-index" 2694 3701 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3702 + dependencies = [ 3703 + "getrandom 0.2.17", 3704 + ] 2695 3705 2696 3706 [[package]] 2697 3707 name = "rand_core" ··· 2846 3856 checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 2847 3857 2848 3858 [[package]] 3859 + name = "rend" 3860 + version = "0.4.2" 3861 + source = "registry+https://github.com/rust-lang/crates.io-index" 3862 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 3863 + dependencies = [ 3864 + "bytecheck", 3865 + ] 3866 + 3867 + [[package]] 3868 + name = "rkyv" 3869 + version = "0.7.46" 3870 + source = "registry+https://github.com/rust-lang/crates.io-index" 3871 + checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" 3872 + dependencies = [ 3873 + "bitvec", 3874 + "bytecheck", 3875 + "bytes", 3876 + "hashbrown 0.12.3", 3877 + "ptr_meta", 3878 + "rend", 3879 + "rkyv_derive", 3880 + "seahash", 3881 + "tinyvec", 3882 + "uuid", 3883 + ] 3884 + 3885 + [[package]] 3886 + name = "rkyv_derive" 3887 + version = "0.7.46" 3888 + source = "registry+https://github.com/rust-lang/crates.io-index" 3889 + checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" 3890 + dependencies = [ 3891 + "proc-macro2", 3892 + "quote", 3893 + "syn 1.0.109", 3894 + ] 3895 + 3896 + [[package]] 3897 + name = "rsa" 3898 + version = "0.9.10" 3899 + source = "registry+https://github.com/rust-lang/crates.io-index" 3900 + checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" 3901 + dependencies = [ 3902 + "const-oid 0.9.6", 3903 + "digest 0.10.7", 3904 + "num-bigint-dig", 3905 + "num-integer", 3906 + "num-traits", 3907 + "pkcs1", 3908 + "pkcs8", 3909 + "rand_core 0.6.4", 3910 + "signature", 3911 + "spki", 3912 + "subtle", 3913 + "zeroize", 3914 + ] 3915 + 3916 + [[package]] 3917 + name = "rust_decimal" 3918 + version = "1.40.0" 3919 + source = "registry+https://github.com/rust-lang/crates.io-index" 3920 + checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" 3921 + dependencies = [ 3922 + "arrayvec", 3923 + "borsh", 3924 + "bytes", 3925 + "num-traits", 3926 + "rand 0.8.5", 3927 + "rkyv", 3928 + "serde", 3929 + "serde_json", 3930 + ] 3931 + 3932 + [[package]] 2849 3933 name = "rustc-demangle" 2850 3934 version = "0.1.27" 2851 3935 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2916 4000 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2917 4001 2918 4002 [[package]] 4003 + name = "sea-bae" 4004 + version = "0.2.1" 4005 + source = "registry+https://github.com/rust-lang/crates.io-index" 4006 + checksum = "f694a6ab48f14bc063cfadff30ab551d3c7e46d8f81836c51989d548f44a2a25" 4007 + dependencies = [ 4008 + "heck 0.4.1", 4009 + "proc-macro-error2", 4010 + "proc-macro2", 4011 + "quote", 4012 + "syn 2.0.117", 4013 + ] 4014 + 4015 + [[package]] 4016 + name = "sea-orm" 4017 + version = "2.0.0-rc.37" 4018 + source = "registry+https://github.com/rust-lang/crates.io-index" 4019 + checksum = "4b846dc1c7fefbea372c03765ff08307d68894bbad8c73b66176dcd53a3ee131" 4020 + dependencies = [ 4021 + "async-stream", 4022 + "async-trait", 4023 + "bigdecimal", 4024 + "chrono", 4025 + "derive_more", 4026 + "futures-util", 4027 + "itertools", 4028 + "log", 4029 + "mac_address", 4030 + "ouroboros", 4031 + "pgvector", 4032 + "rust_decimal", 4033 + "sea-orm-arrow", 4034 + "sea-orm-macros", 4035 + "sea-query", 4036 + "sea-query-sqlx", 4037 + "sea-schema", 4038 + "serde", 4039 + "serde_json", 4040 + "sqlx", 4041 + "strum 0.27.2", 4042 + "thiserror 2.0.18", 4043 + "time", 4044 + "tracing", 4045 + "url", 4046 + "uuid", 4047 + ] 4048 + 4049 + [[package]] 4050 + name = "sea-orm-arrow" 4051 + version = "2.0.0-rc.3" 4052 + source = "registry+https://github.com/rust-lang/crates.io-index" 4053 + checksum = "5c2eee8405f16c1f337fe3a83389361caea83c928d14dbd666a480407072c365" 4054 + dependencies = [ 4055 + "arrow", 4056 + "sea-query", 4057 + "thiserror 2.0.18", 4058 + ] 4059 + 4060 + [[package]] 4061 + name = "sea-orm-macros" 4062 + version = "2.0.0-rc.37" 4063 + source = "registry+https://github.com/rust-lang/crates.io-index" 4064 + checksum = "b449fe660e4d365f335222025df97ae01e670ef7ad788b3c67db9183b6cb0474" 4065 + dependencies = [ 4066 + "heck 0.5.0", 4067 + "itertools", 4068 + "pluralizer", 4069 + "proc-macro2", 4070 + "quote", 4071 + "sea-bae", 4072 + "syn 2.0.117", 4073 + "unicode-ident", 4074 + ] 4075 + 4076 + [[package]] 4077 + name = "sea-query" 4078 + version = "1.0.0-rc.31" 4079 + source = "registry+https://github.com/rust-lang/crates.io-index" 4080 + checksum = "58decdaaaf2a698170af2fa1b2e8f7b43a970e7768bf18aebaab113bada46354" 4081 + dependencies = [ 4082 + "chrono", 4083 + "inherent", 4084 + "ordered-float", 4085 + "rust_decimal", 4086 + "sea-query-derive", 4087 + "serde_json", 4088 + "time", 4089 + "uuid", 4090 + ] 4091 + 4092 + [[package]] 4093 + name = "sea-query-derive" 4094 + version = "1.0.0-rc.12" 4095 + source = "registry+https://github.com/rust-lang/crates.io-index" 4096 + checksum = "8d88ad44b6ad9788c8b9476b6b91f94c7461d1e19d39cd8ea37838b1e6ff5aa8" 4097 + dependencies = [ 4098 + "darling 0.20.11", 4099 + "heck 0.4.1", 4100 + "proc-macro2", 4101 + "quote", 4102 + "syn 2.0.117", 4103 + "thiserror 2.0.18", 4104 + ] 4105 + 4106 + [[package]] 4107 + name = "sea-query-sqlx" 4108 + version = "0.8.0-rc.14" 4109 + source = "registry+https://github.com/rust-lang/crates.io-index" 4110 + checksum = "e4377164b09a11bb692dec6966eb0e6908d63d768defef0be689b39e02cf8544" 4111 + dependencies = [ 4112 + "sea-query", 4113 + "sqlx", 4114 + ] 4115 + 4116 + [[package]] 4117 + name = "sea-schema" 4118 + version = "0.17.0-rc.17" 4119 + source = "registry+https://github.com/rust-lang/crates.io-index" 4120 + checksum = "b363dd21c20fe4d1488819cb2bc7f8d4696c62dd9f39554f97639f54d57dd0ab" 4121 + dependencies = [ 4122 + "async-trait", 4123 + "sea-query", 4124 + "sea-query-sqlx", 4125 + "sea-schema-derive", 4126 + "sqlx", 4127 + ] 4128 + 4129 + [[package]] 4130 + name = "sea-schema-derive" 4131 + version = "0.3.0" 4132 + source = "registry+https://github.com/rust-lang/crates.io-index" 4133 + checksum = "debdc8729c37fdbf88472f97fd470393089f997a909e535ff67c544d18cfccf0" 4134 + dependencies = [ 4135 + "heck 0.4.1", 4136 + "proc-macro2", 4137 + "quote", 4138 + "syn 2.0.117", 4139 + ] 4140 + 4141 + [[package]] 4142 + name = "seahash" 4143 + version = "4.1.0" 4144 + source = "registry+https://github.com/rust-lang/crates.io-index" 4145 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 4146 + 4147 + [[package]] 2919 4148 name = "semver" 2920 4149 version = "1.0.27" 2921 4150 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2978 4207 ] 2979 4208 2980 4209 [[package]] 4210 + name = "serde_urlencoded" 4211 + version = "0.7.1" 4212 + source = "registry+https://github.com/rust-lang/crates.io-index" 4213 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4214 + dependencies = [ 4215 + "form_urlencoded", 4216 + "itoa", 4217 + "ryu", 4218 + "serde", 4219 + ] 4220 + 4221 + [[package]] 2981 4222 name = "sha1" 2982 4223 version = "0.10.6" 2983 4224 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3034 4275 version = "1.1.1" 3035 4276 source = "registry+https://github.com/rust-lang/crates.io-index" 3036 4277 checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" 4278 + 4279 + [[package]] 4280 + name = "shlex" 4281 + version = "1.3.0" 4282 + source = "registry+https://github.com/rust-lang/crates.io-index" 4283 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3037 4284 3038 4285 [[package]] 3039 4286 name = "signal-hook" ··· 3077 4324 ] 3078 4325 3079 4326 [[package]] 4327 + name = "signature" 4328 + version = "2.2.0" 4329 + source = "registry+https://github.com/rust-lang/crates.io-index" 4330 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 4331 + dependencies = [ 4332 + "digest 0.10.7", 4333 + "rand_core 0.6.4", 4334 + ] 4335 + 4336 + [[package]] 3080 4337 name = "simd-adler32" 3081 4338 version = "0.3.8" 3082 4339 source = "registry+https://github.com/rust-lang/crates.io-index" 3083 4340 checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 3084 4341 3085 4342 [[package]] 4343 + name = "simdutf8" 4344 + version = "0.1.5" 4345 + source = "registry+https://github.com/rust-lang/crates.io-index" 4346 + checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 4347 + 4348 + [[package]] 3086 4349 name = "similar" 3087 4350 version = "2.7.0" 3088 4351 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3109 4372 version = "1.15.1" 3110 4373 source = "registry+https://github.com/rust-lang/crates.io-index" 3111 4374 checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 4375 + dependencies = [ 4376 + "serde", 4377 + ] 3112 4378 3113 4379 [[package]] 3114 4380 name = "smol_str" ··· 3131 4397 ] 3132 4398 3133 4399 [[package]] 4400 + name = "spin" 4401 + version = "0.9.8" 4402 + source = "registry+https://github.com/rust-lang/crates.io-index" 4403 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4404 + dependencies = [ 4405 + "lock_api", 4406 + ] 4407 + 4408 + [[package]] 4409 + name = "spki" 4410 + version = "0.7.3" 4411 + source = "registry+https://github.com/rust-lang/crates.io-index" 4412 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4413 + dependencies = [ 4414 + "base64ct", 4415 + "der", 4416 + ] 4417 + 4418 + [[package]] 4419 + name = "sqlx" 4420 + version = "0.8.6" 4421 + source = "registry+https://github.com/rust-lang/crates.io-index" 4422 + checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 4423 + dependencies = [ 4424 + "sqlx-core", 4425 + "sqlx-macros", 4426 + "sqlx-mysql", 4427 + "sqlx-postgres", 4428 + "sqlx-sqlite", 4429 + ] 4430 + 4431 + [[package]] 4432 + name = "sqlx-core" 4433 + version = "0.8.6" 4434 + source = "registry+https://github.com/rust-lang/crates.io-index" 4435 + checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 4436 + dependencies = [ 4437 + "base64", 4438 + "bytes", 4439 + "chrono", 4440 + "crc", 4441 + "crossbeam-queue", 4442 + "either", 4443 + "event-listener", 4444 + "futures-core", 4445 + "futures-intrusive", 4446 + "futures-io", 4447 + "futures-util", 4448 + "hashbrown 0.15.5", 4449 + "hashlink", 4450 + "indexmap", 4451 + "log", 4452 + "memchr", 4453 + "once_cell", 4454 + "percent-encoding", 4455 + "rust_decimal", 4456 + "serde", 4457 + "serde_json", 4458 + "sha2 0.10.9", 4459 + "smallvec", 4460 + "thiserror 2.0.18", 4461 + "time", 4462 + "tokio", 4463 + "tokio-stream", 4464 + "tracing", 4465 + "url", 4466 + "uuid", 4467 + ] 4468 + 4469 + [[package]] 4470 + name = "sqlx-macros" 4471 + version = "0.8.6" 4472 + source = "registry+https://github.com/rust-lang/crates.io-index" 4473 + checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 4474 + dependencies = [ 4475 + "proc-macro2", 4476 + "quote", 4477 + "sqlx-core", 4478 + "sqlx-macros-core", 4479 + "syn 2.0.117", 4480 + ] 4481 + 4482 + [[package]] 4483 + name = "sqlx-macros-core" 4484 + version = "0.8.6" 4485 + source = "registry+https://github.com/rust-lang/crates.io-index" 4486 + checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 4487 + dependencies = [ 4488 + "dotenvy", 4489 + "either", 4490 + "heck 0.5.0", 4491 + "hex", 4492 + "once_cell", 4493 + "proc-macro2", 4494 + "quote", 4495 + "serde", 4496 + "serde_json", 4497 + "sha2 0.10.9", 4498 + "sqlx-core", 4499 + "sqlx-mysql", 4500 + "sqlx-postgres", 4501 + "sqlx-sqlite", 4502 + "syn 2.0.117", 4503 + "tokio", 4504 + "url", 4505 + ] 4506 + 4507 + [[package]] 4508 + name = "sqlx-mysql" 4509 + version = "0.8.6" 4510 + source = "registry+https://github.com/rust-lang/crates.io-index" 4511 + checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 4512 + dependencies = [ 4513 + "atoi", 4514 + "base64", 4515 + "bitflags 2.11.0", 4516 + "byteorder", 4517 + "bytes", 4518 + "chrono", 4519 + "crc", 4520 + "digest 0.10.7", 4521 + "dotenvy", 4522 + "either", 4523 + "futures-channel", 4524 + "futures-core", 4525 + "futures-io", 4526 + "futures-util", 4527 + "generic-array", 4528 + "hex", 4529 + "hkdf", 4530 + "hmac", 4531 + "itoa", 4532 + "log", 4533 + "md-5", 4534 + "memchr", 4535 + "once_cell", 4536 + "percent-encoding", 4537 + "rand 0.8.5", 4538 + "rsa", 4539 + "rust_decimal", 4540 + "serde", 4541 + "sha1", 4542 + "sha2 0.10.9", 4543 + "smallvec", 4544 + "sqlx-core", 4545 + "stringprep", 4546 + "thiserror 2.0.18", 4547 + "time", 4548 + "tracing", 4549 + "uuid", 4550 + "whoami", 4551 + ] 4552 + 4553 + [[package]] 4554 + name = "sqlx-postgres" 4555 + version = "0.8.6" 4556 + source = "registry+https://github.com/rust-lang/crates.io-index" 4557 + checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 4558 + dependencies = [ 4559 + "atoi", 4560 + "base64", 4561 + "bitflags 2.11.0", 4562 + "byteorder", 4563 + "chrono", 4564 + "crc", 4565 + "dotenvy", 4566 + "etcetera", 4567 + "futures-channel", 4568 + "futures-core", 4569 + "futures-util", 4570 + "hex", 4571 + "hkdf", 4572 + "hmac", 4573 + "home", 4574 + "itoa", 4575 + "log", 4576 + "md-5", 4577 + "memchr", 4578 + "once_cell", 4579 + "rand 0.8.5", 4580 + "rust_decimal", 4581 + "serde", 4582 + "serde_json", 4583 + "sha2 0.10.9", 4584 + "smallvec", 4585 + "sqlx-core", 4586 + "stringprep", 4587 + "thiserror 2.0.18", 4588 + "time", 4589 + "tracing", 4590 + "uuid", 4591 + "whoami", 4592 + ] 4593 + 4594 + [[package]] 4595 + name = "sqlx-sqlite" 4596 + version = "0.8.6" 4597 + source = "registry+https://github.com/rust-lang/crates.io-index" 4598 + checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 4599 + dependencies = [ 4600 + "atoi", 4601 + "chrono", 4602 + "flume", 4603 + "futures-channel", 4604 + "futures-core", 4605 + "futures-executor", 4606 + "futures-intrusive", 4607 + "futures-util", 4608 + "libsqlite3-sys", 4609 + "log", 4610 + "percent-encoding", 4611 + "serde", 4612 + "serde_urlencoded", 4613 + "sqlx-core", 4614 + "thiserror 2.0.18", 4615 + "time", 4616 + "tracing", 4617 + "url", 4618 + "uuid", 4619 + ] 4620 + 4621 + [[package]] 3134 4622 name = "stable_deref_trait" 3135 4623 version = "1.2.1" 3136 4624 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3143 4631 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3144 4632 3145 4633 [[package]] 4634 + name = "stringprep" 4635 + version = "0.1.5" 4636 + source = "registry+https://github.com/rust-lang/crates.io-index" 4637 + checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 4638 + dependencies = [ 4639 + "unicode-bidi", 4640 + "unicode-normalization", 4641 + "unicode-properties", 4642 + ] 4643 + 4644 + [[package]] 3146 4645 name = "strsim" 3147 4646 version = "0.11.1" 3148 4647 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3172 4671 source = "registry+https://github.com/rust-lang/crates.io-index" 3173 4672 checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" 3174 4673 dependencies = [ 3175 - "heck", 4674 + "heck 0.5.0", 3176 4675 "proc-macro2", 3177 4676 "quote", 3178 4677 "syn 2.0.117", ··· 3184 4683 source = "registry+https://github.com/rust-lang/crates.io-index" 3185 4684 checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" 3186 4685 dependencies = [ 3187 - "heck", 4686 + "heck 0.5.0", 3188 4687 "proc-macro2", 3189 4688 "quote", 3190 4689 "syn 2.0.117", 3191 4690 ] 4691 + 4692 + [[package]] 4693 + name = "subtle" 4694 + version = "2.6.1" 4695 + source = "registry+https://github.com/rust-lang/crates.io-index" 4696 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3192 4697 3193 4698 [[package]] 3194 4699 name = "syn" ··· 3213 4718 ] 3214 4719 3215 4720 [[package]] 4721 + name = "synstructure" 4722 + version = "0.13.2" 4723 + source = "registry+https://github.com/rust-lang/crates.io-index" 4724 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 4725 + dependencies = [ 4726 + "proc-macro2", 4727 + "quote", 4728 + "syn 2.0.117", 4729 + ] 4730 + 4731 + [[package]] 3216 4732 name = "sysinfo" 3217 4733 version = "0.37.2" 3218 4734 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3225 4741 "objc2-io-kit", 3226 4742 "windows", 3227 4743 ] 4744 + 4745 + [[package]] 4746 + name = "tap" 4747 + version = "1.0.1" 4748 + source = "registry+https://github.com/rust-lang/crates.io-index" 4749 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3228 4750 3229 4751 [[package]] 3230 4752 name = "tempfile" ··· 3395 4917 ] 3396 4918 3397 4919 [[package]] 4920 + name = "tiny-keccak" 4921 + version = "2.0.2" 4922 + source = "registry+https://github.com/rust-lang/crates.io-index" 4923 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 4924 + dependencies = [ 4925 + "crunchy", 4926 + ] 4927 + 4928 + [[package]] 4929 + name = "tinystr" 4930 + version = "0.8.2" 4931 + source = "registry+https://github.com/rust-lang/crates.io-index" 4932 + checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 4933 + dependencies = [ 4934 + "displaydoc", 4935 + "zerovec", 4936 + ] 4937 + 4938 + [[package]] 3398 4939 name = "tinyvec" 3399 4940 version = "1.10.0" 3400 4941 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3438 4979 ] 3439 4980 3440 4981 [[package]] 4982 + name = "tokio-stream" 4983 + version = "0.1.18" 4984 + source = "registry+https://github.com/rust-lang/crates.io-index" 4985 + checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 4986 + dependencies = [ 4987 + "futures-core", 4988 + "pin-project-lite", 4989 + "tokio", 4990 + ] 4991 + 4992 + [[package]] 3441 4993 name = "tokio-util" 3442 4994 version = "0.7.18" 3443 4995 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3458 5010 dependencies = [ 3459 5011 "serde_core", 3460 5012 "serde_spanned", 3461 - "toml_datetime", 5013 + "toml_datetime 0.7.5+spec-1.1.0", 3462 5014 "toml_writer", 3463 5015 ] 3464 5016 ··· 3472 5024 ] 3473 5025 3474 5026 [[package]] 5027 + name = "toml_datetime" 5028 + version = "1.0.0+spec-1.1.0" 5029 + source = "registry+https://github.com/rust-lang/crates.io-index" 5030 + checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" 5031 + dependencies = [ 5032 + "serde_core", 5033 + ] 5034 + 5035 + [[package]] 5036 + name = "toml_edit" 5037 + version = "0.25.4+spec-1.1.0" 5038 + source = "registry+https://github.com/rust-lang/crates.io-index" 5039 + checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" 5040 + dependencies = [ 5041 + "indexmap", 5042 + "toml_datetime 1.0.0+spec-1.1.0", 5043 + "toml_parser", 5044 + "winnow 0.7.15", 5045 + ] 5046 + 5047 + [[package]] 5048 + name = "toml_parser" 5049 + version = "1.0.9+spec-1.1.0" 5050 + source = "registry+https://github.com/rust-lang/crates.io-index" 5051 + checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" 5052 + dependencies = [ 5053 + "winnow 0.7.15", 5054 + ] 5055 + 5056 + [[package]] 3475 5057 name = "toml_writer" 3476 5058 version = "1.0.6+spec-1.1.0" 3477 5059 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3483 5065 source = "registry+https://github.com/rust-lang/crates.io-index" 3484 5066 checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 3485 5067 dependencies = [ 5068 + "log", 3486 5069 "pin-project-lite", 3487 5070 "tracing-attributes", 3488 5071 "tracing-core", ··· 3567 5150 checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 3568 5151 3569 5152 [[package]] 5153 + name = "unicode-bidi" 5154 + version = "0.3.18" 5155 + source = "registry+https://github.com/rust-lang/crates.io-index" 5156 + checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 5157 + 5158 + [[package]] 3570 5159 name = "unicode-bom" 3571 5160 version = "2.0.3" 3572 5161 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3586 5175 dependencies = [ 3587 5176 "tinyvec", 3588 5177 ] 5178 + 5179 + [[package]] 5180 + name = "unicode-properties" 5181 + version = "0.1.4" 5182 + source = "registry+https://github.com/rust-lang/crates.io-index" 5183 + checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 3589 5184 3590 5185 [[package]] 3591 5186 name = "unicode-segmentation" ··· 3623 5218 checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3624 5219 3625 5220 [[package]] 5221 + name = "url" 5222 + version = "2.5.8" 5223 + source = "registry+https://github.com/rust-lang/crates.io-index" 5224 + checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 5225 + dependencies = [ 5226 + "form_urlencoded", 5227 + "idna", 5228 + "percent-encoding", 5229 + "serde", 5230 + ] 5231 + 5232 + [[package]] 5233 + name = "utf8_iter" 5234 + version = "1.0.4" 5235 + source = "registry+https://github.com/rust-lang/crates.io-index" 5236 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 5237 + 5238 + [[package]] 3626 5239 name = "utf8parse" 3627 5240 version = "0.2.2" 3628 5241 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3637 5250 "atomic", 3638 5251 "getrandom 0.4.2", 3639 5252 "js-sys", 5253 + "serde_core", 3640 5254 "wasm-bindgen", 3641 5255 ] 3642 5256 ··· 3645 5259 version = "0.1.1" 3646 5260 source = "registry+https://github.com/rust-lang/crates.io-index" 3647 5261 checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 5262 + 5263 + [[package]] 5264 + name = "vcpkg" 5265 + version = "0.2.15" 5266 + source = "registry+https://github.com/rust-lang/crates.io-index" 5267 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3648 5268 3649 5269 [[package]] 3650 5270 name = "vergen" ··· 3735 5355 dependencies = [ 3736 5356 "wit-bindgen", 3737 5357 ] 5358 + 5359 + [[package]] 5360 + name = "wasite" 5361 + version = "0.1.0" 5362 + source = "registry+https://github.com/rust-lang/crates.io-index" 5363 + checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 3738 5364 3739 5365 [[package]] 3740 5366 name = "wasm-bindgen" ··· 3888 5514 ] 3889 5515 3890 5516 [[package]] 5517 + name = "whoami" 5518 + version = "1.6.1" 5519 + source = "registry+https://github.com/rust-lang/crates.io-index" 5520 + checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 5521 + dependencies = [ 5522 + "libredox", 5523 + "wasite", 5524 + ] 5525 + 5526 + [[package]] 3891 5527 name = "winapi" 3892 5528 version = "0.3.9" 3893 5529 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4028 5664 4029 5665 [[package]] 4030 5666 name = "windows-sys" 5667 + version = "0.48.0" 5668 + source = "registry+https://github.com/rust-lang/crates.io-index" 5669 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5670 + dependencies = [ 5671 + "windows-targets 0.48.5", 5672 + ] 5673 + 5674 + [[package]] 5675 + name = "windows-sys" 4031 5676 version = "0.59.0" 4032 5677 source = "registry+https://github.com/rust-lang/crates.io-index" 4033 5678 checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" ··· 4055 5700 4056 5701 [[package]] 4057 5702 name = "windows-targets" 5703 + version = "0.48.5" 5704 + source = "registry+https://github.com/rust-lang/crates.io-index" 5705 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5706 + dependencies = [ 5707 + "windows_aarch64_gnullvm 0.48.5", 5708 + "windows_aarch64_msvc 0.48.5", 5709 + "windows_i686_gnu 0.48.5", 5710 + "windows_i686_msvc 0.48.5", 5711 + "windows_x86_64_gnu 0.48.5", 5712 + "windows_x86_64_gnullvm 0.48.5", 5713 + "windows_x86_64_msvc 0.48.5", 5714 + ] 5715 + 5716 + [[package]] 5717 + name = "windows-targets" 4058 5718 version = "0.52.6" 4059 5719 source = "registry+https://github.com/rust-lang/crates.io-index" 4060 5720 checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" ··· 4097 5757 4098 5758 [[package]] 4099 5759 name = "windows_aarch64_gnullvm" 5760 + version = "0.48.5" 5761 + source = "registry+https://github.com/rust-lang/crates.io-index" 5762 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5763 + 5764 + [[package]] 5765 + name = "windows_aarch64_gnullvm" 4100 5766 version = "0.52.6" 4101 5767 source = "registry+https://github.com/rust-lang/crates.io-index" 4102 5768 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" ··· 4109 5775 4110 5776 [[package]] 4111 5777 name = "windows_aarch64_msvc" 5778 + version = "0.48.5" 5779 + source = "registry+https://github.com/rust-lang/crates.io-index" 5780 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5781 + 5782 + [[package]] 5783 + name = "windows_aarch64_msvc" 4112 5784 version = "0.52.6" 4113 5785 source = "registry+https://github.com/rust-lang/crates.io-index" 4114 5786 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" ··· 4118 5790 version = "0.53.1" 4119 5791 source = "registry+https://github.com/rust-lang/crates.io-index" 4120 5792 checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 5793 + 5794 + [[package]] 5795 + name = "windows_i686_gnu" 5796 + version = "0.48.5" 5797 + source = "registry+https://github.com/rust-lang/crates.io-index" 5798 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4121 5799 4122 5800 [[package]] 4123 5801 name = "windows_i686_gnu" ··· 4145 5823 4146 5824 [[package]] 4147 5825 name = "windows_i686_msvc" 5826 + version = "0.48.5" 5827 + source = "registry+https://github.com/rust-lang/crates.io-index" 5828 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5829 + 5830 + [[package]] 5831 + name = "windows_i686_msvc" 4148 5832 version = "0.52.6" 4149 5833 source = "registry+https://github.com/rust-lang/crates.io-index" 4150 5834 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" ··· 4154 5838 version = "0.53.1" 4155 5839 source = "registry+https://github.com/rust-lang/crates.io-index" 4156 5840 checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 5841 + 5842 + [[package]] 5843 + name = "windows_x86_64_gnu" 5844 + version = "0.48.5" 5845 + source = "registry+https://github.com/rust-lang/crates.io-index" 5846 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4157 5847 4158 5848 [[package]] 4159 5849 name = "windows_x86_64_gnu" ··· 4169 5859 4170 5860 [[package]] 4171 5861 name = "windows_x86_64_gnullvm" 5862 + version = "0.48.5" 5863 + source = "registry+https://github.com/rust-lang/crates.io-index" 5864 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5865 + 5866 + [[package]] 5867 + name = "windows_x86_64_gnullvm" 4172 5868 version = "0.52.6" 4173 5869 source = "registry+https://github.com/rust-lang/crates.io-index" 4174 5870 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" ··· 4181 5877 4182 5878 [[package]] 4183 5879 name = "windows_x86_64_msvc" 5880 + version = "0.48.5" 5881 + source = "registry+https://github.com/rust-lang/crates.io-index" 5882 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5883 + 5884 + [[package]] 5885 + name = "windows_x86_64_msvc" 4184 5886 version = "0.52.6" 4185 5887 source = "registry+https://github.com/rust-lang/crates.io-index" 4186 5888 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" ··· 4225 5927 checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 4226 5928 dependencies = [ 4227 5929 "anyhow", 4228 - "heck", 5930 + "heck 0.5.0", 4229 5931 "wit-parser", 4230 5932 ] 4231 5933 ··· 4236 5938 checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 4237 5939 dependencies = [ 4238 5940 "anyhow", 4239 - "heck", 5941 + "heck 0.5.0", 4240 5942 "indexmap", 4241 5943 "prettyplease", 4242 5944 "syn 2.0.117", ··· 4298 6000 ] 4299 6001 4300 6002 [[package]] 6003 + name = "writeable" 6004 + version = "0.6.2" 6005 + source = "registry+https://github.com/rust-lang/crates.io-index" 6006 + checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 6007 + 6008 + [[package]] 6009 + name = "wyz" 6010 + version = "0.5.1" 6011 + source = "registry+https://github.com/rust-lang/crates.io-index" 6012 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 6013 + dependencies = [ 6014 + "tap", 6015 + ] 6016 + 6017 + [[package]] 6018 + name = "yansi" 6019 + version = "1.0.1" 6020 + source = "registry+https://github.com/rust-lang/crates.io-index" 6021 + checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 6022 + 6023 + [[package]] 6024 + name = "yoke" 6025 + version = "0.8.1" 6026 + source = "registry+https://github.com/rust-lang/crates.io-index" 6027 + checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 6028 + dependencies = [ 6029 + "stable_deref_trait", 6030 + "yoke-derive", 6031 + "zerofrom", 6032 + ] 6033 + 6034 + [[package]] 6035 + name = "yoke-derive" 6036 + version = "0.8.1" 6037 + source = "registry+https://github.com/rust-lang/crates.io-index" 6038 + checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 6039 + dependencies = [ 6040 + "proc-macro2", 6041 + "quote", 6042 + "syn 2.0.117", 6043 + "synstructure", 6044 + ] 6045 + 6046 + [[package]] 4301 6047 name = "zerocopy" 4302 6048 version = "0.8.42" 4303 6049 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4311 6057 version = "0.8.42" 4312 6058 source = "registry+https://github.com/rust-lang/crates.io-index" 4313 6059 checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" 6060 + dependencies = [ 6061 + "proc-macro2", 6062 + "quote", 6063 + "syn 2.0.117", 6064 + ] 6065 + 6066 + [[package]] 6067 + name = "zerofrom" 6068 + version = "0.1.6" 6069 + source = "registry+https://github.com/rust-lang/crates.io-index" 6070 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 6071 + dependencies = [ 6072 + "zerofrom-derive", 6073 + ] 6074 + 6075 + [[package]] 6076 + name = "zerofrom-derive" 6077 + version = "0.1.6" 6078 + source = "registry+https://github.com/rust-lang/crates.io-index" 6079 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 6080 + dependencies = [ 6081 + "proc-macro2", 6082 + "quote", 6083 + "syn 2.0.117", 6084 + "synstructure", 6085 + ] 6086 + 6087 + [[package]] 6088 + name = "zeroize" 6089 + version = "1.8.2" 6090 + source = "registry+https://github.com/rust-lang/crates.io-index" 6091 + checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 6092 + 6093 + [[package]] 6094 + name = "zerotrie" 6095 + version = "0.2.3" 6096 + source = "registry+https://github.com/rust-lang/crates.io-index" 6097 + checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 6098 + dependencies = [ 6099 + "displaydoc", 6100 + "yoke", 6101 + "zerofrom", 6102 + ] 6103 + 6104 + [[package]] 6105 + name = "zerovec" 6106 + version = "0.11.5" 6107 + source = "registry+https://github.com/rust-lang/crates.io-index" 6108 + checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 6109 + dependencies = [ 6110 + "yoke", 6111 + "zerofrom", 6112 + "zerovec-derive", 6113 + ] 6114 + 6115 + [[package]] 6116 + name = "zerovec-derive" 6117 + version = "0.11.2" 6118 + source = "registry+https://github.com/rust-lang/crates.io-index" 6119 + checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 4314 6120 dependencies = [ 4315 6121 "proc-macro2", 4316 6122 "quote",
+3 -1
Cargo.toml
··· 28 28 snafu = "0.9.0" 29 29 serde = "1.0.228" 30 30 tracing = "0.1.44" 31 + tokio = { version = "1.50.0", features = ["full"] } 31 32 32 33 [package] 33 34 name = "filaments" ··· 50 51 color-eyre = "0.6.5" 51 52 human-panic = "2.0.6" 52 53 better-panic = "0.3.0" 54 + tokio = {workspace = true} 53 55 crossterm = { version = "0.29.0", features = ["event-stream"] } 54 56 futures = "0.3.32" 55 57 ratatui = "0.30.0" 56 58 serde = { version = "1.0.228", features = ["derive"] } 57 - tokio = { version = "1.50.0", features = ["full"] } 58 59 tokio-util = "0.7.18" 59 60 signal-hook = "0.4.3" 60 61 strum = { version = "0.28.0", features = ["derive"] } ··· 63 64 tracing-error = "0.2.1" 64 65 clap = { version = "4.5.60", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] } 65 66 kdl = "6.5.0" 67 + db = {path="./crates/db"} 66 68 67 69 [build-dependencies] 68 70 anyhow = "1.0.102"
+8
crates/db/Cargo.toml
··· 11 11 rust-version.workspace = true 12 12 13 13 [dependencies] 14 + sea-orm = {version = "2.0.0-rc", features = ["sqlx-sqlite", "runtime-tokio", "macros", "with-chrono"]} 15 + tracing = {workspace = true} 16 + thiserror = "2.0.18" 17 + 18 + 19 + 20 + [dev-dependencies] 21 + tokio = {workspace = true} 14 22 15 23 [lints] 16 24 workspace = true
+11
crates/db/src/errors.rs
··· 1 + use thiserror::Error; 2 + 3 + pub type DbResult<T> = Result<T, crate::errors::DbError>; 4 + 5 + #[derive(Debug, Error)] 6 + pub enum DbError { 7 + #[error("database file not found, tried looking at {not_found_at}")] 8 + NotFound { not_found_at: String }, 9 + #[error("Seaorm Error")] 10 + SeaOrm(#[from] sea_orm::error::DbErr), 11 + }
+55 -7
crates/db/src/lib.rs
··· 1 - pub fn add(left: u64, right: u64) -> u64 { 2 - left + right 1 + //! The database abstraction for the different actions `Filaments` requires 2 + //! from a database service. 3 + 4 + use std::path::Path; 5 + 6 + use sea_orm::{Database, DatabaseConnection}; 7 + use tracing::debug; 8 + 9 + use crate::errors::{DbError, DbResult}; 10 + 11 + /// Database Errors 12 + mod errors; 13 + #[expect(unused_imports)] 14 + pub use errors::*; 15 + 16 + /// Database struct 17 + #[expect(dead_code)] 18 + #[derive(Debug)] 19 + struct Db { 20 + conn: DatabaseConnection, 21 + } 22 + 23 + #[expect(dead_code)] 24 + impl Db { 25 + async fn connect(path: &Path) -> DbResult<Self> { 26 + let connection_string = dbg! {format!( 27 + "sqlite://{}", 28 + path.canonicalize() 29 + .map_err(|_| DbError::NotFound { 30 + not_found_at: path.to_string_lossy().to_string() 31 + })? 32 + .to_string_lossy() 33 + )}; 34 + 35 + debug!("connecting to {connection_string}"); 36 + 37 + let conn = Database::connect(connection_string).await?; 38 + 39 + Ok(Self { conn }) 40 + } 3 41 } 4 42 5 43 #[cfg(test)] 6 44 mod tests { 7 - use super::*; 45 + use std::{ 46 + fs::{File, create_dir_all}, 47 + path::PathBuf, 48 + }; 49 + 50 + use crate::Db; 8 51 9 - #[test] 10 - fn it_works() { 11 - let result = add(2, 2); 12 - assert_eq!(result, 4); 52 + #[tokio::test] 53 + async fn test_connect() { 54 + let path = PathBuf::new(); 55 + let _ = Db::connect(&path).await.expect_err("not found"); 56 + 57 + let path = PathBuf::from("/tmp/filaments/test_db.sqlite"); 58 + create_dir_all(path.parent().unwrap()).unwrap(); 59 + let _ = File::create(&path).unwrap(); 60 + let _db = Db::connect(&path).await.unwrap(); 13 61 } 14 62 }
+1 -2
flake.nix
··· 73 73 cargo-watch 74 74 rust-analyzer 75 75 76 - typst 77 - typstyle 76 + bacon 78 77 ]; 79 78 80 79 # Set any environment variables for your dev shell