forked from GraphiteEditor/Graphite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.hbs
More file actions
22 lines (22 loc) · 517 Bytes
/
about.hbs
File metadata and controls
22 lines (22 loc) · 517 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{!
Be careful to prevent auto-formatting from breaking this file's indentation
Replace this file with JSON output once this is resolved: https://github.com/EmbarkStudios/cargo-about/issues/73
}}
GENERATED_BY_CARGO_ABOUT: [
{{#each licenses}}
{
licenseName: `{{name}}`,
licenseText: `{{text}}`,
packages: [
{{#each used_by}}
{
name: `{{crate.name}}`,
version: `{{crate.version}}`,
author: `{{crate.authors}}`,
repository: `{{crate.repository}}`,
},
{{/each}}
],
},
{{/each}}
]