pop-launcher/Cargo.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2021-08-10 01:04:20 +02:00
[package]
name = "pop-launcher"
version = "1.2.3"
license = "MPL-2.0"
2021-08-10 01:04:20 +02:00
authors = ["Michael Aaron Murphy <mmstick@pm.me>"]
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"]
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]
anyhow = "1.0.82"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
2024-07-13 01:13:17 +02:00
tracing = "0.1.40"
dirs = "5.0.1"
serde_with = "3.7.0"
2024-07-13 01:13:17 +02:00
futures = "0.3.30"
flume = "0.11.0"
toml = "0.8.12"
regex = "1.10.4"
ron = "0.8.1"
tokio = "1.37.0"
tokio-stream = "0.1.15"
[dependencies]
const_format = "0.2.32"
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" }