summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--front_end/src/urler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/front_end/src/urler.rs b/front_end/src/urler.rs
index 65f6821..8a1d13e 100644
--- a/front_end/src/urler.rs
+++ b/front_end/src/urler.rs
@@ -71,7 +71,7 @@ impl Urler {
pub fn reverse_deps(&self, origin: &Origin) -> Option<String> {
match origin {
Origin::CratesIo(lowercase_name) => Some(format!("/crates/{}/rev", encode(lowercase_name))),
- Origin::GitHub { package, .. } | Origin::GitLab { package, .. } => None,
+ Origin::GitHub { .. } | Origin::GitLab { .. } => None,
}
}