2021-08-10 01:04:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "pop-launcher"
|
2022-03-29 13:19:57 +02:00
|
|
|
version = "1.2.1"
|
2021-11-24 17:56:37 +01:00
|
|
|
license = "MPL-2.0"
|
2021-08-10 01:04:20 +02:00
|
|
|
authors = ["Michael Aaron Murphy <mmstick@pm.me>"]
|
2021-08-14 14:19:42 +02:00
|
|
|
description = "Library for writing plugins and frontends for pop-launcher"
|
|
|
|
|
repository = "https://github.com/pop-os/launcher"
|
2021-08-10 01:04:20 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
|
|
[workspace]
|
2022-05-11 14:09:27 +02:00
|
|
|
members = ["bin", "plugins", "service", "toolkit"]
|
2021-08-10 01:04:20 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-28 18:05:41 +01:00
|
|
|
const_format = "0.2.22"
|
2022-03-27 16:05:04 +02:00
|
|
|
dirs = "4.0.0"
|
2022-03-27 16:54:26 +02:00
|
|
|
futures = "0.3.21"
|
2022-02-28 18:05:41 +01:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.79"
|
|
|
|
|
serde_with = "1.12.0"
|
2022-03-27 17:38:37 +02:00
|
|
|
|
2022-03-29 13:15:51 +02:00
|
|
|
[profile.release]
|
|
|
|
|
lto = true
|
|
|
|
|
panic = "abort"
|
|
|
|
|
strip = true
|
|
|
|
|
|
2022-03-27 17:38:37 +02:00
|
|
|
[dependencies.tokio]
|
|
|
|
|
version = "1.17.0"
|
|
|
|
|
features = ["io-std", "io-util"]
|
|
|
|
|
|
|
|
|
|
[dependencies.tokio-stream]
|
|
|
|
|
version = "0.1.8"
|
2022-03-27 20:10:39 +02:00
|
|
|
features = ["io-util"]
|