rusty_png 0.3.2

Pure-Rust PNG decoder + encoder, no C/FFI. Performance fork of image-rs/image-png.
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 = "2021"
rust-version = "1.85"
name = "rusty_png"
version = "0.3.2"
authors = ["Mata Network <https://www.mata.network>"]
build = false
include = [
    "/LICENSE-MIT",
    "/LICENSE-APACHE",
    "/NOTICE.md",
    "/README.md",
    "/WHYS.md",
    "/UPSTREAM-CHANGES.md",
    "/UPSTREAM-README.md",
    "/src/",
    "/benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust PNG decoder + encoder, no C/FFI. Performance fork of image-rs/image-png."
homepage = "https://github.com/Remade-With-Rust/rusty_png"
readme = "README.md"
keywords = [
    "png",
    "image",
    "decoder",
    "encoder",
]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/rusty_png"

[features]
benchmarks = []
default = ["zlib-rs"]
parallel = []
profile = []
unstable = ["crc32fast/nightly"]
zlib-rs = ["flate2/zlib-rs"]

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

[[bench]]
name = "expand_paletted"
path = "benches/expand_paletted.rs"
harness = false
required-features = ["benchmarks"]

[[bench]]
name = "unfilter"
path = "benches/unfilter.rs"
harness = false
required-features = ["benchmarks"]

[dependencies.bitflags]
version = "1.0"

[dependencies.crc32fast]
version = "1.2.0"

[dependencies.fdeflate]
version = "0.3.3"

[dependencies.flate2]
version = "1.0.11"

[dependencies.miniz_oxide]
version = "0.8"
features = ["simd"]

[dependencies.simd-adler32]
version = "0.3"

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.byteorder]
version = "1.5.0"

[dev-dependencies.criterion]
version = "0.4.0"

[dev-dependencies.glob]
version = "0.3"

[dev-dependencies.rand]
version = "0.8.4"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]