-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (72 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (72 loc) · 2.29 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
[package]
name = "cosmic-ext-tweaks"
version = "0.2.5"
edition = "2024"
[dependencies]
dirs = "6"
env_logger = "0.11"
i18n-embed-fl = "0.10"
log = "0.4"
open = "5"
pretty_env_logger = "0.5"
reqwest = { version = "0.13", features = ["json"] }
ron = "0.12"
rust-embed = "8"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
uuid = { version = "1", features = ["serde", "v4"] }
anyhow = "1"
serde_json = "1"
nucleo = "0.5"
icu_collator = "2"
icu_provider = { version = "2", features = ["sync"] }
url = "2.5.8"
[dependencies.ashpd]
version = "0.13"
default-features = false
features = ["async-io", "file_chooser"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
features = [
# About widget for the app
"about",
# Support creating additional application windows.
"multi-window",
# On app startup, focuses an existing instance if the app is already open
"single-instance",
# Uses tokio as the executor for the runtime
"tokio",
# Windowing support for X11, Windows, Mac, & Redox
"winit",
# GPU-accelerated rendering
"wgpu",
# Accessibility support
"a11y",
# Uses cosmic-settings-daemon to watch for config file changes
"dbus-config",
# Add Wayland support to winit
"wayland",
]
[dependencies.cosmic-ext-config-templates]
git = "https://github.com/ryanabx/cosmic-ext-config-templates"
[dependencies.i18n-embed]
version = "0.16"
features = ["fluent-system", "desktop-requester"]
[dependencies.cosmic-panel-config]
git = "https://github.com/pop-os/cosmic-panel"
[dependencies.cosmic-settings-config]
git = "https://github.com/pop-os/cosmic-settings-daemon"
[dependencies.serde]
version = "1"
features = ["derive", "rc"]
[dependencies.tokio]
version = "1"
features = ["macros", "fs", "rt"]
# [patch."https://github.com/pop-os/libcosmic.git"]
# libcosmic = { path = "../../edfloreshz/libcosmic" }
# cosmic-config = { path = "../../edfloreshz/libcosmic/cosmic-config" }
# cosmic-theme = { path = "../../edfloreshz/libcosmic/cosmic-theme" }
# iced = { path = "../../edfloreshz/libcosmic/iced" }
#cosmic-config = { path = "../../edfloreshz-ext/libcosmic/cosmic-config" }
#cosmic-config-derive = { path = "../../edfloreshz-ext/libcosmic/cosmic-config-derive" }
#cosmic-theme = { path = "../../edfloreshz-ext/libcosmic/cosmic-theme" }