Skip to content

Commit 4783355

Browse files
committed
Updated readme and incremented MSRV to 1.87
1 parent 47700ad commit 4783355

File tree

14 files changed

+19
-14
lines changed

14 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.13.0 (TBD)
4+
5+
- Fixed incorrect buffer length check in slice reader impl (#383).
6+
- Updated minimum supported Rust version to 1.87.
7+
38
## 0.12.3 (2025-05-30) - `air`, `prover`, and `verifier` crates only
49

510
- Added Horner-type batching method (#378).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<a href="https://github.com/novifinancial/winterfell/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
44
<a href="https://github.com/facebook/winterfell/actions/workflows/ci.yml"><img src="https://github.com/facebook/winterfell/actions/workflows/ci.yml/badge.svg">
55
<a href="https://deps.rs/repo/github/novifinancial/winterfell"><img src="https://deps.rs/repo/github/novifinancial/winterfell/status.svg"></a>
6-
<img src="https://img.shields.io/badge/prover-rustc_1.84+-lightgray.svg">
7-
<img src="https://img.shields.io/badge/verifier-rustc_1.84+-lightgray.svg">
6+
<img src="https://img.shields.io/badge/prover-rustc_1.87+-lightgray.svg">
7+
<img src="https://img.shields.io/badge/verifier-rustc_1.87+-lightgray.svg">
88
<a href="https://crates.io/crates/winterfell"><img src="https://img.shields.io/crates/v/winterfell"></a>
99

1010
A STARK prover and verifier for arbitrary computations.

air/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-air/0.12.3"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "arithmetization", "air"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-crypto/0.12.0"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "merkle-tree", "hash"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
repository = "https://github.com/novifinancial/winterfell"
99
categories = ["cryptography"]
1010
edition = "2021"
11-
rust-version = "1.84"
11+
rust-version = "1.87"
1212

1313
[lib]
1414
bench = false

fri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-fri/0.12.2"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "polynomial", "commitments"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

math/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-math/0.12.0"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

prover/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-prover/0.12.3"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["crypto", "zkp", "stark", "prover"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.84"
2+
channel = "1.87"
33
components = ["rustfmt", "rust-src", "clippy"]
44
targets = ["wasm32-unknown-unknown"]
55
profile = "minimal"

utils/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/winter-utils/0.12.0"
1010
categories = ["cryptography", "no-std"]
1111
keywords = ["serialization", "transmute"]
1212
edition = "2021"
13-
rust-version = "1.84"
13+
rust-version = "1.87"
1414

1515
[lib]
1616
bench = false

0 commit comments

Comments
 (0)