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
58 lines (49 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (49 loc) · 1.26 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
[package]
name = "satty"
version = "0.13.0"
edition = "2021"
authors = ["Matthias Gabriel <gabm+aur@mailbox.org>"]
description = "Modern Screenshot Annotation. A Screenshot Annotation Tool inspired by Swappy and Flameshot."
homepage = "https://github.com/gabm/satty"
repository = "https://github.com/gabm/satty"
license = "MPL-2.0"
include = [
"src/**/*",
"Cargo.toml",
"Cargo.lock",
"LICENSE*",
"README.md",
"assets/",
]
[dependencies]
relm4 = { version = "0.8", features = ["macros", "libadwaita", "gnome_42"] }
tokio = { version = "1.32.0", features = ["full"] }
gdk-pixbuf = "0.19.2"
# error handling
anyhow = "1.0"
thiserror = "1.0"
# command line
clap = { version = "4.4.10", features = ["derive"] }
# configuration file
xdg = "^2.5"
toml = "0.8.8"
serde = "1.0"
serde_derive = "1.0"
hex_color = {version = "3", features = ["serde"]}
chrono = "0.4.31"
# opengl rendering backend
femtovg = "0.8"
libloading = "0.8"
epoxy = "0.1.0"
glow = "0.13.1"
glib-macros = "0.19.2"
glib = "0.19.2"
resource = "0.5.0" # font emedding
fontconfig = "0.8.0" # font loading
[dependencies.relm4-icons]
version = "0.8.2"
[build-dependencies]
clap = { version = "4.4.10", features = ["derive"] }
clap_complete = "4.4.4"
clap_complete_nushell = "4.4.2"
clap_complete_fig = "4.4.2"