image_dct 0.1.1

Simple Rust implementation for getting the DCT coefficients of an image
Documentation
[package]
name = "image_dct"
version = "0.1.1"
authors = ["Tylan Smith https://github.com/Ty1an"]
description = "Simple Rust implementation for getting the DCT coefficients of an image"
readme = "README.md"
repository = "https://github.com/Ty1an/image_dct"
license = "Apache-2.0"
keywords = ["dct", "images", "processing"]
exclude = ["images/", "src/main.rs"]
edition = "2021"

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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
image = "0.24.6"
rustdct = "0.7.1"