From cc36b329f716174abea6616525675e15948c99d8 Mon Sep 17 00:00:00 2001 From: Cathal Mullan Date: Tue, 16 Jun 2026 16:28:56 +0100 Subject: [PATCH 1/2] camellia: drop unused byteorder dependency --- Cargo.lock | 1 - camellia/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d0ad34c..f0bb8639 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,6 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" name = "camellia" version = "0.2.0" dependencies = [ - "byteorder", "cipher", ] diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 5c73fab9..269d36e7 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -13,7 +13,6 @@ keywords = ["crypto", "camellia", "block-cipher"] categories = ["cryptography", "no-std"] [dependencies] -byteorder = { version = "1.1", default-features = false } cipher = "0.5" [dev-dependencies] From 0d7b98c027f4efecbbc7ccc0aa150c726c5cce92 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 16 Jun 2026 20:48:18 +0300 Subject: [PATCH 2/2] add changelog entry --- camellia/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/camellia/CHANGELOG.md b/camellia/CHANGELOG.md index e82745a6..114b0cc6 100644 --- a/camellia/CHANGELOG.md +++ b/camellia/CHANGELOG.md @@ -5,6 +5,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.2.1 (UNRELEASED) +### Changed +- Removed unused `byteorder` dependency ([#566]) + +[#566]: https://github.com/RustCrypto/block-ciphers/pull/566 + ## 0.2.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5.0