2021-08-10 01:04:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "pop-launcher"
|
2025-04-30 17:19:16 +02:00
|
|
|
version = "1.2.5"
|
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"]
|
2025-09-25 12:51:41 +02:00
|
|
|
resolver = "3"
|
2021-08-10 01:04:20 +02:00
|
|
|
|
2024-07-13 01:13:17 +02:00
|
|
|
[workspace.package]
|
2025-09-25 12:51:41 +02:00
|
|
|
edition = "2024"
|
2024-07-13 01:13:17 +02:00
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2025-04-30 17:19:16 +02:00
|
|
|
anyhow = "1.0.98"
|
|
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.140"
|
2024-07-13 01:13:17 +02:00
|
|
|
tracing = "0.1.40"
|
2025-04-30 17:19:16 +02:00
|
|
|
dirs = "6.0.0"
|
|
|
|
|
serde_with = "3.12.0"
|
2024-10-18 17:20:05 +02:00
|
|
|
futures = "0.3.31"
|
2024-07-13 01:13:17 +02:00
|
|
|
flume = "0.11.0"
|
2025-04-30 17:19:16 +02:00
|
|
|
toml = "0.8.22"
|
2024-10-18 17:20:05 +02:00
|
|
|
regex = "1.11.0"
|
2025-04-30 17:19:16 +02:00
|
|
|
ron = "0.9.0"
|
|
|
|
|
tokio = "1.44.2"
|
|
|
|
|
tokio-stream = "0.1.17"
|
2024-07-13 01:13:17 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-30 17:19:16 +02:00
|
|
|
const_format = "0.2.34"
|
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" }
|
2024-09-20 14:35:53 +02:00
|
|
|
|
|
|
|
|
[patch."https://github.com/pop-os/cosmic-protocols"]
|
2024-12-04 21:27:46 -05:00
|
|
|
"cosmic-client-toolkit" = { git = "https://github.com/pop-os//cosmic-protocols" }
|