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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fda9cc3456d2cee73418912b619dcfb975f94399563c7457ed132e7ba9658133
4
- data.tar.gz: 757255818e15cdd69d830332e5cd9e6185dae1e2ae81c2a37f0675b03fd82074
3
+ metadata.gz: 6edf147a9999a757920046f26d3fadb4e8790f3acda6cb86787af3b6e5e31cce
4
+ data.tar.gz: 56ab8e22e361774d92df290073b46a25ee3ae4f8024a1c2e82340d7b8b4617b4
5
5
  SHA512:
6
- metadata.gz: 991e5d2bf7d2fb607fc095bc5983e0a74770ab528e8ab3747bec6812795f12fe7ae77614ac6d9c33c4f730e814e404fa75d52e34e1e81591eafa67f27f0efd1f
7
- data.tar.gz: d069c27def32d3cb2eb5db0aac061a9df457b6bc8b64055c5b5e1d6776570d8bbadede816131b6d4e37f35cb9c39a272971d7065185282f4a8d67b590861c4f8
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
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.69.1"
16
+ version = "0.72.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
18
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
19
19
  dependencies = [
20
- "bitflags 2.4.0",
20
+ "bitflags 2.8.0",
21
21
  "cexpr",
22
22
  "clang-sys",
23
- "lazy_static",
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.4.0"
40
+ version = "2.8.0"
43
41
  source = "registry+https://github.com/rust-lang/crates.io-index"
44
- checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
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.13"
72
+ version = "0.5.16"
75
73
  source = "registry+https://github.com/rust-lang/crates.io-index"
76
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
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 = "errno"
92
- version = "0.3.9"
89
+ name = "either"
90
+ version = "1.15.0"
93
91
  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
- ]
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.10.2"
117
+ version = "0.11.0"
142
118
  source = "registry+https://github.com/rust-lang/crates.io-index"
143
- checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
119
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
144
120
  dependencies = [
145
- "bitflags 1.3.2",
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 = "instant"
161
- version = "0.1.13"
136
+ name = "itertools"
137
+ version = "0.13.0"
162
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
163
- checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
139
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
164
140
  dependencies = [
165
- "cfg-if",
141
+ "either",
166
142
  ]
167
143
 
168
144
  [[package]]
169
145
  name = "kqueue"
170
- version = "1.0.8"
146
+ version = "1.1.1"
171
147
  source = "registry+https://github.com/rust-lang/crates.io-index"
172
- checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
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.7.1"
197
+ version = "0.8.2"
234
198
  source = "registry+https://github.com/rust-lang/crates.io-index"
235
- checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
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.6.0"
209
+ version = "0.8.0"
246
210
  source = "registry+https://github.com/rust-lang/crates.io-index"
247
- checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
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 = "7.0.0"
255
+ version = "8.2.0"
292
256
  source = "registry+https://github.com/rust-lang/crates.io-index"
293
- checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
257
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
294
258
  dependencies = [
295
- "bitflags 2.4.0",
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.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",
269
+ "windows-sys 0.60.2",
320
270
  ]
321
271
 
322
272
  [[package]]
323
273
  name = "notify-types"
324
- version = "1.0.0"
274
+ version = "2.0.0"
325
275
  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"
276
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
342
277
 
343
278
  [[package]]
344
279
  name = "proc-macro2"
345
- version = "1.0.66"
280
+ version = "1.0.106"
346
281
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
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.102"
298
+ version = "0.9.128"
364
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
365
- checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1"
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.102"
307
+ version = "0.9.128"
373
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
374
- checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570"
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.1.2"
322
+ version = "0.2.2"
388
323
  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
- ]
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 = "1.1.0"
345
+ version = "2.1.2"
420
346
  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
- ]
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.1.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-sys"
553
- version = "0.48.0"
451
+ name = "windows-link"
452
+ version = "0.1.3"
554
453
  source = "registry+https://github.com/rust-lang/crates.io-index"
555
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
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.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"
467
+ version = "0.60.2"
581
468
  source = "registry+https://github.com/rust-lang/crates.io-index"
582
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
469
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
583
470
  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",
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 = "windows_aarch64_gnullvm"
611
- version = "0.48.5"
491
+ name = "windows-targets"
492
+ version = "0.53.3"
612
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
613
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
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 = "windows_aarch64_msvc"
623
- version = "0.48.5"
514
+ name = "windows_aarch64_gnullvm"
515
+ version = "0.53.0"
624
516
  source = "registry+https://github.com/rust-lang/crates.io-index"
625
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
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 = "windows_i686_gnu"
635
- version = "0.48.5"
526
+ name = "windows_aarch64_msvc"
527
+ version = "0.53.0"
636
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
637
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
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 = "windows_i686_msvc"
653
- version = "0.48.5"
550
+ name = "windows_i686_gnullvm"
551
+ version = "0.53.0"
654
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
655
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
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 = "windows_x86_64_gnu"
665
- version = "0.48.5"
562
+ name = "windows_i686_msvc"
563
+ version = "0.53.0"
666
564
  source = "registry+https://github.com/rust-lang/crates.io-index"
667
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
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 = "windows_x86_64_gnullvm"
677
- version = "0.48.5"
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 = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
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 = "windows_x86_64_msvc"
689
- version = "0.48.5"
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 = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
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
@@ -4,4 +4,4 @@ members = ["ext/watchcat"]
4
4
 
5
5
  [profile.release]
6
6
  codegen-units = 1 # more llvm optimizations
7
- strip = true
7
+ strip = true
data/Gemfile CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- # Specify your gem's dependencies in watchcat.gemspec
5
+ gem "fiddle", platforms: %i[ mri windows ]
6
6
  gemspec