From 005b7da63f29df5a3edaa140397bd79355d25566 Mon Sep 17 00:00:00 2001 From: daniellga Date: Fri, 14 Jun 2024 14:28:19 -0300 Subject: [PATCH] update savvy and implement try_seek --- r-harmonium/src/rust/Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/r-harmonium/src/rust/Cargo.toml b/r-harmonium/src/rust/Cargo.toml index 561f894..fdff09c 100644 --- a/r-harmonium/src/rust/Cargo.toml +++ b/r-harmonium/src/rust/Cargo.toml @@ -17,16 +17,16 @@ panic = "unwind" # otherwise savvy crashes R when panic. # prevents package from thinking it's in the workspace. [dependencies] -harmonium-core = { path = "../../../harmonium-core" } -harmonium-io = { path = "../../../harmonium-io" } -harmonium-resample = { path = "../../../harmonium-resample" } -harmonium-fft = { path = "../../../harmonium-fft" } -harmonium-window = { path = "../../../harmonium-window" } -#harmonium-core = { git = "https://github.com/daniellga/harmonium.git" } -#harmonium-io = { git = "https://github.com/daniellga/harmonium.git", features = ["all", "opt-simd"] } -#harmonium-resample = { git = "https://github.com/daniellga/harmonium.git" } -#harmonium-fft = { git = "https://github.com/daniellga/harmonium.git" } -#harmonium-window = { git = "https://github.com/daniellga/harmonium.git" } +#harmonium-core = { path = "../../../harmonium-core" } +#harmonium-io = { path = "../../../harmonium-io" } +#harmonium-resample = { path = "../../../harmonium-resample" } +#harmonium-fft = { path = "../../../harmonium-fft" } +#harmonium-window = { path = "../../../harmonium-window" } +harmonium-core = { git = "https://github.com/daniellga/harmonium.git" } +harmonium-io = { git = "https://github.com/daniellga/harmonium.git", features = ["all", "opt-simd"] } +harmonium-resample = { git = "https://github.com/daniellga/harmonium.git" } +harmonium-fft = { git = "https://github.com/daniellga/harmonium.git" } +harmonium-window = { git = "https://github.com/daniellga/harmonium.git" } rubato = "0.15.0" ndarray = "0.15.6" num-complex = { version = "0.4" }