-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
59 lines (56 loc) · 1.78 KB
/
Cargo.toml
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
[package]
name = "cosmic-launcher"
version = "0.1.0"
authors = ["Ashley Wulber <[email protected]>"]
edition = "2021"
[features]
default = []
wgpu = ["libcosmic/wgpu"]
console = ["tokio/tracing"]
[dependencies]
async-stream = "0.3.5"
console-subscriber = "0.1.9"
freedesktop-icons = "0.2.3"
futures = "0.3.21"
i18n-embed = { version = "0.13.4", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.6.4"
libcosmic = { git = "https://github.com/pop-os/libcosmic/", features = [
"autosize",
"winit",
"multi-window",
"wayland",
"tokio",
"single-instance",
"dbus-config",
"desktop-systemd-scope",
"xdg-portal",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"std",
"fmt",
"env-filter",
] }
tracing-journald = "0.3.0"
nix = { version = "0.27.1", features = ["process"] }
once_cell = "1.17"
pop-launcher = { git = "https://github.com/pop-os/launcher/" }
pop-launcher-service = { git = "https://github.com/pop-os/launcher/" }
pretty_env_logger = "0.5"
rust-embed = "6.3.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
shlex = "1.1.0"
tokio = { version = "1.24.1", features = ["sync", "rt"] }
xdg = "2.4.1"
clap = { version = "4.4.8", features = ["derive"] }
switcheroo-control = { git = "https://github.com/pop-os/dbus-settings-bindings" }
zbus = { version = "4.2.1", default-features = false, features = ["tokio"] }
unicode-truncate = "1.0.0"
unicode-width = "0.1.11"
# [patch."https://github.com/pop-os/launcher/"]
# pop-launcher = { git = "https://github.com/wiiznokes/launcher/", rev = "86a54d54a68b832d404ef83a03af84cf9ef3e694" }
# pop-launcher-service = { git = "https://github.com/wiiznokes/launcher/", rev = "86a54d54a68b832d404ef83a03af84cf9ef3e694" }