Revert "feat(sync): add modules for pairing and syncing clipboard data"

This commit is contained in:
PandaDEV 2025-01-29 20:43:49 +01:00 committed by GitHub
parent 0a17a789c2
commit f7f41b1513
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 68 additions and 181 deletions

View file

@ -10,31 +10,27 @@ rust-version = "1.70"
tauri-build = { version = "2.0.5", features = [] }
[dependencies]
tauri = { version = "2.2.5", features = [
tauri = { version = "2.2.3", features = [
"macos-private-api",
"tray-icon",
"image-png",
"image-png"
] }
tauri-plugin-sql = { version = "2.2.0", features = ["sqlite"] }
tauri-plugin-autostart = "2.2.0"
tauri-plugin-os = "2.2.0"
tauri-plugin-updater = "2.4.0"
tauri-plugin-updater = "2.3.1"
tauri-plugin-dialog = "2.2.0"
tauri-plugin-fs = "2.2.0"
tauri-plugin-clipboard = "2.1.11"
tauri-plugin-prevent-default = "1.0.2"
tauri-plugin-global-shortcut = "2.2.0"
tauri-plugin-aptabase = { git = "https://github.com/0PandaDEV/tauri-plugin-aptabase", branch = "v2" }
sqlx = { version = "0.8.3", features = [
"runtime-tokio-native-tls",
"sqlite",
"chrono",
] }
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.217", features = ["derive"] }
tokio = { version = "1.43.0", features = ["full"] }
serde_json = "1.0.138"
serde_json = "1.0.137"
rdev = "0.5.3"
rand = "0.9.0"
rand = "0.8.5"
base64 = "0.22.1"
image = "0.25.5"
reqwest = { version = "0.12.12", features = ["json", "blocking"] }