RE: https://mastodon.social/@Signez/115575839585586269
This code in CloudFlare should have followed the same standards you would for things like kernel code, and that means no unwrap() allowed unless you can prove the bad condition never happens (like unsafe code requires a comment proving safety).
Memory safety is half the battle. The other half is panic safety, but you need to opt into that one (there are several ways depending on how strict you want to be).