This commit is contained in:
2025-06-21 14:34:44 +02:00
parent 7b7ebb8c0e
commit 470089ae5b
15 changed files with 334 additions and 27 deletions

View File

@@ -4,21 +4,21 @@ version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive", "env", "string"] }
dirs = "5"
hound = "3.5"
jack = "0.13"
kanal = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simple_logger = "5"
wmidi = "4"
bytes.workspace = true
clap.workspace = true
futures.workspace = true
jack.workspace = true
kanal.workspace = true
log.workspace = true
osc.workspace = true
rosc.workspace = true
thiserror.workspace = true
tokio-util.workspace = true
tokio.workspace = true
tokio-util.workspace = true
wmidi.workspace = true

View File

@@ -26,11 +26,8 @@ impl Args {
}
fn default_config_path() -> String {
/*
let mut path = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
path.push(".fcb_looper");
path.push("state.json");
path.to_string_lossy().to_string()
*/
"../config".to_string()
}