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
14 changes: 12 additions & 2 deletions 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 sec1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version = "1.85"
base16ct = { version = "0.2", optional = true, default-features = false }
der = { version = "0.8.0-rc.8", optional = true, features = ["oid"] }
hybrid-array = { version = "0.3", optional = true, default-features = false }
serdect = { version = "0.3", optional = true, default-features = false, features = ["alloc"] }
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
subtle = { version = "2", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }

Expand Down
6 changes: 6 additions & 0 deletions serdect/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.4.0 (2025-08-20)
### Changed
- Upgrade to the 2024 edition; MSRV 1.85 ([#1670])

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

## 0.3.0 (2025-01-06)

NOTE: this release includes major breaking changes to the wire format, namely
Expand Down
2 changes: 1 addition & 1 deletion serdect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
Constant-time serde serializer/deserializer helpers for data that potentially
contains secrets (e.g. cryptographic keys)
"""
version = "0.3.0"
version = "0.4.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/formats/tree/master/serdect"
Expand Down