Skip to content

Commit 44f16c7

Browse files
committed
ctutils v0.1.3
1 parent cbc4ecd commit 44f16c7

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ctutils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.1.3 (2025-12-26)
8+
### Fixed
9+
- Rustdoc syntax for variable-time-related warning text ([#1278])
10+
11+
[#1278]: https://github.com/RustCrypto/utils/pull/1278
12+
713
## 0.1.2 (2025-12-26)
814
### Added
915
- Additional methods for `CtOption` ([#1274]):

ctutils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target
55
applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides
66
architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate.
77
"""
8-
version = "0.1.2"
8+
version = "0.1.3"
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"

ctutils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ architecture-specific predication intrinsics. Heavily inspired by the [`subtle`]
1313
## About
1414

1515
This crate contains constant-time equivalents of the `bool` and `Option` types (`Choice` and
16-
`CtOption`), along with traits that can be used in combination with them.
16+
`CtOption` respectively), along with traits that can be used in combination with them.
1717

1818
The `CtOption` type notably provides eagerly evaluated combinator methods (as opposed to the lazily
1919
evaluated combinators on `Option`) which make it possible to write constant-time code using

0 commit comments

Comments
 (0)