Skip to content

Commit 1c06a1e

Browse files
authored
Cargo.lock: bump dependencies (#1425)
Upgrades the following dependencies: $ cargo update Updating git repository `https://github.com/RustCrypto/utils.git` 708aa72..cc77203 -> origin/HEAD Updating crates.io index Updating async-trait v0.1.74 -> v0.1.75 Updating block-buffer v0.11.0-pre (https://github.com/RustCrypto/utils.git#708aa72b) -> #cc772039 Updating block-padding v0.4.0-pre (https://github.com/RustCrypto/utils.git#708aa72b) -> #cc772039 Updating byteorder v1.4.3 -> v1.5.0 Downgrading cc v1.0.84 -> v1.0.83 Updating hybrid-array v0.2.0-pre.5 (https://github.com/RustCrypto/utils.git#708aa72b) -> #cc772039 Updating inout v0.2.0-pre (https://github.com/RustCrypto/utils.git#708aa72b) -> #cc772039 Updating itoa v1.0.9 -> v1.0.10 Adding jobserver v0.1.27 Updating libc v0.2.150 -> v0.2.151 Updating proc-macro2 v1.0.69 -> v1.0.71 Updating ryu v1.0.15 -> v1.0.16 Updating serde v1.0.192 -> v1.0.193 Updating serde_bytes v0.11.12 -> v0.11.13 Updating serde_derive v1.0.192 -> v1.0.193 Updating spki v0.7.2 -> v0.7.3 Updating syn v2.0.39 -> v2.0.43
1 parent 3a44a3e commit 1c06a1e

File tree

4 files changed

+46
-62
lines changed

4 files changed

+46
-62
lines changed

.github/workflows/kem.yml

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.61.0 # Next MSRV candidate
25+
- 1.66.0 # MSRV
2626
- stable
2727
target:
2828
- thumbv7em-none-eabi
@@ -36,26 +36,12 @@ jobs:
3636
targets: ${{ matrix.target }}
3737
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
3838

39-
# TODO: use the reusable workflow after this crate will be part of the
40-
# toot workspace
41-
# minimal-versions:
42-
# runs-on: ubuntu-latest
43-
# steps:
44-
# - uses: actions/checkout@v4
45-
# - uses: RustCrypto/actions/cargo-cache@master
46-
# - uses: dtolnay/rust-toolchain@master
47-
# with:
48-
# toolchain: nightly
49-
# - uses: RustCrypto/actions/cargo-hack-install@master
50-
# - run: cargo update -Z minimal-versions
51-
# - run: cargo hack test --release --feature-powerset
52-
5339
test:
5440
runs-on: ubuntu-latest
5541
strategy:
5642
matrix:
5743
rust:
58-
- 1.61.0 # Next MSRV candidate
44+
- 1.66.0 # MSRV
5945
- stable
6046
steps:
6147
- uses: actions/checkout@v4
@@ -67,15 +53,3 @@ jobs:
6753
- run: cargo test --no-default-features --release
6854
- run: cargo test --release
6955
- run: cargo test --all-features --release
70-
71-
# build-only test of MSRV
72-
# TODO: remove on MSRV bump higher than MSRV of `cc`
73-
test-msrv:
74-
runs-on: ubuntu-latest
75-
steps:
76-
- uses: actions/checkout@v4
77-
- uses: RustCrypto/actions/cargo-cache@master
78-
- uses: dtolnay/rust-toolchain@master
79-
with:
80-
toolchain: 1.60.0
81-
- run: cargo check --all-features

Cargo.lock

Lines changed: 40 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kem/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kem"
33
description = "Traits for key encapsulation mechanisms"
4-
version = "0.2.0"
4+
version = "0.3.0-pre"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"
77
documentation = "https://docs.rs/kem"
@@ -10,7 +10,7 @@ readme = "README.md"
1010
edition = "2021"
1111
keywords = ["crypto"]
1212
categories = ["cryptography", "no-std"]
13-
rust-version = "1.60"
13+
rust-version = "1.66"
1414

1515
[dependencies]
1616
rand_core = "0.6"

kem/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The crate exposes four traits, `Encapsulator`, `Decapsulator`, `AuthEncapsulator
1515

1616
## Minimum Supported Rust Version
1717

18-
Rust **1.60** or higher.
18+
Rust **1.66** or higher.
1919

2020
Minimum supported Rust version can be changed in the future, but it will be
2121
done with a minor version bump.
@@ -47,7 +47,7 @@ dual licensed as above, without any additional terms or conditions.
4747
[docs-image]: https://docs.rs/kem/badge.svg
4848
[docs-link]: https://docs.rs/kem/
4949
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
50-
[rustc-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
50+
[rustc-image]: https://img.shields.io/badge/rustc-1.66+-blue.svg
5151
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
5252
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260048-signatures
5353
[build-image]: https://github.com/RustCrypto/traits/workflows/kem/badge.svg?branch=master&event=push

0 commit comments

Comments
 (0)