Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename for self-publishing fork, bump version #3

Merged
merged 3 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "bls12_381"
version = "0.8.0"
name = "nam-bls12_381"
version = "0.8.1-nam.0"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
]
edition = "2021"
rust-version = "1.56"
description = "Implementation of the BLS12-381 pairing-friendly elliptic curve construction"
description = "(Namada fork) Implementation of the BLS12-381 pairing-friendly elliptic curve construction"
documentation = "https://docs.rs/bls12_381/"
homepage = "https://github.com/zkcrypto/bls12_381"
repository = "https://github.com/zkcrypto/bls12_381"
repository = "https://github.com/anoma/bls12_381"
license = "MIT/Apache-2.0"

[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions benches/groups.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#[macro_use]
extern crate criterion;

extern crate bls12_381;
use bls12_381::*;
extern crate nam_bls12_381;
use nam_bls12_381::*;

use criterion::{black_box, Criterion};

Expand Down
6 changes: 3 additions & 3 deletions benches/hash_to_curve.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#[macro_use]
extern crate criterion;

extern crate bls12_381;
use bls12_381::hash_to_curve::*;
use bls12_381::*;
extern crate nam_bls12_381;
use nam_bls12_381::hash_to_curve::*;
use nam_bls12_381::*;

use criterion::{black_box, Criterion};

Expand Down
2 changes: 1 addition & 1 deletion tests/expand_msg.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use bls12_381::hash_to_curve::*;
use digest::generic_array::typenum::U32;
use hex_literal::hex;
use nam_bls12_381::hash_to_curve::*;
use sha2::{Sha256, Sha512};
use sha3::{Shake128, Shake256};

Expand Down
4 changes: 2 additions & 2 deletions tests/hash_to_curve_g1.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use bls12_381::{
use hex_literal::hex;
use nam_bls12_381::{
hash_to_curve::{ExpandMsgXmd, HashToCurve},
G1Affine, G1Projective,
};
use hex_literal::hex;
use sha2::Sha256;

struct TestCase {
Expand Down
4 changes: 2 additions & 2 deletions tests/hash_to_curve_g2.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use bls12_381::{
use hex_literal::hex;
use nam_bls12_381::{
hash_to_curve::{ExpandMsgXmd, HashToCurve},
G2Affine, G2Projective,
};
use hex_literal::hex;
use sha2::Sha256;

struct TestCase {
Expand Down
Loading