@zowe/cli 7.14.1 → 7.16.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.
- package/lib/zosfiles/-strings-/en.d.ts +27 -0
- package/lib/zosfiles/-strings-/en.js +30 -0
- package/lib/zosfiles/-strings-/en.js.map +1 -1
- package/lib/zosfiles/copy/Copy.definition.js +3 -1
- package/lib/zosfiles/copy/Copy.definition.js.map +1 -1
- package/lib/zosfiles/copy/dsclp/Dsclp.definition.d.ts +8 -0
- package/lib/zosfiles/copy/dsclp/Dsclp.definition.js +185 -0
- package/lib/zosfiles/copy/dsclp/Dsclp.definition.js.map +1 -0
- package/lib/zosfiles/copy/dsclp/Dsclp.handler.d.ts +13 -0
- package/lib/zosfiles/copy/dsclp/Dsclp.handler.js +66 -0
- package/lib/zosfiles/copy/dsclp/Dsclp.handler.js.map +1 -0
- package/lib/zosfiles/copy/dsclp/TargetProfile.handler.d.ts +18 -0
- package/lib/zosfiles/copy/dsclp/TargetProfile.handler.js +81 -0
- package/lib/zosfiles/copy/dsclp/TargetProfile.handler.js.map +1 -0
- package/npm-shrinkwrap.json +86 -86
- package/package.json +13 -13
- package/prebuilds/Cargo.lock +210 -20
- package/prebuilds/Cargo.toml +6 -2
- package/prebuilds/zowe-linux.tgz +0 -0
- package/prebuilds/zowe-macos.tgz +0 -0
- package/prebuilds/zowe-windows.tgz +0 -0
package/prebuilds/Cargo.lock
CHANGED
|
@@ -8,6 +8,28 @@ version = "1.0.69"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
|
|
10
10
|
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "async-stream"
|
|
13
|
+
version = "0.3.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"async-stream-impl",
|
|
18
|
+
"futures-core",
|
|
19
|
+
"pin-project-lite",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "async-stream-impl"
|
|
24
|
+
version = "0.3.5"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"proc-macro2",
|
|
29
|
+
"quote",
|
|
30
|
+
"syn 2.0.12",
|
|
31
|
+
]
|
|
32
|
+
|
|
11
33
|
[[package]]
|
|
12
34
|
name = "autocfg"
|
|
13
35
|
version = "1.1.0"
|
|
@@ -32,6 +54,12 @@ version = "3.12.0"
|
|
|
32
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
55
|
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
|
|
34
56
|
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "bytes"
|
|
59
|
+
version = "1.4.0"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
|
62
|
+
|
|
35
63
|
[[package]]
|
|
36
64
|
name = "cc"
|
|
37
65
|
version = "1.0.79"
|
|
@@ -130,6 +158,12 @@ dependencies = [
|
|
|
130
158
|
"winapi",
|
|
131
159
|
]
|
|
132
160
|
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "futures-core"
|
|
163
|
+
version = "0.3.28"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
|
166
|
+
|
|
133
167
|
[[package]]
|
|
134
168
|
name = "hermit-abi"
|
|
135
169
|
version = "0.2.6"
|
|
@@ -161,7 +195,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
161
195
|
checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3"
|
|
162
196
|
dependencies = [
|
|
163
197
|
"libc",
|
|
164
|
-
"windows-sys",
|
|
198
|
+
"windows-sys 0.45.0",
|
|
165
199
|
]
|
|
166
200
|
|
|
167
201
|
[[package]]
|
|
@@ -173,7 +207,7 @@ dependencies = [
|
|
|
173
207
|
"hermit-abi 0.3.1",
|
|
174
208
|
"io-lifetimes",
|
|
175
209
|
"rustix",
|
|
176
|
-
"windows-sys",
|
|
210
|
+
"windows-sys 0.45.0",
|
|
177
211
|
]
|
|
178
212
|
|
|
179
213
|
[[package]]
|
|
@@ -228,12 +262,15 @@ dependencies = [
|
|
|
228
262
|
]
|
|
229
263
|
|
|
230
264
|
[[package]]
|
|
231
|
-
name = "
|
|
232
|
-
version = "0.
|
|
265
|
+
name = "mio"
|
|
266
|
+
version = "0.8.6"
|
|
233
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
-
checksum = "
|
|
268
|
+
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
|
|
235
269
|
dependencies = [
|
|
236
|
-
"
|
|
270
|
+
"libc",
|
|
271
|
+
"log",
|
|
272
|
+
"wasi",
|
|
273
|
+
"windows-sys 0.45.0",
|
|
237
274
|
]
|
|
238
275
|
|
|
239
276
|
[[package]]
|
|
@@ -271,6 +308,12 @@ dependencies = [
|
|
|
271
308
|
"libc",
|
|
272
309
|
]
|
|
273
310
|
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "pin-project-lite"
|
|
313
|
+
version = "0.2.9"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
|
316
|
+
|
|
274
317
|
[[package]]
|
|
275
318
|
name = "proc-macro2"
|
|
276
319
|
version = "1.0.52"
|
|
@@ -332,7 +375,7 @@ dependencies = [
|
|
|
332
375
|
"io-lifetimes",
|
|
333
376
|
"libc",
|
|
334
377
|
"linux-raw-sys",
|
|
335
|
-
"windows-sys",
|
|
378
|
+
"windows-sys 0.45.0",
|
|
336
379
|
]
|
|
337
380
|
|
|
338
381
|
[[package]]
|
|
@@ -364,7 +407,7 @@ checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d"
|
|
|
364
407
|
dependencies = [
|
|
365
408
|
"proc-macro2",
|
|
366
409
|
"quote",
|
|
367
|
-
"syn",
|
|
410
|
+
"syn 1.0.109",
|
|
368
411
|
]
|
|
369
412
|
|
|
370
413
|
[[package]]
|
|
@@ -384,6 +427,16 @@ version = "0.2.3"
|
|
|
384
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
428
|
checksum = "cc47a29ce97772ca5c927f75bac34866b16d64e07f330c3248e2d7226623901b"
|
|
386
429
|
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "socket2"
|
|
432
|
+
version = "0.4.9"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"libc",
|
|
437
|
+
"winapi",
|
|
438
|
+
]
|
|
439
|
+
|
|
387
440
|
[[package]]
|
|
388
441
|
name = "supports-color"
|
|
389
442
|
version = "2.0.0"
|
|
@@ -405,6 +458,17 @@ dependencies = [
|
|
|
405
458
|
"unicode-ident",
|
|
406
459
|
]
|
|
407
460
|
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "syn"
|
|
463
|
+
version = "2.0.12"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "79d9531f94112cfc3e4c8f5f02cb2b58f72c97b7efd85f70203cc6d8efda5927"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"proc-macro2",
|
|
468
|
+
"quote",
|
|
469
|
+
"unicode-ident",
|
|
470
|
+
]
|
|
471
|
+
|
|
408
472
|
[[package]]
|
|
409
473
|
name = "sysinfo"
|
|
410
474
|
version = "0.28.2"
|
|
@@ -420,12 +484,70 @@ dependencies = [
|
|
|
420
484
|
"winapi",
|
|
421
485
|
]
|
|
422
486
|
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "tokio"
|
|
489
|
+
version = "1.28.0"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"autocfg",
|
|
494
|
+
"bytes",
|
|
495
|
+
"libc",
|
|
496
|
+
"mio",
|
|
497
|
+
"num_cpus",
|
|
498
|
+
"pin-project-lite",
|
|
499
|
+
"socket2",
|
|
500
|
+
"tokio-macros",
|
|
501
|
+
"windows-sys 0.48.0",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "tokio-macros"
|
|
506
|
+
version = "2.1.0"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"proc-macro2",
|
|
511
|
+
"quote",
|
|
512
|
+
"syn 2.0.12",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "tokio-stream"
|
|
517
|
+
version = "0.1.14"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"futures-core",
|
|
522
|
+
"pin-project-lite",
|
|
523
|
+
"tokio",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "tokio-test"
|
|
528
|
+
version = "0.4.2"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "53474327ae5e166530d17f2d956afcb4f8a004de581b3cae10f12006bc8163e3"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"async-stream",
|
|
533
|
+
"bytes",
|
|
534
|
+
"futures-core",
|
|
535
|
+
"tokio",
|
|
536
|
+
"tokio-stream",
|
|
537
|
+
]
|
|
538
|
+
|
|
423
539
|
[[package]]
|
|
424
540
|
name = "unicode-ident"
|
|
425
541
|
version = "1.0.8"
|
|
426
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
543
|
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
|
428
544
|
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "wasi"
|
|
547
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
550
|
+
|
|
429
551
|
[[package]]
|
|
430
552
|
name = "wasm-bindgen"
|
|
431
553
|
version = "0.2.84"
|
|
@@ -447,7 +569,7 @@ dependencies = [
|
|
|
447
569
|
"once_cell",
|
|
448
570
|
"proc-macro2",
|
|
449
571
|
"quote",
|
|
450
|
-
"syn",
|
|
572
|
+
"syn 1.0.109",
|
|
451
573
|
"wasm-bindgen-shared",
|
|
452
574
|
]
|
|
453
575
|
|
|
@@ -469,7 +591,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
|
469
591
|
dependencies = [
|
|
470
592
|
"proc-macro2",
|
|
471
593
|
"quote",
|
|
472
|
-
"syn",
|
|
594
|
+
"syn 1.0.109",
|
|
473
595
|
"wasm-bindgen-backend",
|
|
474
596
|
"wasm-bindgen-shared",
|
|
475
597
|
]
|
|
@@ -528,7 +650,16 @@ version = "0.45.0"
|
|
|
528
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
651
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
530
652
|
dependencies = [
|
|
531
|
-
"windows-targets",
|
|
653
|
+
"windows-targets 0.42.2",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "windows-sys"
|
|
658
|
+
version = "0.48.0"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"windows-targets 0.48.0",
|
|
532
663
|
]
|
|
533
664
|
|
|
534
665
|
[[package]]
|
|
@@ -537,13 +668,28 @@ version = "0.42.2"
|
|
|
537
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
669
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
539
670
|
dependencies = [
|
|
540
|
-
"windows_aarch64_gnullvm",
|
|
541
|
-
"windows_aarch64_msvc",
|
|
542
|
-
"windows_i686_gnu",
|
|
543
|
-
"windows_i686_msvc",
|
|
544
|
-
"windows_x86_64_gnu",
|
|
545
|
-
"windows_x86_64_gnullvm",
|
|
546
|
-
"windows_x86_64_msvc",
|
|
671
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
672
|
+
"windows_aarch64_msvc 0.42.2",
|
|
673
|
+
"windows_i686_gnu 0.42.2",
|
|
674
|
+
"windows_i686_msvc 0.42.2",
|
|
675
|
+
"windows_x86_64_gnu 0.42.2",
|
|
676
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
677
|
+
"windows_x86_64_msvc 0.42.2",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "windows-targets"
|
|
682
|
+
version = "0.48.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"windows_aarch64_gnullvm 0.48.0",
|
|
687
|
+
"windows_aarch64_msvc 0.48.0",
|
|
688
|
+
"windows_i686_gnu 0.48.0",
|
|
689
|
+
"windows_i686_msvc 0.48.0",
|
|
690
|
+
"windows_x86_64_gnu 0.48.0",
|
|
691
|
+
"windows_x86_64_gnullvm 0.48.0",
|
|
692
|
+
"windows_x86_64_msvc 0.48.0",
|
|
547
693
|
]
|
|
548
694
|
|
|
549
695
|
[[package]]
|
|
@@ -552,42 +698,84 @@ version = "0.42.2"
|
|
|
552
698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
699
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
554
700
|
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "windows_aarch64_gnullvm"
|
|
703
|
+
version = "0.48.0"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
706
|
+
|
|
555
707
|
[[package]]
|
|
556
708
|
name = "windows_aarch64_msvc"
|
|
557
709
|
version = "0.42.2"
|
|
558
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
711
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
560
712
|
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "windows_aarch64_msvc"
|
|
715
|
+
version = "0.48.0"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
718
|
+
|
|
561
719
|
[[package]]
|
|
562
720
|
name = "windows_i686_gnu"
|
|
563
721
|
version = "0.42.2"
|
|
564
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
723
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
566
724
|
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "windows_i686_gnu"
|
|
727
|
+
version = "0.48.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
730
|
+
|
|
567
731
|
[[package]]
|
|
568
732
|
name = "windows_i686_msvc"
|
|
569
733
|
version = "0.42.2"
|
|
570
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
735
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
572
736
|
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "windows_i686_msvc"
|
|
739
|
+
version = "0.48.0"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
742
|
+
|
|
573
743
|
[[package]]
|
|
574
744
|
name = "windows_x86_64_gnu"
|
|
575
745
|
version = "0.42.2"
|
|
576
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
747
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
578
748
|
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "windows_x86_64_gnu"
|
|
751
|
+
version = "0.48.0"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
754
|
+
|
|
579
755
|
[[package]]
|
|
580
756
|
name = "windows_x86_64_gnullvm"
|
|
581
757
|
version = "0.42.2"
|
|
582
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
759
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
584
760
|
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "windows_x86_64_gnullvm"
|
|
763
|
+
version = "0.48.0"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
766
|
+
|
|
585
767
|
[[package]]
|
|
586
768
|
name = "windows_x86_64_msvc"
|
|
587
769
|
version = "0.42.2"
|
|
588
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
771
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
590
772
|
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "windows_x86_64_msvc"
|
|
775
|
+
version = "0.48.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
778
|
+
|
|
591
779
|
[[package]]
|
|
592
780
|
name = "yansi"
|
|
593
781
|
version = "0.5.1"
|
|
@@ -596,13 +784,12 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
|
|
596
784
|
|
|
597
785
|
[[package]]
|
|
598
786
|
name = "zowe"
|
|
599
|
-
version = "1.0
|
|
787
|
+
version = "1.1.0"
|
|
600
788
|
dependencies = [
|
|
601
789
|
"base64",
|
|
602
790
|
"fslock",
|
|
603
791
|
"home",
|
|
604
792
|
"is-terminal",
|
|
605
|
-
"named_pipe",
|
|
606
793
|
"pathsearch",
|
|
607
794
|
"rpassword",
|
|
608
795
|
"serde",
|
|
@@ -610,6 +797,9 @@ dependencies = [
|
|
|
610
797
|
"simple-error",
|
|
611
798
|
"supports-color",
|
|
612
799
|
"sysinfo",
|
|
800
|
+
"tokio",
|
|
801
|
+
"tokio-test",
|
|
613
802
|
"whoami",
|
|
803
|
+
"windows-sys 0.48.0",
|
|
614
804
|
"yansi",
|
|
615
805
|
]
|
package/prebuilds/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "zowe"
|
|
3
|
-
version = "1.0
|
|
3
|
+
version = "1.1.0"
|
|
4
4
|
authors = ["Zowe Project"]
|
|
5
5
|
edition = "2018"
|
|
6
6
|
license = "EPL-2.0"
|
|
@@ -19,9 +19,13 @@ serde_json = "1.0.94"
|
|
|
19
19
|
simple-error = "0.2.3"
|
|
20
20
|
supports-color = "2.0.0"
|
|
21
21
|
sysinfo = "0.28.2"
|
|
22
|
+
tokio = { version = "1.28.0", features = ["io-util", "macros", "net", "rt-multi-thread"] }
|
|
22
23
|
whoami = "1.4.0"
|
|
23
24
|
yansi = "0.5.1"
|
|
24
25
|
|
|
25
26
|
[target.'cfg(windows)'.dependencies]
|
|
26
27
|
fslock = "0.2.1"
|
|
27
|
-
|
|
28
|
+
windows-sys = "0.48.0"
|
|
29
|
+
|
|
30
|
+
[dev-dependencies]
|
|
31
|
+
tokio-test = "0.4.2"
|
package/prebuilds/zowe-linux.tgz
CHANGED
|
Binary file
|
package/prebuilds/zowe-macos.tgz
CHANGED
|
Binary file
|
|
Binary file
|