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
5 changes: 3 additions & 2 deletions .github/workflows/serdect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.70.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -41,14 +41,15 @@ jobs:
minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
nightly: nightly-2023-10-01
working-directory: ${{ github.workflow }}

test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.65.0 # MSRV
- 1.70.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 8 additions & 9 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions serdect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["cryptography", "encoding", "no-std", "parsing"]
keywords = ["crypto", "constant-time", "serde"]
readme = "README.md"
edition = "2021"
rust-version = "1.60"
rust-version = "1.70"

[dependencies]
base16ct = { version = "0.2", default-features = false }
Expand All @@ -30,8 +30,7 @@ rmp-serde = "1"
serde = { version = "1.0.184", default-features = false, features = ["derive"] }
serde_json = "1"
serde-json-core = { version = "0.5", default-features = false, features = ["std"] }
toml = "0.7"
toml_edit = "=0.19.14" # pinned to preserve MSRV
toml = "0.8"

[features]
default = ["alloc"]
Expand Down
4 changes: 2 additions & 2 deletions serdect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ help reduce the overall timing variability.

## Minimum Supported Rust Version

Rust **1.60** or newer.
Rust **1.70** or newer.

In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope
for this crate's SemVer guarantees), however when we do it will be accompanied by
Expand Down Expand Up @@ -69,7 +69,7 @@ dual licensed as above, without any additional terms or conditions.
[docs-image]: https://docs.rs/serdect/badge.svg
[docs-link]: https://docs.rs/serdect/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[msrv-image]: https://img.shields.io/badge/rustc-1.60+-blue.svg
[msrv-image]: https://img.shields.io/badge/rustc-1.70+-blue.svg
[build-image]: https://github.com/RustCrypto/formats/actions/workflows/serdect.yml/badge.svg
[build-link]: https://github.com/RustCrypto/formats/actions/workflows/serdect.yml

Expand Down