-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
59 lines (50 loc) · 1.28 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
[package]
name = "satty"
version = "0.16.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.9.1", features = ["macros", "libadwaita", "gnome_42"] }
tokio = { version = "1.32.0", features = ["full"] }
gdk-pixbuf = "0.20.7"
# error handling
anyhow = "1.0"
thiserror = "2.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.11"
libloading = "0.8"
epoxy = "0.1.0"
glow = "0.15.0"
glib-macros = "0.20.7"
glib = "0.20.7"
resource = "0.5.0" # font emedding
fontconfig = "0.9.0" # font loading
keycode = "0.4.0"
[dependencies.relm4-icons]
version = "0.9.0"
[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"