From ef1da42d94bd9d3c017265d2374fd6192a28fc86 Mon Sep 17 00:00:00 2001 From: Aaryamann Challani <43716372+rymnc@users.noreply.github.com> Date: Sat, 5 Aug 2023 10:42:21 +0530 Subject: [PATCH] v0.3.1 (#198) * fix(rln): missing fields from cargo.toml * fix(utils): missing fields from cargo.toml * chore: Release --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- rln/Cargo.toml | 7 +++++-- semaphore/Cargo.toml | 2 +- utils/Cargo.toml | 5 ++++- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 27d6115..8156885 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2686,7 +2686,7 @@ dependencies = [ [[package]] name = "rln" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ark-bn254 0.4.0", "ark-circom 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4260,7 +4260,7 @@ dependencies = [ [[package]] name = "zerokit_utils" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ark-bn254 0.4.0", "ark-ff 0.4.1", diff --git a/Cargo.toml b/Cargo.toml index af31d21..d056920 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,4 +21,4 @@ opt-level = 3 opt-level = "s" [profile.release.package."semaphore"] -codegen-units = 1 \ No newline at end of file +codegen-units = 1 diff --git a/rln/Cargo.toml b/rln/Cargo.toml index 178f9d8..b18bcfa 100644 --- a/rln/Cargo.toml +++ b/rln/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "rln" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "MIT OR Apache-2.0" description = "APIs to manage, compute and verify zkSNARK proofs and RLN primitives" +documentation = "https://github.com/vacp2p/zerokit" +homepage = "https://vac.dev" +repository = "https://github.com/vacp2p/zerokit" [lib] crate-type = ["rlib", "staticlib"] @@ -39,7 +42,7 @@ once_cell = "=1.17.1" rand = "=0.8.5" rand_chacha = "=0.3.1" tiny-keccak = { version = "=2.0.2", features = ["keccak"] } -utils = { package = "zerokit_utils", version = "=0.3.0", path = "../utils/", default-features = false } +utils = { package = "zerokit_utils", version = "=0.3.1", path = "../utils/", default-features = false } # serialization serde_json = "=1.0.96" diff --git a/semaphore/Cargo.toml b/semaphore/Cargo.toml index a1d7228..13709ee 100644 --- a/semaphore/Cargo.toml +++ b/semaphore/Cargo.toml @@ -47,4 +47,4 @@ opt-level = 3 # Dependencies are optimized, even in a dev build. This improves dev performance # while having neglible impact on incremental build times. [profile.dev.package."*"] -opt-level = 3 \ No newline at end of file +opt-level = 3 diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 1653870..c757cdc 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "zerokit_utils" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Various utilities for Zerokit" +documentation = "https://github.com/vacp2p/zerokit" +homepage = "https://vac.dev" +repository = "https://github.com/vacp2p/zerokit" [lib] bench = false