From 01e7212663f24e69dbfb9089b6227ac6298c57fb Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sun, 6 Jan 2019 09:50:07 +0000 Subject: [PATCH] Add ff and group crates to Cargo workspace --- Cargo.toml | 4 ++-- src/lib.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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;