From 0bd9d59e12566e6f18905fb6e10533e0ec872526 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Thu, 5 Dec 2024 06:26:03 -0500 Subject: [PATCH] chore: util::expand_tilde is not used when building qsvlite --- src/util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.rs b/src/util.rs index 48311e6d3..c48700f17 100644 --- a/src/util.rs +++ b/src/util.rs @@ -2258,6 +2258,7 @@ pub fn optimal_batch_size(rconfig: &Config, batch_size: usize, num_jobs: usize) /// Expand the tilde (`~`) from within the provided path. /// copied from https://github.com/splurf/simple-expand-tilde /// as it was just a small wrapper around simple_home_dir +#[cfg(not(feature = "lite"))] pub fn expand_tilde(path: impl AsRef) -> Option { let p = path.as_ref();