/ admin_tool / Cargo.lock
Cargo.lock
1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 version = 4 4 5 [[package]] 6 name = "aead" 7 version = "0.5.2" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 10 dependencies = [ 11 "crypto-common", 12 "generic-array", 13 ] 14 15 [[package]] 16 name = "aes" 17 version = "0.8.4" 18 source = "registry+https://github.com/rust-lang/crates.io-index" 19 checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 20 dependencies = [ 21 "cfg-if", 22 "cipher", 23 "cpufeatures", 24 ] 25 26 [[package]] 27 name = "aes-gcm" 28 version = "0.10.3" 29 source = "registry+https://github.com/rust-lang/crates.io-index" 30 checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 31 dependencies = [ 32 "aead", 33 "aes", 34 "cipher", 35 "ctr", 36 "ghash", 37 "subtle", 38 ] 39 40 [[package]] 41 name = "android_system_properties" 42 version = "0.1.5" 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 45 dependencies = [ 46 "libc", 47 ] 48 49 [[package]] 50 name = "autocfg" 51 version = "1.5.0" 52 source = "registry+https://github.com/rust-lang/crates.io-index" 53 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 54 55 [[package]] 56 name = "block-buffer" 57 version = "0.10.4" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 60 dependencies = [ 61 "generic-array", 62 ] 63 64 [[package]] 65 name = "bumpalo" 66 version = "3.19.1" 67 source = "registry+https://github.com/rust-lang/crates.io-index" 68 checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 69 70 [[package]] 71 name = "cc" 72 version = "1.2.51" 73 source = "registry+https://github.com/rust-lang/crates.io-index" 74 checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" 75 dependencies = [ 76 "find-msvc-tools", 77 "jobserver", 78 "libc", 79 "shlex", 80 ] 81 82 [[package]] 83 name = "cfg-if" 84 version = "1.0.4" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 87 88 [[package]] 89 name = "chrono" 90 version = "0.4.42" 91 source = "registry+https://github.com/rust-lang/crates.io-index" 92 checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 93 dependencies = [ 94 "iana-time-zone", 95 "js-sys", 96 "num-traits", 97 "wasm-bindgen", 98 "windows-link", 99 ] 100 101 [[package]] 102 name = "cipher" 103 version = "0.4.4" 104 source = "registry+https://github.com/rust-lang/crates.io-index" 105 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 106 dependencies = [ 107 "crypto-common", 108 "inout", 109 ] 110 111 [[package]] 112 name = "core-foundation-sys" 113 version = "0.8.7" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 116 117 [[package]] 118 name = "cpufeatures" 119 version = "0.2.17" 120 source = "registry+https://github.com/rust-lang/crates.io-index" 121 checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 122 dependencies = [ 123 "libc", 124 ] 125 126 [[package]] 127 name = "crypto-common" 128 version = "0.1.7" 129 source = "registry+https://github.com/rust-lang/crates.io-index" 130 checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 131 dependencies = [ 132 "generic-array", 133 "rand_core", 134 "typenum", 135 ] 136 137 [[package]] 138 name = "ctr" 139 version = "0.9.2" 140 source = "registry+https://github.com/rust-lang/crates.io-index" 141 checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 142 dependencies = [ 143 "cipher", 144 ] 145 146 [[package]] 147 name = "digest" 148 version = "0.10.7" 149 source = "registry+https://github.com/rust-lang/crates.io-index" 150 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 151 dependencies = [ 152 "block-buffer", 153 "crypto-common", 154 ] 155 156 [[package]] 157 name = "dunce" 158 version = "1.0.5" 159 source = "registry+https://github.com/rust-lang/crates.io-index" 160 checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 161 162 [[package]] 163 name = "find-msvc-tools" 164 version = "0.1.6" 165 source = "registry+https://github.com/rust-lang/crates.io-index" 166 checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" 167 168 [[package]] 169 name = "generic-array" 170 version = "0.14.7" 171 source = "registry+https://github.com/rust-lang/crates.io-index" 172 checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 173 dependencies = [ 174 "typenum", 175 "version_check", 176 ] 177 178 [[package]] 179 name = "getrandom" 180 version = "0.2.16" 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 183 dependencies = [ 184 "cfg-if", 185 "libc", 186 "wasi", 187 ] 188 189 [[package]] 190 name = "getrandom" 191 version = "0.3.4" 192 source = "registry+https://github.com/rust-lang/crates.io-index" 193 checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 194 dependencies = [ 195 "cfg-if", 196 "libc", 197 "r-efi", 198 "wasip2", 199 ] 200 201 [[package]] 202 name = "ghash" 203 version = "0.5.1" 204 source = "registry+https://github.com/rust-lang/crates.io-index" 205 checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 206 dependencies = [ 207 "opaque-debug", 208 "polyval", 209 ] 210 211 [[package]] 212 name = "ghostline_admin" 213 version = "0.1.0" 214 dependencies = [ 215 "aes-gcm", 216 "chrono", 217 "hex", 218 "pqcrypto-kyber", 219 "pqcrypto-traits", 220 "rand_core", 221 "sha3", 222 "zeroize", 223 ] 224 225 [[package]] 226 name = "glob" 227 version = "0.3.3" 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 230 231 [[package]] 232 name = "hex" 233 version = "0.4.3" 234 source = "registry+https://github.com/rust-lang/crates.io-index" 235 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 236 237 [[package]] 238 name = "iana-time-zone" 239 version = "0.1.64" 240 source = "registry+https://github.com/rust-lang/crates.io-index" 241 checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 242 dependencies = [ 243 "android_system_properties", 244 "core-foundation-sys", 245 "iana-time-zone-haiku", 246 "js-sys", 247 "log", 248 "wasm-bindgen", 249 "windows-core", 250 ] 251 252 [[package]] 253 name = "iana-time-zone-haiku" 254 version = "0.1.2" 255 source = "registry+https://github.com/rust-lang/crates.io-index" 256 checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 257 dependencies = [ 258 "cc", 259 ] 260 261 [[package]] 262 name = "inout" 263 version = "0.1.4" 264 source = "registry+https://github.com/rust-lang/crates.io-index" 265 checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 266 dependencies = [ 267 "generic-array", 268 ] 269 270 [[package]] 271 name = "jobserver" 272 version = "0.1.34" 273 source = "registry+https://github.com/rust-lang/crates.io-index" 274 checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 275 dependencies = [ 276 "getrandom 0.3.4", 277 "libc", 278 ] 279 280 [[package]] 281 name = "js-sys" 282 version = "0.3.83" 283 source = "registry+https://github.com/rust-lang/crates.io-index" 284 checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 285 dependencies = [ 286 "once_cell", 287 "wasm-bindgen", 288 ] 289 290 [[package]] 291 name = "keccak" 292 version = "0.1.5" 293 source = "registry+https://github.com/rust-lang/crates.io-index" 294 checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 295 dependencies = [ 296 "cpufeatures", 297 ] 298 299 [[package]] 300 name = "libc" 301 version = "0.2.180" 302 source = "registry+https://github.com/rust-lang/crates.io-index" 303 checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" 304 305 [[package]] 306 name = "log" 307 version = "0.4.29" 308 source = "registry+https://github.com/rust-lang/crates.io-index" 309 checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 310 311 [[package]] 312 name = "num-traits" 313 version = "0.2.19" 314 source = "registry+https://github.com/rust-lang/crates.io-index" 315 checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 316 dependencies = [ 317 "autocfg", 318 ] 319 320 [[package]] 321 name = "once_cell" 322 version = "1.21.3" 323 source = "registry+https://github.com/rust-lang/crates.io-index" 324 checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 325 326 [[package]] 327 name = "opaque-debug" 328 version = "0.3.1" 329 source = "registry+https://github.com/rust-lang/crates.io-index" 330 checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 331 332 [[package]] 333 name = "polyval" 334 version = "0.6.2" 335 source = "registry+https://github.com/rust-lang/crates.io-index" 336 checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 337 dependencies = [ 338 "cfg-if", 339 "cpufeatures", 340 "opaque-debug", 341 "universal-hash", 342 ] 343 344 [[package]] 345 name = "pqcrypto-internals" 346 version = "0.2.11" 347 source = "registry+https://github.com/rust-lang/crates.io-index" 348 checksum = "b4a326caf27cbf2ac291ca7fd56300497ba9e76a8cc6a7d95b7a18b57f22b61d" 349 dependencies = [ 350 "cc", 351 "dunce", 352 "getrandom 0.3.4", 353 "libc", 354 ] 355 356 [[package]] 357 name = "pqcrypto-kyber" 358 version = "0.7.9" 359 source = "registry+https://github.com/rust-lang/crates.io-index" 360 checksum = "c32fe9d5c9913b1aed1ba92b3449eb2d7cf7ca29741b11455dfa34c711b95776" 361 dependencies = [ 362 "cc", 363 "glob", 364 "libc", 365 "pqcrypto-internals", 366 "pqcrypto-traits", 367 ] 368 369 [[package]] 370 name = "pqcrypto-traits" 371 version = "0.3.5" 372 source = "registry+https://github.com/rust-lang/crates.io-index" 373 checksum = "94e851c7654eed9e68d7d27164c454961a616cf8c203d500607ef22c737b51bb" 374 375 [[package]] 376 name = "proc-macro2" 377 version = "1.0.105" 378 source = "registry+https://github.com/rust-lang/crates.io-index" 379 checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" 380 dependencies = [ 381 "unicode-ident", 382 ] 383 384 [[package]] 385 name = "quote" 386 version = "1.0.43" 387 source = "registry+https://github.com/rust-lang/crates.io-index" 388 checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" 389 dependencies = [ 390 "proc-macro2", 391 ] 392 393 [[package]] 394 name = "r-efi" 395 version = "5.3.0" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 398 399 [[package]] 400 name = "rand_core" 401 version = "0.6.4" 402 source = "registry+https://github.com/rust-lang/crates.io-index" 403 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 404 dependencies = [ 405 "getrandom 0.2.16", 406 ] 407 408 [[package]] 409 name = "rustversion" 410 version = "1.0.22" 411 source = "registry+https://github.com/rust-lang/crates.io-index" 412 checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 413 414 [[package]] 415 name = "sha3" 416 version = "0.10.8" 417 source = "registry+https://github.com/rust-lang/crates.io-index" 418 checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 419 dependencies = [ 420 "digest", 421 "keccak", 422 ] 423 424 [[package]] 425 name = "shlex" 426 version = "1.3.0" 427 source = "registry+https://github.com/rust-lang/crates.io-index" 428 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 429 430 [[package]] 431 name = "subtle" 432 version = "2.6.1" 433 source = "registry+https://github.com/rust-lang/crates.io-index" 434 checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 435 436 [[package]] 437 name = "syn" 438 version = "2.0.114" 439 source = "registry+https://github.com/rust-lang/crates.io-index" 440 checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" 441 dependencies = [ 442 "proc-macro2", 443 "quote", 444 "unicode-ident", 445 ] 446 447 [[package]] 448 name = "typenum" 449 version = "1.19.0" 450 source = "registry+https://github.com/rust-lang/crates.io-index" 451 checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 452 453 [[package]] 454 name = "unicode-ident" 455 version = "1.0.22" 456 source = "registry+https://github.com/rust-lang/crates.io-index" 457 checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 458 459 [[package]] 460 name = "universal-hash" 461 version = "0.5.1" 462 source = "registry+https://github.com/rust-lang/crates.io-index" 463 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 464 dependencies = [ 465 "crypto-common", 466 "subtle", 467 ] 468 469 [[package]] 470 name = "version_check" 471 version = "0.9.5" 472 source = "registry+https://github.com/rust-lang/crates.io-index" 473 checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 474 475 [[package]] 476 name = "wasi" 477 version = "0.11.1+wasi-snapshot-preview1" 478 source = "registry+https://github.com/rust-lang/crates.io-index" 479 checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 480 481 [[package]] 482 name = "wasip2" 483 version = "1.0.1+wasi-0.2.4" 484 source = "registry+https://github.com/rust-lang/crates.io-index" 485 checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 486 dependencies = [ 487 "wit-bindgen", 488 ] 489 490 [[package]] 491 name = "wasm-bindgen" 492 version = "0.2.106" 493 source = "registry+https://github.com/rust-lang/crates.io-index" 494 checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 495 dependencies = [ 496 "cfg-if", 497 "once_cell", 498 "rustversion", 499 "wasm-bindgen-macro", 500 "wasm-bindgen-shared", 501 ] 502 503 [[package]] 504 name = "wasm-bindgen-macro" 505 version = "0.2.106" 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 508 dependencies = [ 509 "quote", 510 "wasm-bindgen-macro-support", 511 ] 512 513 [[package]] 514 name = "wasm-bindgen-macro-support" 515 version = "0.2.106" 516 source = "registry+https://github.com/rust-lang/crates.io-index" 517 checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 518 dependencies = [ 519 "bumpalo", 520 "proc-macro2", 521 "quote", 522 "syn", 523 "wasm-bindgen-shared", 524 ] 525 526 [[package]] 527 name = "wasm-bindgen-shared" 528 version = "0.2.106" 529 source = "registry+https://github.com/rust-lang/crates.io-index" 530 checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 531 dependencies = [ 532 "unicode-ident", 533 ] 534 535 [[package]] 536 name = "windows-core" 537 version = "0.62.2" 538 source = "registry+https://github.com/rust-lang/crates.io-index" 539 checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 540 dependencies = [ 541 "windows-implement", 542 "windows-interface", 543 "windows-link", 544 "windows-result", 545 "windows-strings", 546 ] 547 548 [[package]] 549 name = "windows-implement" 550 version = "0.60.2" 551 source = "registry+https://github.com/rust-lang/crates.io-index" 552 checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 553 dependencies = [ 554 "proc-macro2", 555 "quote", 556 "syn", 557 ] 558 559 [[package]] 560 name = "windows-interface" 561 version = "0.59.3" 562 source = "registry+https://github.com/rust-lang/crates.io-index" 563 checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 564 dependencies = [ 565 "proc-macro2", 566 "quote", 567 "syn", 568 ] 569 570 [[package]] 571 name = "windows-link" 572 version = "0.2.1" 573 source = "registry+https://github.com/rust-lang/crates.io-index" 574 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 575 576 [[package]] 577 name = "windows-result" 578 version = "0.4.1" 579 source = "registry+https://github.com/rust-lang/crates.io-index" 580 checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 581 dependencies = [ 582 "windows-link", 583 ] 584 585 [[package]] 586 name = "windows-strings" 587 version = "0.5.1" 588 source = "registry+https://github.com/rust-lang/crates.io-index" 589 checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 590 dependencies = [ 591 "windows-link", 592 ] 593 594 [[package]] 595 name = "wit-bindgen" 596 version = "0.46.0" 597 source = "registry+https://github.com/rust-lang/crates.io-index" 598 checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 599 600 [[package]] 601 name = "zeroize" 602 version = "1.8.2" 603 source = "registry+https://github.com/rust-lang/crates.io-index" 604 checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"