forked from Satty-org/Satty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (67 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
78 lines (67 loc) · 1.59 KB
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
[package]
name = "satty"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
include = [
"src/**/*",
"Cargo.toml",
"Cargo.lock",
"LICENSE*",
"README.md",
"assets/",
]
[dependencies]
satty_cli.workspace = true
relm4 = { version = "0.10.0", features = ["macros", "libadwaita", "gnome_42"] }
tokio = { version = "1.48.0", features = ["time"] }
gdk-pixbuf = "0.21.2"
# error handling
anyhow = "1.0"
thiserror = "2.0"
# command line
clap.workspace = true
# configuration file
xdg = "^3.0"
toml = "0.9.8"
serde = "1.0"
serde_derive = "1.0"
hex_color = {version = "3", features = ["serde"]}
chrono = "0.4.42"
# opengl rendering backend
femtovg = "0.19"
libloading = "0.9"
epoxy = "0.1.0"
glow = "0.16.0"
glib-macros = "0.21.4"
glib = "0.21.4"
resource = "0.6.1" # font emedding
fontconfig = "0.10.0" # font loading
keycode = "1.0.0"
pango = "0.21.3"
[dependencies.relm4-icons]
version = "0.10.0"
[build-dependencies]
clap.workspace = true
clap_complete = "4.5.61"
clap_complete_nushell = "4.5.10"
satty_cli.workspace = true
clap_complete_fig = "4.5.2"
relm4-icons-build = "0.10"
[workspace]
members = [ "cli" ]
[workspace.package]
version = "0.20.0"
edition = "2021"
authors = ["Matthias Gabriel <gabm+aur@mailbox.org>"]
description = "Modern Screenshot Annotation."
homepage = "https://github.com/gabm/satty"
repository = "https://github.com/gabm/satty"
license = "MPL-2.0"
[workspace.dependencies]
clap = { version = "4.5.53", features = ["derive"] }
satty_cli = { path = "cli" }