arkworks-rs / snark

Interfaces for Relations and SNARKs for these relations
https://www.arkworks.rs
Apache License 2.0
788 stars 209 forks source link

cargo build --release failed:could not find `sync` in `ark_std` #377

Open yizhihuaqi opened 3 months ago

yizhihuaqi commented 3 months ago

when I run cargo build --release ,it reports error:could not find 'sync' in 'ark_std'.

Rajil1213 commented 7 hours ago

Ran into a similar issue while building another ark- package and solved it by adding the std patch in Cargo.toml:

[patch.crates-io]
ark-std = { git = "https://github.com/arkworks-rs/std/" }