2021-08-10 01:04:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "pop-launcher"
|
2024-10-18 17:20:05 +02:00
|
|
|
version = "1.2.4"
|
2021-11-24 17:56:37 +01:00
|
|
|
license = "MPL-2.0"
|
2024-10-18 17:20:05 +02:00
|
|
|
authors = ["Michael Aaron Murphy <michael@mmurphy.dev>"]
|
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"
|
2024-07-13 01:13:17 +02:00
|
|
|
edition.workspace = true
|
2021-08-10 01:04:20 +02:00
|
|
|
|
|
|
|
|
[workspace]
|
2022-05-11 14:09:27 +02:00
|
|
|
members = ["bin", "plugins", "service", "toolkit"]
|
2024-07-13 01:13:17 +02:00
|
|
|
resolver = "2"
|
2021-08-10 01:04:20 +02:00
|
|
|
|
2024-07-13 01:13:17 +02:00
|
|
|
[workspace.package]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-10-18 17:20:05 +02:00
|
|
|
anyhow = "1.0.90"
|
|
|
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.129"
|
2024-07-13 01:13:17 +02:00
|
|
|
tracing = "0.1.40"
|
|
|
|
|
dirs = "5.0.1"
|
2024-10-18 17:20:05 +02:00
|
|
|
serde_with = "3.11.0"
|
|
|
|
|
futures = "0.3.31"
|
2024-07-13 01:13:17 +02:00
|
|
|
flume = "0.11.0"
|
2024-10-18 17:20:05 +02:00
|
|
|
toml = "0.8.19"
|
|
|
|
|
regex = "1.11.0"
|
2024-07-13 01:13:17 +02:00
|
|
|
ron = "0.8.1"
|
2024-10-18 17:20:05 +02:00
|
|
|
tokio = "1.40.0"
|
|
|
|
|
tokio-stream = "0.1.16"
|
2024-07-13 01:13:17 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-18 17:20:05 +02:00
|
|
|
const_format = "0.2.33"
|
2024-07-13 01:13:17 +02:00
|
|
|
dirs.workspace = true
|
|
|
|
|
futures.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
serde_with.workspace = true
|
2022-03-27 17:38:37 +02:00
|
|
|
|
2022-03-29 13:15:51 +02:00
|
|
|
[profile.release]
|
2024-05-02 19:03:05 +02:00
|
|
|
lto = "fat"
|
2022-03-29 13:15:51 +02:00
|
|
|
panic = "abort"
|
|
|
|
|
|
2022-03-27 17:38:37 +02:00
|
|
|
[dependencies.tokio]
|
2024-07-13 01:13:17 +02:00
|
|
|
workspace = true
|
2022-03-27 17:38:37 +02:00
|
|
|
features = ["io-std", "io-util"]
|
|
|
|
|
|
|
|
|
|
[dependencies.tokio-stream]
|
2024-07-13 01:13:17 +02:00
|
|
|
workspace = true
|
2022-03-27 20:10:39 +02:00
|
|
|
features = ["io-util"]
|
2024-07-13 01:13:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# [patch.crates-io]
|
|
|
|
|
# freedesktop-desktop-entry = { path = "../freedesktop-desktop-entry" }
|