export `serde`, `rand` and `libc`; update version to 0.11.5

This commit is contained in:
Andrew Poelstra 2018-11-07 20:18:09 +00:00
parent ca08c4f338
commit 8986aa3d71
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "secp256k1"
version = "0.11.4"
version = "0.11.5"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
license = "CC0-1.0"

View File

@ -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};