From 1dc7dc46a50002235465988841f09d9140a42c4b Mon Sep 17 00:00:00 2001 From: Nathan Fiedler Date: Thu, 17 Mar 2016 15:38:22 -0700 Subject: [PATCH] Specify libc 0.2 or higher as a dependency cargo test passes --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b2888..5b89580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.3] - 2016-03-17 +### Changed +- Allow libc version 0.2 or higher + ## [0.3.2] - 2016-02-10 ### Changed - Automatically generate `bindings.rs` using `rust-bindgen` via `build.rs` script. diff --git a/Cargo.toml b/Cargo.toml index 49f1a78..5a029f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magick_rust" -version = "0.3.2" +version = "0.3.3" authors = ["Nathan Fiedler "] description = "Selection of Rust bindings for the ImageMagick library." homepage = "https://github.com/nlfiedler/magick-rust" @@ -11,4 +11,4 @@ keywords = ["magickwand", "imagemagick"] build = "build.rs" [dependencies] -libc = "0.2.7" +libc = ">=0.2"