Add ff and group crates to Cargo workspace
This commit is contained in:
parent
3d41ee5aba
commit
01e7212663
|
@ -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"]
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#![deny(missing_debug_implementations)]
|
||||
|
||||
extern crate byteorder;
|
||||
#[macro_use]
|
||||
extern crate ff;
|
||||
extern crate group;
|
||||
extern crate rand;
|
||||
|
|
Loading…
Reference in New Issue