|
@@ -27,6 +27,15 @@ version = "1.2.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "aho-corasick"
|
|
|
+version = "0.7.15"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
|
|
|
+dependencies = [
|
|
|
+ "memchr",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "andrew"
|
|
|
version = "0.3.1"
|
|
@@ -2105,6 +2114,24 @@ dependencies = [
|
|
|
"redox_syscall 0.2.4",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "regex"
|
|
|
+version = "1.4.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
|
|
|
+dependencies = [
|
|
|
+ "aho-corasick",
|
|
|
+ "memchr",
|
|
|
+ "regex-syntax",
|
|
|
+ "thread_local",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "regex-syntax"
|
|
|
+version = "0.6.22"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "remove_dir_all"
|
|
|
version = "0.5.3"
|
|
@@ -2378,6 +2405,12 @@ version = "0.18.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "strum"
|
|
|
+version = "0.20.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "strum_macros"
|
|
|
version = "0.8.0"
|
|
@@ -2400,6 +2433,18 @@ dependencies = [
|
|
|
"syn 1.0.60",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "strum_macros"
|
|
|
+version = "0.20.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149"
|
|
|
+dependencies = [
|
|
|
+ "heck",
|
|
|
+ "proc-macro2",
|
|
|
+ "quote 1.0.8",
|
|
|
+ "syn 1.0.60",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "syn"
|
|
|
version = "0.11.11"
|
|
@@ -2515,6 +2560,7 @@ dependencies = [
|
|
|
"serde_repr",
|
|
|
"tar",
|
|
|
"tauri-dialog",
|
|
|
+ "tauri-hotkey",
|
|
|
"tauri-utils",
|
|
|
"tempfile",
|
|
|
"thiserror",
|
|
@@ -2540,6 +2586,32 @@ dependencies = [
|
|
|
"pkg-config",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "tauri-hotkey"
|
|
|
+version = "0.0.0"
|
|
|
+source = "git+https://github.com/tauri-apps/tauri-hotkey-rs?branch=dev#48cda6dc66fbfc6f54c1aca3c14df9490f898729"
|
|
|
+dependencies = [
|
|
|
+ "log",
|
|
|
+ "once_cell",
|
|
|
+ "regex",
|
|
|
+ "serde",
|
|
|
+ "strum 0.20.0",
|
|
|
+ "strum_macros 0.20.1",
|
|
|
+ "tauri-hotkey-sys",
|
|
|
+ "thiserror",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "tauri-hotkey-sys"
|
|
|
+version = "0.0.0"
|
|
|
+source = "git+https://github.com/tauri-apps/tauri-hotkey-rs?branch=dev#48cda6dc66fbfc6f54c1aca3c14df9490f898729"
|
|
|
+dependencies = [
|
|
|
+ "cc",
|
|
|
+ "thiserror",
|
|
|
+ "winapi 0.3.9",
|
|
|
+ "x11-dl",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "tauri-macros"
|
|
|
version = "0.1.0"
|
|
@@ -2618,6 +2690,15 @@ dependencies = [
|
|
|
"syn 1.0.60",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "thread_local"
|
|
|
+version = "1.1.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
|
|
|
+dependencies = [
|
|
|
+ "once_cell",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "tiff"
|
|
|
version = "0.6.1"
|