Merge pull request #80 from rust-bitcoin/2018-11-0.11.5

export `serde`, `rand` and `libc`; update version to 0.11.5
This commit is contained in:
Andrew Poelstra 2018-11-09 18:05:06 +00:00 committed by GitHub
commit ef9bd562df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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};