rustic_audio_tool 0.0.1

Voice Audio Recording, Processing, and Playback
Documentation
[package]
name = "rustic_audio_tool"
version = "0.0.1"
authors = ["Brett Alexander Preston"]
description = "Voice Audio Recording, Processing, and Playback"
license = "AGPL-3.0-only"
repository = "https://github.com/brettpreston/Rustic_Audio/tree/main/Rust_Audio_Library"
readme = "readme.md"
keywords = ["DSP", "voice", "record", "audio", "clean"]
categories = ["multimedia::audio"]
edition = "2021"

[dependencies]
# Cross-Platform Audio Library
cpal = "0.15.2"

# Reading and writing WAV audio files
hound = "3.5.1"

# Fast Fourier Transform
rustfft = "6.1.0"

# optimized FFT operations for real-valued signals
realfft = "3.3.0"

# used for encoding audio into the Opus format 
audiopus = "0.3.0-rc.0"

# reading and writing Ogg container files.
ogg = "0.8.0"

# used for decoding Opus audio during playback
opus = "0.3.0"

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