Skip to content

Commit cc26e9f

Browse files
FloezeTvdenialhaag
authored andcommitted
Relicence project (#96)
chore: add linking exception to crates using LGPL LGPL requires dynamically linking the library or providing application code to statically link with another version. Rust usually links statically, so the current license would require sharing the source code of all derived applications. This exception allows usage of the concerned crates in a fully closed source application, as was the original intention by licensing them as LGPL. All authors are ok with this change. chore: relicense project All naviz libraries are now licensed under `LGPL-3.0-or-later WITH LGPL-3.0-linking-exception`. The full naviz GUI is still licensed under `AGPL-3.0-or-later`. The python-package is now licensed under `MIT`. All authors are ok with this change.
1 parent f0b09e2 commit cc26e9f

File tree

15 files changed

+875
-994
lines changed

15 files changed

+875
-994
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ members = [
1313
resolver = "2"
1414

1515
[workspace.package]
16+
license = "LGPL-3.0-or-later WITH LGPL-3.0-linking-exception"
1617
repository = "https://github.com/cda-tum/mqt-naviz"

LICENSE

Lines changed: 180 additions & 656 deletions
Large diffs are not rendered by default.

animator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ categories = []
44
description = "Animator for NAViz"
55
edition = "2021"
66
keywords = ["naviz", "animation"]
7-
license = "AGPL-3.0-or-later"
7+
license.workspace = true
88
name = "naviz-animator"
99
repository.workspace = true
1010
version = "0.4.1"

gui/LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

import/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ categories = []
44
description = "Importer for for converting other formats to the NAViz format"
55
edition = "2021"
66
keywords = ["naviz", "import"]
7-
license = "LGPL-3.0-or-later"
7+
license.workspace = true
88
name = "naviz-import"
99
repository.workspace = true
1010
version = "0.1.1"

import/LICENSE

Lines changed: 0 additions & 165 deletions
This file was deleted.

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ categories = ["parser-implementations"]
44
description = "Parser for the NAViz input files"
55
edition = "2021"
66
keywords = ["naviz", "parser"]
7-
license = "LGPL-3.0-or-later"
7+
license.workspace = true
88
name = "naviz-parser"
99
repository.workspace = true
1010
version = "0.4.1"

parser/LICENSE

Lines changed: 0 additions & 165 deletions
This file was deleted.

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ categories = []
44
description = "Python-interface for naviz"
55
edition = "2021"
66
keywords = ["naviz", "python"]
7-
license = "AGPL-3.0-or-later"
7+
license = "MIT"
88
name = "naviz-python"
99
repository.workspace = true
1010
version = "0.1.1"

python/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 NAViz contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)