An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

chore: update Cargo.lock for identity-wallet deps

authored by malpercio.dev and committed by

Tangled 11cb3116 84107189

+90
+90
Cargo.lock
··· 527 527 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 528 528 529 529 [[package]] 530 + name = "cfg_aliases" 531 + version = "0.2.1" 532 + source = "registry+https://github.com/rust-lang/crates.io-index" 533 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 534 + 535 + [[package]] 530 536 name = "chrono" 531 537 version = "0.4.44" 532 538 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1690 1696 checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1691 1697 dependencies = [ 1692 1698 "cfg-if", 1699 + "js-sys", 1693 1700 "libc", 1694 1701 "wasi 0.11.1+wasi-snapshot-preview1", 1702 + "wasm-bindgen", 1695 1703 ] 1696 1704 1697 1705 [[package]] ··· 1701 1709 checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1702 1710 dependencies = [ 1703 1711 "cfg-if", 1712 + "js-sys", 1704 1713 "libc", 1705 1714 "r-efi 5.3.0", 1706 1715 "wasip2", 1716 + "wasm-bindgen", 1707 1717 ] 1708 1718 1709 1719 [[package]] ··· 2151 2161 "tokio", 2152 2162 "tokio-rustls", 2153 2163 "tower-service", 2164 + "webpki-roots", 2154 2165 ] 2155 2166 2156 2167 [[package]] ··· 2338 2349 name = "identity-wallet" 2339 2350 version = "0.1.0" 2340 2351 dependencies = [ 2352 + "reqwest 0.12.28", 2353 + "security-framework", 2341 2354 "serde", 2342 2355 "serde_json", 2343 2356 "tauri", 2344 2357 "tauri-build", 2358 + "thiserror 2.0.18", 2345 2359 ] 2346 2360 2347 2361 [[package]] ··· 2665 2679 version = "0.4.29" 2666 2680 source = "registry+https://github.com/rust-lang/crates.io-index" 2667 2681 checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 2682 + 2683 + [[package]] 2684 + name = "lru-slab" 2685 + version = "0.1.2" 2686 + source = "registry+https://github.com/rust-lang/crates.io-index" 2687 + checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2668 2688 2669 2689 [[package]] 2670 2690 name = "mac" ··· 3797 3817 ] 3798 3818 3799 3819 [[package]] 3820 + name = "quinn" 3821 + version = "0.11.9" 3822 + source = "registry+https://github.com/rust-lang/crates.io-index" 3823 + checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 3824 + dependencies = [ 3825 + "bytes", 3826 + "cfg_aliases", 3827 + "pin-project-lite", 3828 + "quinn-proto", 3829 + "quinn-udp", 3830 + "rustc-hash", 3831 + "rustls", 3832 + "socket2 0.5.10", 3833 + "thiserror 2.0.18", 3834 + "tokio", 3835 + "tracing", 3836 + "web-time", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "quinn-proto" 3841 + version = "0.11.14" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 3844 + dependencies = [ 3845 + "bytes", 3846 + "getrandom 0.3.4", 3847 + "lru-slab", 3848 + "rand 0.9.2", 3849 + "ring", 3850 + "rustc-hash", 3851 + "rustls", 3852 + "rustls-pki-types", 3853 + "slab", 3854 + "thiserror 2.0.18", 3855 + "tinyvec", 3856 + "tracing", 3857 + "web-time", 3858 + ] 3859 + 3860 + [[package]] 3861 + name = "quinn-udp" 3862 + version = "0.5.14" 3863 + source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 3865 + dependencies = [ 3866 + "cfg_aliases", 3867 + "libc", 3868 + "once_cell", 3869 + "socket2 0.5.10", 3870 + "tracing", 3871 + "windows-sys 0.52.0", 3872 + ] 3873 + 3874 + [[package]] 3800 3875 name = "quote" 3801 3876 version = "1.0.45" 3802 3877 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4075 4150 "native-tls", 4076 4151 "percent-encoding", 4077 4152 "pin-project-lite", 4153 + "quinn", 4154 + "rustls", 4078 4155 "rustls-pki-types", 4079 4156 "serde", 4080 4157 "serde_json", ··· 4082 4159 "sync_wrapper", 4083 4160 "tokio", 4084 4161 "tokio-native-tls", 4162 + "tokio-rustls", 4085 4163 "tower 0.5.3", 4086 4164 "tower-http 0.6.8", 4087 4165 "tower-service", ··· 4089 4167 "wasm-bindgen", 4090 4168 "wasm-bindgen-futures", 4091 4169 "web-sys", 4170 + "webpki-roots", 4092 4171 ] 4093 4172 4094 4173 [[package]] ··· 4210 4289 checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" 4211 4290 dependencies = [ 4212 4291 "once_cell", 4292 + "ring", 4213 4293 "rustls-pki-types", 4214 4294 "rustls-webpki", 4215 4295 "subtle", ··· 4222 4302 source = "registry+https://github.com/rust-lang/crates.io-index" 4223 4303 checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 4224 4304 dependencies = [ 4305 + "web-time", 4225 4306 "zeroize", 4226 4307 ] 4227 4308 ··· 6389 6470 "pkg-config", 6390 6471 "soup3-sys", 6391 6472 "system-deps", 6473 + ] 6474 + 6475 + [[package]] 6476 + name = "webpki-roots" 6477 + version = "1.0.6" 6478 + source = "registry+https://github.com/rust-lang/crates.io-index" 6479 + checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" 6480 + dependencies = [ 6481 + "rustls-pki-types", 6392 6482 ] 6393 6483 6394 6484 [[package]]