simple_decoder 0.1.2

The ULTIMATE lightest audio decoding in Rust: Symphonia + Rubato under the hood.
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"
name = "simple_decoder"
version = "0.1.2"
authors = ["Konstantin Gorshkov <kostya_gorshkov_06@vk.com>"]
build = false
exclude = ["tests/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The ULTIMATE lightest audio decoding in Rust: Symphonia + Rubato under the hood."
readme = "README.md"
keywords = [
    "audio",
    "decoder",
    "pcm",
    "resample",
    "symphonia",
]
categories = [
    "multimedia::audio",
    "rendering",
]
license = "MIT"
repository = "https://github.com/kostya2023/simple_decoder"

[features]
aac = ["symphonia/aac"]
default = ["full"]
flac = ["symphonia/flac"]
full = [
    "aac",
    "flac",
    "mp3",
    "oggopus",
    "oggvorbis",
    "wav",
    "resample",
]
mp3 = ["symphonia/mp3"]
oggopus = [
    "symphonia/ogg",
    "dep:opus",
]
oggvorbis = [
    "symphonia/ogg",
    "symphonia/vorbis",
]
resample = ["dep:rubato"]
wav = [
    "symphonia/wav",
    "symphonia/pcm",
]

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

[dependencies.audioadapter-buffers]
version = "2.0.0"

[dependencies.opus]
version = "0.3.1"
optional = true

[dependencies.rubato]
version = "1.0.1"
optional = true

[dependencies.symphonia]
version = "0.5.5"
features = ["opt-simd"]

[dependencies.thiserror]
version = "2.0.18"