Privacy-preserving location sharing with end-to-end encryption coord.is
1
fork

Configure Feed

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

at staging 1680 lines 42 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "aead" 7version = "0.5.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 10dependencies = [ 11 "crypto-common", 12 "generic-array", 13] 14 15[[package]] 16name = "aes" 17version = "0.8.4" 18source = "registry+https://github.com/rust-lang/crates.io-index" 19checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 20dependencies = [ 21 "cfg-if", 22 "cipher", 23 "cpufeatures", 24] 25 26[[package]] 27name = "aes-gcm" 28version = "0.10.3" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 31dependencies = [ 32 "aead", 33 "aes", 34 "cipher", 35 "ctr", 36 "ghash", 37 "subtle", 38] 39 40[[package]] 41name = "anstyle" 42version = "1.0.13" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 45 46[[package]] 47name = "anyhow" 48version = "1.0.100" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 51 52[[package]] 53name = "askama" 54version = "0.13.1" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7" 57dependencies = [ 58 "askama_derive", 59 "itoa", 60 "percent-encoding", 61 "serde", 62 "serde_json", 63] 64 65[[package]] 66name = "askama_derive" 67version = "0.13.1" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac" 70dependencies = [ 71 "askama_parser", 72 "basic-toml", 73 "memchr", 74 "proc-macro2", 75 "quote", 76 "rustc-hash", 77 "serde", 78 "serde_derive", 79 "syn", 80] 81 82[[package]] 83name = "askama_parser" 84version = "0.13.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f" 87dependencies = [ 88 "memchr", 89 "serde", 90 "serde_derive", 91 "winnow", 92] 93 94[[package]] 95name = "atomic-waker" 96version = "1.1.2" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 99 100[[package]] 101name = "autocfg" 102version = "1.5.0" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 105 106[[package]] 107name = "axum" 108version = "0.8.8" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 111dependencies = [ 112 "axum-core", 113 "bytes", 114 "form_urlencoded", 115 "futures-util", 116 "http", 117 "http-body", 118 "http-body-util", 119 "hyper", 120 "hyper-util", 121 "itoa", 122 "matchit", 123 "memchr", 124 "mime", 125 "percent-encoding", 126 "pin-project-lite", 127 "serde_core", 128 "serde_json", 129 "serde_path_to_error", 130 "serde_urlencoded", 131 "sync_wrapper", 132 "tokio", 133 "tower", 134 "tower-layer", 135 "tower-service", 136 "tracing", 137] 138 139[[package]] 140name = "axum-core" 141version = "0.5.6" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 144dependencies = [ 145 "bytes", 146 "futures-core", 147 "http", 148 "http-body", 149 "http-body-util", 150 "mime", 151 "pin-project-lite", 152 "sync_wrapper", 153 "tower-layer", 154 "tower-service", 155 "tracing", 156] 157 158[[package]] 159name = "base64" 160version = "0.22.1" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 163 164[[package]] 165name = "base64ct" 166version = "1.8.3" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 169 170[[package]] 171name = "basic-toml" 172version = "0.1.10" 173source = "registry+https://github.com/rust-lang/crates.io-index" 174checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a" 175dependencies = [ 176 "serde", 177] 178 179[[package]] 180name = "bitflags" 181version = "2.10.0" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 184 185[[package]] 186name = "block-buffer" 187version = "0.10.4" 188source = "registry+https://github.com/rust-lang/crates.io-index" 189checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 190dependencies = [ 191 "generic-array", 192] 193 194[[package]] 195name = "bytes" 196version = "1.11.0" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 199 200[[package]] 201name = "camino" 202version = "1.2.2" 203source = "registry+https://github.com/rust-lang/crates.io-index" 204checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" 205dependencies = [ 206 "serde_core", 207] 208 209[[package]] 210name = "cargo-platform" 211version = "0.1.9" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 214dependencies = [ 215 "serde", 216] 217 218[[package]] 219name = "cargo_metadata" 220version = "0.19.2" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 223dependencies = [ 224 "camino", 225 "cargo-platform", 226 "semver", 227 "serde", 228 "serde_json", 229 "thiserror 2.0.17", 230] 231 232[[package]] 233name = "cfg-if" 234version = "1.0.4" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 237 238[[package]] 239name = "cipher" 240version = "0.4.4" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 243dependencies = [ 244 "crypto-common", 245 "inout", 246] 247 248[[package]] 249name = "clap" 250version = "4.5.54" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" 253dependencies = [ 254 "clap_builder", 255 "clap_derive", 256] 257 258[[package]] 259name = "clap_builder" 260version = "4.5.54" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" 263dependencies = [ 264 "anstyle", 265 "clap_lex", 266 "strsim", 267] 268 269[[package]] 270name = "clap_derive" 271version = "4.5.49" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" 274dependencies = [ 275 "heck", 276 "proc-macro2", 277 "quote", 278 "syn", 279] 280 281[[package]] 282name = "clap_lex" 283version = "0.7.7" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" 286 287[[package]] 288name = "const-oid" 289version = "0.9.6" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 292 293[[package]] 294name = "coords-server" 295version = "2026.1.6" 296dependencies = [ 297 "axum", 298 "base64", 299 "dashmap", 300 "ed25519-dalek", 301 "http-body-util", 302 "rand", 303 "serde", 304 "serde_json", 305 "tokio", 306 "tower", 307] 308 309[[package]] 310name = "cpufeatures" 311version = "0.2.17" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 314dependencies = [ 315 "libc", 316] 317 318[[package]] 319name = "crossbeam-utils" 320version = "0.8.21" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 323 324[[package]] 325name = "crypto-common" 326version = "0.1.7" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 329dependencies = [ 330 "generic-array", 331 "rand_core", 332 "typenum", 333] 334 335[[package]] 336name = "ctr" 337version = "0.9.2" 338source = "registry+https://github.com/rust-lang/crates.io-index" 339checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 340dependencies = [ 341 "cipher", 342] 343 344[[package]] 345name = "curve25519-dalek" 346version = "4.1.3" 347source = "registry+https://github.com/rust-lang/crates.io-index" 348checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 349dependencies = [ 350 "cfg-if", 351 "cpufeatures", 352 "curve25519-dalek-derive", 353 "digest", 354 "fiat-crypto", 355 "rustc_version", 356 "subtle", 357 "zeroize", 358] 359 360[[package]] 361name = "curve25519-dalek-derive" 362version = "0.1.1" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 365dependencies = [ 366 "proc-macro2", 367 "quote", 368 "syn", 369] 370 371[[package]] 372name = "dashmap" 373version = "6.1.0" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 376dependencies = [ 377 "cfg-if", 378 "crossbeam-utils", 379 "hashbrown 0.14.5", 380 "lock_api", 381 "once_cell", 382 "parking_lot_core", 383] 384 385[[package]] 386name = "der" 387version = "0.7.10" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 390dependencies = [ 391 "const-oid", 392 "zeroize", 393] 394 395[[package]] 396name = "digest" 397version = "0.10.7" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 400dependencies = [ 401 "block-buffer", 402 "crypto-common", 403] 404 405[[package]] 406name = "ed25519" 407version = "2.2.3" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 410dependencies = [ 411 "pkcs8", 412 "signature", 413] 414 415[[package]] 416name = "ed25519-dalek" 417version = "2.2.0" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" 420dependencies = [ 421 "curve25519-dalek", 422 "ed25519", 423 "rand_core", 424 "serde", 425 "sha2", 426 "subtle", 427 "zeroize", 428] 429 430[[package]] 431name = "equivalent" 432version = "1.0.2" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 435 436[[package]] 437name = "errno" 438version = "0.3.14" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 441dependencies = [ 442 "libc", 443 "windows-sys 0.61.2", 444] 445 446[[package]] 447name = "fastrand" 448version = "2.3.0" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 451 452[[package]] 453name = "fiat-crypto" 454version = "0.2.9" 455source = "registry+https://github.com/rust-lang/crates.io-index" 456checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 457 458[[package]] 459name = "form_urlencoded" 460version = "1.2.2" 461source = "registry+https://github.com/rust-lang/crates.io-index" 462checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 463dependencies = [ 464 "percent-encoding", 465] 466 467[[package]] 468name = "fs-err" 469version = "2.11.0" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 472dependencies = [ 473 "autocfg", 474] 475 476[[package]] 477name = "futures-channel" 478version = "0.3.31" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 481dependencies = [ 482 "futures-core", 483] 484 485[[package]] 486name = "futures-core" 487version = "0.3.31" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 490 491[[package]] 492name = "futures-task" 493version = "0.3.31" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 496 497[[package]] 498name = "futures-util" 499version = "0.3.31" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 502dependencies = [ 503 "futures-core", 504 "futures-task", 505 "pin-project-lite", 506 "pin-utils", 507] 508 509[[package]] 510name = "generic-array" 511version = "0.14.7" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 514dependencies = [ 515 "typenum", 516 "version_check", 517] 518 519[[package]] 520name = "getrandom" 521version = "0.2.17" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 524dependencies = [ 525 "cfg-if", 526 "libc", 527 "wasi", 528] 529 530[[package]] 531name = "getrandom" 532version = "0.3.4" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 535dependencies = [ 536 "cfg-if", 537 "libc", 538 "r-efi", 539 "wasip2", 540] 541 542[[package]] 543name = "ghash" 544version = "0.5.1" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 547dependencies = [ 548 "opaque-debug", 549 "polyval", 550] 551 552[[package]] 553name = "glob" 554version = "0.3.3" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 557 558[[package]] 559name = "goblin" 560version = "0.8.2" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47" 563dependencies = [ 564 "log", 565 "plain", 566 "scroll", 567] 568 569[[package]] 570name = "hashbrown" 571version = "0.14.5" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 574 575[[package]] 576name = "hashbrown" 577version = "0.16.1" 578source = "registry+https://github.com/rust-lang/crates.io-index" 579checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 580 581[[package]] 582name = "heck" 583version = "0.5.0" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 586 587[[package]] 588name = "http" 589version = "1.4.0" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 592dependencies = [ 593 "bytes", 594 "itoa", 595] 596 597[[package]] 598name = "http-body" 599version = "1.0.1" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 602dependencies = [ 603 "bytes", 604 "http", 605] 606 607[[package]] 608name = "http-body-util" 609version = "0.1.3" 610source = "registry+https://github.com/rust-lang/crates.io-index" 611checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 612dependencies = [ 613 "bytes", 614 "futures-core", 615 "http", 616 "http-body", 617 "pin-project-lite", 618] 619 620[[package]] 621name = "httparse" 622version = "1.10.1" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 625 626[[package]] 627name = "httpdate" 628version = "1.0.3" 629source = "registry+https://github.com/rust-lang/crates.io-index" 630checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 631 632[[package]] 633name = "hyper" 634version = "1.8.1" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 637dependencies = [ 638 "atomic-waker", 639 "bytes", 640 "futures-channel", 641 "futures-core", 642 "http", 643 "http-body", 644 "httparse", 645 "httpdate", 646 "itoa", 647 "pin-project-lite", 648 "pin-utils", 649 "smallvec", 650 "tokio", 651] 652 653[[package]] 654name = "hyper-util" 655version = "0.1.19" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 658dependencies = [ 659 "bytes", 660 "futures-core", 661 "http", 662 "http-body", 663 "hyper", 664 "pin-project-lite", 665 "tokio", 666 "tower-service", 667] 668 669[[package]] 670name = "indexmap" 671version = "2.13.0" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 674dependencies = [ 675 "equivalent", 676 "hashbrown 0.16.1", 677 "serde", 678 "serde_core", 679] 680 681[[package]] 682name = "inout" 683version = "0.1.4" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 686dependencies = [ 687 "generic-array", 688] 689 690[[package]] 691name = "itoa" 692version = "1.0.17" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 695 696[[package]] 697name = "libc" 698version = "0.2.180" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" 701 702[[package]] 703name = "linux-raw-sys" 704version = "0.11.0" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 707 708[[package]] 709name = "lock_api" 710version = "0.4.14" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 713dependencies = [ 714 "scopeguard", 715] 716 717[[package]] 718name = "log" 719version = "0.4.29" 720source = "registry+https://github.com/rust-lang/crates.io-index" 721checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 722 723[[package]] 724name = "matchit" 725version = "0.8.4" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 728 729[[package]] 730name = "memchr" 731version = "2.7.6" 732source = "registry+https://github.com/rust-lang/crates.io-index" 733checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 734 735[[package]] 736name = "mime" 737version = "0.3.17" 738source = "registry+https://github.com/rust-lang/crates.io-index" 739checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 740 741[[package]] 742name = "minimal-lexical" 743version = "0.2.1" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 746 747[[package]] 748name = "mio" 749version = "1.1.1" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 752dependencies = [ 753 "libc", 754 "wasi", 755 "windows-sys 0.61.2", 756] 757 758[[package]] 759name = "nom" 760version = "7.1.3" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 763dependencies = [ 764 "memchr", 765 "minimal-lexical", 766] 767 768[[package]] 769name = "once_cell" 770version = "1.21.3" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 773 774[[package]] 775name = "opaque-debug" 776version = "0.3.1" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 779 780[[package]] 781name = "parking_lot_core" 782version = "0.9.12" 783source = "registry+https://github.com/rust-lang/crates.io-index" 784checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 785dependencies = [ 786 "cfg-if", 787 "libc", 788 "redox_syscall", 789 "smallvec", 790 "windows-link", 791] 792 793[[package]] 794name = "percent-encoding" 795version = "2.3.2" 796source = "registry+https://github.com/rust-lang/crates.io-index" 797checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 798 799[[package]] 800name = "pin-project-lite" 801version = "0.2.16" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 804 805[[package]] 806name = "pin-utils" 807version = "0.1.0" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 810 811[[package]] 812name = "pkcs8" 813version = "0.10.2" 814source = "registry+https://github.com/rust-lang/crates.io-index" 815checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 816dependencies = [ 817 "der", 818 "spki", 819] 820 821[[package]] 822name = "plain" 823version = "0.2.3" 824source = "registry+https://github.com/rust-lang/crates.io-index" 825checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 826 827[[package]] 828name = "polyval" 829version = "0.6.2" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 832dependencies = [ 833 "cfg-if", 834 "cpufeatures", 835 "opaque-debug", 836 "universal-hash", 837] 838 839[[package]] 840name = "ppv-lite86" 841version = "0.2.21" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 844dependencies = [ 845 "zerocopy", 846] 847 848[[package]] 849name = "proc-macro2" 850version = "1.0.105" 851source = "registry+https://github.com/rust-lang/crates.io-index" 852checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" 853dependencies = [ 854 "unicode-ident", 855] 856 857[[package]] 858name = "quote" 859version = "1.0.43" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" 862dependencies = [ 863 "proc-macro2", 864] 865 866[[package]] 867name = "r-efi" 868version = "5.3.0" 869source = "registry+https://github.com/rust-lang/crates.io-index" 870checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 871 872[[package]] 873name = "rand" 874version = "0.8.5" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 877dependencies = [ 878 "libc", 879 "rand_chacha", 880 "rand_core", 881] 882 883[[package]] 884name = "rand_chacha" 885version = "0.3.1" 886source = "registry+https://github.com/rust-lang/crates.io-index" 887checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 888dependencies = [ 889 "ppv-lite86", 890 "rand_core", 891] 892 893[[package]] 894name = "rand_core" 895version = "0.6.4" 896source = "registry+https://github.com/rust-lang/crates.io-index" 897checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 898dependencies = [ 899 "getrandom 0.2.17", 900] 901 902[[package]] 903name = "redox_syscall" 904version = "0.5.18" 905source = "registry+https://github.com/rust-lang/crates.io-index" 906checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 907dependencies = [ 908 "bitflags", 909] 910 911[[package]] 912name = "rustc-hash" 913version = "2.1.1" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 916 917[[package]] 918name = "rustc_version" 919version = "0.4.1" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 922dependencies = [ 923 "semver", 924] 925 926[[package]] 927name = "rustix" 928version = "1.1.3" 929source = "registry+https://github.com/rust-lang/crates.io-index" 930checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 931dependencies = [ 932 "bitflags", 933 "errno", 934 "libc", 935 "linux-raw-sys", 936 "windows-sys 0.61.2", 937] 938 939[[package]] 940name = "ryu" 941version = "1.0.22" 942source = "registry+https://github.com/rust-lang/crates.io-index" 943checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" 944 945[[package]] 946name = "scopeguard" 947version = "1.2.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 950 951[[package]] 952name = "scroll" 953version = "0.12.0" 954source = "registry+https://github.com/rust-lang/crates.io-index" 955checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6" 956dependencies = [ 957 "scroll_derive", 958] 959 960[[package]] 961name = "scroll_derive" 962version = "0.12.1" 963source = "registry+https://github.com/rust-lang/crates.io-index" 964checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d" 965dependencies = [ 966 "proc-macro2", 967 "quote", 968 "syn", 969] 970 971[[package]] 972name = "semver" 973version = "1.0.27" 974source = "registry+https://github.com/rust-lang/crates.io-index" 975checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 976dependencies = [ 977 "serde", 978 "serde_core", 979] 980 981[[package]] 982name = "serde" 983version = "1.0.228" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 986dependencies = [ 987 "serde_core", 988 "serde_derive", 989] 990 991[[package]] 992name = "serde_core" 993version = "1.0.228" 994source = "registry+https://github.com/rust-lang/crates.io-index" 995checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 996dependencies = [ 997 "serde_derive", 998] 999 1000[[package]] 1001name = "serde_derive" 1002version = "1.0.228" 1003source = "registry+https://github.com/rust-lang/crates.io-index" 1004checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1005dependencies = [ 1006 "proc-macro2", 1007 "quote", 1008 "syn", 1009] 1010 1011[[package]] 1012name = "serde_json" 1013version = "1.0.149" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 1016dependencies = [ 1017 "itoa", 1018 "memchr", 1019 "serde", 1020 "serde_core", 1021 "zmij", 1022] 1023 1024[[package]] 1025name = "serde_path_to_error" 1026version = "0.1.20" 1027source = "registry+https://github.com/rust-lang/crates.io-index" 1028checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 1029dependencies = [ 1030 "itoa", 1031 "serde", 1032 "serde_core", 1033] 1034 1035[[package]] 1036name = "serde_spanned" 1037version = "1.0.4" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" 1040dependencies = [ 1041 "serde_core", 1042] 1043 1044[[package]] 1045name = "serde_urlencoded" 1046version = "0.7.1" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1049dependencies = [ 1050 "form_urlencoded", 1051 "itoa", 1052 "ryu", 1053 "serde", 1054] 1055 1056[[package]] 1057name = "sha2" 1058version = "0.10.9" 1059source = "registry+https://github.com/rust-lang/crates.io-index" 1060checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 1061dependencies = [ 1062 "cfg-if", 1063 "cpufeatures", 1064 "digest", 1065] 1066 1067[[package]] 1068name = "signature" 1069version = "2.2.0" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 1072dependencies = [ 1073 "rand_core", 1074] 1075 1076[[package]] 1077name = "siphasher" 1078version = "0.3.11" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 1081 1082[[package]] 1083name = "smallvec" 1084version = "1.15.1" 1085source = "registry+https://github.com/rust-lang/crates.io-index" 1086checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1087 1088[[package]] 1089name = "smawk" 1090version = "0.3.2" 1091source = "registry+https://github.com/rust-lang/crates.io-index" 1092checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 1093 1094[[package]] 1095name = "socket2" 1096version = "0.6.1" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1099dependencies = [ 1100 "libc", 1101 "windows-sys 0.60.2", 1102] 1103 1104[[package]] 1105name = "spki" 1106version = "0.7.3" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 1109dependencies = [ 1110 "base64ct", 1111 "der", 1112] 1113 1114[[package]] 1115name = "static_assertions" 1116version = "1.1.0" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1119 1120[[package]] 1121name = "strsim" 1122version = "0.11.1" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1125 1126[[package]] 1127name = "subtle" 1128version = "2.6.1" 1129source = "registry+https://github.com/rust-lang/crates.io-index" 1130checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1131 1132[[package]] 1133name = "syn" 1134version = "2.0.114" 1135source = "registry+https://github.com/rust-lang/crates.io-index" 1136checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" 1137dependencies = [ 1138 "proc-macro2", 1139 "quote", 1140 "unicode-ident", 1141] 1142 1143[[package]] 1144name = "sync_wrapper" 1145version = "1.0.2" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1148 1149[[package]] 1150name = "tempfile" 1151version = "3.24.0" 1152source = "registry+https://github.com/rust-lang/crates.io-index" 1153checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" 1154dependencies = [ 1155 "fastrand", 1156 "getrandom 0.3.4", 1157 "once_cell", 1158 "rustix", 1159 "windows-sys 0.61.2", 1160] 1161 1162[[package]] 1163name = "textwrap" 1164version = "0.16.2" 1165source = "registry+https://github.com/rust-lang/crates.io-index" 1166checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057" 1167dependencies = [ 1168 "smawk", 1169] 1170 1171[[package]] 1172name = "thiserror" 1173version = "1.0.69" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 1176dependencies = [ 1177 "thiserror-impl 1.0.69", 1178] 1179 1180[[package]] 1181name = "thiserror" 1182version = "2.0.17" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 1185dependencies = [ 1186 "thiserror-impl 2.0.17", 1187] 1188 1189[[package]] 1190name = "thiserror-impl" 1191version = "1.0.69" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 1194dependencies = [ 1195 "proc-macro2", 1196 "quote", 1197 "syn", 1198] 1199 1200[[package]] 1201name = "thiserror-impl" 1202version = "2.0.17" 1203source = "registry+https://github.com/rust-lang/crates.io-index" 1204checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 1205dependencies = [ 1206 "proc-macro2", 1207 "quote", 1208 "syn", 1209] 1210 1211[[package]] 1212name = "tokio" 1213version = "1.49.0" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 1216dependencies = [ 1217 "libc", 1218 "mio", 1219 "pin-project-lite", 1220 "socket2", 1221 "tokio-macros", 1222 "windows-sys 0.61.2", 1223] 1224 1225[[package]] 1226name = "tokio-macros" 1227version = "2.6.0" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 1230dependencies = [ 1231 "proc-macro2", 1232 "quote", 1233 "syn", 1234] 1235 1236[[package]] 1237name = "toml" 1238version = "0.9.11+spec-1.1.0" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46" 1241dependencies = [ 1242 "indexmap", 1243 "serde_core", 1244 "serde_spanned", 1245 "toml_datetime", 1246 "toml_parser", 1247 "toml_writer", 1248 "winnow", 1249] 1250 1251[[package]] 1252name = "toml_datetime" 1253version = "0.7.5+spec-1.1.0" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 1256dependencies = [ 1257 "serde_core", 1258] 1259 1260[[package]] 1261name = "toml_parser" 1262version = "1.0.6+spec-1.1.0" 1263source = "registry+https://github.com/rust-lang/crates.io-index" 1264checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" 1265dependencies = [ 1266 "winnow", 1267] 1268 1269[[package]] 1270name = "toml_writer" 1271version = "1.0.6+spec-1.1.0" 1272source = "registry+https://github.com/rust-lang/crates.io-index" 1273checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" 1274 1275[[package]] 1276name = "tower" 1277version = "0.5.3" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 1280dependencies = [ 1281 "futures-core", 1282 "futures-util", 1283 "pin-project-lite", 1284 "sync_wrapper", 1285 "tokio", 1286 "tower-layer", 1287 "tower-service", 1288 "tracing", 1289] 1290 1291[[package]] 1292name = "tower-layer" 1293version = "0.3.3" 1294source = "registry+https://github.com/rust-lang/crates.io-index" 1295checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1296 1297[[package]] 1298name = "tower-service" 1299version = "0.3.3" 1300source = "registry+https://github.com/rust-lang/crates.io-index" 1301checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1302 1303[[package]] 1304name = "tracing" 1305version = "0.1.44" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 1308dependencies = [ 1309 "log", 1310 "pin-project-lite", 1311 "tracing-core", 1312] 1313 1314[[package]] 1315name = "tracing-core" 1316version = "0.1.36" 1317source = "registry+https://github.com/rust-lang/crates.io-index" 1318checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 1319dependencies = [ 1320 "once_cell", 1321] 1322 1323[[package]] 1324name = "transponder-core" 1325version = "2026.1.14" 1326dependencies = [ 1327 "aes-gcm", 1328 "base64", 1329 "curve25519-dalek", 1330 "ed25519-dalek", 1331 "rand", 1332 "serde", 1333 "serde_json", 1334 "sha2", 1335 "thiserror 1.0.69", 1336 "uniffi", 1337 "urlencoding", 1338 "x25519-dalek", 1339] 1340 1341[[package]] 1342name = "typenum" 1343version = "1.19.0" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 1346 1347[[package]] 1348name = "unicode-ident" 1349version = "1.0.22" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 1352 1353[[package]] 1354name = "uniffi" 1355version = "0.30.0" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "c866f627c3f04c3df068b68bb2d725492caaa539dd313e2a9d26bb85b1a32f4e" 1358dependencies = [ 1359 "anyhow", 1360 "camino", 1361 "cargo_metadata", 1362 "clap", 1363 "uniffi_bindgen", 1364 "uniffi_core", 1365 "uniffi_macros", 1366 "uniffi_pipeline", 1367] 1368 1369[[package]] 1370name = "uniffi_bindgen" 1371version = "0.30.0" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "7c8ca600167641ebe7c8ba9254af40492dda3397c528cc3b2f511bd23e8541a5" 1374dependencies = [ 1375 "anyhow", 1376 "askama", 1377 "camino", 1378 "cargo_metadata", 1379 "fs-err", 1380 "glob", 1381 "goblin", 1382 "heck", 1383 "indexmap", 1384 "once_cell", 1385 "serde", 1386 "tempfile", 1387 "textwrap", 1388 "toml", 1389 "uniffi_internal_macros", 1390 "uniffi_meta", 1391 "uniffi_pipeline", 1392 "uniffi_udl", 1393] 1394 1395[[package]] 1396name = "uniffi_core" 1397version = "0.30.0" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "7e7a5a038ebffe8f4cf91416b154ef3c2468b18e828b7009e01b1b99938089f9" 1400dependencies = [ 1401 "anyhow", 1402 "bytes", 1403 "once_cell", 1404 "static_assertions", 1405] 1406 1407[[package]] 1408name = "uniffi_internal_macros" 1409version = "0.30.0" 1410source = "registry+https://github.com/rust-lang/crates.io-index" 1411checksum = "e3c2a6f93e7b73726e2015696ece25ca0ac5a5f1cf8d6a7ab5214dd0a01d2edf" 1412dependencies = [ 1413 "anyhow", 1414 "indexmap", 1415 "proc-macro2", 1416 "quote", 1417 "syn", 1418] 1419 1420[[package]] 1421name = "uniffi_macros" 1422version = "0.30.0" 1423source = "registry+https://github.com/rust-lang/crates.io-index" 1424checksum = "64c6309fc36c7992afc03bc0c5b059c656bccbef3f2a4bc362980017f8936141" 1425dependencies = [ 1426 "camino", 1427 "fs-err", 1428 "once_cell", 1429 "proc-macro2", 1430 "quote", 1431 "serde", 1432 "syn", 1433 "toml", 1434 "uniffi_meta", 1435] 1436 1437[[package]] 1438name = "uniffi_meta" 1439version = "0.30.0" 1440source = "registry+https://github.com/rust-lang/crates.io-index" 1441checksum = "0a138823392dba19b0aa494872689f97d0ee157de5852e2bec157ce6de9cdc22" 1442dependencies = [ 1443 "anyhow", 1444 "siphasher", 1445 "uniffi_internal_macros", 1446 "uniffi_pipeline", 1447] 1448 1449[[package]] 1450name = "uniffi_pipeline" 1451version = "0.30.0" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "8c27c4b515d25f8e53cc918e238c39a79c3144a40eaf2e51c4a7958973422c29" 1454dependencies = [ 1455 "anyhow", 1456 "heck", 1457 "indexmap", 1458 "tempfile", 1459 "uniffi_internal_macros", 1460] 1461 1462[[package]] 1463name = "uniffi_udl" 1464version = "0.30.0" 1465source = "registry+https://github.com/rust-lang/crates.io-index" 1466checksum = "d0adacdd848aeed7af4f5af7d2f621d5e82531325d405e29463482becfdeafca" 1467dependencies = [ 1468 "anyhow", 1469 "textwrap", 1470 "uniffi_meta", 1471 "weedle2", 1472] 1473 1474[[package]] 1475name = "universal-hash" 1476version = "0.5.1" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 1479dependencies = [ 1480 "crypto-common", 1481 "subtle", 1482] 1483 1484[[package]] 1485name = "urlencoding" 1486version = "2.1.3" 1487source = "registry+https://github.com/rust-lang/crates.io-index" 1488checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 1489 1490[[package]] 1491name = "version_check" 1492version = "0.9.5" 1493source = "registry+https://github.com/rust-lang/crates.io-index" 1494checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1495 1496[[package]] 1497name = "wasi" 1498version = "0.11.1+wasi-snapshot-preview1" 1499source = "registry+https://github.com/rust-lang/crates.io-index" 1500checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1501 1502[[package]] 1503name = "wasip2" 1504version = "1.0.1+wasi-0.2.4" 1505source = "registry+https://github.com/rust-lang/crates.io-index" 1506checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1507dependencies = [ 1508 "wit-bindgen", 1509] 1510 1511[[package]] 1512name = "weedle2" 1513version = "5.0.0" 1514source = "registry+https://github.com/rust-lang/crates.io-index" 1515checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e" 1516dependencies = [ 1517 "nom", 1518] 1519 1520[[package]] 1521name = "windows-link" 1522version = "0.2.1" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1525 1526[[package]] 1527name = "windows-sys" 1528version = "0.60.2" 1529source = "registry+https://github.com/rust-lang/crates.io-index" 1530checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1531dependencies = [ 1532 "windows-targets", 1533] 1534 1535[[package]] 1536name = "windows-sys" 1537version = "0.61.2" 1538source = "registry+https://github.com/rust-lang/crates.io-index" 1539checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1540dependencies = [ 1541 "windows-link", 1542] 1543 1544[[package]] 1545name = "windows-targets" 1546version = "0.53.5" 1547source = "registry+https://github.com/rust-lang/crates.io-index" 1548checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 1549dependencies = [ 1550 "windows-link", 1551 "windows_aarch64_gnullvm", 1552 "windows_aarch64_msvc", 1553 "windows_i686_gnu", 1554 "windows_i686_gnullvm", 1555 "windows_i686_msvc", 1556 "windows_x86_64_gnu", 1557 "windows_x86_64_gnullvm", 1558 "windows_x86_64_msvc", 1559] 1560 1561[[package]] 1562name = "windows_aarch64_gnullvm" 1563version = "0.53.1" 1564source = "registry+https://github.com/rust-lang/crates.io-index" 1565checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 1566 1567[[package]] 1568name = "windows_aarch64_msvc" 1569version = "0.53.1" 1570source = "registry+https://github.com/rust-lang/crates.io-index" 1571checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 1572 1573[[package]] 1574name = "windows_i686_gnu" 1575version = "0.53.1" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 1578 1579[[package]] 1580name = "windows_i686_gnullvm" 1581version = "0.53.1" 1582source = "registry+https://github.com/rust-lang/crates.io-index" 1583checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 1584 1585[[package]] 1586name = "windows_i686_msvc" 1587version = "0.53.1" 1588source = "registry+https://github.com/rust-lang/crates.io-index" 1589checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 1590 1591[[package]] 1592name = "windows_x86_64_gnu" 1593version = "0.53.1" 1594source = "registry+https://github.com/rust-lang/crates.io-index" 1595checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 1596 1597[[package]] 1598name = "windows_x86_64_gnullvm" 1599version = "0.53.1" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 1602 1603[[package]] 1604name = "windows_x86_64_msvc" 1605version = "0.53.1" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 1608 1609[[package]] 1610name = "winnow" 1611version = "0.7.14" 1612source = "registry+https://github.com/rust-lang/crates.io-index" 1613checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 1614dependencies = [ 1615 "memchr", 1616] 1617 1618[[package]] 1619name = "wit-bindgen" 1620version = "0.46.0" 1621source = "registry+https://github.com/rust-lang/crates.io-index" 1622checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 1623 1624[[package]] 1625name = "x25519-dalek" 1626version = "2.0.1" 1627source = "registry+https://github.com/rust-lang/crates.io-index" 1628checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 1629dependencies = [ 1630 "curve25519-dalek", 1631 "rand_core", 1632 "serde", 1633 "zeroize", 1634] 1635 1636[[package]] 1637name = "zerocopy" 1638version = "0.8.33" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" 1641dependencies = [ 1642 "zerocopy-derive", 1643] 1644 1645[[package]] 1646name = "zerocopy-derive" 1647version = "0.8.33" 1648source = "registry+https://github.com/rust-lang/crates.io-index" 1649checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" 1650dependencies = [ 1651 "proc-macro2", 1652 "quote", 1653 "syn", 1654] 1655 1656[[package]] 1657name = "zeroize" 1658version = "1.8.2" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 1661dependencies = [ 1662 "zeroize_derive", 1663] 1664 1665[[package]] 1666name = "zeroize_derive" 1667version = "1.4.3" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" 1670dependencies = [ 1671 "proc-macro2", 1672 "quote", 1673 "syn", 1674] 1675 1676[[package]] 1677name = "zmij" 1678version = "1.0.14" 1679source = "registry+https://github.com/rust-lang/crates.io-index" 1680checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"