29 lines
719 B
TOML
29 lines
719 B
TOML
[package]
|
|
name = "snaplet"
|
|
version = "0.1.0"
|
|
description = "A lightweight cross-platform screenshot tool"
|
|
authors = ["Snaplet"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "snaplet_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-global-shortcut = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
image = "0.25"
|
|
xcap = "0.7"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.61", features = ["Win32_UI_WindowsAndMessaging"] }
|