chore: drop libsamplerate helper feature (#144)

This commit is contained in:
Alexander Tesfamichael 2025-09-28 20:01:30 +02:00 committed by GitHub
parent 3bf4ac819e
commit 13910fd15c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 42 deletions

41
src-tauri/Cargo.lock generated
View file

@ -1074,15 +1074,6 @@ dependencies = [
"syn 2.0.96", "syn 2.0.96",
] ]
[[package]]
name = "dasp_frame"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2a3937f5fe2135702897535c8d4a5553f8b116f76c1529088797f2eee7c5cd6"
dependencies = [
"dasp_sample",
]
[[package]] [[package]]
name = "dasp_sample" name = "dasp_sample"
version = "0.11.0" version = "0.11.0"
@ -1296,18 +1287,6 @@ version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
[[package]]
name = "ebur128"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e227cc62d64d6fe01abbef48134b9c1f17d470cef1e7a56337ad05b1f81df7f9"
dependencies = [
"bitflags 1.3.2",
"dasp_frame",
"dasp_sample",
"smallvec 1.13.2",
]
[[package]] [[package]]
name = "either" name = "either"
version = "1.13.0" version = "1.13.0"
@ -2985,15 +2964,6 @@ dependencies = [
"redox_syscall", "redox_syscall",
] ]
[[package]]
name = "libsamplerate-sys"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28853b399f78f8281cd88d333b54a63170c4275f6faea66726a2bea5cca72e0d"
dependencies = [
"cmake",
]
[[package]] [[package]]
name = "libsqlite3-sys" name = "libsqlite3-sys"
version = "0.30.1" version = "0.30.1"
@ -4933,15 +4903,6 @@ dependencies = [
"winapi-util", "winapi-util",
] ]
[[package]]
name = "samplerate"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e032b2b24715c4f982f483ea3abdb3c9ba444d9f63e87b2843d6f998f5ba2698"
dependencies = [
"libsamplerate-sys",
]
[[package]] [[package]]
name = "schannel" name = "schannel"
version = "0.1.27" version = "0.1.27"
@ -6985,12 +6946,10 @@ name = "vad-rs"
version = "0.1.5" version = "0.1.5"
source = "git+https://github.com/cjpais/vad-rs#88b3a01f72f83a5d80d0e7ea9bacfc0d897fd03f" source = "git+https://github.com/cjpais/vad-rs#88b3a01f72f83a5d80d0e7ea9bacfc0d897fd03f"
dependencies = [ dependencies = [
"ebur128",
"eyre", "eyre",
"ndarray", "ndarray",
"ort", "ort",
"ringbuffer", "ringbuffer",
"samplerate",
] ]
[[package]] [[package]]

View file

@ -47,7 +47,7 @@ hound = "3.5.1"
env_logger = "0.11.6" env_logger = "0.11.6"
log = "0.4.25" log = "0.4.25"
tokio = "1.43.0" tokio = "1.43.0"
vad-rs = { git = "https://github.com/cjpais/vad-rs" } vad-rs = { git = "https://github.com/cjpais/vad-rs", default-features = false }
tauri-plugin-store = "2" tauri-plugin-store = "2"
tauri-plugin-os = "2" tauri-plugin-os = "2"
enigo = "0.5.0" enigo = "0.5.0"