update deps and add build infra
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
🪞👃🪞 2025-04-28 00:57:02 +03:00
parent 07f6f82268
commit b165573e55
14 changed files with 159 additions and 56 deletions

View file

@ -23,12 +23,9 @@ fn main () -> Result<(), Box<dyn std::error::Error>> {
.search(std::env::current_dir()?)
.search(canonicalize(path.clone().parent().expect("invalid parent path"))?)
.search("/home/user/Lab/Cosmo/wineprefix/drive_c/windows/system32")
.load(true)
.unwrap_or_else(|e|panic!("failed to load: {e:?}"))
.resolve(true)
.unwrap_or_else(|e|panic!("failed to resolve: {e:?}"))
.relink()
.unwrap_or_else(|e|panic!("failed to relink: {e:?}"));
.load(true).unwrap_or_else(|e|panic!("failed to load: {e:?}"))
.resolve(true).unwrap_or_else(|e|panic!("failed to resolve: {e:?}"))
.relink().unwrap_or_else(|e|panic!("failed to relink: {e:?}"));
} else {
println!("Pass a path to a VST DLL");
}