watchcat 0.2.0 → 0.6.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +31 -0
- data/Cargo.lock +93 -189
- data/Cargo.toml +1 -1
- data/Gemfile +1 -1
- data/README.md +190 -4
- data/cli_example.yml +14 -0
- data/exe/watchcat +14 -0
- data/ext/watchcat/Cargo.toml +5 -6
- data/ext/watchcat/src/gvl_helpers.rs +65 -0
- data/ext/watchcat/src/lib.rs +233 -126
- data/lib/watchcat/cli/action_executor.rb +44 -0
- data/lib/watchcat/cli/config.rb +76 -0
- data/lib/watchcat/cli/watcher.rb +83 -0
- data/lib/watchcat/cli.rb +52 -0
- data/lib/watchcat/debouncer.rb +41 -0
- data/lib/watchcat/event.rb +37 -0
- data/lib/watchcat/event_handler.rb +29 -0
- data/lib/watchcat/executor.rb +84 -34
- data/lib/watchcat/kind.rb +8 -0
- data/lib/watchcat/version.rb +1 -1
- data/lib/watchcat.rb +15 -5
- metadata +36 -15
- data/Gemfile.lock +0 -70
- data/lib/watchcat/client.rb +0 -26
- data/lib/watchcat/server.rb +0 -14
- data/watchcat.gemspec +0 -38
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6edf147a9999a757920046f26d3fadb4e8790f3acda6cb86787af3b6e5e31cce
|
|
4
|
+
data.tar.gz: 56ab8e22e361774d92df290073b46a25ee3ae4f8024a1c2e82340d7b8b4617b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf284e712f64ef2f69efce857c08dfb572a134e31857bd6a8d17afbdecd9d3d356609fae7fbf58cd8074cc49464f36f7390f7a897b132ac9626096416dd15b43
|
|
7
|
+
data.tar.gz: 66524cb293557d7c6b8a33739ed5d9c41b5d5b62dac5ada964d6b8d97df35d44e526ada232bfecee8375d1cc5cd2c4895c60fe3b0e6b5924eaef7f2005835ad8
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
## Unreleased
|
|
2
|
+
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
* Add `#watch`, `#unwatch`, and `#watched` to the watcher returned by `Watchcat.watch` for dynamically managing watched paths.
|
|
6
|
+
* Add `Watchcat::EventHandler` for handling events with callback methods.
|
|
7
|
+
* Add `Watchcat::Event#src_path` and `Watchcat::Event#dest_path` for move/rename events.
|
|
8
|
+
* Add `patterns`, `ignore_patterns`, and `ignore_directories` options to `Watchcat.watch`.
|
|
9
|
+
* Fix `Watchcat::Executor#stop` so that it is a no-op in a forked child process, and make it idempotent.
|
|
10
|
+
|
|
11
|
+
## 0.5.2
|
|
12
|
+
|
|
13
|
+
* Support Ruby 4.0
|
|
14
|
+
|
|
15
|
+
## 0.5.1
|
|
16
|
+
|
|
17
|
+
* Fix missing executable files
|
|
18
|
+
|
|
19
|
+
## 0.5.0
|
|
20
|
+
|
|
21
|
+
* Rework the debounce feature. Now all events are debounced.
|
|
22
|
+
* Add `init` option to CLI
|
|
23
|
+
|
|
24
|
+
## 0.4.0
|
|
25
|
+
|
|
26
|
+
* Add CLI
|
|
27
|
+
* Add filters option
|
|
28
|
+
|
|
29
|
+
## 0.3.0
|
|
30
|
+
|
|
31
|
+
* Support Windows
|
data/Cargo.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
@@ -13,16 +13,14 @@ dependencies = [
|
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "bindgen"
|
|
16
|
-
version = "0.
|
|
16
|
+
version = "0.72.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
19
19
|
dependencies = [
|
|
20
|
-
"bitflags 2.
|
|
20
|
+
"bitflags 2.8.0",
|
|
21
21
|
"cexpr",
|
|
22
22
|
"clang-sys",
|
|
23
|
-
"
|
|
24
|
-
"lazycell",
|
|
25
|
-
"peeking_take_while",
|
|
23
|
+
"itertools",
|
|
26
24
|
"proc-macro2",
|
|
27
25
|
"quote",
|
|
28
26
|
"regex",
|
|
@@ -39,9 +37,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
39
37
|
|
|
40
38
|
[[package]]
|
|
41
39
|
name = "bitflags"
|
|
42
|
-
version = "2.
|
|
40
|
+
version = "2.8.0"
|
|
43
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
42
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
45
43
|
|
|
46
44
|
[[package]]
|
|
47
45
|
name = "cexpr"
|
|
@@ -71,9 +69,9 @@ dependencies = [
|
|
|
71
69
|
|
|
72
70
|
[[package]]
|
|
73
71
|
name = "crossbeam-channel"
|
|
74
|
-
version = "0.5.
|
|
72
|
+
version = "0.5.16"
|
|
75
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
-
checksum = "
|
|
74
|
+
checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
|
|
77
75
|
dependencies = [
|
|
78
76
|
"crossbeam-utils",
|
|
79
77
|
]
|
|
@@ -88,32 +86,10 @@ dependencies = [
|
|
|
88
86
|
]
|
|
89
87
|
|
|
90
88
|
[[package]]
|
|
91
|
-
name = "
|
|
92
|
-
version = "
|
|
89
|
+
name = "either"
|
|
90
|
+
version = "1.15.0"
|
|
93
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
-
checksum = "
|
|
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
|
-
]
|
|
92
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
117
93
|
|
|
118
94
|
[[package]]
|
|
119
95
|
name = "fsevent-sys"
|
|
@@ -138,11 +114,11 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
|
138
114
|
|
|
139
115
|
[[package]]
|
|
140
116
|
name = "inotify"
|
|
141
|
-
version = "0.
|
|
117
|
+
version = "0.11.0"
|
|
142
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
-
checksum = "
|
|
119
|
+
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
|
|
144
120
|
dependencies = [
|
|
145
|
-
"bitflags
|
|
121
|
+
"bitflags 2.8.0",
|
|
146
122
|
"inotify-sys",
|
|
147
123
|
"libc",
|
|
148
124
|
]
|
|
@@ -157,19 +133,19 @@ dependencies = [
|
|
|
157
133
|
]
|
|
158
134
|
|
|
159
135
|
[[package]]
|
|
160
|
-
name = "
|
|
161
|
-
version = "0.
|
|
136
|
+
name = "itertools"
|
|
137
|
+
version = "0.13.0"
|
|
162
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
-
checksum = "
|
|
139
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
164
140
|
dependencies = [
|
|
165
|
-
"
|
|
141
|
+
"either",
|
|
166
142
|
]
|
|
167
143
|
|
|
168
144
|
[[package]]
|
|
169
145
|
name = "kqueue"
|
|
170
|
-
version = "1.
|
|
146
|
+
version = "1.1.1"
|
|
171
147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
-
checksum = "
|
|
148
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
173
149
|
dependencies = [
|
|
174
150
|
"kqueue-sys",
|
|
175
151
|
"libc",
|
|
@@ -191,12 +167,6 @@ version = "1.4.0"
|
|
|
191
167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
168
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
193
169
|
|
|
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
170
|
[[package]]
|
|
201
171
|
name = "libc"
|
|
202
172
|
version = "0.2.161"
|
|
@@ -213,12 +183,6 @@ dependencies = [
|
|
|
213
183
|
"winapi",
|
|
214
184
|
]
|
|
215
185
|
|
|
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
186
|
[[package]]
|
|
223
187
|
name = "log"
|
|
224
188
|
version = "0.4.17"
|
|
@@ -230,9 +194,9 @@ dependencies = [
|
|
|
230
194
|
|
|
231
195
|
[[package]]
|
|
232
196
|
name = "magnus"
|
|
233
|
-
version = "0.
|
|
197
|
+
version = "0.8.2"
|
|
234
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
-
checksum = "
|
|
199
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
236
200
|
dependencies = [
|
|
237
201
|
"magnus-macros",
|
|
238
202
|
"rb-sys",
|
|
@@ -242,9 +206,9 @@ dependencies = [
|
|
|
242
206
|
|
|
243
207
|
[[package]]
|
|
244
208
|
name = "magnus-macros"
|
|
245
|
-
version = "0.
|
|
209
|
+
version = "0.8.0"
|
|
246
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
-
checksum = "
|
|
211
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
248
212
|
dependencies = [
|
|
249
213
|
"proc-macro2",
|
|
250
214
|
"quote",
|
|
@@ -288,13 +252,12 @@ dependencies = [
|
|
|
288
252
|
|
|
289
253
|
[[package]]
|
|
290
254
|
name = "notify"
|
|
291
|
-
version = "
|
|
255
|
+
version = "8.2.0"
|
|
292
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
257
|
+
checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
|
|
294
258
|
dependencies = [
|
|
295
|
-
"bitflags 2.
|
|
259
|
+
"bitflags 2.8.0",
|
|
296
260
|
"crossbeam-channel",
|
|
297
|
-
"filetime",
|
|
298
261
|
"fsevent-sys",
|
|
299
262
|
"inotify",
|
|
300
263
|
"kqueue",
|
|
@@ -303,48 +266,20 @@ dependencies = [
|
|
|
303
266
|
"mio",
|
|
304
267
|
"notify-types",
|
|
305
268
|
"walkdir",
|
|
306
|
-
"windows-sys 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",
|
|
269
|
+
"windows-sys 0.60.2",
|
|
320
270
|
]
|
|
321
271
|
|
|
322
272
|
[[package]]
|
|
323
273
|
name = "notify-types"
|
|
324
|
-
version = "
|
|
274
|
+
version = "2.0.0"
|
|
325
275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
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"
|
|
276
|
+
checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
|
|
342
277
|
|
|
343
278
|
[[package]]
|
|
344
279
|
name = "proc-macro2"
|
|
345
|
-
version = "1.0.
|
|
280
|
+
version = "1.0.106"
|
|
346
281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
282
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
348
283
|
dependencies = [
|
|
349
284
|
"unicode-ident",
|
|
350
285
|
]
|
|
@@ -360,18 +295,18 @@ dependencies = [
|
|
|
360
295
|
|
|
361
296
|
[[package]]
|
|
362
297
|
name = "rb-sys"
|
|
363
|
-
version = "0.9.
|
|
298
|
+
version = "0.9.128"
|
|
364
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
300
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
366
301
|
dependencies = [
|
|
367
302
|
"rb-sys-build",
|
|
368
303
|
]
|
|
369
304
|
|
|
370
305
|
[[package]]
|
|
371
306
|
name = "rb-sys-build"
|
|
372
|
-
version = "0.9.
|
|
307
|
+
version = "0.9.128"
|
|
373
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
309
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
375
310
|
dependencies = [
|
|
376
311
|
"bindgen",
|
|
377
312
|
"lazy_static",
|
|
@@ -384,18 +319,9 @@ dependencies = [
|
|
|
384
319
|
|
|
385
320
|
[[package]]
|
|
386
321
|
name = "rb-sys-env"
|
|
387
|
-
version = "0.
|
|
322
|
+
version = "0.2.2"
|
|
388
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
-
checksum = "
|
|
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
|
-
]
|
|
324
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
399
325
|
|
|
400
326
|
[[package]]
|
|
401
327
|
name = "regex"
|
|
@@ -416,22 +342,9 @@ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
|
|
416
342
|
|
|
417
343
|
[[package]]
|
|
418
344
|
name = "rustc-hash"
|
|
419
|
-
version = "
|
|
345
|
+
version = "2.1.2"
|
|
420
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
-
checksum = "
|
|
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
|
-
]
|
|
347
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
435
348
|
|
|
436
349
|
[[package]]
|
|
437
350
|
name = "same-file"
|
|
@@ -471,19 +384,6 @@ dependencies = [
|
|
|
471
384
|
"unicode-ident",
|
|
472
385
|
]
|
|
473
386
|
|
|
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
387
|
[[package]]
|
|
488
388
|
name = "unicode-ident"
|
|
489
389
|
version = "1.0.7"
|
|
@@ -508,12 +408,11 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
508
408
|
|
|
509
409
|
[[package]]
|
|
510
410
|
name = "watchcat"
|
|
511
|
-
version = "0.
|
|
411
|
+
version = "0.3.0"
|
|
512
412
|
dependencies = [
|
|
513
413
|
"crossbeam-channel",
|
|
514
414
|
"magnus",
|
|
515
415
|
"notify",
|
|
516
|
-
"notify-debouncer-mini",
|
|
517
416
|
"rb-sys",
|
|
518
417
|
]
|
|
519
418
|
|
|
@@ -549,13 +448,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
549
448
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
550
449
|
|
|
551
450
|
[[package]]
|
|
552
|
-
name = "windows-
|
|
553
|
-
version = "0.
|
|
451
|
+
name = "windows-link"
|
|
452
|
+
version = "0.1.3"
|
|
554
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
556
|
-
dependencies = [
|
|
557
|
-
"windows-targets 0.48.5",
|
|
558
|
-
]
|
|
454
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
559
455
|
|
|
560
456
|
[[package]]
|
|
561
457
|
name = "windows-sys"
|
|
@@ -568,26 +464,11 @@ dependencies = [
|
|
|
568
464
|
|
|
569
465
|
[[package]]
|
|
570
466
|
name = "windows-sys"
|
|
571
|
-
version = "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"
|
|
467
|
+
version = "0.60.2"
|
|
581
468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
469
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
583
470
|
dependencies = [
|
|
584
|
-
"
|
|
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",
|
|
471
|
+
"windows-targets 0.53.3",
|
|
591
472
|
]
|
|
592
473
|
|
|
593
474
|
[[package]]
|
|
@@ -599,7 +480,7 @@ dependencies = [
|
|
|
599
480
|
"windows_aarch64_gnullvm 0.52.6",
|
|
600
481
|
"windows_aarch64_msvc 0.52.6",
|
|
601
482
|
"windows_i686_gnu 0.52.6",
|
|
602
|
-
"windows_i686_gnullvm",
|
|
483
|
+
"windows_i686_gnullvm 0.52.6",
|
|
603
484
|
"windows_i686_msvc 0.52.6",
|
|
604
485
|
"windows_x86_64_gnu 0.52.6",
|
|
605
486
|
"windows_x86_64_gnullvm 0.52.6",
|
|
@@ -607,10 +488,21 @@ dependencies = [
|
|
|
607
488
|
]
|
|
608
489
|
|
|
609
490
|
[[package]]
|
|
610
|
-
name = "
|
|
611
|
-
version = "0.
|
|
491
|
+
name = "windows-targets"
|
|
492
|
+
version = "0.53.3"
|
|
612
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
494
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"windows-link",
|
|
497
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
498
|
+
"windows_aarch64_msvc 0.53.0",
|
|
499
|
+
"windows_i686_gnu 0.53.0",
|
|
500
|
+
"windows_i686_gnullvm 0.53.0",
|
|
501
|
+
"windows_i686_msvc 0.53.0",
|
|
502
|
+
"windows_x86_64_gnu 0.53.0",
|
|
503
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
504
|
+
"windows_x86_64_msvc 0.53.0",
|
|
505
|
+
]
|
|
614
506
|
|
|
615
507
|
[[package]]
|
|
616
508
|
name = "windows_aarch64_gnullvm"
|
|
@@ -619,10 +511,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
619
511
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
620
512
|
|
|
621
513
|
[[package]]
|
|
622
|
-
name = "
|
|
623
|
-
version = "0.
|
|
514
|
+
name = "windows_aarch64_gnullvm"
|
|
515
|
+
version = "0.53.0"
|
|
624
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
-
checksum = "
|
|
517
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
626
518
|
|
|
627
519
|
[[package]]
|
|
628
520
|
name = "windows_aarch64_msvc"
|
|
@@ -631,10 +523,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
631
523
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
632
524
|
|
|
633
525
|
[[package]]
|
|
634
|
-
name = "
|
|
635
|
-
version = "0.
|
|
526
|
+
name = "windows_aarch64_msvc"
|
|
527
|
+
version = "0.53.0"
|
|
636
528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
-
checksum = "
|
|
529
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
638
530
|
|
|
639
531
|
[[package]]
|
|
640
532
|
name = "windows_i686_gnu"
|
|
@@ -642,6 +534,12 @@ version = "0.52.6"
|
|
|
642
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
535
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
644
536
|
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "windows_i686_gnu"
|
|
539
|
+
version = "0.53.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
542
|
+
|
|
645
543
|
[[package]]
|
|
646
544
|
name = "windows_i686_gnullvm"
|
|
647
545
|
version = "0.52.6"
|
|
@@ -649,10 +547,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
649
547
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
650
548
|
|
|
651
549
|
[[package]]
|
|
652
|
-
name = "
|
|
653
|
-
version = "0.
|
|
550
|
+
name = "windows_i686_gnullvm"
|
|
551
|
+
version = "0.53.0"
|
|
654
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
553
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
656
554
|
|
|
657
555
|
[[package]]
|
|
658
556
|
name = "windows_i686_msvc"
|
|
@@ -661,10 +559,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
661
559
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
662
560
|
|
|
663
561
|
[[package]]
|
|
664
|
-
name = "
|
|
665
|
-
version = "0.
|
|
562
|
+
name = "windows_i686_msvc"
|
|
563
|
+
version = "0.53.0"
|
|
666
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
-
checksum = "
|
|
565
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
668
566
|
|
|
669
567
|
[[package]]
|
|
670
568
|
name = "windows_x86_64_gnu"
|
|
@@ -673,10 +571,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
673
571
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
674
572
|
|
|
675
573
|
[[package]]
|
|
676
|
-
name = "
|
|
677
|
-
version = "0.
|
|
574
|
+
name = "windows_x86_64_gnu"
|
|
575
|
+
version = "0.53.0"
|
|
678
576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "
|
|
577
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
680
578
|
|
|
681
579
|
[[package]]
|
|
682
580
|
name = "windows_x86_64_gnullvm"
|
|
@@ -685,13 +583,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
685
583
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
686
584
|
|
|
687
585
|
[[package]]
|
|
688
|
-
name = "
|
|
689
|
-
version = "0.
|
|
586
|
+
name = "windows_x86_64_gnullvm"
|
|
587
|
+
version = "0.53.0"
|
|
690
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
589
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
692
590
|
|
|
693
591
|
[[package]]
|
|
694
592
|
name = "windows_x86_64_msvc"
|
|
695
593
|
version = "0.52.6"
|
|
696
594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
595
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "windows_x86_64_msvc"
|
|
599
|
+
version = "0.53.0"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
data/Cargo.toml
CHANGED
data/Gemfile
CHANGED