Browse Source

explicitly specify a dependency version

cherry-pick
mmagician 1 year ago
parent
commit
a986e08ce4
No known key found for this signature in database GPG Key ID: 6F896DF6B263DB1A
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      ed25519/Cargo.toml
  2. +1
    -1
      secq256k1/Cargo.toml

+ 1
- 1
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 }

+ 1
- 1
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 }

Loading…
Cancel
Save