diff --git a/radicle-httpd/src/api/v1/projects.rs b/radicle-httpd/src/api/v1/projects.rs index 5f351946..c8b24f9d 100644 --- a/radicle-httpd/src/api/v1/projects.rs +++ b/radicle-httpd/src/api/v1/projects.rs @@ -1,4 +1,4 @@ -use std::collections::BTreeSet; +use std::collections::HashSet; use axum::handler::Handler; use axum::http::{header, HeaderValue}; @@ -426,7 +426,7 @@ fn stats(repo: &R) -> Result { None } }) - .collect::>(); + .collect::>(); Ok(Stats { branches,