Skip to content

Commit

Permalink
Merge pull request #41 from dfns/update-udigest
Browse files Browse the repository at this point in the history
Update udigest
  • Loading branch information
survived authored Jun 20, 2024
2 parents 3bad73a + d860f11 commit 7a0ba4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ members = [
exclude = [
"wasm/nostd",
]

8 changes: 4 additions & 4 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"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dfns/generic-ec"
Expand All @@ -12,8 +12,8 @@ keywords = ["elliptic-curves", "zk-proof"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

subtle = { version = "2.4", default-features = false }
rand_core = { version = "0.6", default-features = false }
Expand All @@ -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", path = "../generic-ec", default-features = false, features = ["all-curves"] }

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 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"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dfns/generic-ec"
Expand All @@ -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", features = ["derive"], optional = true }

subtle = { version = "2.4", default-features = false }
rand_core = { version = "0.6", default-features = false }
Expand All @@ -28,7 +28,7 @@ hex = { version = "0.4", default-features = false, optional = true }
phantom-type = { version = "0.4", default-features = false }

digest = { version = "0.10", default-features = false, optional = true }
rand_hash = { version = "0.1.0-rc1", optional = true }
rand_hash = { version = "0.1.0", optional = true }

# We use this dependency when both `curve-ed25519` and `alloc` features are enabled,
# to provide `generic_ec::multiscalar::Dalek`
Expand Down

0 comments on commit 7a0ba4c

Please sign in to comment.