Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
prefer to re-expose ff in pairing to avoid dependency hell
Browse files Browse the repository at this point in the history
  • Loading branch information
shamatar committed Mar 4, 2019
1 parent 84b57df commit 443e40d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pairing"

# Remember to change version string in README.md.
version = "0.15.2"
version = "0.16.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
Expand All @@ -13,13 +13,13 @@ license = "MIT/Apache-2.0"

description = "Pairing-friendly elliptic curve library"
documentation = "https://docs.rs/pairing/"
homepage = "https://github.com/matterinc/pairing"
repository = "https://github.com/matterinc/pairing"
homepage = "https://github.com/matter-labs/pairing"
repository = "https://github.com/matter-labs/pairing"

[dependencies]
rand = "0.4"
byteorder = "1"
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"] }
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"], tag = "0.5"}
serde = "1.0.80"
serde_derive = "1.0.80"
serde_json = "1.0.33"
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ extern crate serde_derive;
#[cfg(test)]
pub mod tests;

pub use ff::*;

pub mod bls12_381;
pub mod bn256;

Expand Down

0 comments on commit 443e40d

Please sign in to comment.