Open yizhihuaqi opened 3 months ago
when I run cargo build --release ,it reports error:could not find 'sync' in 'ark_std'.
cargo build --release
could not find 'sync' in 'ark_std'
Ran into a similar issue while building another ark- package and solved it by adding the std patch in Cargo.toml:
ark-
std
Cargo.toml
[patch.crates-io] ark-std = { git = "https://github.com/arkworks-rs/std/" }
when I run
cargo build --release
,it reports error:could not find 'sync' in 'ark_std'
.