{{!--
cargo-about template. Renders THIRD-PARTY-LICENSES.md shipped
alongside every binary artefact so the Apache-2.0 ยง4(d) and ISC
attribution obligations of our transitive dependencies are
satisfied. Install paths per package format are documented in
docs/development/cutting-a-release.md.
--}}
# Third-party licenses
`git-remote-object-store` links against the Rust crates listed below.
Each crate retains its original copyright and license; the full text
of every referenced license appears after the crate list. This file
is generated by [`cargo-about`](https://github.com/EmbarkStudios/cargo-about)
from `about.toml` and `about.hbs` at release time.
The project itself is licensed under Apache-2.0; see the top-level
`LICENSE` file.
## Overview
{{#each overview}}
- **{{{name}}}** ({{count}} crate{{#if (gt count 1)}}s{{/if}})
{{/each}}
## Crates
{{#each licenses}}
### {{{name}}}
{{#each used_by}}
- [{{crate.name}} {{crate.version}}]({{#if crate.repository}}{{crate.repository}}{{else}}https://crates.io/crates/{{crate.name}}{{/if}})
{{/each}}
{{/each}}
## License texts
{{#each licenses}}
### {{{name}}}
```
{{{text}}}
```
{{/each}}