generated from pop-os/cosmic-app-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
72 lines (63 loc) · 1.78 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
[package]
name = "cosmic-ext-toot"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/edfloreshz/toot"
[dependencies]
capitalize = "0.3.4"
futures-util = "0.3.31"
html2text = "0.13.4"
i18n-embed-fl = "0.9.2"
keytar = "0.1.6"
open = "5.3.0"
reqwest = "0.12.9"
rust-embed = "8.5.0"
thiserror = "2.0.3"
time = "0.3.36"
tracing = "0.1.40"
[dependencies.mastodon-async]
git = "https://github.com/edfloreshz-ext/mastodon-async"
features = ["all"]
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.tokio]
version = "1.41.0"
features = ["full"]
[dependencies.chrono]
version = "0.4.38"
features = ["serde"]
[dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]
[dependencies.i18n-embed]
version = "0.15"
features = ["fluent-system", "desktop-requester"]
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
# See https://github.com/pop-os/libcosmic/blob/master/Cargo.toml for available features.
features = [
# Accessibility support
"a11y",
# Uses cosmic-settings-daemon to watch for config file changes
"dbus-config",
# 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",
# Add Wayland support to winit
"wayland",
# GPU-accelerated rendering
"wgpu",
# About context drawer support
"about",
]
# Uncomment to test a locally-cloned libcosmic
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }