From ac76c393c8708f1f16d61b2cee6dda049ba93013 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 08:41:22 +0200 Subject: [PATCH] chore(imt): release v0.0.1 (#12) * chore: release * chore: add description to manifest Required to publish the crate: https://github.com/privacy-scaling-explorations/zk-kit.rust/actions/runs/9991695038/job/27615015678#step:4:296 * chore: format --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: sripwoud --- Cargo.lock | 20 ++++++++------------ crates/imt/CHANGELOG.md | 18 ++++++++++++++++++ crates/imt/Cargo.toml | 1 + 3 files changed, 27 insertions(+), 12 deletions(-) create mode 100644 crates/imt/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 4669ae2..206dcd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,24 +8,12 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" -[[package]] -name = "example" -version = "0.1.0" - [[package]] name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -[[package]] -name = "imt" -version = "0.0.1" -dependencies = [ - "hex", - "tiny-keccak", -] - [[package]] name = "tiny-keccak" version = "2.0.2" @@ -34,3 +22,11 @@ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ "crunchy", ] + +[[package]] +name = "zk-kit-imt" +version = "0.0.1" +dependencies = [ + "hex", + "tiny-keccak", +] diff --git a/crates/imt/CHANGELOG.md b/crates/imt/CHANGELOG.md new file mode 100644 index 0000000..8d41c98 --- /dev/null +++ b/crates/imt/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.1](https://github.com/privacy-scaling-explorations/zk-kit.rust/releases/tag/v0.0.1) - 2024-07-18 + +### Added + +- _(imt)_ add `imt` crate ([#5](https://github.com/privacy-scaling-explorations/zk-kit.rust/pull/5)) + +### Other + +- update list of available crates ([#7](https://github.com/privacy-scaling-explorations/zk-kit.rust/pull/7)) diff --git a/crates/imt/Cargo.toml b/crates/imt/Cargo.toml index 31af060..405cb74 100644 --- a/crates/imt/Cargo.toml +++ b/crates/imt/Cargo.toml @@ -4,6 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true publish.workspace = true +description = "Incremental Merkle Tree" [dependencies] hex = "0.4.3"