diff --git a/Cargo.toml b/Cargo.toml index 1307a69e..18df9009 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,16 +5,17 @@ members = [ "neothesia", "neothesia-cli", "neothesia-core", + "neothesia-pipelines", "midi-file", "midi-io", ] -default-members = ["neothesia"] resolver = "2" +default-members = ["neothesia"] + [workspace.dependencies] wgpu = "0.17.1" -glyphon = { git = "https://github.com/grovesNL/glyphon.git", rev = "20f0f8fa80e0d0df4c63634ce9176fa489546ca9" } log = "0.4" bytemuck = { version = "1.5", features = ["derive"] } env_logger = "0.10" diff --git a/neothesia-core/src/utils/resources.rs b/neothesia-core/src/utils/resources.rs index e4170bf4..06788045 100644 --- a/neothesia-core/src/utils/resources.rs +++ b/neothesia-core/src/utils/resources.rs @@ -1,5 +1,6 @@ -use std::{env, path::PathBuf}; +use std::{path::PathBuf}; //"env" was imported previously +/* fn home() -> Option { env::var_os("HOME") .and_then(|h| if h.is_empty() { None } else { Some(h) }) @@ -13,6 +14,7 @@ fn xdg_config() -> Option { .map(|p| p.join("neothesia")) .or_else(|| home().map(|h| h.join(".config").join("neothesia"))) } +*/ pub fn default_sf2() -> Option { #[cfg(all(target_family = "unix", not(target_os = "macos")))]