pake-cli 3.0.0-beta → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -27
- package/dist/cli.js +16 -54
- package/dist/dev.js +10 -48
- package/dist/dev.js.map +1 -1
- package/package.json +5 -5
- package/src-tauri/Cargo.lock +517 -5
- package/src-tauri/Cargo.toml +3 -2
- package/src-tauri/assets/main.wxs +71 -31
- package/src-tauri/gen/schemas/windows-schema.json +2326 -0
- package/src-tauri/src/app/window.rs +4 -4
- package/src-tauri/src/inject/event.js +3 -3
- package/src-tauri/src/lib.rs +10 -15
- package/src-tauri/tauri.conf.json +4 -10
- package/src-tauri/tauri.linux.conf.json +1 -7
- package/src-tauri/tauri.macos.conf.json +1 -13
- package/src-tauri/tauri.windows.conf.json +0 -7
package/src-tauri/Cargo.lock
CHANGED
|
@@ -62,6 +62,149 @@ version = "1.0.93"
|
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
63
|
checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
|
|
64
64
|
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "async-broadcast"
|
|
67
|
+
version = "0.7.1"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"event-listener",
|
|
72
|
+
"event-listener-strategy",
|
|
73
|
+
"futures-core",
|
|
74
|
+
"pin-project-lite",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "async-channel"
|
|
79
|
+
version = "2.3.1"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"concurrent-queue",
|
|
84
|
+
"event-listener-strategy",
|
|
85
|
+
"futures-core",
|
|
86
|
+
"pin-project-lite",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "async-executor"
|
|
91
|
+
version = "1.13.1"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"async-task",
|
|
96
|
+
"concurrent-queue",
|
|
97
|
+
"fastrand",
|
|
98
|
+
"futures-lite",
|
|
99
|
+
"slab",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "async-fs"
|
|
104
|
+
version = "2.1.2"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"async-lock",
|
|
109
|
+
"blocking",
|
|
110
|
+
"futures-lite",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "async-io"
|
|
115
|
+
version = "2.4.0"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"async-lock",
|
|
120
|
+
"cfg-if",
|
|
121
|
+
"concurrent-queue",
|
|
122
|
+
"futures-io",
|
|
123
|
+
"futures-lite",
|
|
124
|
+
"parking",
|
|
125
|
+
"polling",
|
|
126
|
+
"rustix",
|
|
127
|
+
"slab",
|
|
128
|
+
"tracing",
|
|
129
|
+
"windows-sys 0.59.0",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "async-lock"
|
|
134
|
+
version = "3.4.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"event-listener",
|
|
139
|
+
"event-listener-strategy",
|
|
140
|
+
"pin-project-lite",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "async-process"
|
|
145
|
+
version = "2.3.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"async-channel",
|
|
150
|
+
"async-io",
|
|
151
|
+
"async-lock",
|
|
152
|
+
"async-signal",
|
|
153
|
+
"async-task",
|
|
154
|
+
"blocking",
|
|
155
|
+
"cfg-if",
|
|
156
|
+
"event-listener",
|
|
157
|
+
"futures-lite",
|
|
158
|
+
"rustix",
|
|
159
|
+
"tracing",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "async-recursion"
|
|
164
|
+
version = "1.1.1"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"proc-macro2",
|
|
169
|
+
"quote",
|
|
170
|
+
"syn 2.0.90",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "async-signal"
|
|
175
|
+
version = "0.2.10"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"async-io",
|
|
180
|
+
"async-lock",
|
|
181
|
+
"atomic-waker",
|
|
182
|
+
"cfg-if",
|
|
183
|
+
"futures-core",
|
|
184
|
+
"futures-io",
|
|
185
|
+
"rustix",
|
|
186
|
+
"signal-hook-registry",
|
|
187
|
+
"slab",
|
|
188
|
+
"windows-sys 0.59.0",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "async-task"
|
|
193
|
+
version = "4.7.1"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "async-trait"
|
|
199
|
+
version = "0.1.83"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"proc-macro2",
|
|
204
|
+
"quote",
|
|
205
|
+
"syn 2.0.90",
|
|
206
|
+
]
|
|
207
|
+
|
|
65
208
|
[[package]]
|
|
66
209
|
name = "atk"
|
|
67
210
|
version = "0.18.0"
|
|
@@ -163,6 +306,19 @@ dependencies = [
|
|
|
163
306
|
"objc2",
|
|
164
307
|
]
|
|
165
308
|
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "blocking"
|
|
311
|
+
version = "1.6.1"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"async-channel",
|
|
316
|
+
"async-task",
|
|
317
|
+
"futures-io",
|
|
318
|
+
"futures-lite",
|
|
319
|
+
"piper",
|
|
320
|
+
]
|
|
321
|
+
|
|
166
322
|
[[package]]
|
|
167
323
|
name = "brotli"
|
|
168
324
|
version = "7.0.0"
|
|
@@ -385,6 +541,15 @@ dependencies = [
|
|
|
385
541
|
"memchr",
|
|
386
542
|
]
|
|
387
543
|
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "concurrent-queue"
|
|
546
|
+
version = "2.5.0"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"crossbeam-utils",
|
|
551
|
+
]
|
|
552
|
+
|
|
388
553
|
[[package]]
|
|
389
554
|
name = "convert_case"
|
|
390
555
|
version = "0.4.0"
|
|
@@ -601,6 +766,17 @@ dependencies = [
|
|
|
601
766
|
"serde",
|
|
602
767
|
]
|
|
603
768
|
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "derivative"
|
|
771
|
+
version = "2.2.0"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"proc-macro2",
|
|
776
|
+
"quote",
|
|
777
|
+
"syn 1.0.109",
|
|
778
|
+
]
|
|
779
|
+
|
|
604
780
|
[[package]]
|
|
605
781
|
name = "derive_more"
|
|
606
782
|
version = "0.99.18"
|
|
@@ -759,6 +935,33 @@ dependencies = [
|
|
|
759
935
|
"cfg-if",
|
|
760
936
|
]
|
|
761
937
|
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "endi"
|
|
940
|
+
version = "1.1.0"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "enumflags2"
|
|
946
|
+
version = "0.7.10"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"enumflags2_derive",
|
|
951
|
+
"serde",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "enumflags2_derive"
|
|
956
|
+
version = "0.7.10"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"proc-macro2",
|
|
961
|
+
"quote",
|
|
962
|
+
"syn 2.0.90",
|
|
963
|
+
]
|
|
964
|
+
|
|
762
965
|
[[package]]
|
|
763
966
|
name = "equivalent"
|
|
764
967
|
version = "1.0.1"
|
|
@@ -775,6 +978,43 @@ dependencies = [
|
|
|
775
978
|
"typeid",
|
|
776
979
|
]
|
|
777
980
|
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "errno"
|
|
983
|
+
version = "0.3.10"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"libc",
|
|
988
|
+
"windows-sys 0.59.0",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "event-listener"
|
|
993
|
+
version = "5.3.1"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"concurrent-queue",
|
|
998
|
+
"parking",
|
|
999
|
+
"pin-project-lite",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "event-listener-strategy"
|
|
1004
|
+
version = "0.5.3"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"event-listener",
|
|
1009
|
+
"pin-project-lite",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "fastrand"
|
|
1014
|
+
version = "2.3.0"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1017
|
+
|
|
778
1018
|
[[package]]
|
|
779
1019
|
name = "fdeflate"
|
|
780
1020
|
version = "0.3.6"
|
|
@@ -888,6 +1128,19 @@ version = "0.3.31"
|
|
|
888
1128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
1129
|
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
890
1130
|
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "futures-lite"
|
|
1133
|
+
version = "2.5.0"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"fastrand",
|
|
1138
|
+
"futures-core",
|
|
1139
|
+
"futures-io",
|
|
1140
|
+
"parking",
|
|
1141
|
+
"pin-project-lite",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
891
1144
|
[[package]]
|
|
892
1145
|
name = "futures-macro"
|
|
893
1146
|
version = "0.3.31"
|
|
@@ -1284,6 +1537,12 @@ version = "0.5.0"
|
|
|
1284
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
1538
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1286
1539
|
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "hermit-abi"
|
|
1542
|
+
version = "0.4.0"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
1545
|
+
|
|
1287
1546
|
[[package]]
|
|
1288
1547
|
name = "hex"
|
|
1289
1548
|
version = "0.4.3"
|
|
@@ -1825,6 +2084,12 @@ dependencies = [
|
|
|
1825
2084
|
"libc",
|
|
1826
2085
|
]
|
|
1827
2086
|
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "linux-raw-sys"
|
|
2089
|
+
version = "0.4.14"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
2092
|
+
|
|
1828
2093
|
[[package]]
|
|
1829
2094
|
name = "litemap"
|
|
1830
2095
|
version = "0.7.4"
|
|
@@ -1986,6 +2251,18 @@ version = "1.0.6"
|
|
|
1986
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
2252
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1988
2253
|
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "nix"
|
|
2256
|
+
version = "0.27.1"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
|
|
2259
|
+
dependencies = [
|
|
2260
|
+
"bitflags 2.6.0",
|
|
2261
|
+
"cfg-if",
|
|
2262
|
+
"libc",
|
|
2263
|
+
"memoffset",
|
|
2264
|
+
]
|
|
2265
|
+
|
|
1989
2266
|
[[package]]
|
|
1990
2267
|
name = "nodrop"
|
|
1991
2268
|
version = "0.1.14"
|
|
@@ -2287,6 +2564,16 @@ version = "0.2.0"
|
|
|
2287
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
2565
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2289
2566
|
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "ordered-stream"
|
|
2569
|
+
version = "0.2.0"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
2572
|
+
dependencies = [
|
|
2573
|
+
"futures-core",
|
|
2574
|
+
"pin-project-lite",
|
|
2575
|
+
]
|
|
2576
|
+
|
|
2290
2577
|
[[package]]
|
|
2291
2578
|
name = "os_pipe"
|
|
2292
2579
|
version = "1.2.1"
|
|
@@ -2299,7 +2586,7 @@ dependencies = [
|
|
|
2299
2586
|
|
|
2300
2587
|
[[package]]
|
|
2301
2588
|
name = "pake"
|
|
2302
|
-
version = "0.
|
|
2589
|
+
version = "3.0.0"
|
|
2303
2590
|
dependencies = [
|
|
2304
2591
|
"serde",
|
|
2305
2592
|
"serde_json",
|
|
@@ -2309,6 +2596,7 @@ dependencies = [
|
|
|
2309
2596
|
"tauri-plugin-http",
|
|
2310
2597
|
"tauri-plugin-oauth",
|
|
2311
2598
|
"tauri-plugin-shell",
|
|
2599
|
+
"tauri-plugin-single-instance",
|
|
2312
2600
|
"tauri-plugin-window-state",
|
|
2313
2601
|
"tokio",
|
|
2314
2602
|
]
|
|
@@ -2338,6 +2626,12 @@ dependencies = [
|
|
|
2338
2626
|
"system-deps",
|
|
2339
2627
|
]
|
|
2340
2628
|
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "parking"
|
|
2631
|
+
version = "2.2.1"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2634
|
+
|
|
2341
2635
|
[[package]]
|
|
2342
2636
|
name = "parking_lot"
|
|
2343
2637
|
version = "0.12.3"
|
|
@@ -2519,6 +2813,17 @@ version = "0.1.0"
|
|
|
2519
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
2814
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2521
2815
|
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "piper"
|
|
2818
|
+
version = "0.2.4"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
|
2821
|
+
dependencies = [
|
|
2822
|
+
"atomic-waker",
|
|
2823
|
+
"fastrand",
|
|
2824
|
+
"futures-io",
|
|
2825
|
+
]
|
|
2826
|
+
|
|
2522
2827
|
[[package]]
|
|
2523
2828
|
name = "pkg-config"
|
|
2524
2829
|
version = "0.3.31"
|
|
@@ -2551,6 +2856,21 @@ dependencies = [
|
|
|
2551
2856
|
"miniz_oxide",
|
|
2552
2857
|
]
|
|
2553
2858
|
|
|
2859
|
+
[[package]]
|
|
2860
|
+
name = "polling"
|
|
2861
|
+
version = "3.7.4"
|
|
2862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
+
checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
|
|
2864
|
+
dependencies = [
|
|
2865
|
+
"cfg-if",
|
|
2866
|
+
"concurrent-queue",
|
|
2867
|
+
"hermit-abi",
|
|
2868
|
+
"pin-project-lite",
|
|
2869
|
+
"rustix",
|
|
2870
|
+
"tracing",
|
|
2871
|
+
"windows-sys 0.59.0",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2554
2874
|
[[package]]
|
|
2555
2875
|
name = "powerfmt"
|
|
2556
2876
|
version = "0.2.0"
|
|
@@ -2938,6 +3258,19 @@ dependencies = [
|
|
|
2938
3258
|
"semver",
|
|
2939
3259
|
]
|
|
2940
3260
|
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "rustix"
|
|
3263
|
+
version = "0.38.42"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
|
3266
|
+
dependencies = [
|
|
3267
|
+
"bitflags 2.6.0",
|
|
3268
|
+
"errno",
|
|
3269
|
+
"libc",
|
|
3270
|
+
"linux-raw-sys",
|
|
3271
|
+
"windows-sys 0.59.0",
|
|
3272
|
+
]
|
|
3273
|
+
|
|
2941
3274
|
[[package]]
|
|
2942
3275
|
name = "rustls"
|
|
2943
3276
|
version = "0.23.19"
|
|
@@ -3060,9 +3393,9 @@ dependencies = [
|
|
|
3060
3393
|
|
|
3061
3394
|
[[package]]
|
|
3062
3395
|
name = "serde"
|
|
3063
|
-
version = "1.0.
|
|
3396
|
+
version = "1.0.216"
|
|
3064
3397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
-
checksum = "
|
|
3398
|
+
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
|
|
3066
3399
|
dependencies = [
|
|
3067
3400
|
"serde_derive",
|
|
3068
3401
|
]
|
|
@@ -3080,9 +3413,9 @@ dependencies = [
|
|
|
3080
3413
|
|
|
3081
3414
|
[[package]]
|
|
3082
3415
|
name = "serde_derive"
|
|
3083
|
-
version = "1.0.
|
|
3416
|
+
version = "1.0.216"
|
|
3084
3417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
-
checksum = "
|
|
3418
|
+
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
|
|
3086
3419
|
dependencies = [
|
|
3087
3420
|
"proc-macro2",
|
|
3088
3421
|
"quote",
|
|
@@ -3206,6 +3539,17 @@ dependencies = [
|
|
|
3206
3539
|
"stable_deref_trait",
|
|
3207
3540
|
]
|
|
3208
3541
|
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "sha1"
|
|
3544
|
+
version = "0.10.6"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3547
|
+
dependencies = [
|
|
3548
|
+
"cfg-if",
|
|
3549
|
+
"cpufeatures",
|
|
3550
|
+
"digest",
|
|
3551
|
+
]
|
|
3552
|
+
|
|
3209
3553
|
[[package]]
|
|
3210
3554
|
name = "sha2"
|
|
3211
3555
|
version = "0.10.8"
|
|
@@ -3339,6 +3683,12 @@ version = "1.2.0"
|
|
|
3339
3683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
3684
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3341
3685
|
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "static_assertions"
|
|
3688
|
+
version = "1.1.0"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3691
|
+
|
|
3342
3692
|
[[package]]
|
|
3343
3693
|
name = "string_cache"
|
|
3344
3694
|
version = "0.8.7"
|
|
@@ -3747,6 +4097,21 @@ dependencies = [
|
|
|
3747
4097
|
"tokio",
|
|
3748
4098
|
]
|
|
3749
4099
|
|
|
4100
|
+
[[package]]
|
|
4101
|
+
name = "tauri-plugin-single-instance"
|
|
4102
|
+
version = "2.2.0"
|
|
4103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4104
|
+
checksum = "0f36019ee9832dc99e4450bb55a21cfad8633b19c2c18bd17c7741939b070ede"
|
|
4105
|
+
dependencies = [
|
|
4106
|
+
"serde",
|
|
4107
|
+
"serde_json",
|
|
4108
|
+
"tauri",
|
|
4109
|
+
"thiserror 2.0.3",
|
|
4110
|
+
"tracing",
|
|
4111
|
+
"windows-sys 0.59.0",
|
|
4112
|
+
"zbus",
|
|
4113
|
+
]
|
|
4114
|
+
|
|
3750
4115
|
[[package]]
|
|
3751
4116
|
name = "tauri-plugin-window-state"
|
|
3752
4117
|
version = "2.2.0"
|
|
@@ -3854,6 +4219,19 @@ dependencies = [
|
|
|
3854
4219
|
"toml 0.7.8",
|
|
3855
4220
|
]
|
|
3856
4221
|
|
|
4222
|
+
[[package]]
|
|
4223
|
+
name = "tempfile"
|
|
4224
|
+
version = "3.14.0"
|
|
4225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4226
|
+
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
4227
|
+
dependencies = [
|
|
4228
|
+
"cfg-if",
|
|
4229
|
+
"fastrand",
|
|
4230
|
+
"once_cell",
|
|
4231
|
+
"rustix",
|
|
4232
|
+
"windows-sys 0.59.0",
|
|
4233
|
+
]
|
|
4234
|
+
|
|
3857
4235
|
[[package]]
|
|
3858
4236
|
name = "tendril"
|
|
3859
4237
|
version = "0.4.3"
|
|
@@ -4092,9 +4470,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4092
4470
|
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
4093
4471
|
dependencies = [
|
|
4094
4472
|
"pin-project-lite",
|
|
4473
|
+
"tracing-attributes",
|
|
4095
4474
|
"tracing-core",
|
|
4096
4475
|
]
|
|
4097
4476
|
|
|
4477
|
+
[[package]]
|
|
4478
|
+
name = "tracing-attributes"
|
|
4479
|
+
version = "0.1.28"
|
|
4480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4481
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
4482
|
+
dependencies = [
|
|
4483
|
+
"proc-macro2",
|
|
4484
|
+
"quote",
|
|
4485
|
+
"syn 2.0.90",
|
|
4486
|
+
]
|
|
4487
|
+
|
|
4098
4488
|
[[package]]
|
|
4099
4489
|
name = "tracing-core"
|
|
4100
4490
|
version = "0.1.33"
|
|
@@ -4143,6 +4533,17 @@ version = "1.17.0"
|
|
|
4143
4533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4144
4534
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
4145
4535
|
|
|
4536
|
+
[[package]]
|
|
4537
|
+
name = "uds_windows"
|
|
4538
|
+
version = "1.1.0"
|
|
4539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4540
|
+
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
4541
|
+
dependencies = [
|
|
4542
|
+
"memoffset",
|
|
4543
|
+
"tempfile",
|
|
4544
|
+
"winapi",
|
|
4545
|
+
]
|
|
4546
|
+
|
|
4146
4547
|
[[package]]
|
|
4147
4548
|
name = "unic-char-property"
|
|
4148
4549
|
version = "0.9.0"
|
|
@@ -4954,6 +5355,16 @@ dependencies = [
|
|
|
4954
5355
|
"pkg-config",
|
|
4955
5356
|
]
|
|
4956
5357
|
|
|
5358
|
+
[[package]]
|
|
5359
|
+
name = "xdg-home"
|
|
5360
|
+
version = "1.3.0"
|
|
5361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5362
|
+
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
|
|
5363
|
+
dependencies = [
|
|
5364
|
+
"libc",
|
|
5365
|
+
"windows-sys 0.59.0",
|
|
5366
|
+
]
|
|
5367
|
+
|
|
4957
5368
|
[[package]]
|
|
4958
5369
|
name = "yoke"
|
|
4959
5370
|
version = "0.7.5"
|
|
@@ -4978,6 +5389,70 @@ dependencies = [
|
|
|
4978
5389
|
"synstructure",
|
|
4979
5390
|
]
|
|
4980
5391
|
|
|
5392
|
+
[[package]]
|
|
5393
|
+
name = "zbus"
|
|
5394
|
+
version = "4.0.1"
|
|
5395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5396
|
+
checksum = "7b8e3d6ae3342792a6cc2340e4394334c7402f3d793b390d2c5494a4032b3030"
|
|
5397
|
+
dependencies = [
|
|
5398
|
+
"async-broadcast",
|
|
5399
|
+
"async-executor",
|
|
5400
|
+
"async-fs",
|
|
5401
|
+
"async-io",
|
|
5402
|
+
"async-lock",
|
|
5403
|
+
"async-process",
|
|
5404
|
+
"async-recursion",
|
|
5405
|
+
"async-task",
|
|
5406
|
+
"async-trait",
|
|
5407
|
+
"blocking",
|
|
5408
|
+
"derivative",
|
|
5409
|
+
"enumflags2",
|
|
5410
|
+
"event-listener",
|
|
5411
|
+
"futures-core",
|
|
5412
|
+
"futures-sink",
|
|
5413
|
+
"futures-util",
|
|
5414
|
+
"hex",
|
|
5415
|
+
"nix",
|
|
5416
|
+
"ordered-stream",
|
|
5417
|
+
"rand 0.8.5",
|
|
5418
|
+
"serde",
|
|
5419
|
+
"serde_repr",
|
|
5420
|
+
"sha1",
|
|
5421
|
+
"static_assertions",
|
|
5422
|
+
"tracing",
|
|
5423
|
+
"uds_windows",
|
|
5424
|
+
"windows-sys 0.52.0",
|
|
5425
|
+
"xdg-home",
|
|
5426
|
+
"zbus_macros",
|
|
5427
|
+
"zbus_names",
|
|
5428
|
+
"zvariant",
|
|
5429
|
+
]
|
|
5430
|
+
|
|
5431
|
+
[[package]]
|
|
5432
|
+
name = "zbus_macros"
|
|
5433
|
+
version = "4.0.1"
|
|
5434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5435
|
+
checksum = "b7a3e850ff1e7217a3b7a07eba90d37fe9bb9e89a310f718afcde5885ca9b6d7"
|
|
5436
|
+
dependencies = [
|
|
5437
|
+
"proc-macro-crate 1.3.1",
|
|
5438
|
+
"proc-macro2",
|
|
5439
|
+
"quote",
|
|
5440
|
+
"regex",
|
|
5441
|
+
"syn 1.0.109",
|
|
5442
|
+
"zvariant_utils",
|
|
5443
|
+
]
|
|
5444
|
+
|
|
5445
|
+
[[package]]
|
|
5446
|
+
name = "zbus_names"
|
|
5447
|
+
version = "3.0.0"
|
|
5448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5449
|
+
checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
|
|
5450
|
+
dependencies = [
|
|
5451
|
+
"serde",
|
|
5452
|
+
"static_assertions",
|
|
5453
|
+
"zvariant",
|
|
5454
|
+
]
|
|
5455
|
+
|
|
4981
5456
|
[[package]]
|
|
4982
5457
|
name = "zerocopy"
|
|
4983
5458
|
version = "0.7.35"
|
|
@@ -5047,3 +5522,40 @@ dependencies = [
|
|
|
5047
5522
|
"quote",
|
|
5048
5523
|
"syn 2.0.90",
|
|
5049
5524
|
]
|
|
5525
|
+
|
|
5526
|
+
[[package]]
|
|
5527
|
+
name = "zvariant"
|
|
5528
|
+
version = "4.0.0"
|
|
5529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5530
|
+
checksum = "4e09e8be97d44eeab994d752f341e67b3b0d80512a8b315a0671d47232ef1b65"
|
|
5531
|
+
dependencies = [
|
|
5532
|
+
"endi",
|
|
5533
|
+
"enumflags2",
|
|
5534
|
+
"serde",
|
|
5535
|
+
"static_assertions",
|
|
5536
|
+
"zvariant_derive",
|
|
5537
|
+
]
|
|
5538
|
+
|
|
5539
|
+
[[package]]
|
|
5540
|
+
name = "zvariant_derive"
|
|
5541
|
+
version = "4.0.0"
|
|
5542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5543
|
+
checksum = "72a5857e2856435331636a9fbb415b09243df4521a267c5bedcd5289b4d5799e"
|
|
5544
|
+
dependencies = [
|
|
5545
|
+
"proc-macro-crate 1.3.1",
|
|
5546
|
+
"proc-macro2",
|
|
5547
|
+
"quote",
|
|
5548
|
+
"syn 1.0.109",
|
|
5549
|
+
"zvariant_utils",
|
|
5550
|
+
]
|
|
5551
|
+
|
|
5552
|
+
[[package]]
|
|
5553
|
+
name = "zvariant_utils"
|
|
5554
|
+
version = "1.1.0"
|
|
5555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5556
|
+
checksum = "00bedb16a193cc12451873fee2a1bc6550225acece0e36f333e68326c73c8172"
|
|
5557
|
+
dependencies = [
|
|
5558
|
+
"proc-macro2",
|
|
5559
|
+
"quote",
|
|
5560
|
+
"syn 1.0.109",
|
|
5561
|
+
]
|