Browse Source

Fix incorrect repository links in `Cargo.toml` files (#63)

* fixes repository in cargo files

* lint fixes
reduce-generics
George Gkitsas 3 years ago
committed by GitHub
parent
commit
a9cb9bfcb2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 21 additions and 21 deletions
  1. +1
    -1
      bls12_377/Cargo.toml
  2. +1
    -1
      bls12_381/Cargo.toml
  3. +1
    -1
      bn254/Cargo.toml
  4. +1
    -1
      bw6_761/Cargo.toml
  5. +1
    -1
      cp6_782/Cargo.toml
  6. +1
    -1
      curve-benches/Cargo.toml
  7. +1
    -1
      ed_on_bls12_377/Cargo.toml
  8. +1
    -1
      ed_on_bls12_381/Cargo.toml
  9. +1
    -1
      ed_on_bn254/Cargo.toml
  10. +1
    -1
      ed_on_bw6_761/Cargo.toml
  11. +1
    -1
      ed_on_cp6_782/Cargo.toml
  12. +1
    -1
      ed_on_mnt4_298/Cargo.toml
  13. +1
    -1
      ed_on_mnt4_753/Cargo.toml
  14. +1
    -1
      mnt4_298/Cargo.toml
  15. +4
    -4
      mnt4_298/src/curves/g1.rs
  16. +1
    -1
      mnt4_753/Cargo.toml
  17. +1
    -1
      mnt6_298/Cargo.toml
  18. +1
    -1
      mnt6_753/Cargo.toml

+ 1
- 1
bls12_377/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The BLS12-377 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-bls12-377/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
bls12_381/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The BLS12-381 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-bls12-381/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
bn254/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The BN254 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-bn254/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
bw6_761/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The BW6-761 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-bw6-761/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
cp6_782/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The CP6-782 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-cp6-782/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
curve-benches/Cargo.toml

@ -12,7 +12,7 @@ authors = [
]
description = "A benchmark library for finite fields and elliptic curves"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/algebra/"
keywords = ["cryptography", "finite-fields", "elliptic-curves", "pairing"]
categories = ["cryptography"]

+ 1
- 1
ed_on_bls12_377/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the BLS12-377 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-bls12-377/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_bls12_381/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the BLS12-381 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-bls12-381/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_bn254/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the BN254 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-bn254/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_bw6_761/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the BW6-761 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-bw6-761/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_cp6_782/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the CP6-782 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-cp6-782/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_mnt4_298/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the MNT4-298 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-mnt4-298/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
ed_on_mnt4_753/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "A Twisted Edwards curve defined over the scalar field of the MNT4-753 curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-ed-on-mnt4-753/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

+ 1
- 1
mnt4_298/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The MNT4-298 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-mnt4-298/"
keywords = ["cryptography", "finite-fields" ]
categories = ["cryptography"]

+ 4
- 4
mnt4_298/src/curves/g1.rs

@ -19,12 +19,12 @@ impl ModelParameters for Parameters {
impl SWModelParameters for Parameters {
/// COEFF_A = 2
/// Reference: https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L116
/// Reference: <https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L116>
#[rustfmt::skip]
const COEFF_A: Fq = field_new!(Fq, "2");
/// COEFF_B = 423894536526684178289416011533888240029318103673896002803341544124054745019340795360841685
/// Reference: https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L117
/// Reference: <https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L117>
#[rustfmt::skip]
const COEFF_B: Fq = field_new!(Fq, "423894536526684178289416011533888240029318103673896002803341544124054745019340795360841685");
@ -45,11 +45,11 @@ impl SWModelParameters for Parameters {
// X = 60760244141852568949126569781626075788424196370144486719385562369396875346601926534016838,
// Y = 363732850702582978263902770815145784459747722357071843971107674179038674942891694705904306,
/// G1_GENERATOR_X
/// Reference: https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L137
/// Reference: <https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L137>
#[rustfmt::skip]
pub const G1_GENERATOR_X: Fq = field_new!(Fq, "60760244141852568949126569781626075788424196370144486719385562369396875346601926534016838");
/// G1_GENERATOR_Y
/// Reference: https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L138
/// Reference: <https://github.com/scipr-lab/libff/blob/c927821ebe02e0a24b5e0f9170cec5e211a35f08/libff/algebra/curves/mnt/mnt4/mnt4_init.cpp#L138>
#[rustfmt::skip]
pub const G1_GENERATOR_Y: Fq = field_new!(Fq, "363732850702582978263902770815145784459747722357071843971107674179038674942891694705904306");

+ 1
- 1
mnt4_753/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The MNT4-753 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-mnt4-753/"
keywords = ["cryptography", "finite-fields" ]
categories = ["cryptography"]

+ 1
- 1
mnt6_298/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The MNT6-298 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-mnt6-298/"
keywords = ["cryptography", "finite-fields", "elliptic-curves"]
categories = ["cryptography"]

+ 1
- 1
mnt6_753/Cargo.toml

@ -4,7 +4,7 @@ version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The MNT6-753 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
repository = "https://github.com/arkworks-rs/curves"
documentation = "https://docs.rs/ark-mnt6-753/"
keywords = ["cryptography", "finite-fields", "elliptic-curves" ]
categories = ["cryptography"]

Loading…
Cancel
Save