From 873506acc415beec73ccde0828b6cbea92cd3b86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michele=20Orr=C3=B9?= Date: Tue, 22 Oct 2024 16:13:45 +0200 Subject: [PATCH] Bump version. --- nimue-anemoi/Cargo.toml | 2 +- nimue/Cargo.toml | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/nimue-anemoi/Cargo.toml b/nimue-anemoi/Cargo.toml index a2c7b16..070d8cb 100644 --- a/nimue-anemoi/Cargo.toml +++ b/nimue-anemoi/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0" [dependencies] ark-ff = "^0.4.2" -nimue = { version = "0.1.0", path = "../nimue", features = ["ark"] } +nimue = { path = "../nimue", features = ["ark"] } zeroize = "1.8.1" anemoi = {git = "https://github.com/mmaker/anemoi", features=["bls12_381"]} ark-bls12-381 = "^0.4.0" diff --git a/nimue/Cargo.toml b/nimue/Cargo.toml index d9942d6..87107a6 100644 --- a/nimue/Cargo.toml +++ b/nimue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nimue" -version = "0.1.0" +version = "0.2.0" authors = ["Michele OrrĂ¹ "] description = "A library for Fiat-Shamir transcripts." edition = "2021" @@ -20,15 +20,12 @@ ark-ec = { version = "0.4.0", optional = true } ark-serialize = { version = "0.4.2", optional = true, features = ["std"] } group = { version = "0.13.0", optional = true } ark-bls12-381 = { version = "0.4.0", optional = true } -rayon = { version = "1.10.0", optional = true } [features] -default = ["parallel"] -parallel = ["dep:rayon"] +default = [] ark = ["dep:ark-ff", "dep:ark-ec", "dep:ark-serialize"] group = ["dep:group"] ark-bls12-381 = ["ark", "dep:ark-bls12-381"] -rayon = ["dep:rayon"] asm = ["keccak/asm", "keccak/simd"] [dev-dependencies]