Open patrickvonplaten opened 3 years ago
Resample example works fine to me.
Are you sure that you didn't forget the features attribute on dasp dependency in your cargo.toml
.
To help debug, you can compare your cargo.toml with mine.
[package]
name = "dasp"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "^1.0"
cpal = "^0.13"
dasp = {version = "^0.11", features= ["all"]}
hound = "^3.4"
find_folder = "0.3"
Hey,
thanks a lot for the nice library!
When trying to run the official resampling example - here, I'm getting some import errors.
Here the code:
which gives:
When run in
main.rs
.Do you know how to successfully fix it?