Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

Update quinn-proto to fix vulnerability

+76 -11
+76 -11
Cargo.lock
··· 456 456 dependencies = [ 457 457 "cfg-if", 458 458 "cipher", 459 - "cpufeatures", 459 + "cpufeatures 0.2.12", 460 + ] 461 + 462 + [[package]] 463 + name = "chacha20" 464 + version = "0.10.1" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" 467 + dependencies = [ 468 + "cfg-if", 469 + "cpufeatures 0.3.0", 470 + "rand_core 0.10.1", 460 471 ] 461 472 462 473 [[package]] ··· 466 477 checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 467 478 dependencies = [ 468 479 "aead", 469 - "chacha20", 480 + "chacha20 0.9.1", 470 481 "cipher", 471 482 "poly1305", 472 483 "zeroize", ··· 615 626 ] 616 627 617 628 [[package]] 629 + name = "cpufeatures" 630 + version = "0.3.0" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 633 + dependencies = [ 634 + "libc", 635 + ] 636 + 637 + [[package]] 618 638 name = "crc32fast" 619 639 version = "1.5.0" 620 640 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 685 705 checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 686 706 dependencies = [ 687 707 "cfg-if", 688 - "cpufeatures", 708 + "cpufeatures 0.2.12", 689 709 "curve25519-dalek-derive", 690 710 "fiat-crypto", 691 711 "rustc_version 0.4.1", ··· 1160 1180 checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1161 1181 dependencies = [ 1162 1182 "cfg-if", 1163 - "js-sys", 1164 1183 "libc", 1165 - "r-efi", 1184 + "r-efi 5.2.0", 1166 1185 "wasi 0.14.2+wasi-0.2.4", 1186 + ] 1187 + 1188 + [[package]] 1189 + name = "getrandom" 1190 + version = "0.4.3" 1191 + source = "registry+https://github.com/rust-lang/crates.io-index" 1192 + checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" 1193 + dependencies = [ 1194 + "cfg-if", 1195 + "js-sys", 1196 + "libc", 1197 + "r-efi 6.0.0", 1198 + "rand_core 0.10.1", 1167 1199 "wasm-bindgen", 1168 1200 ] 1169 1201 ··· 2339 2371 source = "registry+https://github.com/rust-lang/crates.io-index" 2340 2372 checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 2341 2373 dependencies = [ 2342 - "cpufeatures", 2374 + "cpufeatures 0.2.12", 2343 2375 "opaque-debug", 2344 2376 "universal-hash", 2345 2377 ] ··· 2575 2607 2576 2608 [[package]] 2577 2609 name = "quinn-proto" 2578 - version = "0.11.14" 2610 + version = "0.11.16" 2579 2611 source = "registry+https://github.com/rust-lang/crates.io-index" 2580 - checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 2612 + checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" 2581 2613 dependencies = [ 2582 2614 "aws-lc-rs", 2583 2615 "bytes", 2584 - "getrandom 0.3.3", 2616 + "getrandom 0.4.3", 2585 2617 "lru-slab", 2586 - "rand 0.9.4", 2618 + "rand 0.10.2", 2619 + "rand_pcg", 2587 2620 "ring", 2588 2621 "rustc-hash 2.0.0", 2589 2622 "rustls", ··· 2624 2657 checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 2625 2658 2626 2659 [[package]] 2660 + name = "r-efi" 2661 + version = "6.0.0" 2662 + source = "registry+https://github.com/rust-lang/crates.io-index" 2663 + checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2664 + 2665 + [[package]] 2627 2666 name = "radium" 2628 2667 version = "0.7.0" 2629 2668 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2661 2700 ] 2662 2701 2663 2702 [[package]] 2703 + name = "rand" 2704 + version = "0.10.2" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" 2707 + dependencies = [ 2708 + "chacha20 0.10.1", 2709 + "getrandom 0.4.3", 2710 + "rand_core 0.10.1", 2711 + ] 2712 + 2713 + [[package]] 2664 2714 name = "rand_chacha" 2665 2715 version = "0.3.1" 2666 2716 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2696 2746 checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2697 2747 dependencies = [ 2698 2748 "getrandom 0.3.3", 2749 + ] 2750 + 2751 + [[package]] 2752 + name = "rand_core" 2753 + version = "0.10.1" 2754 + source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" 2756 + 2757 + [[package]] 2758 + name = "rand_pcg" 2759 + version = "0.10.2" 2760 + source = "registry+https://github.com/rust-lang/crates.io-index" 2761 + checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" 2762 + dependencies = [ 2763 + "rand_core 0.10.1", 2699 2764 ] 2700 2765 2701 2766 [[package]] ··· 3184 3249 checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3185 3250 dependencies = [ 3186 3251 "cfg-if", 3187 - "cpufeatures", 3252 + "cpufeatures 0.2.12", 3188 3253 "digest", 3189 3254 ] 3190 3255