Skip to content

Commit

Permalink
chore: fix .toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Al-Kindi-0 committed Sep 20, 2024
1 parent 2ffcb59 commit ab05b8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ harness = false

[features]
async = ["maybe_async/async"]
concurrent = ["crypto/concurrent", "math/concurrent", "fri/concurrent", "utils/concurrent", "dep:rayon", "std"]
concurrent = ["crypto/concurrent", "math/concurrent", "fri/concurrent", "utils/concurrent", "std"]
default = ["std"]
std = ["air/std", "crypto/std", "fri/std", "math/std", "utils/std"]

Expand All @@ -39,7 +39,6 @@ crypto = { version = "0.9", path = "../crypto", package = "winter-crypto", defau
fri = { version = "0.9", path = '../fri', package = "winter-fri", default-features = false }
math = { version = "0.9", path = "../math", package = "winter-math", default-features = false }
maybe_async = { path = "../utils/maybe_async" , package = "winter-maybe-async" }
rayon = { version = "1.8", optional = true }
sumcheck = { version = "0.1", path = "../sumcheck", package = "winter-sumcheck", default-features = false }
thiserror = { version = "1.0", git = "https://github.com/bitwalker/thiserror", branch = "no-std", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes"]}
Expand Down
2 changes: 1 addition & 1 deletion prover/src/logup_gkr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::Trace;
mod prover;
pub use prover::prove_gkr;
#[cfg(feature = "concurrent")]
pub use rayon::{current_num_threads as rayon_num_threads, prelude::*};
pub use utils::rayon::{current_num_threads as rayon_num_threads, prelude::*};

// EVALUATED CIRCUIT
// ================================================================================================
Expand Down

0 comments on commit ab05b8b

Please sign in to comment.