resize 0.8.9

Simple image resampling library in pure Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "resize"
version = "0.8.9"
authors = [
    "Kornel <kornel@geekhood.net>",
    "Kagami Hiiragi <kagami@genshiken.org>",
]
build = false
include = [
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "src/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple image resampling library in pure Rust."
homepage = "https://github.com/PistonDevelopers/resize"
documentation = "https://docs.rs/resize"
readme = "README.md"
keywords = [
    "resize",
    "scale",
    "resample",
    "image",
    "graphics",
]
categories = [
    "graphics",
    "multimedia::images",
    "no-std",
]
license = "MIT"
repository = "https://github.com/PistonDevelopers/resize.git"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
    "--cfg",
    "docsrs",
    "--generate-link-to-definition",
]

[badges.maintenance]
status = "actively-developed"

[features]
default = [
    "std",
    "rayon",
]
no_std = [
    "dep:libm",
    "dep:hashbrown",
]
rayon = [
    "dep:rayon",
    "std",
]
std = []

[lib]
name = "resize"
path = "src/lib.rs"

[dependencies.hashbrown]
version = "0.15"
optional = true

[dependencies.libm]
version = "0.2.16"
optional = true

[dependencies.rayon]
version = "1.11.0"
optional = true

[dependencies.rgb]
version = "0.8.52"
default-features = false

[dev-dependencies.png]
version = "0.17.14"

[dev-dependencies.rgb]
version = "0.8.52"
features = ["bytemuck"]
default-features = false