Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Nov 25, 2023
1 parent 5d7f7b7 commit 6371275
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust build&test fedora
name: Rust build&test arcrunner

on:
push:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Welcome to `noir_rs`, a Rust-centric package designed for users seeking a straightforward, lightweight interface to generate and verify zkSNARK proofs without any WebAssembly (WASM) dependency.

![GitHub Workflow Status ArcRunner](https://github.com/visoftsolutions/noir_rs/actions/workflows/build&test@arcrunner.yml/badge.svg)
![GitHub Workflow Status Ubuntu](https://github.com/visoftsolutions/noir_rs/actions/workflows/build&test@ubuntu.yml/badge.svg)
![GitHub Workflow Status Macos](https://github.com/visoftsolutions/noir_rs/actions/workflows/build&test@macos.yml/badge.svg)
![Version](https://img.shields.io/badge/version-0.1.0-blue)
Expand Down
3 changes: 1 addition & 2 deletions barretenberg/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ fn main() {

// Link the `barretenberg` static library.
println!("cargo:rustc-link-lib=static=barretenberg");

// Link the C++ standard library.
if cfg!(target_os = "macos") || cfg!(target_os = "ios") {
println!("cargo:rustc-link-lib=c++");
} else {
println!("cargo:rustc-link-lib=stdc++");
}


// Begin setting up bindgen to generate Rust bindings for C++ code.
let bindings = bindgen::Builder::default()
Expand Down
2 changes: 1 addition & 1 deletion noir_rs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::io::Read;

use acir_composer::AcirComposer;
use acvm::acir::{native_types::WitnessMap, circuit::Circuit};
use acvm::acir::{circuit::Circuit, native_types::WitnessMap};
use acvm_runtime::execute::execute_circuit;
use barretenberg::{
circuit::circuit_size::get_circuit_sizes,
Expand Down

0 comments on commit 6371275

Please sign in to comment.