Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update udigest #41

Merged
merged 7 commits into from
Jun 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update udigest to v0.2.0-rc2
  • Loading branch information
survived committed Jun 17, 2024

Verified

This commit was signed with the committer’s verified signature.
ArcticLampyrid ArcticLampyrid
commit d87832c3f9a3c2970dd726533a60df006f132d0e
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -11,3 +11,7 @@ members = [
exclude = [
"wasm/nostd",
]

[patch.crates-io.udigest]
git = "https://github.com/dfns/udigest"
branch = "small-improvements"
6 changes: 3 additions & 3 deletions generic-ec-zkp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec-zkp"
version = "0.4.0-rc1"
version = "0.4.0-rc2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dfns/generic-ec"
@@ -13,7 +13,7 @@ keywords = ["elliptic-curves", "zk-proof"]

[dependencies]
generic-ec = { version = "0.4.0-rc1", path = "../generic-ec", default-features = false }
udigest = { version = "0.2.0-rc1", features = ["derive"], optional = true }
udigest = { version = "0.2.0-rc2", features = ["derive"], optional = true }

subtle = { version = "2.4", default-features = false }
rand_core = { version = "0.6", default-features = false }
@@ -32,7 +32,7 @@ generic-tests = "0.1"

criterion = { version = "0.5", features = ["html_reports"] }

generic-ec = { version = "0.4.0-rc1", path = "../generic-ec", default-features = false, features = ["all-curves"] }
generic-ec = { version = "0.4.0-rc2", path = "../generic-ec", default-features = false, features = ["all-curves"] }

[features]
default = ["std"]
4 changes: 2 additions & 2 deletions generic-ec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generic-ec"
version = "0.4.0-rc1"
version = "0.4.0-rc2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dfns/generic-ec"
@@ -15,7 +15,7 @@ keywords = ["elliptic-curves"]
[dependencies]
generic-ec-core = { version = "0.2", path = "../generic-ec-core" }
generic-ec-curves = { version = "0.2", path = "../generic-ec-curves", optional = true }
udigest = { version = "0.2.0-rc1", features = ["derive"], optional = true }
udigest = { version = "0.2.0-rc2", features = ["derive"], optional = true }

subtle = { version = "2.4", default-features = false }
rand_core = { version = "0.6", default-features = false }
Loading