Change to local tao lib

This commit is contained in:
Sergey Kurdin 2024-07-23 00:44:14 -04:00
parent 76a9f82554
commit 7b8dc662d2
2 changed files with 59 additions and 5 deletions

58
src-tauri/Cargo.lock generated
View File

@ -3835,6 +3835,7 @@ dependencies = [
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"sha-1", "sha-1",
"tao 0.16.7",
"tauri", "tauri",
"tauri-build", "tauri-build",
"tauri-plugin-deep-link", "tauri-plugin-deep-link",
@ -5289,6 +5290,50 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
[[package]]
name = "tao"
version = "0.16.7"
dependencies = [
"bitflags 1.3.2",
"cairo-rs",
"cc",
"cocoa 0.24.1",
"core-foundation",
"core-graphics 0.22.3",
"crossbeam-channel",
"dispatch",
"gdk",
"gdk-pixbuf",
"gdk-sys",
"gdkwayland-sys",
"gdkx11-sys",
"gio",
"glib",
"glib-sys",
"gtk",
"image 0.24.9",
"instant",
"jni",
"lazy_static",
"libc",
"log",
"ndk",
"ndk-context",
"ndk-sys",
"objc",
"once_cell",
"parking_lot",
"png",
"raw-window-handle",
"scopeguard",
"tao-macros 0.1.0",
"unicode-segmentation",
"uuid",
"windows 0.39.0",
"windows-implement 0.39.0",
"x11-dl",
]
[[package]] [[package]]
name = "tao" name = "tao"
version = "0.16.9" version = "0.16.9"
@ -5330,7 +5375,7 @@ dependencies = [
"raw-window-handle", "raw-window-handle",
"scopeguard", "scopeguard",
"serde", "serde",
"tao-macros", "tao-macros 0.1.2",
"unicode-segmentation", "unicode-segmentation",
"uuid", "uuid",
"windows 0.39.0", "windows 0.39.0",
@ -5338,6 +5383,15 @@ dependencies = [
"x11-dl", "x11-dl",
] ]
[[package]]
name = "tao-macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]] [[package]]
name = "tao-macros" name = "tao-macros"
version = "0.1.2" version = "0.1.2"
@ -7069,7 +7123,7 @@ dependencies = [
"serde_json", "serde_json",
"sha2", "sha2",
"soup2", "soup2",
"tao", "tao 0.16.9",
"thiserror", "thiserror",
"url", "url",
"webkit2gtk", "webkit2gtk",

View File

@ -73,7 +73,7 @@ regex = "1.9.3"
lang_detect = { path = "libs/lang_detect" } lang_detect = { path = "libs/lang_detect" }
auto-launch = { path = "libs/auto-launch" } auto-launch = { path = "libs/auto-launch" }
# tao = { path = "libs/tao-0.16.7" } tao = { path = "libs/tao-0.16.7" }
mid = { path = "libs/mid-hardware-id" } mid = { path = "libs/mid-hardware-id" }
linkify = "0.10.0" linkify = "0.10.0"
@ -99,8 +99,8 @@ default = ["custom-protocol"]
system-tray = ["tauri/system-tray"] system-tray = ["tauri/system-tray"]
custom-protocol = ["tauri/custom-protocol"] custom-protocol = ["tauri/custom-protocol"]
# [patch.crates-io] [patch.crates-io]
# tao = { path = "libs/tao-0.16.7" } tao = { path = "libs/tao-0.16.7" }
[profile.release] [profile.release]
# panic = "abort" # Strip expensive panic clean-up logic # panic = "abort" # Strip expensive panic clean-up logic