diff --git a/README.md b/README.md index a0769ca..1375101 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A somewhat safe Rust interface to the [ImageMagick](http://www.imagemagick.org/) Because this crate is generating bindings for a C/C++ library, there are several dependencies beyond simply having the latest Rust toolchain installed. * [Rust](https://www.rust-lang.org) stable -* [ImageMagick](https://imagemagick.org) (version 7.0.10-36 to 7.1.x) +* [ImageMagick](https://imagemagick.org) (version 7.1.1-26 or later) - Does _not_ work with ImageMagick **6.x** due to backward incompatible changes. - [FreeBSD](https://www.freebsd.org): `sudo pkg install ImageMagick7` - [Homebrew](http://brew.sh): `brew install imagemagick` diff --git a/build.rs b/build.rs index c011a23..e89ce67 100644 --- a/build.rs +++ b/build.rs @@ -23,7 +23,7 @@ use std::io::prelude::*; use std::path::{Path, PathBuf}; use std::process::Command; -const MIN_VERSION: &str = "7.0"; +const MIN_VERSION: &str = "7.1.1"; const MAX_VERSION: &str = "7.2"; #[cfg(windows)]