-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
46 lines (40 loc) · 1.13 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
# SPDX-FileCopyrightText: © 2024 David Bliss
#
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "fotema"
version = "0.1.0"
authors = ["David Bliss <[email protected]>"]
edition = "2021"
publish = false
[workspace]
members = ["core"]
[profile.release]
lto = "thin"
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter"] }
relm4 = { version = "0.9.1", features = ["libadwaita", "gnome_47"] }
itertools = "0.14.0"
humansize = "2.1.3"
rayon = "1.10.0"
glycin = { version = "2.0.2", features = ["gdk4"] }
futures = "0.3.31"
chrono = "0.4.38"
anyhow = "1.0.95"
strum = { version = "0.26.2", features = ["derive"] }
i18n-embed = { version = "0.15.0", features = ["fluent-system", "filesystem-assets", "desktop-requester"] }
rust-embed = "8.5.0"
i18n-embed-fl = "0.9.2"
unic-langid = "0.9.5"
lazy_static = "1.4.0"
libshumate-sys = "0.6.0"
h3o = "0.7.1"
ashpd = { version = "0.10.2", features = ["gtk4"] }
regex = "1.11.1"
[dependencies.shumate]
package = "libshumate"
version = "0.6.0"
[dependencies.fotema_core]
path = "core"