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.
19 lines
470 B
TOML
19 lines
470 B
TOML
[package]
|
|
name = "pop-launcher"
|
|
version = "1.1.0"
|
|
license = "MPL-2.0"
|
|
authors = ["Michael Aaron Murphy <mmstick@pm.me>"]
|
|
description = "Library for writing plugins and frontends for pop-launcher"
|
|
repository = "https://github.com/pop-os/launcher"
|
|
edition = "2018"
|
|
|
|
[workspace]
|
|
members = ["bin", "plugins", "service"]
|
|
|
|
[dependencies]
|
|
blocking = "1"
|
|
const_format = "0.2"
|
|
futures-lite = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_with = "1"
|