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 Cargo.lock

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

2 changes: 1 addition & 1 deletion cmpv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"
[dependencies]
crmf = "=0.3.0-pre.0"
der = { version = "0.8", features = ["alloc", "derive", "flagset", "oid"] }
spki = "0.8.0-rc.4"
spki = "0.8"
x509-cert = { version = "0.3.0-rc.4", default-features = false }

# optional features
Expand Down
2 changes: 1 addition & 1 deletion cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"
[dependencies]
const-oid = { version = "0.10", features = ["db"] }
der = { version = "0.8", features = ["ber", "derive", "oid"] }
spki = "0.8.0-rc.4"
spki = "0.8"
x509-cert = { version = "0.3.0-rc.4", default-features = false }

# optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion crmf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"
[dependencies]
cms = "=0.3.0-pre.2"
der = { version = "0.8", features = ["alloc", "derive"] }
spki = "0.8.0-rc.3"
spki = "0.8"
x509-cert = { version = "0.3.0-rc.4", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion gss-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"

[dependencies]
der = { version = "0.8", features = ["oid", "alloc"] }
spki = "0.8.0-rc.4"
spki = "0.8"
x509-cert = { version = "0.3.0-rc.4", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pkcs1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"

[dependencies]
der = { version = "0.8", features = ["oid"] }
spki = "0.8.0-rc.4"
spki = "0.8"

[dev-dependencies]
const-oid = { version = "0.10", features = ["db"] }
Expand Down
2 changes: 1 addition & 1 deletion pkcs12/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"

[dependencies]
der = { version = "0.8", features = ["alloc", "derive", "oid"], default-features = false }
spki = { version = "0.8.0-rc.4", default-features = false }
spki = { version = "0.8", default-features = false }
x509-cert = { version = "0.3.0-rc.4", default-features = false }
const-oid = { version = "0.10", features = ["db"], default-features = false }
cms = { version = "=0.3.0-pre.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pkcs5/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.85"

[dependencies]
der = { version = "0.8", features = ["oid"] }
spki = "0.8.0-rc.4"
spki = "0.8"

# optional dependencies
cbc = { version = "0.2.0-rc.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pkcs8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"

[dependencies]
der = { version = "0.8.0-rc.12", features = ["oid"] }
spki = "0.8.0-rc.4"
spki = "0.8"

# optional dependencies
rand_core = { version = "0.10", optional = true, default-features = false }
Expand Down
26 changes: 25 additions & 1 deletion spki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,38 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.8.0 (2026-04-03)
### Added
- Implement `Hash` for `AlgorithmIdentifier` ([#1414])
- `der::Writer` adapter for `Digest` ([#1769])
- Implement `core::error::Error` for `Error` ([#2274])

### Changed
- Borrow the public key in `spki::from_key` ([#1290])
- Upgrade to the 2024 edition; MSRV 1.85 ([#1670])
- Bump `der` to v0.8 ([#2234])
- Bump `digest` to v0.11 ([#2237])
- Bump `sha2` dependency to v0.11 ([#2273])

### Fixed
- `OidUnknown` reporting ([#1378])

[#1290]: https://github.com/RustCrypto/formats/pull/1290
[#1378]: https://github.com/RustCrypto/formats/pull/1378
[#1414]: https://github.com/RustCrypto/formats/pull/1414
[#1670]: https://github.com/RustCrypto/formats/pull/1670
[#2234]: https://github.com/RustCrypto/formats/pull/2234
[#2237]: https://github.com/RustCrypto/formats/pull/2237
[#2273]: https://github.com/RustCrypto/formats/pull/2273
[#2274]: https://github.com/RustCrypto/formats/pull/2274

## 0.7.3 (2023-11-28)
### Added
- public key to `SubjectPublicKeyInfoOwned` helper ([#1269])

[#1269]: https://github.com/RustCrypto/formats/pull/1269

## 0.7.2 (2023-05-04)

### Added
- `AlgorithmIdentifierWithOid` trait ([#986])
- `SignatureBitStringEncoding` trait ([#1047])
Expand Down
2 changes: 1 addition & 1 deletion spki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spki"
version = "0.8.0-rc.4"
version = "0.8.0"
description = """
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
associated AlgorithmIdentifiers (i.e. OIDs)
Expand Down
2 changes: 1 addition & 1 deletion spki/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021-2025 The RustCrypto Project Developers
Copyright (c) 2021-2026 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion x509-cert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"
[dependencies]
const-oid = { version = "0.10", features = ["db"] }
der = { version = "0.8", features = ["alloc", "derive", "flagset", "oid"] }
spki = { version = "0.8.0-rc.4", features = ["alloc"] }
spki = { version = "0.8", features = ["alloc"] }

# optional dependencies
arbitrary = { version = "1.4", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion x509-ocsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"
[dependencies]
const-oid = { version = "0.10", default-features = false, features = ["db"] }
der = { version = "0.8", features = ["alloc", "derive", "oid"] }
spki = { version = "0.8.0-rc.4", features = ["alloc"] }
spki = { version = "0.8", features = ["alloc"] }
x509-cert = { version = "0.3.0-rc.4", default-features = false }

# Optional
Expand Down
Loading