From c9cdb0a5e73ed2fae76de7eeefcf3befc94c3111 Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Thu, 14 Oct 2021 16:15:56 -0700 Subject: [PATCH] fix version number (#38) --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d9716e9..b135d3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spartan" -version = "0.4.0" +version = "0.4.1" authors = ["Srinath Setty "] edition = "2018" description = "High-speed zkSNARKs without trusted setup" diff --git a/README.md b/README.md index 0361dae..e1862bd 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Among transparent SNARKs, Spartan offers the fastest prover with speedups of 36 ## Examples To import `libspartan` into your Rust project, add the following dependency to `Cargo.toml`: ```text -spartan = "0.3.0" +spartan = "0.4.1" ``` The following example shows how to use `libspartan` to create and verify a SNARK proof.