Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
survived committed Nov 24, 2023
1 parent bf99c3a commit 8c28708
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions generic-ec-curves/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/dfns/generic-ec"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
generic-ec-core = { path = "../generic-ec-core" }
generic-ec-core = "0.1"

subtle = { version = "2.4", default-features = false }
rand_core = { version = "0.6", default-features = false }
Expand All @@ -20,7 +20,7 @@ elliptic-curve = { version = "0.13", features = ["sec1", "hash2curve"], optional
k256 = { version = "0.13", optional = true, features = ["hash2curve"] }
p256 = { version = "0.13", optional = true, features = ["hash2curve"] }
sha2 = { version = "0.10", optional = true }
stark-curve = { git = "https://github.com/dfns-labs/stark-curve", optional = true }
stark-curve = { version = "0.1", optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion generic-ec-zkp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["elliptic-curves", "zk-proof"]

[dependencies]
generic-ec = { path = "../generic-ec", default-features = false }
udigest = { git = "https://github.com/dfns-labs/udigest", branch = "m", features = ["derive"], optional = true }
udigest = { version = "0.1", features = ["derive"], optional = true }

subtle = "2.4"
rand_core = "0.6"
Expand Down
4 changes: 2 additions & 2 deletions generic-ec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ keywords = ["elliptic-curves"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
generic-ec-core = { path = "../generic-ec-core" }
generic-ec-core = "0.1"
generic-ec-curves = { path = "../generic-ec-curves", optional = true }
udigest = { git = "https://github.com/dfns-labs/udigest", branch = "m", features = ["derive"], optional = true }
udigest = { version = "0.1", features = ["derive"], optional = true }

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

0 comments on commit 8c28708

Please sign in to comment.