{% extends "base.html" %} {% block title %}Dependencies — Rust Analyzer{% endblock %} {% block topbar_title %}Dependencies{% endblock %} {% block content %} {% if extern_crates %}
External Crates ({{ extern_crates|length }})
{% for r in extern_crates %}
{{ r.name }}
{% if r.alias %}
as {{ r.alias }}
{% endif %}
{% endfor %}
{% endif %}
Use Declarations ({{ crate_groups|length }} top-level crates)
{% for crate_name, paths in crate_groups.items() %}
{{ crate_name }} ({{ paths|length }} imports)
{% endfor %} {% if not crate_groups %}

No use declarations found

Run scan first to populate the database.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}