aec3 0.1.8

An acoustic echo canceller written in rust based on the WebRTC aec3 project
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 = "aec3"
version = "0.1.8"
authors = ["Angelos-Ermis Mangos"]
build = false
exclude = ["tests/test_data/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An acoustic echo canceller written in rust based on the WebRTC aec3 project"
readme = "README.md"
license = "MIT OR BSD-3-Clause"
repository = "https://github.com/RubyBit/aec3-rs"

[features]
diagnostics = [
    "dep:postcard",
    "dep:serde",
    "dep:hound",
]

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

[[bin]]
name = "parse-diagnostics"
path = "tools/parse_diagnostics.rs"
required-features = ["diagnostics"]

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

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

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

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

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

[dependencies.crossbeam-channel]
version = "0.5.15"

[dependencies.hound]
version = "3"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.num-complex]
version = "0.4.6"

[dependencies.postcard]
version = "1.1.3"
features = ["alloc"]
optional = true

[dependencies.rustfft]
version = "6.4.1"

[dependencies.serde]
version = "1.0.219"
features = ["derive"]
optional = true

[dev-dependencies.anyhow]
version = "1.0.100"

[dev-dependencies.ctrlc]
version = "3"