shravan 1.1.0

shravan — Audio codecs: WAV, FLAC, AIFF, Ogg/Opus, AAC, ALAC, MP3, PCM conversion, and resampling
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 = "2024"
rust-version = "1.89"
name = "shravan"
version = "1.1.0"
build = false
exclude = [
    ".claude/",
    ".github/",
    "docs/",
    "scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "shravan — Audio codecs: WAV, FLAC, AIFF, Ogg/Opus, AAC, ALAC, MP3, PCM conversion, and resampling"
homepage = "https://github.com/MacCracken/shravan"
documentation = "https://docs.rs/shravan"
readme = "README.md"
keywords = [
    "audio",
    "codec",
    "wav",
    "flac",
    "aac",
]
categories = [
    "multimedia::audio",
    "encoding",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/shravan"

[features]
aac = [
    "std",
    "dep:symphonia-core",
    "dep:symphonia-codec-aac",
]
aiff = []
alac = []
default = [
    "std",
    "wav",
    "flac",
    "pcm",
]
dither = []
flac = []
full = [
    "std",
    "wav",
    "flac",
    "pcm",
    "resample",
    "tag",
    "ogg",
    "aiff",
    "mp3",
    "opus",
    "aac",
    "alac",
    "simd",
    "dither",
    "streaming",
    "logging",
]
logging = ["dep:tracing"]
mp3 = []
ogg = []
opus = ["ogg"]
pcm = []
resample = []
simd = ["std"]
std = [
    "serde/std",
    "thiserror/std",
]
streaming = ["std"]
tag = []
wav = []

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

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

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

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

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.libm]
version = "0.2"

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.symphonia-codec-aac]
version = "0.5.5"
optional = true

[dependencies.symphonia-core]
version = "0.5.5"
optional = true

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tracing]
version = "0.1"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.serde_json]
version = "1"