mirror of
https://github.com/signalapp/libsignal.git
synced 2026-04-26 01:35:22 +02:00
These change *every* release but aren't actually adding value in the first place. (It would be kind of nice to omit them entirely, but cargo-about's model is Licenses -> Crates rather than Crates -> License, and there may or may not be other crates using AGPL exactly the same way.)
73 lines
2.3 KiB
Handlebars
73 lines
2.3 KiB
Handlebars
<html>
|
|
|
|
<head>
|
|
<title>libsignal Acknowledgments</title>
|
|
<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>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<div class="intro">
|
|
<h1>Third Party Licenses</h1>
|
|
<p>This page lists the licenses of the projects used in libsignal. Listings marked "synthesized" did not have an appropriate standalone license file in the crate.</p>
|
|
<p>We also manually refer to <a href="https://csrc.nist.gov/csrc/media/Projects/post-quantum-cryptography/documents/selected-algos-2022/nist-pqc-license-summary-and-excerpts.pdf">NIST's PDF</a> for using Kyber patents.</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}}{{#unless source_path}} (synthesized){{/unless}}</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}}{{#if crate.source}} {{crate.version}}{{/if}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
<pre class="license-text">{{text}}</pre>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|