From aa785dd545e4864ced81d14caeb721fb47fc49e6 Mon Sep 17 00:00:00 2001 From: Jonathan Wang <31040440+jonathanpwang@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:17:33 -0500 Subject: [PATCH] chore(wasm): add description and license to Cargo.toml --- halo2-wasm/Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/halo2-wasm/Cargo.toml b/halo2-wasm/Cargo.toml index ae0b284..f66d152 100644 --- a/halo2-wasm/Cargo.toml +++ b/halo2-wasm/Cargo.toml @@ -1,7 +1,14 @@ [package] name = "halo2-wasm" version = "0.3.3" +authors = ["Intrinsic Technologies"] +license = "MIT" edition = "2021" +repository = "https://github.com/axiom-crypto/halo2-browser/halo2-wasm" +readme = "readme.md" +description = "Wasm bindings for the halo2 circuit library." +rust-version = "1.73.0" + [lib] crate-type = ["cdylib", "lib"]