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
4 changes: 2 additions & 2 deletions .github/workflows/block-buffer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.56.0 # MSRV
- stable
steps:
- uses: actions/checkout@v3
Expand Down
64 changes: 41 additions & 23 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions block-buffer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ 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).

## UNRELEASED
### Added
- `ReadBuffer` type ([#823])
- `serialize` and `deserialize` methods ([#823])

### Changed
- Supported block sizes are now bounded by the `crypto_common::BlockSizes` trait,
which is implemented for types from `U1` to `U255` ([#823])
- Size of `EagerBuffer` is equal to buffer size, while previously it was equal
to buffer size plus one byte ([#823])
- Edition changed to 2021 and MSRV bumped to 1.56 ([#823])

### Removed
- `EagerBuffer::set_data` method. Use the `ReadBuffer` type instead. ([#823])

[#823]: https://github.com/RustCrypto/utils/pull/823

## 0.10.3 (2022-09-04)
### Added
- `try_new` method ([#799])
Expand Down
8 changes: 6 additions & 2 deletions block-buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
[package]
name = "block-buffer"
version = "0.10.3"
version = "0.11.0-pre"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Buffer type for block processing of data"
documentation = "https://docs.rs/block-buffer"
repository = "https://github.com/RustCrypto/utils"
keywords = ["block", "buffer"]
categories = ["cryptography", "no-std"]
edition = "2018"
edition = "2021"
readme = "README.md"

[dependencies]
crypto-common = "0.2.0-pre"
generic-array = "0.14"

[dev-dependencies]
hex-literal = "0.3.3"
Loading