changing secp import to tag, and consolidating Cargo.toml import (#220)
This commit is contained in:
@@ -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
@@ -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;
|
||||
|
||||
|
||||
@@ -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
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user