Fiddle with crates, `cargo build` now succeeds :)

This commit is contained in:
Andrew Poelstra 2015-03-25 20:44:04 -05:00
parent d858d7f7e6
commit ec6aea7ca1
2 changed files with 5 additions and 3 deletions

View File

@ -14,4 +14,6 @@ git = "https://github.com/DaGenix/rust-crypto.git"
[dependencies]
rand = "*"
libc = "*"
rustc-serialize = "*"

View File

@ -26,7 +26,7 @@
#![crate_name = "secp256k1"]
// Keep this until 1.0 I guess; it's needed for `black_box` at least
#![allow(unstable)]
#![cfg_attr(test, feature(test))]
// Coding conventions
#![deny(non_upper_case_globals)]
@ -36,11 +36,11 @@
#![warn(missing_docs)]
extern crate crypto;
extern crate "rustc-serialize" as serialize;
#[cfg(test)] extern crate test;
extern crate libc;
extern crate rand;
extern crate serialize;
extern crate test;
use std::intrinsics::copy_nonoverlapping;
use std::io;