The audio crate will use the denoise crate to remove background noises from microphone input. We intent to contribute this to rodio. Before that can happen a PR needs to land in candle. Until then this lives here. Uses a candle fork which removes the dependency on `protoc` and has the PR's mentioned above already applied. Release Notes: - N/A --------- Co-authored-by: Mikayla <mikayla@zed.dev>
22 lines
592 B
TOML
22 lines
592 B
TOML
[package]
|
|
name = "denoise"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
candle-core = { version = "0.9.1", git ="https://github.com/zed-industries/candle", branch = "9.1-patched" }
|
|
candle-onnx = { version = "0.9.1", git ="https://github.com/zed-industries/candle", branch = "9.1-patched" }
|
|
log.workspace = true
|
|
|
|
rodio = { workspace = true, features = ["wav_output"] }
|
|
|
|
rustfft = { version = "6.2.0", features = ["avx"] }
|
|
realfft = "3.4.0"
|
|
thiserror.workspace = true
|
|
workspace-hack.workspace = true
|