Skip to content

Commit a163477

Browse files
committed
Change SPDX to "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
This is effectively the same license as the MPL-2.0, but not on a source-file basis. Also add AUTHORS to the LICENSE file (currently generated for Windows only).
1 parent d7e8e19 commit a163477

File tree

11 files changed

+382
-61
lines changed

11 files changed

+382
-61
lines changed

LICENSE

+369-48
Large diffs are not rendered by default.

azul-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-core"
33
version = "0.0.2"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Common datatypes used for the Azul document object model, shared across all azul-* crates
88
'''

azul-css-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-css-parser"
33
version = "0.0.1"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
CSS-compatible parser for the Azul GUI framework
88
'''

azul-css/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-css"
33
version = "0.0.1"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Common datatypes used for styling applications
88
using the Azul desktop GUI framework

azul-desktop/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-desktop"
33
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = "Desktop rendering API for azul"
77
homepage = "https://azul.rs/"
88
keywords = ["gui", "user-interface", "svg", "graphics", "css" ]

azul-dll/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-dll"
33
version = "0.0.1"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = "C-API of Azul GUI"
77
homepage = "https://azul.rs/"
88
keywords = ["gui", "user-interface", "svg", "graphics", "css" ]

azul-layout/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "azul-layout"
33
version = "0.0.4"
4-
authors = ["Emil Sjölander <[email protected]>", "fschutt <[email protected]>"]
5-
license = "MIT"
4+
authors = ["Felix Schütt <[email protected]>"]
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Flexbox layout solver the Azul GUI framework
88
'''

azul-text-layout/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-text-layout"
33
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Text layout algorithms Azul desktop GUI framework
88
'''

azul-web/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-web"
33
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = "Web API implementation for the Azul GUI toolkit"
77
homepage = "https://azul.rs/"
88
keywords = ["gui", "GUI", "user-interface", "svg", "graphics" ]

azul-widgets/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azul-widgets"
33
version = "0.0.2"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Builtin widgets for the Azul GUI framework (buttons, checkboxes, labels, etc.)
88
'''

azulc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "azulc"
33
version = "0.0.3"
44
authors = ["Felix Schütt <[email protected]>"]
5-
license = "MIT"
5+
license = "LGPL-3.0-only WITH LGPL-3.0-linking-exception"
66
description = '''
77
Azul XML-to-Rust compiler (and library)
88
'''
@@ -42,8 +42,8 @@ image = { version = "0.23.12", default-features = fals
4242
rust-fontconfig = { version = "0.1.2", default-features = false, features = ["std"], optional = true }
4343
lyon = { version = "0.15.8", default-features = false, optional = true }
4444
rayon = { version = "1.5.0", default-features = false, optional = true }
45-
usvg = { git = "https://github.com/RazrFalcon/resvg", rev = "38fc6781bd6edffcb8c14b3145b5e5a7342f6761", default-features = false, optional = true }
46-
resvg = { git = "https://github.com/RazrFalcon/resvg", rev = "38fc6781bd6edffcb8c14b3145b5e5a7342f6761", default-features = false, optional = true }
45+
usvg = { version = "0.14.0", default-features = false, optional = true }
46+
resvg = { version = "0.14.0", default-features = false, optional = true }
4747
roxmltree = { version = "0.14.0", default-features = false, optional = true }
4848
owned_ttf_parser = { version = "0.6.0", default-features = false, optional = true }
4949
tiny-skia = { version = "0.5.1", default-features = false, optional = true, features = ["libm"] }

0 commit comments

Comments
 (0)