As the sole author of the library and service, I elect to relicense the code that I have written from GPL-3.0 to MPL-2.0. This is to preserve copyleft-ability while permitting linking of pop-launcher's libraries. The launcher binary and its plugins shall remain as GPL-3.0, as they are separate binaries with no need for linking to a frontend.
15 lines
415 B
TOML
15 lines
415 B
TOML
[package]
|
|
name = "pop-launcher-bin"
|
|
version = "1.1.0"
|
|
edition = "2018"
|
|
license = "GPL-3.0-only"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pop-launcher-plugins = { path = "../plugins" }
|
|
pop-launcher-service = { path = "../service" }
|
|
smol = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|