slint/api/cpp/docs/thirdparty.hbs
Simon Hausmann a7f965c941 Include list of third-party licenses in the C++ docs
This isn't very pretty, but I think it does the job.

cc #6634
2024-12-16 21:54:37 +01:00

29 lines
484 B
Handlebars

# Third Party Licenses
This page lists the licenses of the dependencies used by Slint.
## Overview of licenses
{{#each overview}}
- [{{name}}](#{{id}}) ({{count}})
{{/each}}
## All License Text
{{#each licenses}}
### <a id="{{id}}"></a> {{name}}
#### Used by:
{{#each used_by}}
- [{{crate.name}} {{crate.version}}]({{#if crate.repository}} {{crate.repository}} {{else}}
https://crates.io/crates/{{crate.name}} {{/if}})
{{/each}}
#### License Text
```
{{text}}
```
{{/each}}