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

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shamatar committed Apr 23, 2020
1 parent cbe23cc commit 8a96585
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://github.com/matter-labs/bellman"
license = "MIT/Apache-2.0"
name = "bellman_ce"
repository = "https://github.com/matter-labs/bellman"
version = "0.3.3"
version = "0.3.4"
edition = "2018"

[lib]
Expand All @@ -18,7 +18,7 @@ bit-vec = "0.6"
cfg-if = "0.1"

#pairing = {package = "pairing_ce", path = "../pairing" }
pairing = {package = "pairing_ce", version = "0.20" }
pairing = {package = "pairing_ce", version = "0.21" }
byteorder = "1"

futures= {package = "futures", version = "0.3", default_features = false, features = ["executor"]}
Expand Down
4 changes: 2 additions & 2 deletions src/tests/dummy_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::num::Wrapping;

const MODULUS_R: Wrapping<u32> = Wrapping(64513);

#[derive(Copy, Clone, Debug, PartialEq, Eq)]
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub struct Fr(Wrapping<u32>);

impl fmt::Display for Fr {
Expand Down Expand Up @@ -160,7 +160,7 @@ impl SqrtField for Fr {
}
}

#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
pub struct FrRepr([u64; 1]);

impl Ord for FrRepr {
Expand Down

0 comments on commit 8a96585

Please sign in to comment.