diff --git a/src/post_process/relink.rs b/src/post_process/relink.rs index aa84fa3f..3a35fb79 100644 --- a/src/post_process/relink.rs +++ b/src/post_process/relink.rs @@ -76,6 +76,7 @@ pub trait Relinker { Self: Sized; /// Returns the shared libraries. + #[allow(dead_code)] fn libraries(&self) -> HashSet; /// Find libraries in the shared library and resolve them by taking into account the rpaths. diff --git a/src/script.rs b/src/script.rs index f44de618..ebd1f2b5 100644 --- a/src/script.rs +++ b/src/script.rs @@ -143,6 +143,7 @@ trait Interpreter { async fn run(&self, args: ExecutionArgs) -> Result<(), std::io::Error>; + #[allow(dead_code)] async fn find_interpreter( &self, build_prefix: Option<&PathBuf>,