-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (70 loc) · 1.8 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (70 loc) · 1.8 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
79
80
81
82
[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/",
"build.rs"
]
[features]
ci-release = []
[dependencies]
satty_cli.workspace = true
relm4 = { version = "0.10.1", features = ["macros", "libadwaita", "gnome_42"] }
tokio = { version = "1.53.1", features = ["time"] }
tempfile = "3.27"
# error handling
anyhow = "1.0"
thiserror = "2.0"
# command line
clap.workspace = true
# configuration file
xdg = "^3.0"
toml = "1.1.3"
serde.workspace = true
serde_derive = "1.0"
hex_color = {version = "3", features = ["serde"]}
chrono = "0.4.44"
# opengl rendering backend
femtovg = "0.26.0"
image = { version = "0.25.0", default-features = false, features = ["png"] } # png decoder for color emoji in femtovg
libloading = "0.9"
epoxy = "0.1.0"
glow = "0.18.0"
resource = "0.6.1" # font emedding
fontconfig = "0.11.0" # font loading
keycode = "1.0.0"
[dependencies.relm4-icons]
version = "0.10.0"
[build-dependencies]
clap.workspace = true
clap_complete = "4.6.8"
clap_complete_nushell = "4.6.0"
satty_cli.workspace = true
clap_complete_fig = "4.5.2"
relm4-icons-build = "0.11"
clap_mangen = "0.3.0"
[workspace]
members = [ "cli" ]
[workspace.package]
version = "0.22.0"
edition = "2024"
authors = ["Matthias Gabriel <gabm+aur@mailbox.org>"]
description = "Modern Screenshot Annotation."
homepage = "https://github.com/Satty-org/Satty"
repository = "https://github.com/Satty-org/Satty"
license = "MPL-2.0"
[workspace.dependencies]
clap = { version = "4.6.4", features = ["derive"] }
satty_cli = { path = "cli", version = "0.22.0" }
serde = { version = "1.0", features = ["derive"] }