-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.hbs
27 lines (20 loc) · 1.02 KB
/
about.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{!-- SPDX-FileCopyrightText: 2024 Philipp Micheel <bbx0+borgreport@bitdevs.de> --}}
{{!-- SPDX-License-Identifier: GPL-3.0-or-later --}}
{{!-- REUSE-IgnoreStart --}}
<!-- SPDX-FileCopyrightText: NONE -->
<!-- SPDX-License-Identifier: CC0-1.0 -->
{{!-- REUSE-IgnoreEnd --}}
# Third-Party Licenses
This list shows the licenses for third-party libraries ("Rust crates") that `borgreport` depends on. The list is grouped by identical licenses used by different Rust crates.
The `borgreport` source code does not bundle any third-party libraries, but third-party libraries are statically linked into the binary distribution.
Generated by cargo-about <https://github.com/EmbarkStudios/cargo-about>
{{#each licenses}}
## {{@index}} - {{id}}: {{name}}
Used by:
{{#each used_by}}
- [{{crate.name}}]({{#if crate.repository}}{{crate.repository}}{{else}}https://crates.io/crates/{{crate.name}}{{/if}}){{!-- Note: {{crate.version}} is not shown to reduce changes to the file when `cargo update` is run. --}}
{{/each}}
```text
{{{text}}}
```
{{/each}}