1pub fn is_git_url(uri: &str) -> bool { 2 uri.starts_with("git+https://") || uri.starts_with("git+http://") 3}