ftracker-identifiers 0.0.1

Validated, no_std-first identifier types: CNPJ, ISIN, CFI, and ISO 3166-1 country codes.
Documentation
<html lang="en">

<head>
    <style>
        @media (prefers-color-scheme: dark) {
            body {
                background: #333;
                color: white;
            }

            a {
                color: skyblue;
            }
        }

        .container {
            font-family: sans-serif;
            max-width: 800px;
            margin: 0 auto;
        }

        .intro {
            text-align: center;
        }

        .licenses-list {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .license-used-by {
            margin-top: -10px;
        }

        .license-text {
            max-height: 200px;
            overflow-y: scroll;
            white-space: pre-wrap;
        }
    </style>
    <title>licenses</title>
</head>

<body>
<main class="container">
    <div class="intro">
        <h1>Third Party Licenses</h1>
        <p>This page lists the licenses of the projects used in cargo-about.</p>
    </div>

    <h2>Overview of licenses:</h2>
    <ul class="licenses-overview">
        {{#each overview}}
            <li><a href="#{{id}}">{{name}}</a> ({{count}})</li>
        {{/each}}
    </ul>

    <h2>All license text:</h2>
    <ul class="licenses-list">
        {{#each licenses}}
            <li class="license">
                <h3 id="{{id}}">{{name}}</h3>
                <h4>Used by:</h4>
                <ul class="license-used-by">
                    {{#each used_by}}
                        <li><a href="{{#if
                                crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}}">{{crate.name}} {{crate.version}}</a>
                        </li>
                    {{/each}}
                </ul>
                <pre class="license-text">{{text}}</pre>
            </li>
        {{/each}}
    </ul>
</main>
</body>

</html>