rusty_jpeg 0.2.1

Pure-Rust JPEG/MJPEG decoder + encoder, no C/FFI. Baseline and progressive DCT, planar YUV in/out, AVX2 FDCT/quantize and a two-block AVX2 IDCT. Trellis quantization, box-averaged chroma, fuzz-tested. Encodes 1.19x faster than FFmpeg at matched output size; decodes ~1.04x faster.
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_jpeg"
version = "0.2.1"
authors = ["Mata Network <https://www.mata.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust JPEG/MJPEG decoder + encoder, no C/FFI. Baseline and progressive DCT, planar YUV in/out, AVX2 FDCT/quantize and a two-block AVX2 IDCT. Trellis quantization, box-averaged chroma, fuzz-tested. Encodes 1.19x faster than FFmpeg at matched output size; decodes ~1.04x faster."
homepage = "https://github.com/Remade-With-Rust/rusty_jpeg"
readme = "README.md"
keywords = [
    "jpeg",
    "mjpeg",
    "image",
    "decoder",
    "encoder",
]
categories = [
    "multimedia::images",
    "multimedia::encoding",
]
license = "(MIT OR Apache-2.0) AND IJG"
repository = "https://github.com/Remade-With-Rust/rusty_jpeg"

[features]
benchmark = []
counters = []
default = [
    "std",
    "simd",
]
nightly_aarch64_neon = []
platform_independent = []
profile = []
rayon = ["dep:rayon"]
simd = ["std"]
std = []

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

[[example]]
name = "decode_bench"
path = "examples/decode_bench.rs"

[[example]]
name = "entropy_probe"
path = "examples/entropy_probe.rs"

[[example]]
name = "fuzzprobe"
path = "examples/fuzzprobe.rs"

[[example]]
name = "jpegquality"
path = "examples/jpegquality.rs"

[[example]]
name = "make_fixture"
path = "examples/make_fixture.rs"

[[example]]
name = "scanmode"
path = "examples/scanmode.rs"

[[test]]
name = "planar_decode"
path = "tests/planar_decode.rs"

[[test]]
name = "profile_jpeg"
path = "tests/profile_jpeg.rs"

[[test]]
name = "progressive"
path = "tests/progressive.rs"

[[test]]
name = "robustness"
path = "tests/robustness.rs"

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