watchcat 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Cargo.lock +697 -0
- data/Cargo.toml +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +70 -0
- data/LICENSE.txt +21 -0
- data/README.md +103 -0
- data/Rakefile +45 -0
- data/ext/watchcat/.gitignore +1 -0
- data/ext/watchcat/Cargo.lock +494 -0
- data/ext/watchcat/Cargo.toml +15 -0
- data/ext/watchcat/extconf.rb +4 -0
- data/ext/watchcat/src/event.rs +135 -0
- data/ext/watchcat/src/lib.rs +228 -0
- data/lib/watchcat/client.rb +26 -0
- data/lib/watchcat/event.rb +63 -0
- data/lib/watchcat/executor.rb +64 -0
- data/lib/watchcat/kind.rb +200 -0
- data/lib/watchcat/server.rb +14 -0
- data/lib/watchcat/version.rb +3 -0
- data/lib/watchcat.rb +37 -0
- data/watchcat.gemspec +38 -0
- metadata +193 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fda9cc3456d2cee73418912b619dcfb975f94399563c7457ed132e7ba9658133
|
4
|
+
data.tar.gz: 757255818e15cdd69d830332e5cd9e6185dae1e2ae81c2a37f0675b03fd82074
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 991e5d2bf7d2fb607fc095bc5983e0a74770ab528e8ab3747bec6812795f12fe7ae77614ac6d9c33c4f730e814e404fa75d52e34e1e81591eafa67f27f0efd1f
|
7
|
+
data.tar.gz: d069c27def32d3cb2eb5db0aac061a9df457b6bc8b64055c5b5e1d6776570d8bbadede816131b6d4e37f35cb9c39a272971d7065185282f4a8d67b590861c4f8
|
data/Cargo.lock
ADDED
@@ -0,0 +1,697 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "aho-corasick"
|
7
|
+
version = "0.7.20"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
10
|
+
dependencies = [
|
11
|
+
"memchr",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "bindgen"
|
16
|
+
version = "0.69.1"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
|
19
|
+
dependencies = [
|
20
|
+
"bitflags 2.4.0",
|
21
|
+
"cexpr",
|
22
|
+
"clang-sys",
|
23
|
+
"lazy_static",
|
24
|
+
"lazycell",
|
25
|
+
"peeking_take_while",
|
26
|
+
"proc-macro2",
|
27
|
+
"quote",
|
28
|
+
"regex",
|
29
|
+
"rustc-hash",
|
30
|
+
"shlex",
|
31
|
+
"syn",
|
32
|
+
]
|
33
|
+
|
34
|
+
[[package]]
|
35
|
+
name = "bitflags"
|
36
|
+
version = "1.3.2"
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "bitflags"
|
42
|
+
version = "2.4.0"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "cexpr"
|
48
|
+
version = "0.6.0"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
51
|
+
dependencies = [
|
52
|
+
"nom",
|
53
|
+
]
|
54
|
+
|
55
|
+
[[package]]
|
56
|
+
name = "cfg-if"
|
57
|
+
version = "1.0.0"
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
59
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
60
|
+
|
61
|
+
[[package]]
|
62
|
+
name = "clang-sys"
|
63
|
+
version = "1.6.0"
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
65
|
+
checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a"
|
66
|
+
dependencies = [
|
67
|
+
"glob",
|
68
|
+
"libc",
|
69
|
+
"libloading",
|
70
|
+
]
|
71
|
+
|
72
|
+
[[package]]
|
73
|
+
name = "crossbeam-channel"
|
74
|
+
version = "0.5.13"
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
76
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
77
|
+
dependencies = [
|
78
|
+
"crossbeam-utils",
|
79
|
+
]
|
80
|
+
|
81
|
+
[[package]]
|
82
|
+
name = "crossbeam-utils"
|
83
|
+
version = "0.8.18"
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
85
|
+
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
86
|
+
dependencies = [
|
87
|
+
"cfg-if",
|
88
|
+
]
|
89
|
+
|
90
|
+
[[package]]
|
91
|
+
name = "errno"
|
92
|
+
version = "0.3.9"
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
95
|
+
dependencies = [
|
96
|
+
"libc",
|
97
|
+
"windows-sys 0.52.0",
|
98
|
+
]
|
99
|
+
|
100
|
+
[[package]]
|
101
|
+
name = "fastrand"
|
102
|
+
version = "2.1.1"
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
104
|
+
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
|
105
|
+
|
106
|
+
[[package]]
|
107
|
+
name = "filetime"
|
108
|
+
version = "0.2.22"
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
|
+
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
|
111
|
+
dependencies = [
|
112
|
+
"cfg-if",
|
113
|
+
"libc",
|
114
|
+
"redox_syscall",
|
115
|
+
"windows-sys 0.48.0",
|
116
|
+
]
|
117
|
+
|
118
|
+
[[package]]
|
119
|
+
name = "fsevent-sys"
|
120
|
+
version = "4.1.0"
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
+
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
123
|
+
dependencies = [
|
124
|
+
"libc",
|
125
|
+
]
|
126
|
+
|
127
|
+
[[package]]
|
128
|
+
name = "glob"
|
129
|
+
version = "0.3.1"
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
132
|
+
|
133
|
+
[[package]]
|
134
|
+
name = "hermit-abi"
|
135
|
+
version = "0.3.9"
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
138
|
+
|
139
|
+
[[package]]
|
140
|
+
name = "inotify"
|
141
|
+
version = "0.10.2"
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
143
|
+
checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
|
144
|
+
dependencies = [
|
145
|
+
"bitflags 1.3.2",
|
146
|
+
"inotify-sys",
|
147
|
+
"libc",
|
148
|
+
]
|
149
|
+
|
150
|
+
[[package]]
|
151
|
+
name = "inotify-sys"
|
152
|
+
version = "0.1.5"
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
154
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
155
|
+
dependencies = [
|
156
|
+
"libc",
|
157
|
+
]
|
158
|
+
|
159
|
+
[[package]]
|
160
|
+
name = "instant"
|
161
|
+
version = "0.1.13"
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
164
|
+
dependencies = [
|
165
|
+
"cfg-if",
|
166
|
+
]
|
167
|
+
|
168
|
+
[[package]]
|
169
|
+
name = "kqueue"
|
170
|
+
version = "1.0.8"
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
+
checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
|
173
|
+
dependencies = [
|
174
|
+
"kqueue-sys",
|
175
|
+
"libc",
|
176
|
+
]
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "kqueue-sys"
|
180
|
+
version = "1.0.4"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
183
|
+
dependencies = [
|
184
|
+
"bitflags 1.3.2",
|
185
|
+
"libc",
|
186
|
+
]
|
187
|
+
|
188
|
+
[[package]]
|
189
|
+
name = "lazy_static"
|
190
|
+
version = "1.4.0"
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
193
|
+
|
194
|
+
[[package]]
|
195
|
+
name = "lazycell"
|
196
|
+
version = "1.3.0"
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
198
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
199
|
+
|
200
|
+
[[package]]
|
201
|
+
name = "libc"
|
202
|
+
version = "0.2.161"
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
204
|
+
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
|
205
|
+
|
206
|
+
[[package]]
|
207
|
+
name = "libloading"
|
208
|
+
version = "0.7.4"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
211
|
+
dependencies = [
|
212
|
+
"cfg-if",
|
213
|
+
"winapi",
|
214
|
+
]
|
215
|
+
|
216
|
+
[[package]]
|
217
|
+
name = "linux-raw-sys"
|
218
|
+
version = "0.4.14"
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
220
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
221
|
+
|
222
|
+
[[package]]
|
223
|
+
name = "log"
|
224
|
+
version = "0.4.17"
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
227
|
+
dependencies = [
|
228
|
+
"cfg-if",
|
229
|
+
]
|
230
|
+
|
231
|
+
[[package]]
|
232
|
+
name = "magnus"
|
233
|
+
version = "0.7.1"
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
236
|
+
dependencies = [
|
237
|
+
"magnus-macros",
|
238
|
+
"rb-sys",
|
239
|
+
"rb-sys-env",
|
240
|
+
"seq-macro",
|
241
|
+
]
|
242
|
+
|
243
|
+
[[package]]
|
244
|
+
name = "magnus-macros"
|
245
|
+
version = "0.6.0"
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
248
|
+
dependencies = [
|
249
|
+
"proc-macro2",
|
250
|
+
"quote",
|
251
|
+
"syn",
|
252
|
+
]
|
253
|
+
|
254
|
+
[[package]]
|
255
|
+
name = "memchr"
|
256
|
+
version = "2.5.0"
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
258
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
259
|
+
|
260
|
+
[[package]]
|
261
|
+
name = "minimal-lexical"
|
262
|
+
version = "0.2.1"
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
265
|
+
|
266
|
+
[[package]]
|
267
|
+
name = "mio"
|
268
|
+
version = "1.0.2"
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
271
|
+
dependencies = [
|
272
|
+
"hermit-abi",
|
273
|
+
"libc",
|
274
|
+
"log",
|
275
|
+
"wasi",
|
276
|
+
"windows-sys 0.52.0",
|
277
|
+
]
|
278
|
+
|
279
|
+
[[package]]
|
280
|
+
name = "nom"
|
281
|
+
version = "7.1.3"
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
283
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
284
|
+
dependencies = [
|
285
|
+
"memchr",
|
286
|
+
"minimal-lexical",
|
287
|
+
]
|
288
|
+
|
289
|
+
[[package]]
|
290
|
+
name = "notify"
|
291
|
+
version = "7.0.0"
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
293
|
+
checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
|
294
|
+
dependencies = [
|
295
|
+
"bitflags 2.4.0",
|
296
|
+
"crossbeam-channel",
|
297
|
+
"filetime",
|
298
|
+
"fsevent-sys",
|
299
|
+
"inotify",
|
300
|
+
"kqueue",
|
301
|
+
"libc",
|
302
|
+
"log",
|
303
|
+
"mio",
|
304
|
+
"notify-types",
|
305
|
+
"walkdir",
|
306
|
+
"windows-sys 0.52.0",
|
307
|
+
]
|
308
|
+
|
309
|
+
[[package]]
|
310
|
+
name = "notify-debouncer-mini"
|
311
|
+
version = "0.5.0"
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
+
checksum = "aaa5a66d07ed97dce782be94dcf5ab4d1b457f4243f7566c7557f15cabc8c799"
|
314
|
+
dependencies = [
|
315
|
+
"crossbeam-channel",
|
316
|
+
"log",
|
317
|
+
"notify",
|
318
|
+
"notify-types",
|
319
|
+
"tempfile",
|
320
|
+
]
|
321
|
+
|
322
|
+
[[package]]
|
323
|
+
name = "notify-types"
|
324
|
+
version = "1.0.0"
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
326
|
+
checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df"
|
327
|
+
dependencies = [
|
328
|
+
"instant",
|
329
|
+
]
|
330
|
+
|
331
|
+
[[package]]
|
332
|
+
name = "once_cell"
|
333
|
+
version = "1.20.2"
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
336
|
+
|
337
|
+
[[package]]
|
338
|
+
name = "peeking_take_while"
|
339
|
+
version = "0.1.2"
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
342
|
+
|
343
|
+
[[package]]
|
344
|
+
name = "proc-macro2"
|
345
|
+
version = "1.0.66"
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
+
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
|
348
|
+
dependencies = [
|
349
|
+
"unicode-ident",
|
350
|
+
]
|
351
|
+
|
352
|
+
[[package]]
|
353
|
+
name = "quote"
|
354
|
+
version = "1.0.32"
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
356
|
+
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
|
357
|
+
dependencies = [
|
358
|
+
"proc-macro2",
|
359
|
+
]
|
360
|
+
|
361
|
+
[[package]]
|
362
|
+
name = "rb-sys"
|
363
|
+
version = "0.9.102"
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
+
checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1"
|
366
|
+
dependencies = [
|
367
|
+
"rb-sys-build",
|
368
|
+
]
|
369
|
+
|
370
|
+
[[package]]
|
371
|
+
name = "rb-sys-build"
|
372
|
+
version = "0.9.102"
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
+
checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570"
|
375
|
+
dependencies = [
|
376
|
+
"bindgen",
|
377
|
+
"lazy_static",
|
378
|
+
"proc-macro2",
|
379
|
+
"quote",
|
380
|
+
"regex",
|
381
|
+
"shell-words",
|
382
|
+
"syn",
|
383
|
+
]
|
384
|
+
|
385
|
+
[[package]]
|
386
|
+
name = "rb-sys-env"
|
387
|
+
version = "0.1.2"
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
390
|
+
|
391
|
+
[[package]]
|
392
|
+
name = "redox_syscall"
|
393
|
+
version = "0.3.5"
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
396
|
+
dependencies = [
|
397
|
+
"bitflags 1.3.2",
|
398
|
+
]
|
399
|
+
|
400
|
+
[[package]]
|
401
|
+
name = "regex"
|
402
|
+
version = "1.7.1"
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
|
405
|
+
dependencies = [
|
406
|
+
"aho-corasick",
|
407
|
+
"memchr",
|
408
|
+
"regex-syntax",
|
409
|
+
]
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "regex-syntax"
|
413
|
+
version = "0.6.28"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
416
|
+
|
417
|
+
[[package]]
|
418
|
+
name = "rustc-hash"
|
419
|
+
version = "1.1.0"
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
421
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
422
|
+
|
423
|
+
[[package]]
|
424
|
+
name = "rustix"
|
425
|
+
version = "0.38.38"
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
427
|
+
checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
|
428
|
+
dependencies = [
|
429
|
+
"bitflags 2.4.0",
|
430
|
+
"errno",
|
431
|
+
"libc",
|
432
|
+
"linux-raw-sys",
|
433
|
+
"windows-sys 0.52.0",
|
434
|
+
]
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "same-file"
|
438
|
+
version = "1.0.6"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
441
|
+
dependencies = [
|
442
|
+
"winapi-util",
|
443
|
+
]
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "seq-macro"
|
447
|
+
version = "0.3.5"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "shell-words"
|
453
|
+
version = "1.1.0"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "shlex"
|
459
|
+
version = "1.1.0"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
462
|
+
|
463
|
+
[[package]]
|
464
|
+
name = "syn"
|
465
|
+
version = "2.0.28"
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
+
checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567"
|
468
|
+
dependencies = [
|
469
|
+
"proc-macro2",
|
470
|
+
"quote",
|
471
|
+
"unicode-ident",
|
472
|
+
]
|
473
|
+
|
474
|
+
[[package]]
|
475
|
+
name = "tempfile"
|
476
|
+
version = "3.13.0"
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
478
|
+
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
|
479
|
+
dependencies = [
|
480
|
+
"cfg-if",
|
481
|
+
"fastrand",
|
482
|
+
"once_cell",
|
483
|
+
"rustix",
|
484
|
+
"windows-sys 0.59.0",
|
485
|
+
]
|
486
|
+
|
487
|
+
[[package]]
|
488
|
+
name = "unicode-ident"
|
489
|
+
version = "1.0.7"
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
491
|
+
checksum = "775c11906edafc97bc378816b94585fbd9a054eabaf86fdd0ced94af449efab7"
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "walkdir"
|
495
|
+
version = "2.5.0"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
498
|
+
dependencies = [
|
499
|
+
"same-file",
|
500
|
+
"winapi-util",
|
501
|
+
]
|
502
|
+
|
503
|
+
[[package]]
|
504
|
+
name = "wasi"
|
505
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
507
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "watchcat"
|
511
|
+
version = "0.1.0"
|
512
|
+
dependencies = [
|
513
|
+
"crossbeam-channel",
|
514
|
+
"magnus",
|
515
|
+
"notify",
|
516
|
+
"notify-debouncer-mini",
|
517
|
+
"rb-sys",
|
518
|
+
]
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "winapi"
|
522
|
+
version = "0.3.9"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
525
|
+
dependencies = [
|
526
|
+
"winapi-i686-pc-windows-gnu",
|
527
|
+
"winapi-x86_64-pc-windows-gnu",
|
528
|
+
]
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "winapi-i686-pc-windows-gnu"
|
532
|
+
version = "0.4.0"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
535
|
+
|
536
|
+
[[package]]
|
537
|
+
name = "winapi-util"
|
538
|
+
version = "0.1.5"
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
540
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
541
|
+
dependencies = [
|
542
|
+
"winapi",
|
543
|
+
]
|
544
|
+
|
545
|
+
[[package]]
|
546
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
547
|
+
version = "0.4.0"
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
549
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
550
|
+
|
551
|
+
[[package]]
|
552
|
+
name = "windows-sys"
|
553
|
+
version = "0.48.0"
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
555
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
556
|
+
dependencies = [
|
557
|
+
"windows-targets 0.48.5",
|
558
|
+
]
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "windows-sys"
|
562
|
+
version = "0.52.0"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
565
|
+
dependencies = [
|
566
|
+
"windows-targets 0.52.6",
|
567
|
+
]
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "windows-sys"
|
571
|
+
version = "0.59.0"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
574
|
+
dependencies = [
|
575
|
+
"windows-targets 0.52.6",
|
576
|
+
]
|
577
|
+
|
578
|
+
[[package]]
|
579
|
+
name = "windows-targets"
|
580
|
+
version = "0.48.5"
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
583
|
+
dependencies = [
|
584
|
+
"windows_aarch64_gnullvm 0.48.5",
|
585
|
+
"windows_aarch64_msvc 0.48.5",
|
586
|
+
"windows_i686_gnu 0.48.5",
|
587
|
+
"windows_i686_msvc 0.48.5",
|
588
|
+
"windows_x86_64_gnu 0.48.5",
|
589
|
+
"windows_x86_64_gnullvm 0.48.5",
|
590
|
+
"windows_x86_64_msvc 0.48.5",
|
591
|
+
]
|
592
|
+
|
593
|
+
[[package]]
|
594
|
+
name = "windows-targets"
|
595
|
+
version = "0.52.6"
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
598
|
+
dependencies = [
|
599
|
+
"windows_aarch64_gnullvm 0.52.6",
|
600
|
+
"windows_aarch64_msvc 0.52.6",
|
601
|
+
"windows_i686_gnu 0.52.6",
|
602
|
+
"windows_i686_gnullvm",
|
603
|
+
"windows_i686_msvc 0.52.6",
|
604
|
+
"windows_x86_64_gnu 0.52.6",
|
605
|
+
"windows_x86_64_gnullvm 0.52.6",
|
606
|
+
"windows_x86_64_msvc 0.52.6",
|
607
|
+
]
|
608
|
+
|
609
|
+
[[package]]
|
610
|
+
name = "windows_aarch64_gnullvm"
|
611
|
+
version = "0.48.5"
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
613
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
614
|
+
|
615
|
+
[[package]]
|
616
|
+
name = "windows_aarch64_gnullvm"
|
617
|
+
version = "0.52.6"
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "windows_aarch64_msvc"
|
623
|
+
version = "0.48.5"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
626
|
+
|
627
|
+
[[package]]
|
628
|
+
name = "windows_aarch64_msvc"
|
629
|
+
version = "0.52.6"
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
632
|
+
|
633
|
+
[[package]]
|
634
|
+
name = "windows_i686_gnu"
|
635
|
+
version = "0.48.5"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
638
|
+
|
639
|
+
[[package]]
|
640
|
+
name = "windows_i686_gnu"
|
641
|
+
version = "0.52.6"
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
644
|
+
|
645
|
+
[[package]]
|
646
|
+
name = "windows_i686_gnullvm"
|
647
|
+
version = "0.52.6"
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
650
|
+
|
651
|
+
[[package]]
|
652
|
+
name = "windows_i686_msvc"
|
653
|
+
version = "0.48.5"
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
656
|
+
|
657
|
+
[[package]]
|
658
|
+
name = "windows_i686_msvc"
|
659
|
+
version = "0.52.6"
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
662
|
+
|
663
|
+
[[package]]
|
664
|
+
name = "windows_x86_64_gnu"
|
665
|
+
version = "0.48.5"
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "windows_x86_64_gnu"
|
671
|
+
version = "0.52.6"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
674
|
+
|
675
|
+
[[package]]
|
676
|
+
name = "windows_x86_64_gnullvm"
|
677
|
+
version = "0.48.5"
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "windows_x86_64_gnullvm"
|
683
|
+
version = "0.52.6"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
686
|
+
|
687
|
+
[[package]]
|
688
|
+
name = "windows_x86_64_msvc"
|
689
|
+
version = "0.48.5"
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
692
|
+
|
693
|
+
[[package]]
|
694
|
+
name = "windows_x86_64_msvc"
|
695
|
+
version = "0.52.6"
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|