Skip to content

Commit b685246

Browse files
authored
fiat-constify: remove MSRV (#986)
This is a simple command line utility intended for internal use only. There's no need to have an MSRV policy around it, and having one was breaking the build of #984
1 parent df6d2f4 commit b685246

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

.github/workflows/fiat-constify.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,9 @@ env:
2222

2323
jobs:
2424
test:
25-
strategy:
26-
matrix:
27-
toolchain:
28-
- 1.56.0 # MSRV
29-
- stable
3025
runs-on: ubuntu-latest
3126
steps:
3227
- uses: actions/checkout@v4
3328
- uses: RustCrypto/actions/cargo-cache@master
34-
- uses: dtolnay/rust-toolchain@master
35-
with:
36-
toolchain: ${{ matrix.toolchain }}
29+
- uses: dtolnay/rust-toolchain@stable
3730
- run: cargo test
38-
- run: cargo test --all-features

fiat-constify/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ categories = ["cryptography"]
1313
keywords = ["fiat-crypto", "field"]
1414
readme = "README.md"
1515
edition = "2021"
16-
rust-version = "1.56"
1716

1817
[dependencies]
1918
proc-macro2 = "1"

fiat-constify/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[![Build Status][build-image]][build-link]
66
[![Safety Dance][safety-image]][safety-link]
77
![Apache2/MIT licensed][license-image]
8-
![Rust Version][rustc-image]
98
[![Project Chat][chat-image]][chat-link]
109

1110
Postprocessor for [fiat-crypto] generated field implementations which rewrites
@@ -48,7 +47,6 @@ dual licensed as above, without any additional terms or conditions.
4847
[safety-image]: https://img.shields.io/badge/unsafe-forbidden-success.svg
4948
[safety-link]: https://github.com/rust-secure-code/safety-dance/
5049
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
51-
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg
5250
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
5351
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260052-utils
5452

0 commit comments

Comments
 (0)