-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (97 loc) · 3.67 KB
/
Copy pathCargo.toml
File metadata and controls
103 lines (97 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "plasma-drop"
version = "1.5.8"
edition = "2024"
rust-version = "1.85"
description = "KDE Plasma 6 dropdown app launcher"
license = "GPL-3.0-or-later"
repository = "https://github.com/SkeLLLa/plasma-drop"
readme = "README.md"
keywords = ["kde", "plasma", "launcher", "dropdown", "wayland"]
categories = ["command-line-utilities"]
exclude = [
"/.claude/",
"/.code-review-graph/",
"/.codex/",
"/.github/",
"/.gitignore",
"/.mcp.json",
"/.mise.toml",
"/.zed/",
"/AGENTS.md",
"/Makefile",
"/clippy.toml",
"/docs/*/",
"/packaging/dist/",
"/release-plz.toml",
"/target/",
"/wtq",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
unused_lifetimes = "deny"
unused_qualifications = "warn"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -2 }
cargo = { level = "warn", priority = -3 }
nursery = { level = "warn", priority = -4 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
clap = { version = "4.5", features = ["derive"] }
regex = "1.11"
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.52", features = ["fs", "macros", "process", "rt-multi-thread", "signal", "sync", "time"] }
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.23", features = ["serde", "v4"] }
zbus = { version = "5.13", features = ["tokio"] }
[package.metadata.deb]
maintainer = "SkeLLLa"
copyright = "2026, SkeLLLa"
depends = "$auto"
section = "utils"
priority = "optional"
extended-description = """\
plasma-drop is a KDE Plasma 6 dropdown launcher for Wayland sessions.
The package installs the binary, a user systemd unit, and an example
configuration so users can enable the service with minimal setup.
"""
assets = [
["target/release/plasma-drop", "usr/bin/plasma-drop", "755"],
["packaging/systemd/plasma-drop.packaged.service", "usr/lib/systemd/user/plasma-drop.service", "644"],
["resources/example-config.toml", "usr/share/plasma-drop/examples/config.toml", "644"],
["README.md", "usr/share/doc/plasma-drop/README.md", "644"],
["resources/icons/plasma-drop-icon.svg", "usr/share/doc/plasma-drop/resources/icons/plasma-drop-icon.svg", "644"],
["resources/icons/plasma-drop-icon.png", "usr/share/doc/plasma-drop/resources/icons/plasma-drop-icon.png", "644"],
["COPYING", "usr/share/doc/plasma-drop/COPYING", "644"],
]
[package.metadata.generate-rpm]
summary = "KDE Plasma 6 dropdown app launcher"
license = "GPL-3.0-or-later"
assets = [
{ source = "target/release/plasma-drop", dest = "/usr/bin/plasma-drop", mode = "755" },
{ source = "packaging/systemd/plasma-drop.packaged.service", dest = "/usr/lib/systemd/user/plasma-drop.service", mode = "644", doc = false },
{ source = "resources/example-config.toml", dest = "/usr/share/plasma-drop/examples/config.toml", mode = "644", doc = true },
{ source = "README.md", dest = "/usr/share/doc/plasma-drop/README.md", mode = "644", doc = true },
{ source = "resources/icons/plasma-drop-icon.svg", dest = "/usr/share/doc/plasma-drop/resources/icons/plasma-drop-icon.svg", mode = "644", doc = true },
{ source = "resources/icons/plasma-drop-icon.png", dest = "/usr/share/doc/plasma-drop/resources/icons/plasma-drop-icon.png", mode = "644", doc = true },
{ source = "COPYING", dest = "/usr/share/doc/plasma-drop/COPYING", mode = "644", doc = true },
]