From 178fa134d2a1a5fca131b3de64b98505b215b32b Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Thu, 11 May 2023 07:44:13 -0700 Subject: [PATCH] fix: Add description so crate can be published --- Cargo.toml | 1 + README.md | 2 +- flake.nix | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2b3b1759..2f3336be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "acvm-backend-barretenberg" +description = "An ACVM backend which allows proving/verifying ACIR circuits against Aztec Lab's Barretenberg library." version = "0.1.0" authors = ["The Noir Team "] edition = "2021" diff --git a/README.md b/README.md index 7fc79f9f..ab8215ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # aztec_backend -This is a backend for the [ACVM](https://github.com/noir-lang/acvm) which allows proving/verifying ACIR circuits against Aztec Protocol's [Barretenberg](https://github.com/AztecProtocol/barretenberg) library. +An [ACVM](https://github.com/noir-lang/acvm) backend which allows proving/verifying ACIR circuits against Aztec Lab's [Barretenberg](https://github.com/AztecProtocol/barretenberg) library. ## Working on this project diff --git a/flake.nix b/flake.nix index d1f8809d..d679aeb7 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Build the Barretenberg acvm backend"; + description = "An ACVM backend which allows proving/verifying ACIR circuits against Aztec Lab's Barretenberg library."; inputs = { nixpkgs = {