[package]
edition = "2021"
rust-version = "1.85"
name = "rusty_jpeg"
version = "0.1.0"
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, real quality and chroma-subsampling control."
homepage = "https://github.com/Remade-With-Rust/remade_ffmpeg_rs"
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/remade_ffmpeg_rs"
[features]
benchmark = []
default = [
"std",
"simd",
"rayon",
]
nightly_aarch64_neon = []
platform_independent = []
profile = []
rayon = ["dep:rayon"]
simd = ["std"]
std = []
[lib]
name = "rusty_jpeg"
path = "src/lib.rs"
[dependencies.rayon]
version = "1.5.1"
optional = true