From b753a832e92d5c86c5c997327a9cf9de86a18851 Mon Sep 17 00:00:00 2001 From: David Nevado Date: Fri, 26 Jul 2024 11:12:05 +0200 Subject: [PATCH] Version bump (#172) chore: bump version --- Cargo.toml | 4 ++-- derive/Cargo.toml | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d844725d..9df8e215 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "halo2curves" -version = "0.6.1" +version = "0.7.0" authors = ["Privacy Scaling Explorations team"] license = "MIT/Apache-2.0" edition = "2021" @@ -25,7 +25,7 @@ impls = "1" getrandom = { version = "0.2", features = ["js"] } [dependencies] -halo2derive = {path = "derive"} +halo2derive = {path = "derive", version="0.1.0"} subtle = "2.5" ff = { version = "0.13.0", default-features = false, features = ["std"] } group = "0.13.0" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index ef22120d..a3585dd5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -2,6 +2,11 @@ edition = "2021" name = "halo2derive" version = "0.1.0" +authors = ["Privacy Scaling Explorations team"] +license = "MIT/Apache-2.0" +repository = "https://github.com/privacy-scaling-explorations/halo2curves" +description = "Derive macros for halo2curves fields." +rust-version = "1.63.0" [lib] proc-macro = true @@ -16,4 +21,4 @@ syn = {version = "1.0", features = ["full"]} [features] default = [] -asm = [] \ No newline at end of file +asm = []