Files
Kingdom-Cheat-Deliverance-2/src-tauri/Cargo.toml
T
Homer 8d3367237a Implement Rust shell: tray, global hotkey, overlay window
Frameless transparent always-on-top window, tray icon with toggle/quit,
persisted global hotkey (default Ctrl+Shift+K) with safe re-registration,
single-instance --toggle IPC as Wayland hotkey fallback, close-to-tray.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-13 09:12:54 +02:00

31 lines
958 B
TOML

[package]
name = "kcd2-overlay"
version = "0.1.0"
description = "Game overlay with a KCD2 console command and item ID database"
authors = ["Homer"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "kcd2_overlay_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["tray-icon"] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-plugin-global-shortcut = "2"
tauri-plugin-clipboard-manager = "2"
tauri-plugin-store = "2"
tauri-plugin-single-instance = "2"
tauri-plugin-autostart = "2"