[package]
edition = "2024"
rust-version = "1.85"
name = "magick_rust"
version = "2.1.0"
authors = ["Nathan Fiedler <nathanfiedler@fastmail.fm>"]
build = "build.rs"
exclude = [
".github/*",
"docker/*",
"tests/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Selection of Rust bindings for the ImageMagick library."
homepage = "https://github.com/nlfiedler/magick-rust"
readme = "README.md"
keywords = [
"magickwand",
"imagemagick",
]
license = "Apache-2.0"
repository = "https://github.com/nlfiedler/magick-rust.git"
[features]
default = ["disable-hdri"]
disable-hdri = []
[lib]
name = "magick_rust"
path = "src/lib.rs"
[[example]]
name = "add-border"
path = "examples/add-border.rs"
[[example]]
name = "draw-shapes"
path = "examples/draw-shapes.rs"
[[example]]
name = "gif-frames"
path = "examples/gif-frames.rs"
[[example]]
name = "pdf-to-png"
path = "examples/pdf-to-png.rs"
[[example]]
name = "thumbnail-cat"
path = "examples/thumbnail-cat.rs"
[[example]]
name = "trim-blur-crop"
path = "examples/trim-blur-crop.rs"
[dependencies.libc]
version = "0.2"
[build-dependencies.bindgen]
version = "0.72.0"
[build-dependencies.pkg-config]
version = "0.3"
[lints.clippy.missing_safety_doc]
level = "allow"
priority = 0