Copyright notices for The Rust Standard Library

This file describes the copyright and licensing information for the Rust Standard Library source code within The Rust Project git tree, and the third-party dependencies used when building the Rust Standard Library.

Table of Contents

In-tree files

The following licenses cover the in-tree source files that were used in this release:

{{ in_tree|safe }}

Out-of-tree dependencies

The following licenses cover the out-of-tree crates that were used in the Rust Standard Library in this release:

{% for (key, value) in dependencies %}

📦 {{key.name}}-{{key.version}}

URL: https://crates.io/crates/{{ key.name }}/{{ key.version }}

Authors: {{ value.authors|join(", ") }}

License: {{ value.license }}

{% let len = value.notices.len() %} {% if len > 0 %}

Notices: {% for (notice_name, notice_text) in value.notices %}

{{ notice_name }}
{{ notice_text }}
                
{% endfor %}

{% endif %} {% endfor %}