forked from francesco-gaglione/cosmic-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (61 loc) · 1.84 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
[package]
name = "cosmic_money"
version = "0.3.0"
edition = "2021"
license = "GPL-3.0"
[dependencies]
futures-util = "0.3.31"
i18n-embed-fl = "0.9.2"
open = "5.3.0"
rust-embed = "8.5.0"
tokio = { version = "1.41.0", features = ["full"] }
once_cell = "1.20.0"
env_logger = "0.11"
log = "0.4"
diesel = { version = "2.2.4", features = [
"sqlite",
"chrono",
"returning_clauses_for_sqlite_3_35",
] }
chrono = { version = "0.4", features = ["serde"] }
# build libsqlite3 as part of the build process
# uncomment this line if you run into setup issues
# libsqlite3-sys = { version = "0.30", features = ["bundled"] }
dotenvy = "0.15"
thiserror = "1.0.64"
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1.0.132"
diesel_migrations = "2.2.0"
directories = "5.0.1"
constcat = "0.5"
[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",
"xdg-portal",
"desktop",
]
[dependencies.i18n-embed]
version = "0.15"
features = ["fluent-system", "desktop-requester"]
# 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" }