add license tree

This commit is contained in:
2026-05-25 15:53:02 +02:00
parent 8532039199
commit 0fa4bda949
19 changed files with 21650 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
accepted = [
"GPL-3.0",
"Apache-2.0",
"MIT-0",
"MPL-2.0",
"MIT",
"ISC",
"BSD-3-Clause",
"Unicode-3.0",
"CDLA-Permissive-2.0"
]
[ollama-rs.clarify]
license = "MIT"
files = [{path = "LICENSE.md", checksum = "e3de1bae29d6b97ac7f510d2378de7dfafd56c4f1c6fde2c8d3a6b73e9c10b6b"}]
[ollama-rs-macros.clarify]
license = "MIT"
files = [{path = "LICENSE.md", checksum = "e3de1bae29d6b97ac7f510d2378de7dfafd56c4f1c6fde2c8d3a6b73e9c10b6b"}]
+1 -1
View File
@@ -8,7 +8,7 @@ version = "1.0.0"
authors = [
{ name = 'Milan', email = 'milan@mboemer.de' }
]
license = "GPL-3"
license = "GPL-3.0"
requires-python = '>=3.12'
+1 -1
View File
@@ -2,7 +2,7 @@
name = "own_assist_cli"
version = "0.3.0"
edition = "2024"
license = "GPL-3"
license = "GPL-3.0"
[dependencies]
ollama-rs = { version = "0.3.4", features = ["macros", "headers"] }
+70
View File
@@ -0,0 +1,70 @@
<html>
<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>
</head>
<body>
<main class="container">
<div class="intro">
<h1>Third Party Licenses</h1>
<p>This page lists the licenses of the projects used in own_assist_cli.</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>
+1
View File
@@ -0,0 +1 @@
../about.toml
+8451
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -2,7 +2,7 @@
name = "own_assist_common"
version = "0.3.0"
edition = "2024"
license = "GPL-3"
license = "GPL-3.0"
[dependencies]
thiserror = "2.0.18"
+70
View File
@@ -0,0 +1,70 @@
<html>
<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>
</head>
<body>
<main class="container">
<div class="intro">
<h1>Third Party Licenses</h1>
<p>This page lists the licenses of the projects used in own_assist_common.</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>
+1
View File
@@ -0,0 +1 @@
../about.toml
+1221
View File
File diff suppressed because it is too large Load Diff
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
echo "cli:"
cd cli && cargo about generate -o licenses.html about.hbs && cd ..
echo "common:"
cd common && cargo about generate -o licenses.html about.hbs && cd ..
echo "mcp_server_collection:"
cd mcp_server_collection && cargo about generate -o licenses.html about.hbs && cd ..
echo "own_mcp"
cd own_mcp && cargo about generate -o licenses.html about.hbs && cd ..
+1 -1
View File
@@ -2,7 +2,7 @@
name = "mcp_server_collection"
version = "0.2.2"
edition = "2024"
license = "GPL-3"
license = "GPL-3.0"
[dependencies]
rmcp = { version = "1.7.0", features = ["server", "transport-streamable-http-server-session", "transport-streamable-http-server"] }
+70
View File
@@ -0,0 +1,70 @@
<html>
<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>
</head>
<body>
<main class="container">
<div class="intro">
<h1>Third Party Licenses</h1>
<p>This page lists the licenses of the projects used in mcp_server_collection.</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>
+1
View File
@@ -0,0 +1 @@
../about.toml
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -2,7 +2,7 @@
name = "own_mcp"
version = "0.1.0"
edition = "2024"
license = "GPL-3"
license = "GPL-3.0"
[dependencies]
ollama-rs = {version = "0.3.4", features = ["macros", "headers"]}
+70
View File
@@ -0,0 +1,70 @@
<html>
<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>
</head>
<body>
<main class="container">
<div class="intro">
<h1>Third Party Licenses</h1>
<p>This page lists the licenses of the projects used in own_mcp.</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>
+1
View File
@@ -0,0 +1 @@
../about.toml
File diff suppressed because it is too large Load Diff