-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.69 KB
/
Cargo.toml
File metadata and controls
60 lines (55 loc) · 1.69 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
[package]
name = "tasks"
version = "0.2.3"
edition = "2021"
[dependencies]
i18n-embed-fl = "0.10.0"
rust-embed = "8"
open = "5.3.2"
directories = "6.0.0"
cli-clipboard = "0.4.0"
slotmap = "1.0.7"
ron = "0.11.0"
thiserror = "2.0.17"
tracing = "0.1.41"
time = { version = "0.3.47", features = ["serde-human-readable"] }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
uuid = { version = "1.18.1", features = ["v4"] }
i18n-embed = { version = "0.16.0", features = [
"fluent-system",
"desktop-requester",
] }
jiff = { version = "0.2.24", features = ["serde"] }
[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"
default-features = false
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" }