pop-launcher/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2021-08-10 01:04:20 +02:00
[package]
name = "pop-launcher"
2025-10-01 18:36:56 +02:00
version = "1.2.7"
license = "MPL-2.0"
authors = ["Michael Aaron Murphy <michael@mmurphy.dev>"]
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]
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]
anyhow = "1.0.100"
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.145"
tracing = "0.1.41"
2025-04-30 17:19:16 +02:00
dirs = "6.0.0"
serde_with = "3.14.1"
futures = "0.3.31"
flume = "0.11.1"
toml = "0.9.7"
regex = "1.11.2"
ron = "0.11.0"
tokio = "1.47.1"
2025-04-30 17:19:16 +02:00
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
[profile.release]
lto = "fat"
panic = "abort"
[dependencies.tokio]
2024-07-13 01:13:17 +02:00
workspace = true
features = ["io-std", "io-util"]
[dependencies.tokio-stream]
2024-07-13 01:13:17 +02:00
workspace = true
features = ["io-util"]
2024-07-13 01:13:17 +02:00
# [patch.crates-io]
# freedesktop-desktop-entry = { path = "../freedesktop-desktop-entry" }