Add ff and group crates to Cargo workspace

This commit is contained in:
Jack Grigg 2019-01-06 09:50:07 +00:00
parent 3d41ee5aba
commit 01e7212663
2 changed files with 2 additions and 3 deletions

View File

@ -17,8 +17,8 @@ repository = "https://github.com/ebfull/pairing"
[dependencies]
rand = "0.4"
byteorder = "1"
ff = { version = "0.4", features = ["derive"] }
group = "0.1"
ff = { path = "../ff", features = ["derive"] }
group = { path = "../group" }
[features]
unstable-features = ["expose-arith"]

View File

@ -12,7 +12,6 @@
#![deny(missing_debug_implementations)]
extern crate byteorder;
#[macro_use]
extern crate ff;
extern crate group;
extern crate rand;