Carter Thaxton
Carter Thaxton
These errors resulted in "invalid file format" errors on otherwise good files. The faad2 decoder simply skips over these packets and moves on, and it's unrelated to any of the...
The `union` feature of `smallvec` is available as of stable Rust 1.49, and no longer requires `nightly`. The [smallvec](https://docs.rs/smallvec/latest/smallvec/#union) documentation correctly lists this requirement.
A very straightforward implementation of #43. "It just works!" I'm sure it's possible to provide an option to control this behavior, but it doesn't seem necessary.
Fixes #28758 When X509_V_FLAG_CRL_CHECK is not set, the man pages document that X509_V_FLAG_CRL_CHECK_ALL is ignored. Prior to 3.6.0, this was indeed the case. In 3.6.0, the behavior changed, and setting...
Occasionally, I've found it useful to know the capacity of a hashmap. This adds a very simple interface, exposing this property. Ideally, there would also be a public API for...