Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaker committed Oct 22, 2024
1 parent 666d702 commit 873506a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nimue-anemoi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 2 additions & 5 deletions nimue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nimue"
version = "0.1.0"
version = "0.2.0"
authors = ["Michele Orrù <m@orru.net>"]
description = "A library for Fiat-Shamir transcripts."
edition = "2021"
Expand All @@ -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]
Expand Down

0 comments on commit 873506a

Please sign in to comment.