Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Install MSRV toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.60"
toolchain: "1.71"

- run: cargo check --locked --lib --all-features

Expand Down
106 changes: 53 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "rustls-native-certs"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
rust-version = "1.60"
rust-version = "1.71"
license = "Apache-2.0 OR ISC OR MIT"
readme = "README.md"
description = "rustls-native-certs allows rustls to use the platform native certificate store"
Expand Down Expand Up @@ -30,4 +30,4 @@ schannel = "0.1"
openssl-probe = "0.1.2"

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2" # 3 requires 1.70 as its MSRV
security-framework = "3"
31 changes: 1 addition & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,7 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md).
[![rustls](https://github.com/rustls/rustls-native-certs/actions/workflows/rust.yml/badge.svg)](https://github.com/rustls/rustls-native-certs/actions/workflows/rust.yml)
[![Documentation](https://docs.rs/rustls-native-certs/badge.svg)](https://docs.rs/rustls-native-certs)

## Release history:

* 0.7.0 (2023-12-03)
- Switched to using the [pki-types](https://github.com/rustls/pki-types) crate.
- `load_native_certs` now returns `Vec<pki_types::CertificateDer<'static>>` instead of `Vec<Certificate>`
- the `Certificate` newtype has been removed.
- Update dependencies.
* 0.6.3 (2023-06-14)
- Bump MSRV to 1.60.
- Windows: avoid storing certificates which are currently invalid.
- Implement `AsRef<[u8]>` for `Certificate`.
* 0.6.2 (2022-04-14):
- Update dependencies.
* 0.6.1 (2021-10-25):
- Allow overrides using `SSL_CERT_FILE` on all platforms.
* 0.6.0 (2021-10-24):
- Remove rustls dependency entirely.
* 0.5.0 (2020-11-22):
- Update dependencies.
- Make rustls dependency optional, for use with reqwest's certificate types. Thanks to @est31.
* 0.4.0 (2020-07-05):
- Update dependencies.
* 0.3.0 (2020-02-24):
- Support wider range of UNIX platforms.
- Update dependencies.
* 0.2.0 (2020-01-26):
- Return valid certificates even in the presence of invalid ones. This allows
callers to opt-in to "best effort" behaviour.
* 0.1.0 (2019-11-04):
- Initial release.
Release notes can be found [on GitHub](https://github.com/rustls/rustls-native-certs/releases).

# API

Expand Down