changing secp import to tag, and consolidating Cargo.toml import (#220)

This commit is contained in:
Yeastplume
2017-10-31 23:20:55 +00:00
committed by GitHub
parent 508349e799
commit 05d22cb632
41 changed files with 57 additions and 65 deletions
-1
View File
@@ -10,7 +10,6 @@ grin_chain = { path = "../chain" }
grin_pool = { path = "../pool" }
grin_store = { path = "../store" }
grin_util = { path = "../util" }
secp256k1zkp = { git = "https://github.com/mimblewimble/rust-secp256k1-zkp" }
hyper = "~0.10.6"
slog = { version = "^2.0.12", features = ["max_level_trace", "release_max_level_trace"] }
iron = "~0.5.1"
+1 -1
View File
@@ -24,7 +24,7 @@ use serde_json;
use chain;
use rest::*;
use types::*;
use secp::pedersen::Commitment;
use util::secp::pedersen::Commitment;
use util;
use util::LOGGER;
-1
View File
@@ -17,7 +17,6 @@ extern crate grin_chain as chain;
extern crate grin_pool as pool;
extern crate grin_store as store;
extern crate grin_util as util;
extern crate secp256k1zkp as secp;
extern crate hyper;
#[macro_use]
+1 -1
View File
@@ -16,7 +16,7 @@ use std::sync::Arc;
use core::{core, global};
use core::core::hash::Hashed;
use chain;
use secp::pedersen;
use util::secp::pedersen;
use rest::*;
use util;