Skip to content

Commit

Permalink
[WIP] hybrid-array v0.2.0-pre.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Dec 31, 2023
1 parent 55a93f1 commit 62e9682
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 24 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions block-buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "block-buffer"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Buffer type for block processing of data"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
rust-version = "1.65"

[dependencies]
crypto-common = "=0.2.0-pre.2"
crypto-common = "=0.2.0-pre.3"
zeroize = { version = "1.4", optional = true, default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions block-padding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "block-padding"
version = "0.4.0-pre.2"
version = "0.4.0-pre.3"
description = "Padding and unpadding of messages divided into blocks."
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
readme = "README.md"

[dependencies]
hybrid-array = "=0.2.0-pre.7"
hybrid-array = "=0.2.0-pre.8"

[features]
std = []
Expand Down
5 changes: 3 additions & 2 deletions dbl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dbl"
version = "0.4.0-pre.2"
version = "0.4.0-pre.3"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Double operation in Galois Field GF(2^128) as used by e.g. CMAC/PMAC"
Expand All @@ -12,4 +12,5 @@ rust-version = "1.65"
readme = "README.md"

[dependencies]
hybrid-array = "=0.2.0-pre.7"
hybrid-array = "=0.2.0-pre.8"

2 changes: 1 addition & 1 deletion hybrid-array/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hybrid-array"
version = "0.2.0-pre.7"
version = "0.2.0-pre.8"
description = """
Hybrid typenum-based and const generic array types designed to provide the
flexibility of typenum-based expressions while also allowing interoperability
Expand Down
6 changes: 3 additions & 3 deletions inout/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inout"
version = "0.2.0-pre.2"
version = "0.2.0-pre.3"
description = "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation."
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -12,8 +12,8 @@ keywords = ["custom-reference"]
readme = "README.md"

[dependencies]
block-padding = { version = "=0.4.0-pre.2", path = "../block-padding", optional = true }
hybrid-array = "=0.2.0-pre.7"
block-padding = { version = "=0.4.0-pre.3", path = "../block-padding", optional = true }
hybrid-array = "=0.2.0-pre.8"

[features]
std = ["block-padding/std"]
Expand Down
2 changes: 1 addition & 1 deletion inout/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [RustCrypto]: Input/Output Reference Types
# [RustCrypto]: In/Out Ref Types

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
Expand Down

0 comments on commit 62e9682

Please sign in to comment.