Skip to content

0.2.0

Choose a tag to compare

@djc djc released this 29 Dec 14:20
· 12 commits to main since this release
0.2.0

0.2.0 is the first release after openssl-probe maintenance has been handed over to the rustls team. Thanks to @alexcrichton for creating and maintaining it for the past 9 years. We're happy to address any feedback you have for this crate.

Breaking changes

  • ProbeResult::cert_dir is now a Vec<PathBuf> rather than an Option<PathBuf>, allowing the library to yield multiple suggestions for directories which may contain certificate files.
  • Rather than using a single list of locations for certificate files and certificate directories, openssl-probe now uses much shorter per-platform lists. This should make the API faster and make it less likely to accidentally pick up locations that are unidiomatic for the platform.
  • Removed deprecated API

What's Changed

  • Clean up deprecated API, module structure by @djc in #40
  • Per-platform candidates, multiple directories by @djc in #41