forked from cosmic-utils/tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (40 loc) · 1.09 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
[package]
name = "tasks"
version = "0.1.0"
edition = "2021"
[dependencies]
i18n-embed = { version = "0.14", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.8"
once_cell = "1.19"
rust-embed = "8"
serde = { version = "1", features = ["serde_derive"] }
log = "0.4"
env_logger = "0.11"
paste = "1.0"
open = "5.0.2"
dirs = "5.0.1"
chrono = "0.4.35"
tokio = "1"
tasks-core = { path = "src/core" }
tracing = "0.1.40"
cli-clipboard = "0.4.0"
slotmap = "1.0.7"
emojis = "0.6.1"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["multi-window", "tokio", "winit", "wgpu", "dbus-config"]
[dependencies.smol_str]
version = "0.2.1"
features = ["serde"]
[target.'cfg(unix)'.dependencies]
fork = "0.1"
[build-dependencies]
vergen = { version = "8", features = ["git", "gitcl"] }
# [patch."https://github.com/pop-os/libcosmic.git"]
# libcosmic = { git = "https://github.com/edfloreshz/libcosmic.git", branch = "editable_input_internal" }
# [patch."https://github.com/pop-os/libcosmic.git"]
# libcosmic = { path = "../libcosmic" }