audio-engine-core 0.1.0

Reusable decoder, DSP, loudness, resampling, and streaming pipeline primitives
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 = "2021"
name = "audio-engine-core"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable decoder, DSP, loudness, resampling, and streaming pipeline primitives"
homepage = "https://github.com/Asaiuta/audio-engine-core"
documentation = "https://docs.rs/audio-engine-core"
readme = "README.md"
keywords = [
    "audio",
    "dsp",
    "decoder",
    "resampler",
    "loudness",
]
categories = [
    "multimedia::audio",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Asaiuta/audio-engine-core"

[package.metadata.vcpkg]
dependencies = ["soxr"]

[features]
default = [
    "http",
    "loudness-db",
]
http = ["dep:reqwest"]
loudness-db = ["dep:rusqlite"]

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

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

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

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

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

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

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

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

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

[dependencies.arc-swap]
version = "1.7"

[dependencies.atomic_float]
version = "1.0"

[dependencies.ebur128]
version = "0.1"

[dependencies.log]
version = "0.4"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"

[dependencies.reqwest]
version = "0.12"
features = [
    "blocking",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
optional = true

[dependencies.rustfft]
version = "6.2"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.soxr]
version = "0.6.0"

[dependencies.symphonia]
version = "0.5"
features = ["all"]

[dependencies.thiserror]
version = "2"

[dev-dependencies.assert_no_alloc]
version = "1.1"

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

[build-dependencies.pkg-config]
version = "0.3"

[build-dependencies.vcpkg]
version = "0.2"