This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
102 lines (90 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "done"
version = "0.2.2"
edition = "2021"
authors = ["Eduardo Flores <[email protected]>"]
license = "MPL 2.0"
description = "Done is the ultimate task management solution for seamless organization and efficiency. "
homepage = "https://done.edfloreshz.dev/"
documentation = "https://docs.rs/done"
repository = "https://github.com/edfloreshz/done/"
readme = "README.md"
[workspace]
members = ["core"]
[dependencies]
i18n-embed-fl = "0.6.7"
once_cell = "1.13.0"
derive-new = "0.5.9"
anyhow = "1.0.56"
strum = "0.25.0"
strum_macros = "0.25.2"
glib = "0.18.1"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
reqwest = "0.11.18"
futures = "0.3.28"
libset = "0.1.6"
dirs = "5.0.1"
[dependencies.relm4-icons]
version = "0.7.0-alpha.1"
features = [
"menu",
"loupe",
"floppy",
"computer",
"star-filled-rounded",
"dock-left",
"task",
"sonar",
"check-round-outline2",
"checkmark",
"check-round-outline-whole",
"left",
"warning",
"flag-outline-thin",
"flag-outline-thick",
"flag-filled",
"work-week",
"alarm",
"plus",
"x-circular",
"small-x",
"info",
"editor",
"pencil-and-paper",
"update",
"clipboard",
"image-adjust-brightness",
"file-cabinet",
"star-outline-rounded",
"controls",
"dark-mode",
"list-large",
"dock-left",
"horizontal-arrows",
"size-vertically",
]
[dependencies.done_core]
path = "core"
[dependencies.chrono]
version = "0.4.23"
features = ["serde"]
[dependencies.relm4]
version = "0.7.0-beta.2"
features = ["macros", "libadwaita", "gnome_45"]
[dependencies.libadwaita]
version = "0.5.2"
[dependencies.serde]
version = "1.0.126"
features = ["derive"]
[dependencies.gettext-rs]
version = "0.7"
features = ["gettext-system"]
[dependencies.rust-embed]
version = "6.8.1"
features = ["debug-embed"]
[dependencies.i18n-embed]
version = "0.13.4"
features = ["fluent-system", "desktop-requester"]
[build-dependencies]
glib-build-tools = "0.18.0"