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 ml-kem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ zeroize = ["module-lattice/zeroize", "dep:zeroize"]

[dependencies]
array = { version = "0.4.8", package = "hybrid-array", features = ["ctutils", "extra-sizes"] }
module-lattice = { version = "0.2.0-rc.0", features = ["ctutils"] }
module-lattice = { version = "0.2", features = ["ctutils"] }
kem = "0.3.0-rc.6"
rand_core = "0.10"
sha3 = { version = "0.11.0-rc.9", default-features = false }
Expand Down
9 changes: 9 additions & 0 deletions module-lattice/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,14 @@ 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.2.0 (2026-03-26)
### Changed
- Migrate from `subtle` to `ctutils` ([#277])

### Removed
- `subtle` support ([#277])

[#277]: https://github.com/RustCrypto/KEMs/pull/277

## 0.1.0 (2026-02-05)
Initial release
2 changes: 1 addition & 1 deletion module-lattice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Functionality shared between the `ml-kem` and `ml-dsa` crates, including linear
degree-256 polynomials over a prime-order field, vectors of such polynomials, and NTT polynomials
and vectors, as well as packing of polynomials into coefficients with a specified number of bits
"""
version = "0.2.0-rc.0"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand Down
Loading