Skip to content

Commit

Permalink
fixed maybe-async dependency (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
irakliyk authored Oct 26, 2024
1 parent 80e8dab commit 686e83d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<a href="https://github.com/novifinancial/winterfell/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
<img src="https://github.com/novifinancial/winterfell/workflows/CI/badge.svg?branch=main">
<a href="https://deps.rs/repo/github/novifinancial/winterfell"><img src="https://deps.rs/repo/github/novifinancial/winterfell/status.svg"></a>
<img src="https://img.shields.io/badge/prover-rustc_1.78+-lightgray.svg">
<img src="https://img.shields.io/badge/verifier-rustc_1.78+-lightgray.svg">
<img src="https://img.shields.io/badge/prover-rustc_1.82+-lightgray.svg">
<img src="https://img.shields.io/badge/verifier-rustc_1.82+-lightgray.svg">
<a href="https://crates.io/crates/winterfell"><img src="https://img.shields.io/crates/v/winterfell"></a>

A STARK prover and verifier for arbitrary computations.
Expand Down
2 changes: 1 addition & 1 deletion prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ air = { version = "0.10", path = "../air", package = "winter-air", default-featu
crypto = { version = "0.10", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.10", path = '../fri', package = "winter-fri", default-features = false }
math = { version = "0.10", path = "../math", package = "winter-math", default-features = false }
maybe_async = { path = "../utils/maybe_async" , package = "winter-maybe-async" }
maybe_async = { version = "0.10", path = "../utils/maybe_async" , package = "winter-maybe-async" }
tracing = { version = "0.1", default-features = false, features = ["attributes"]}
utils = { version = "0.10", path = "../utils/core", package = "winter-utils", default-features = false }

Expand Down

0 comments on commit 686e83d

Please sign in to comment.