diff --git a/Cargo.toml b/Cargo.toml index 68971c3d8..3446f46ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/src/lib.rs b/src/lib.rs index adabcce1f..686938ff3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,6 @@ #![deny(missing_debug_implementations)] extern crate byteorder; -#[macro_use] extern crate ff; extern crate group; extern crate rand;