-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.23 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
[package]
name = "emoji-picker"
version = "0.1.0"
edition = "2021"
description = "Replaces the default Windows emoji picker with a custom one."
authors = ["Maeeen <[email protected]>"]
build = "build.rs"
repository = "https://github.com/Maeeen/emoji-picker"
[features]
default = ["caret", "no-activate", "key-shortcut", "key-redir", "tray-icon", "back-click"]
caret = []
no-activate = []
key-shortcut = []
key-redir = ["dep:emoji-picker-hooker"]
tray-icon = ["dep:tray-item"]
back-click = []
[dependencies]
emojis = "0.6.3"
slint = { version = "1.7.2", features = ["raw-window-handle-06"] }
thiserror = "1.0.63"
tray-item = { version = "0.10.0", optional = true }
[build-dependencies]
slint-build = "1.7.2"
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1.17"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58.0", features = [
"Win32_UI_WindowsAndMessaging", "Win32_UI_Input_KeyboardAndMouse", # Hooking
"Win32_Graphics_Gdi", "Win32_UI_Accessibility", "Win32_System_Com", # Caret locator and various monitor informations
"Win32_System_Memory", "Win32_System_DataExchange", "Win32_System_Ole" # Clipboard
]}
raw-window-handle = "0.6.2"
emoji-picker-hooker = { path = "./emoji-picker-hooker", optional = true }