mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[package]
|
|
name = "qopy"
|
|
version = "0.4.0"
|
|
description = "Qopy"
|
|
authors = ["pandadev"]
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.6", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.3.1", features = [
|
|
"macos-private-api",
|
|
"tray-icon",
|
|
"image-png",
|
|
] }
|
|
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
|
|
tauri-plugin-autostart = "2.2.0"
|
|
tauri-plugin-os = "2.2.1"
|
|
tauri-plugin-updater = "2.6.0"
|
|
tauri-plugin-dialog = "2.2.0"
|
|
tauri-plugin-fs = "2.2.0"
|
|
tauri-plugin-clipboard = "2.1.11"
|
|
tauri-plugin-prevent-default = "1.2.1"
|
|
tauri-plugin-global-shortcut = "2.2.0"
|
|
tauri-plugin-aptabase = { git = "https://github.com/aptabase/tauri-plugin-aptabase", branch = "v2" }
|
|
sqlx = { version = "0.8.3", features = [
|
|
"runtime-tokio-native-tls",
|
|
"sqlite",
|
|
"chrono",
|
|
] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
tokio = { version = "1.44.1", features = ["full"] }
|
|
serde_json = "1.0.140"
|
|
rdev = "0.5.3"
|
|
rand = "0.9.0"
|
|
base64 = "0.22.1"
|
|
image = "0.25.5"
|
|
reqwest = { version = "0.12.14", features = ["json", "blocking"] }
|
|
url = "2.5.4"
|
|
regex = "1.11.1"
|
|
sha2 = "0.10.8"
|
|
lazy_static = "1.5.0"
|
|
time = "0.3.39"
|
|
global-hotkey = "0.6.4"
|
|
chrono = { version = "0.4.40", features = ["serde"] }
|
|
log = { version = "0.4.26", features = ["std"] }
|
|
uuid = "1.16.0"
|
|
include_dir = "0.7.4"
|
|
# hyperpolyglot = { git = "https://github.com/0pandadev/hyperpolyglot" }
|
|
applications = { git = "https://github.com/HuakunShen/applications-rs", branch = "fix/win-app-detection" }
|
|
glob = "0.3.2"
|
|
meta_fetcher = "0.1.1"
|
|
parking_lot = "0.12.3"
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|