-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (57 loc) · 1.75 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (57 loc) · 1.75 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
[package]
name = "tasks"
version = "0.3.1"
edition = "2021"
[dependencies]
i18n-embed-fl = "0.10.0"
rust-embed = "8"
open = "5.3.6"
directories = "6.0.0"
cli-clipboard = "0.4.0"
slotmap = "1.1.1"
ron = "0.12.2"
thiserror = "2.0.18"
tracing = "0.1.44"
time = { version = "0.3.53", features = ["serde-human-readable"] }
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
uuid = { version = "1.23.4", features = ["v4"] }
i18n-embed = { version = "0.16.0", features = [
"fluent-system",
"desktop-requester",
] }
jiff = { version = "0.2.32", features = ["serde"] }
notify-rust = "4.18.0"
notify = "8.2.0"
tokio = { version = "1", features = ["time"] }
[dependencies.rust-extensions]
git = "https://github.com/edfloreshz/rust-extensions.git"
# See https://github.com/pop-os/libcosmic/blob/master/Cargo.toml for available features.
[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",
]
[target.'cfg(target_os = "linux")'.dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
features = [
# Accessibility support
"a11y",
# Uses cosmic-settings-daemon to watch for config file changes
"dbus-config",
# Add Wayland support to winit
"wayland",
]
# [patch."https://github.com/pop-os/libcosmic.git"]
# libcosmic = { path = "../../edfloreshz-ext/libcosmic" }