panic on {Rust,Python}::make_dependency

This commit is contained in:
steven-omaha
2023-02-28 14:37:32 +01:00
parent e277899ad4
commit 9827fcc28f
2 changed files with 2 additions and 2 deletions
@@ -40,7 +40,7 @@ impl Backend for Python {
} }
fn make_dependency(&self, _packages: &[Package]) -> Result<ExitStatus> { fn make_dependency(&self, _packages: &[Package]) -> Result<ExitStatus> {
todo!() panic!("not supported by {}", BINARY)
} }
} }
@@ -41,7 +41,7 @@ impl Backend for Rust {
} }
fn make_dependency(&self, _: &[Package]) -> Result<ExitStatus> { fn make_dependency(&self, _: &[Package]) -> Result<ExitStatus> {
unreachable!("cargo does not have unmanaged packages") panic!("not supported by {}", BINARY)
} }
} }