rusty_flac 0.1.0

Pure-Rust FLAC encoder + decoder, no C, no unsafe-by-default deps. Encodes 17% and decodes 23% faster than FFmpeg while producing smaller files on every benchmarked content class; lossless and interoperable both directions.
Documentation
[package]
name = "rusty_flac"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "Apache-2.0"
repository = "https://github.com/Remade-With-Rust/rusty_flac"
homepage = "https://github.com/Remade-With-Rust/rusty_flac"
authors = ["Mata Network <https://www.mata.network>"]
description = "Pure-Rust FLAC encoder + decoder, no C, no unsafe-by-default deps. Encodes 17% and decodes 23% faster than FFmpeg while producing smaller files on every benchmarked content class; lossless and interoperable both directions."
readme = "README.md"
keywords = ["flac", "lossless", "audio", "encoder", "decoder"]
categories = ["multimedia", "multimedia::audio", "multimedia::encoding"]
include = [
    "/LICENSE",
    "/README.md",
    "/src/",
    "/examples/",
    "/tests/",
]

# NOTE: fields are direct (not workspace-inherited) so the standalone GitHub
# repo builds outside the remade_ffmpeg_rs workspace; same values either way.

[dependencies]
# none — pure Rust, self-contained.

[dev-dependencies]
# claxon is the independent decode oracle for the encoder's lossless gate.
claxon = "0.4"
# Project convention: every encoder-carrying bench/example runs under
# rusty_alloc (what ships) — a bench under the system allocator is not
# comparable.
rusty_alloc-api = "0.4"