pop-launcher/Cargo.toml

58 lines
1.3 KiB
TOML
Raw Normal View History

2021-08-10 01:04:20 +02:00
[package]
name = "pop-launcher"
version = "1.2.4"
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"]
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.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"
serde_with = "3.11.0"
futures = "0.3.31"
2024-07-13 01:13:17 +02:00
flume = "0.11.0"
toml = "0.8.19"
regex = "1.11.0"
2024-07-13 01:13:17 +02:00
ron = "0.8.1"
tokio = "1.40.0"
tokio-stream = "0.1.16"
2024-07-13 01:13:17 +02:00
[dependencies]
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
[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" }
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" }