From 0bf580967481d49dd633f2c06e26664cc6bc698d Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Thu, 26 Mar 2015 11:53:49 -0500 Subject: [PATCH] Add time crate --- Cargo.toml | 1 + src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index cce5815..1c32f24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,4 +16,5 @@ git = "https://github.com/apoelstra/bitcoin-secp256k1-rs.git" [dependencies] rustc-serialize = "*" +time = "*" diff --git a/src/lib.rs b/src/lib.rs index 8ba4c43..d938b92 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,6 +47,7 @@ extern crate core; extern crate rand; extern crate rustc_serialize as serialize; extern crate test; +extern crate time; extern crate secp256k1; extern crate crypto;