From 686e83d28b46abc6b55f4b8f345135a037a83e42 Mon Sep 17 00:00:00 2001 From: Irakliy Khaburzaniya <68976082+irakliyk@users.noreply.github.com> Date: Sat, 26 Oct 2024 13:01:41 -0700 Subject: [PATCH] fixed maybe-async dependency (#337) --- README.md | 4 ++-- prover/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4616bf5a5..230146c2b 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ - - + + A STARK prover and verifier for arbitrary computations. diff --git a/prover/Cargo.toml b/prover/Cargo.toml index 85b5dbcd7..6dd616a1a 100644 --- a/prover/Cargo.toml +++ b/prover/Cargo.toml @@ -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 }