privacy-scaling-explorations / mpz

Multi-party computation libraries written in Rust 🦀
182 stars 39 forks source link

compile errors #170

Closed xiangxiecrypto closed 2 months ago

xiangxiecrypto commented 2 months ago
  1. The current version forces to use nightly rustc, because of the use of .first_chunk_mut(). See here
  2. When I use unstable rustc, it complains that unknown feature stdsimd

My environment:

  1. MacBook Pro M1.
  2. rustc version: 1.76.0
th4s commented 2 months ago

Updating your Rust version to use the current stable version 1.79 by doing rustup update stable should fix this.

xiangxiecrypto commented 2 months ago

solved