Merge pull request #10 from ebfull/group-sync

Make `Group` sync
This commit is contained in:
ebfull 2016-09-14 14:53:41 -06:00 committed by GitHub
commit a8c01aba09
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "bn"
version = "0.2.2"
version = "0.2.3"
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
description = "Pairing cryptography with the Barreto-Naehrig curve"
keywords = ["pairing","crypto","cryptography"]

View File

@ -12,7 +12,7 @@ Add the `bn` crate to your dependencies in `Cargo.toml`...
```toml
[dependencies]
bn = "0.2.2"
bn = "0.2.3"
```
...and add an `extern crate` declaration to your crate root:

View File

@ -55,6 +55,7 @@ pub trait Group:
rustc_serialize::Decodable +
'static +
Send +
Sync +
Copy +
Clone +
PartialEq +