renovate 40.45.5 → 40.47.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.
@@ -6,6 +6,12 @@ declare const CargoDeps: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.Zod
6
6
  path: z.ZodOptional<z.ZodString>;
7
7
  /** Git URL for the dependency */
8
8
  git: z.ZodOptional<z.ZodString>;
9
+ /** Git tag for the dependency */
10
+ tag: z.ZodOptional<z.ZodString>;
11
+ /** Git revision for the dependency */
12
+ rev: z.ZodOptional<z.ZodString>;
13
+ /** Git branch for the dependency */
14
+ branch: z.ZodOptional<z.ZodString>;
9
15
  /** Semver version */
10
16
  version: z.ZodOptional<z.ZodString>;
11
17
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -16,29 +22,41 @@ declare const CargoDeps: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.Zod
16
22
  workspace: z.ZodOptional<z.ZodBoolean>;
17
23
  }, "strip", z.ZodTypeAny, {
18
24
  path?: string | undefined;
25
+ branch?: string | undefined;
19
26
  version?: string | undefined;
20
27
  git?: string | undefined;
28
+ rev?: string | undefined;
29
+ tag?: string | undefined;
21
30
  package?: string | undefined;
22
31
  registry?: string | undefined;
23
32
  workspace?: boolean | undefined;
24
33
  }, {
25
34
  path?: string | undefined;
35
+ branch?: string | undefined;
26
36
  version?: string | undefined;
27
37
  git?: string | undefined;
38
+ rev?: string | undefined;
39
+ tag?: string | undefined;
28
40
  package?: string | undefined;
29
41
  registry?: string | undefined;
30
42
  workspace?: boolean | undefined;
31
43
  }>, PackageDependency<CargoManagerData>, {
32
44
  path?: string | undefined;
45
+ branch?: string | undefined;
33
46
  version?: string | undefined;
34
47
  git?: string | undefined;
48
+ rev?: string | undefined;
49
+ tag?: string | undefined;
35
50
  package?: string | undefined;
36
51
  registry?: string | undefined;
37
52
  workspace?: boolean | undefined;
38
53
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
39
54
  path?: string | undefined;
55
+ branch?: string | undefined;
40
56
  version?: string | undefined;
41
57
  git?: string | undefined;
58
+ rev?: string | undefined;
59
+ tag?: string | undefined;
42
60
  package?: string | undefined;
43
61
  registry?: string | undefined;
44
62
  workspace?: boolean | undefined;
@@ -50,6 +68,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
50
68
  path: z.ZodOptional<z.ZodString>;
51
69
  /** Git URL for the dependency */
52
70
  git: z.ZodOptional<z.ZodString>;
71
+ /** Git tag for the dependency */
72
+ tag: z.ZodOptional<z.ZodString>;
73
+ /** Git revision for the dependency */
74
+ rev: z.ZodOptional<z.ZodString>;
75
+ /** Git branch for the dependency */
76
+ branch: z.ZodOptional<z.ZodString>;
53
77
  /** Semver version */
54
78
  version: z.ZodOptional<z.ZodString>;
55
79
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -60,36 +84,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
60
84
  workspace: z.ZodOptional<z.ZodBoolean>;
61
85
  }, "strip", z.ZodTypeAny, {
62
86
  path?: string | undefined;
87
+ branch?: string | undefined;
63
88
  version?: string | undefined;
64
89
  git?: string | undefined;
90
+ rev?: string | undefined;
91
+ tag?: string | undefined;
65
92
  package?: string | undefined;
66
93
  registry?: string | undefined;
67
94
  workspace?: boolean | undefined;
68
95
  }, {
69
96
  path?: string | undefined;
97
+ branch?: string | undefined;
70
98
  version?: string | undefined;
71
99
  git?: string | undefined;
100
+ rev?: string | undefined;
101
+ tag?: string | undefined;
72
102
  package?: string | undefined;
73
103
  registry?: string | undefined;
74
104
  workspace?: boolean | undefined;
75
105
  }>, PackageDependency<CargoManagerData>, {
76
106
  path?: string | undefined;
107
+ branch?: string | undefined;
77
108
  version?: string | undefined;
78
109
  git?: string | undefined;
110
+ rev?: string | undefined;
111
+ tag?: string | undefined;
79
112
  package?: string | undefined;
80
113
  registry?: string | undefined;
81
114
  workspace?: boolean | undefined;
82
115
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
83
116
  path?: string | undefined;
117
+ branch?: string | undefined;
84
118
  version?: string | undefined;
85
119
  git?: string | undefined;
120
+ rev?: string | undefined;
121
+ tag?: string | undefined;
86
122
  package?: string | undefined;
87
123
  registry?: string | undefined;
88
124
  workspace?: boolean | undefined;
89
125
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
90
126
  path?: string | undefined;
127
+ branch?: string | undefined;
91
128
  version?: string | undefined;
92
129
  git?: string | undefined;
130
+ rev?: string | undefined;
131
+ tag?: string | undefined;
93
132
  package?: string | undefined;
94
133
  registry?: string | undefined;
95
134
  workspace?: boolean | undefined;
@@ -99,6 +138,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
99
138
  path: z.ZodOptional<z.ZodString>;
100
139
  /** Git URL for the dependency */
101
140
  git: z.ZodOptional<z.ZodString>;
141
+ /** Git tag for the dependency */
142
+ tag: z.ZodOptional<z.ZodString>;
143
+ /** Git revision for the dependency */
144
+ rev: z.ZodOptional<z.ZodString>;
145
+ /** Git branch for the dependency */
146
+ branch: z.ZodOptional<z.ZodString>;
102
147
  /** Semver version */
103
148
  version: z.ZodOptional<z.ZodString>;
104
149
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -109,36 +154,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
109
154
  workspace: z.ZodOptional<z.ZodBoolean>;
110
155
  }, "strip", z.ZodTypeAny, {
111
156
  path?: string | undefined;
157
+ branch?: string | undefined;
112
158
  version?: string | undefined;
113
159
  git?: string | undefined;
160
+ rev?: string | undefined;
161
+ tag?: string | undefined;
114
162
  package?: string | undefined;
115
163
  registry?: string | undefined;
116
164
  workspace?: boolean | undefined;
117
165
  }, {
118
166
  path?: string | undefined;
167
+ branch?: string | undefined;
119
168
  version?: string | undefined;
120
169
  git?: string | undefined;
170
+ rev?: string | undefined;
171
+ tag?: string | undefined;
121
172
  package?: string | undefined;
122
173
  registry?: string | undefined;
123
174
  workspace?: boolean | undefined;
124
175
  }>, PackageDependency<CargoManagerData>, {
125
176
  path?: string | undefined;
177
+ branch?: string | undefined;
126
178
  version?: string | undefined;
127
179
  git?: string | undefined;
180
+ rev?: string | undefined;
181
+ tag?: string | undefined;
128
182
  package?: string | undefined;
129
183
  registry?: string | undefined;
130
184
  workspace?: boolean | undefined;
131
185
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
132
186
  path?: string | undefined;
187
+ branch?: string | undefined;
133
188
  version?: string | undefined;
134
189
  git?: string | undefined;
190
+ rev?: string | undefined;
191
+ tag?: string | undefined;
135
192
  package?: string | undefined;
136
193
  registry?: string | undefined;
137
194
  workspace?: boolean | undefined;
138
195
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
139
196
  path?: string | undefined;
197
+ branch?: string | undefined;
140
198
  version?: string | undefined;
141
199
  git?: string | undefined;
200
+ rev?: string | undefined;
201
+ tag?: string | undefined;
142
202
  package?: string | undefined;
143
203
  registry?: string | undefined;
144
204
  workspace?: boolean | undefined;
@@ -148,6 +208,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
148
208
  path: z.ZodOptional<z.ZodString>;
149
209
  /** Git URL for the dependency */
150
210
  git: z.ZodOptional<z.ZodString>;
211
+ /** Git tag for the dependency */
212
+ tag: z.ZodOptional<z.ZodString>;
213
+ /** Git revision for the dependency */
214
+ rev: z.ZodOptional<z.ZodString>;
215
+ /** Git branch for the dependency */
216
+ branch: z.ZodOptional<z.ZodString>;
151
217
  /** Semver version */
152
218
  version: z.ZodOptional<z.ZodString>;
153
219
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -158,36 +224,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
158
224
  workspace: z.ZodOptional<z.ZodBoolean>;
159
225
  }, "strip", z.ZodTypeAny, {
160
226
  path?: string | undefined;
227
+ branch?: string | undefined;
161
228
  version?: string | undefined;
162
229
  git?: string | undefined;
230
+ rev?: string | undefined;
231
+ tag?: string | undefined;
163
232
  package?: string | undefined;
164
233
  registry?: string | undefined;
165
234
  workspace?: boolean | undefined;
166
235
  }, {
167
236
  path?: string | undefined;
237
+ branch?: string | undefined;
168
238
  version?: string | undefined;
169
239
  git?: string | undefined;
240
+ rev?: string | undefined;
241
+ tag?: string | undefined;
170
242
  package?: string | undefined;
171
243
  registry?: string | undefined;
172
244
  workspace?: boolean | undefined;
173
245
  }>, PackageDependency<CargoManagerData>, {
174
246
  path?: string | undefined;
247
+ branch?: string | undefined;
175
248
  version?: string | undefined;
176
249
  git?: string | undefined;
250
+ rev?: string | undefined;
251
+ tag?: string | undefined;
177
252
  package?: string | undefined;
178
253
  registry?: string | undefined;
179
254
  workspace?: boolean | undefined;
180
255
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
181
256
  path?: string | undefined;
257
+ branch?: string | undefined;
182
258
  version?: string | undefined;
183
259
  git?: string | undefined;
260
+ rev?: string | undefined;
261
+ tag?: string | undefined;
184
262
  package?: string | undefined;
185
263
  registry?: string | undefined;
186
264
  workspace?: boolean | undefined;
187
265
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
188
266
  path?: string | undefined;
267
+ branch?: string | undefined;
189
268
  version?: string | undefined;
190
269
  git?: string | undefined;
270
+ rev?: string | undefined;
271
+ tag?: string | undefined;
191
272
  package?: string | undefined;
192
273
  registry?: string | undefined;
193
274
  workspace?: boolean | undefined;
@@ -216,6 +297,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
216
297
  path: z.ZodOptional<z.ZodString>;
217
298
  /** Git URL for the dependency */
218
299
  git: z.ZodOptional<z.ZodString>;
300
+ /** Git tag for the dependency */
301
+ tag: z.ZodOptional<z.ZodString>;
302
+ /** Git revision for the dependency */
303
+ rev: z.ZodOptional<z.ZodString>;
304
+ /** Git branch for the dependency */
305
+ branch: z.ZodOptional<z.ZodString>;
219
306
  /** Semver version */
220
307
  version: z.ZodOptional<z.ZodString>;
221
308
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -226,36 +313,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
226
313
  workspace: z.ZodOptional<z.ZodBoolean>;
227
314
  }, "strip", z.ZodTypeAny, {
228
315
  path?: string | undefined;
316
+ branch?: string | undefined;
229
317
  version?: string | undefined;
230
318
  git?: string | undefined;
319
+ rev?: string | undefined;
320
+ tag?: string | undefined;
231
321
  package?: string | undefined;
232
322
  registry?: string | undefined;
233
323
  workspace?: boolean | undefined;
234
324
  }, {
235
325
  path?: string | undefined;
326
+ branch?: string | undefined;
236
327
  version?: string | undefined;
237
328
  git?: string | undefined;
329
+ rev?: string | undefined;
330
+ tag?: string | undefined;
238
331
  package?: string | undefined;
239
332
  registry?: string | undefined;
240
333
  workspace?: boolean | undefined;
241
334
  }>, PackageDependency<CargoManagerData>, {
242
335
  path?: string | undefined;
336
+ branch?: string | undefined;
243
337
  version?: string | undefined;
244
338
  git?: string | undefined;
339
+ rev?: string | undefined;
340
+ tag?: string | undefined;
245
341
  package?: string | undefined;
246
342
  registry?: string | undefined;
247
343
  workspace?: boolean | undefined;
248
344
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
249
345
  path?: string | undefined;
346
+ branch?: string | undefined;
250
347
  version?: string | undefined;
251
348
  git?: string | undefined;
349
+ rev?: string | undefined;
350
+ tag?: string | undefined;
252
351
  package?: string | undefined;
253
352
  registry?: string | undefined;
254
353
  workspace?: boolean | undefined;
255
354
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
256
355
  path?: string | undefined;
356
+ branch?: string | undefined;
257
357
  version?: string | undefined;
258
358
  git?: string | undefined;
359
+ rev?: string | undefined;
360
+ tag?: string | undefined;
259
361
  package?: string | undefined;
260
362
  registry?: string | undefined;
261
363
  workspace?: boolean | undefined;
@@ -278,8 +380,11 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
278
380
  } | undefined;
279
381
  dependencies?: Record<string, string | {
280
382
  path?: string | undefined;
383
+ branch?: string | undefined;
281
384
  version?: string | undefined;
282
385
  git?: string | undefined;
386
+ rev?: string | undefined;
387
+ tag?: string | undefined;
283
388
  package?: string | undefined;
284
389
  registry?: string | undefined;
285
390
  workspace?: boolean | undefined;
@@ -291,6 +396,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
291
396
  path: z.ZodOptional<z.ZodString>;
292
397
  /** Git URL for the dependency */
293
398
  git: z.ZodOptional<z.ZodString>;
399
+ /** Git tag for the dependency */
400
+ tag: z.ZodOptional<z.ZodString>;
401
+ /** Git revision for the dependency */
402
+ rev: z.ZodOptional<z.ZodString>;
403
+ /** Git branch for the dependency */
404
+ branch: z.ZodOptional<z.ZodString>;
294
405
  /** Semver version */
295
406
  version: z.ZodOptional<z.ZodString>;
296
407
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -301,36 +412,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
301
412
  workspace: z.ZodOptional<z.ZodBoolean>;
302
413
  }, "strip", z.ZodTypeAny, {
303
414
  path?: string | undefined;
415
+ branch?: string | undefined;
304
416
  version?: string | undefined;
305
417
  git?: string | undefined;
418
+ rev?: string | undefined;
419
+ tag?: string | undefined;
306
420
  package?: string | undefined;
307
421
  registry?: string | undefined;
308
422
  workspace?: boolean | undefined;
309
423
  }, {
310
424
  path?: string | undefined;
425
+ branch?: string | undefined;
311
426
  version?: string | undefined;
312
427
  git?: string | undefined;
428
+ rev?: string | undefined;
429
+ tag?: string | undefined;
313
430
  package?: string | undefined;
314
431
  registry?: string | undefined;
315
432
  workspace?: boolean | undefined;
316
433
  }>, PackageDependency<CargoManagerData>, {
317
434
  path?: string | undefined;
435
+ branch?: string | undefined;
318
436
  version?: string | undefined;
319
437
  git?: string | undefined;
438
+ rev?: string | undefined;
439
+ tag?: string | undefined;
320
440
  package?: string | undefined;
321
441
  registry?: string | undefined;
322
442
  workspace?: boolean | undefined;
323
443
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
324
444
  path?: string | undefined;
445
+ branch?: string | undefined;
325
446
  version?: string | undefined;
326
447
  git?: string | undefined;
448
+ rev?: string | undefined;
449
+ tag?: string | undefined;
327
450
  package?: string | undefined;
328
451
  registry?: string | undefined;
329
452
  workspace?: boolean | undefined;
330
453
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
331
454
  path?: string | undefined;
455
+ branch?: string | undefined;
332
456
  version?: string | undefined;
333
457
  git?: string | undefined;
458
+ rev?: string | undefined;
459
+ tag?: string | undefined;
334
460
  package?: string | undefined;
335
461
  registry?: string | undefined;
336
462
  workspace?: boolean | undefined;
@@ -340,6 +466,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
340
466
  path: z.ZodOptional<z.ZodString>;
341
467
  /** Git URL for the dependency */
342
468
  git: z.ZodOptional<z.ZodString>;
469
+ /** Git tag for the dependency */
470
+ tag: z.ZodOptional<z.ZodString>;
471
+ /** Git revision for the dependency */
472
+ rev: z.ZodOptional<z.ZodString>;
473
+ /** Git branch for the dependency */
474
+ branch: z.ZodOptional<z.ZodString>;
343
475
  /** Semver version */
344
476
  version: z.ZodOptional<z.ZodString>;
345
477
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -350,36 +482,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
350
482
  workspace: z.ZodOptional<z.ZodBoolean>;
351
483
  }, "strip", z.ZodTypeAny, {
352
484
  path?: string | undefined;
485
+ branch?: string | undefined;
353
486
  version?: string | undefined;
354
487
  git?: string | undefined;
488
+ rev?: string | undefined;
489
+ tag?: string | undefined;
355
490
  package?: string | undefined;
356
491
  registry?: string | undefined;
357
492
  workspace?: boolean | undefined;
358
493
  }, {
359
494
  path?: string | undefined;
495
+ branch?: string | undefined;
360
496
  version?: string | undefined;
361
497
  git?: string | undefined;
498
+ rev?: string | undefined;
499
+ tag?: string | undefined;
362
500
  package?: string | undefined;
363
501
  registry?: string | undefined;
364
502
  workspace?: boolean | undefined;
365
503
  }>, PackageDependency<CargoManagerData>, {
366
504
  path?: string | undefined;
505
+ branch?: string | undefined;
367
506
  version?: string | undefined;
368
507
  git?: string | undefined;
508
+ rev?: string | undefined;
509
+ tag?: string | undefined;
369
510
  package?: string | undefined;
370
511
  registry?: string | undefined;
371
512
  workspace?: boolean | undefined;
372
513
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
373
514
  path?: string | undefined;
515
+ branch?: string | undefined;
374
516
  version?: string | undefined;
375
517
  git?: string | undefined;
518
+ rev?: string | undefined;
519
+ tag?: string | undefined;
376
520
  package?: string | undefined;
377
521
  registry?: string | undefined;
378
522
  workspace?: boolean | undefined;
379
523
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
380
524
  path?: string | undefined;
525
+ branch?: string | undefined;
381
526
  version?: string | undefined;
382
527
  git?: string | undefined;
528
+ rev?: string | undefined;
529
+ tag?: string | undefined;
383
530
  package?: string | undefined;
384
531
  registry?: string | undefined;
385
532
  workspace?: boolean | undefined;
@@ -389,6 +536,12 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
389
536
  path: z.ZodOptional<z.ZodString>;
390
537
  /** Git URL for the dependency */
391
538
  git: z.ZodOptional<z.ZodString>;
539
+ /** Git tag for the dependency */
540
+ tag: z.ZodOptional<z.ZodString>;
541
+ /** Git revision for the dependency */
542
+ rev: z.ZodOptional<z.ZodString>;
543
+ /** Git branch for the dependency */
544
+ branch: z.ZodOptional<z.ZodString>;
392
545
  /** Semver version */
393
546
  version: z.ZodOptional<z.ZodString>;
394
547
  /** Name of a registry whose URL is configured in `.cargo/config.toml` or `.cargo/config` */
@@ -399,36 +552,51 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
399
552
  workspace: z.ZodOptional<z.ZodBoolean>;
400
553
  }, "strip", z.ZodTypeAny, {
401
554
  path?: string | undefined;
555
+ branch?: string | undefined;
402
556
  version?: string | undefined;
403
557
  git?: string | undefined;
558
+ rev?: string | undefined;
559
+ tag?: string | undefined;
404
560
  package?: string | undefined;
405
561
  registry?: string | undefined;
406
562
  workspace?: boolean | undefined;
407
563
  }, {
408
564
  path?: string | undefined;
565
+ branch?: string | undefined;
409
566
  version?: string | undefined;
410
567
  git?: string | undefined;
568
+ rev?: string | undefined;
569
+ tag?: string | undefined;
411
570
  package?: string | undefined;
412
571
  registry?: string | undefined;
413
572
  workspace?: boolean | undefined;
414
573
  }>, PackageDependency<CargoManagerData>, {
415
574
  path?: string | undefined;
575
+ branch?: string | undefined;
416
576
  version?: string | undefined;
417
577
  git?: string | undefined;
578
+ rev?: string | undefined;
579
+ tag?: string | undefined;
418
580
  package?: string | undefined;
419
581
  registry?: string | undefined;
420
582
  workspace?: boolean | undefined;
421
583
  }>, z.ZodEffects<z.ZodString, PackageDependency<CargoManagerData>, string>]>>, PackageDependency<Record<string, any>>[], Record<string, string | {
422
584
  path?: string | undefined;
585
+ branch?: string | undefined;
423
586
  version?: string | undefined;
424
587
  git?: string | undefined;
588
+ rev?: string | undefined;
589
+ tag?: string | undefined;
425
590
  package?: string | undefined;
426
591
  registry?: string | undefined;
427
592
  workspace?: boolean | undefined;
428
593
  }>>, PackageDependency<Record<string, any>>[], Record<string, string | {
429
594
  path?: string | undefined;
595
+ branch?: string | undefined;
430
596
  version?: string | undefined;
431
597
  git?: string | undefined;
598
+ rev?: string | undefined;
599
+ tag?: string | undefined;
432
600
  package?: string | undefined;
433
601
  registry?: string | undefined;
434
602
  workspace?: boolean | undefined;
@@ -440,24 +608,33 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
440
608
  }, {
441
609
  dependencies?: Record<string, string | {
442
610
  path?: string | undefined;
611
+ branch?: string | undefined;
443
612
  version?: string | undefined;
444
613
  git?: string | undefined;
614
+ rev?: string | undefined;
615
+ tag?: string | undefined;
445
616
  package?: string | undefined;
446
617
  registry?: string | undefined;
447
618
  workspace?: boolean | undefined;
448
619
  }> | undefined;
449
620
  'dev-dependencies'?: Record<string, string | {
450
621
  path?: string | undefined;
622
+ branch?: string | undefined;
451
623
  version?: string | undefined;
452
624
  git?: string | undefined;
625
+ rev?: string | undefined;
626
+ tag?: string | undefined;
453
627
  package?: string | undefined;
454
628
  registry?: string | undefined;
455
629
  workspace?: boolean | undefined;
456
630
  }> | undefined;
457
631
  'build-dependencies'?: Record<string, string | {
458
632
  path?: string | undefined;
633
+ branch?: string | undefined;
459
634
  version?: string | undefined;
460
635
  git?: string | undefined;
636
+ rev?: string | undefined;
637
+ tag?: string | undefined;
461
638
  package?: string | undefined;
462
639
  registry?: string | undefined;
463
640
  workspace?: boolean | undefined;
@@ -492,24 +669,33 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
492
669
  target?: Record<string, {
493
670
  dependencies?: Record<string, string | {
494
671
  path?: string | undefined;
672
+ branch?: string | undefined;
495
673
  version?: string | undefined;
496
674
  git?: string | undefined;
675
+ rev?: string | undefined;
676
+ tag?: string | undefined;
497
677
  package?: string | undefined;
498
678
  registry?: string | undefined;
499
679
  workspace?: boolean | undefined;
500
680
  }> | undefined;
501
681
  'dev-dependencies'?: Record<string, string | {
502
682
  path?: string | undefined;
683
+ branch?: string | undefined;
503
684
  version?: string | undefined;
504
685
  git?: string | undefined;
686
+ rev?: string | undefined;
687
+ tag?: string | undefined;
505
688
  package?: string | undefined;
506
689
  registry?: string | undefined;
507
690
  workspace?: boolean | undefined;
508
691
  }> | undefined;
509
692
  'build-dependencies'?: Record<string, string | {
510
693
  path?: string | undefined;
694
+ branch?: string | undefined;
511
695
  version?: string | undefined;
512
696
  git?: string | undefined;
697
+ rev?: string | undefined;
698
+ tag?: string | undefined;
513
699
  package?: string | undefined;
514
700
  registry?: string | undefined;
515
701
  workspace?: boolean | undefined;
@@ -517,8 +703,11 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
517
703
  }> | undefined;
518
704
  dependencies?: Record<string, string | {
519
705
  path?: string | undefined;
706
+ branch?: string | undefined;
520
707
  version?: string | undefined;
521
708
  git?: string | undefined;
709
+ rev?: string | undefined;
710
+ tag?: string | undefined;
522
711
  package?: string | undefined;
523
712
  registry?: string | undefined;
524
713
  workspace?: boolean | undefined;
@@ -529,8 +718,11 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
529
718
  } | undefined;
530
719
  dependencies?: Record<string, string | {
531
720
  path?: string | undefined;
721
+ branch?: string | undefined;
532
722
  version?: string | undefined;
533
723
  git?: string | undefined;
724
+ rev?: string | undefined;
725
+ tag?: string | undefined;
534
726
  package?: string | undefined;
535
727
  registry?: string | undefined;
536
728
  workspace?: boolean | undefined;
@@ -538,16 +730,22 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
538
730
  } | undefined;
539
731
  'dev-dependencies'?: Record<string, string | {
540
732
  path?: string | undefined;
733
+ branch?: string | undefined;
541
734
  version?: string | undefined;
542
735
  git?: string | undefined;
736
+ rev?: string | undefined;
737
+ tag?: string | undefined;
543
738
  package?: string | undefined;
544
739
  registry?: string | undefined;
545
740
  workspace?: boolean | undefined;
546
741
  }> | undefined;
547
742
  'build-dependencies'?: Record<string, string | {
548
743
  path?: string | undefined;
744
+ branch?: string | undefined;
549
745
  version?: string | undefined;
550
746
  git?: string | undefined;
747
+ rev?: string | undefined;
748
+ tag?: string | undefined;
551
749
  package?: string | undefined;
552
750
  registry?: string | undefined;
553
751
  workspace?: boolean | undefined;