From 8986aa3d71bf0122eb8405bd2d3fc17de62b4e45 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 7 Nov 2018 20:18:09 +0000 Subject: [PATCH] export `serde`, `rand` and `libc`; update version to 0.11.5 --- Cargo.toml | 2 +- src/lib.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ddc03a9..a6a33f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "secp256k1" -version = "0.11.4" +version = "0.11.5" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra " ] license = "CC0-1.0" diff --git a/src/lib.rs b/src/lib.rs index 2e62425..5de10e7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -135,11 +135,11 @@ #![cfg_attr(all(test, feature = "unstable"), feature(test))] #[cfg(all(test, feature = "unstable"))] extern crate test; -#[cfg(any(test, feature = "rand"))] extern crate rand; -#[cfg(feature = "serde")] extern crate serde; +#[cfg(any(test, feature = "rand"))] pub extern crate rand; +#[cfg(feature = "serde")] pub extern crate serde; #[cfg(all(test, feature = "serde"))] extern crate serde_test; -extern crate libc; +pub extern crate libc; use libc::size_t; use std::{error, fmt, ops, ptr, str};