-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
50 lines (48 loc) · 1.51 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
[package]
name = "espanso-gui"
description = "GUI interface for espanso."
authors = ["Ricky Kresslein <[email protected]>"]
license = "GPL-3.0-or-later"
version = "24.7.0"
edition = "2021"
[package.metadata.bundle]
name = "espansoGUI"
identifier = "io.unobserved.espansogui"
icon = [
"assets/mac_icon_set/espansoGUI-Mac-Icon-16x16.png",
"assets/mac_icon_set/espansoGUI-Mac-Icon-32x32.png",
"assets/mac_icon_set/espansoGUI-Mac-Icon-64x64.png",
"assets/mac_icon_set/espansoGUI-Mac-Icon-128x128.png",
"assets/mac_icon_set/[email protected]",
"assets/mac_icon_set/espansoGUI-Mac-Icon-256x256.png",
"assets/mac_icon_set/[email protected]",
"assets/mac_icon_set/espansoGUI-Mac-Icon-512x512.png",
"assets/mac_icon_set/[email protected]",
]
copyright = "Copyright (c) Ricky Kresslein 2023. All rights reserved."
category = "public.app-category.productivity"
short_description = "GUI interface for espanso."
long_description = """
A Rust/Iced based GUI frontend for the espanso text expander.
"""
[dependencies]
anyhow = "1.0"
dark-light = "1.1"
dirs = "5.0"
home = "0.5"
iced = "0.13.1"
iced_aw = { version = "0.11.0", default-features = false, features = [
"card",
"number_input",
"context_menu",
] }
iced_fonts = { version = "0.1.1", features = ["nerd"] }
once_cell = "1.19"
regex = "1.10"
rfd = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
thiserror = "1.0"
walkdir = "2.5"
webbrowser = "1.0"