diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index 3fe0154..6f6fe10 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -17,7 +17,7 @@ ark-ff = { version = "0.4.0-alpha", default-features = false } ark-ec = { version = "0.4.0-alpha", default-features = false } ark-std = { version = "0.4.0-alpha", default-features = false } ark-r1cs-std = { version = "0.4.0-alpha", default-features = false, optional = true } -ark-curve25519 = { path = "../curve25519" } +ark-curve25519 = { version = "0.4.0-alpha", path = "../curve25519" } [dev-dependencies] ark-relations = { version = "0.4.0-alpha", default-features = false } diff --git a/secq256k1/Cargo.toml b/secq256k1/Cargo.toml index 911d55d..6b32c7f 100644 --- a/secq256k1/Cargo.toml +++ b/secq256k1/Cargo.toml @@ -17,7 +17,7 @@ ark-ff = { version = "0.4.0-alpha", default-features = false } ark-ec = { version = "0.4.0-alpha", default-features = false } ark-r1cs-std = { version = "0.4.0-alpha", default-features = false, optional = true } ark-std = { version = "0.4.0-alpha", default-features = false } -ark-secp256k1 = { path = "../secp256k1" } +ark-secp256k1 = { version = "0.4.0-alpha", path = "../secp256k1" } [dev-dependencies] ark-relations = { version = "0.4.0-alpha", default-features = false }