kcl-lib 0.9.0a1__tar.gz → 0.9.0b1__tar.gz

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.

Potentially problematic release.


This version of kcl-lib might be problematic. Click here for more details.

Files changed (86) hide show
  1. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/Cargo.lock +646 -113
  2. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/Cargo.toml +2 -2
  3. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/Makefile +2 -0
  4. {kcl_lib-0.9.0a1 → kcl_lib-0.9.0b1}/PKG-INFO +1 -1
  5. {kcl_lib-0.9.0a1 → kcl_lib-0.9.0b1}/kcl_lib/api/service.py +22 -19
  6. kcl_lib-0.9.0b1/kcl_lib/api/spec_pb2.py +204 -0
  7. {kcl_lib-0.9.0a1 → kcl_lib-0.9.0b1}/pyproject.toml +0 -1
  8. kcl_lib-0.9.0b1/src/lib.rs +27 -0
  9. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/tests/exec_test.py +4 -1
  10. kcl_lib-0.9.0a1/.devcontainer/Dockerfile +0 -24
  11. kcl_lib-0.9.0a1/.devcontainer/devcontainer.json +0 -8
  12. kcl_lib-0.9.0a1/.github/workflows/cla.yml +0 -38
  13. kcl_lib-0.9.0a1/.github/workflows/go-test.yaml +0 -30
  14. kcl_lib-0.9.0a1/.github/workflows/java-test.yaml +0 -189
  15. kcl_lib-0.9.0a1/.github/workflows/nodejs-test.yaml +0 -276
  16. kcl_lib-0.9.0a1/.github/workflows/python-test.yaml +0 -113
  17. kcl_lib-0.9.0a1/.github/workflows/rust-test.yaml +0 -32
  18. kcl_lib-0.9.0a1/.gitignore +0 -40
  19. kcl_lib-0.9.0a1/Cargo.toml +0 -14
  20. kcl_lib-0.9.0a1/README.md +0 -142
  21. kcl_lib-0.9.0a1/go.mod +0 -3
  22. kcl_lib-0.9.0a1/install.go +0 -112
  23. kcl_lib-0.9.0a1/install_lib_unix.go +0 -19
  24. kcl_lib-0.9.0a1/install_lib_windows.go +0 -11
  25. kcl_lib-0.9.0a1/kcl_lib/api/spec_pb2.py +0 -206
  26. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_darwin_amd64.go +0 -11
  27. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_darwin_arm64.go +0 -11
  28. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_linux_amd64.go +0 -11
  29. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_linux_arm64.go +0 -11
  30. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_windows_amd64.go +0 -14
  31. kcl_lib-0.9.0a1/kclvm_cli_shared_lib_windows_arm64.go +0 -14
  32. kcl_lib-0.9.0a1/lib/darwin-amd64/dummy.go +0 -1
  33. kcl_lib-0.9.0a1/lib/darwin-amd64/kclvm_cli +0 -0
  34. kcl_lib-0.9.0a1/lib/darwin-amd64/libkclvm_cli_cdylib.dylib +0 -0
  35. kcl_lib-0.9.0a1/lib/darwin-arm64/dummy.go +0 -1
  36. kcl_lib-0.9.0a1/lib/darwin-arm64/kclvm_cli +0 -0
  37. kcl_lib-0.9.0a1/lib/darwin-arm64/libkclvm_cli_cdylib.dylib +0 -0
  38. kcl_lib-0.9.0a1/lib/dummy.go +0 -10
  39. kcl_lib-0.9.0a1/lib/linux-amd64/dummy.go +0 -1
  40. kcl_lib-0.9.0a1/lib/linux-amd64/kclvm_cli +0 -0
  41. kcl_lib-0.9.0a1/lib/linux-arm64/dummy.go +0 -1
  42. kcl_lib-0.9.0a1/lib/linux-arm64/kclvm_cli +0 -0
  43. kcl_lib-0.9.0a1/lib/windows-amd64/dummy.go +0 -1
  44. kcl_lib-0.9.0a1/lib/windows-amd64/kclvm_cli.exe +0 -0
  45. kcl_lib-0.9.0a1/lib/windows-amd64/kclvm_cli_cdylib.dll +0 -0
  46. kcl_lib-0.9.0a1/lib/windows-amd64/kclvm_cli_cdylib.lib +0 -0
  47. kcl_lib-0.9.0a1/lib/windows-arm64/dummy.go +0 -1
  48. kcl_lib-0.9.0a1/lib/windows-arm64/kclvm_cli.exe +0 -0
  49. kcl_lib-0.9.0a1/lib/windows-arm64/kclvm_cli_cdylib.dll +0 -0
  50. kcl_lib-0.9.0a1/lib/windows-arm64/kclvm_cli_cdylib.lib +0 -0
  51. kcl_lib-0.9.0a1/python/kcl_lib/__init__.py +0 -1
  52. kcl_lib-0.9.0a1/python/kcl_lib/api/__init__.py +0 -4
  53. kcl_lib-0.9.0a1/python/kcl_lib/api/service.py +0 -194
  54. kcl_lib-0.9.0a1/python/kcl_lib/api/spec_pb2.py +0 -206
  55. kcl_lib-0.9.0a1/python/src/lib.rs +0 -15
  56. kcl_lib-0.9.0a1/spec/gpyrpc/Makefile +0 -3
  57. kcl_lib-0.9.0a1/spec/gpyrpc/spec.proto +0 -499
  58. kcl_lib-0.9.0a1/src/README.md +0 -28
  59. kcl_lib-0.9.0a1/src/lib.rs +0 -48
  60. kcl_lib-0.9.0a1/testdata/compile_recursive/kcl1/main.k +0 -1
  61. kcl_lib-0.9.0a1/testdata/compile_recursive/kcl2/main.k +0 -1
  62. kcl_lib-0.9.0a1/testdata/compile_recursive/main.k +0 -1
  63. kcl_lib-0.9.0a1/testdata/get_schema_ty/aaa/kcl.mod +0 -5
  64. kcl_lib-0.9.0a1/testdata/get_schema_ty/aaa/main.k +0 -10
  65. kcl_lib-0.9.0a1/testdata/get_schema_ty/bbb/kcl.mod +0 -5
  66. kcl_lib-0.9.0a1/testdata/get_schema_ty/bbb/main.k +0 -2
  67. kcl_lib-0.9.0a1/testdata/get_schema_ty/ccc/kcl.mod +0 -5
  68. kcl_lib-0.9.0a1/testdata/get_schema_ty/ccc/main.k +0 -2
  69. kcl_lib-0.9.0a1/testdata/hello.k +0 -1
  70. kcl_lib-0.9.0a1/testdata/hello_import.k +0 -5
  71. kcl_lib-0.9.0a1/testdata/hello_with_print.k +0 -2
  72. kcl_lib-0.9.0a1/testdata/rename/main.bak +0 -2
  73. kcl_lib-0.9.0a1/testdata/rename_doc/main.bak +0 -2
  74. kcl_lib-0.9.0a1/testdata/settings/kcl.yaml +0 -5
  75. kcl_lib-0.9.0a1/testdata/test-lint-import.k +0 -4
  76. kcl_lib-0.9.0a1/testdata/test-lint.k +0 -1
  77. kcl_lib-0.9.0a1/testdata/test.k +0 -5
  78. kcl_lib-0.9.0a1/testdata/testing/module/kcl.mod +0 -3
  79. kcl_lib-0.9.0a1/testdata/testing/module/pkg/func.k +0 -3
  80. kcl_lib-0.9.0a1/testdata/testing/module/pkg/func_test.k +0 -7
  81. kcl_lib-0.9.0a1/util.go +0 -41
  82. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/.gitignore +0 -0
  83. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/README.md +0 -0
  84. {kcl_lib-0.9.0a1 → kcl_lib-0.9.0b1}/kcl_lib/__init__.py +0 -0
  85. {kcl_lib-0.9.0a1 → kcl_lib-0.9.0b1}/kcl_lib/api/__init__.py +0 -0
  86. {kcl_lib-0.9.0a1/python → kcl_lib-0.9.0b1}/tests/test_data/schema.k +0 -0
@@ -122,9 +122,9 @@ dependencies = [
122
122
 
123
123
  [[package]]
124
124
  name = "anyhow"
125
- version = "1.0.83"
125
+ version = "1.0.86"
126
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
127
+ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
128
128
  dependencies = [
129
129
  "backtrace",
130
130
  ]
@@ -154,7 +154,7 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
154
154
  dependencies = [
155
155
  "proc-macro2",
156
156
  "quote",
157
- "syn 2.0.63",
157
+ "syn 2.0.66",
158
158
  ]
159
159
 
160
160
  [[package]]
@@ -201,6 +201,12 @@ version = "0.13.1"
201
201
  source = "registry+https://github.com/rust-lang/crates.io-index"
202
202
  checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
203
203
 
204
+ [[package]]
205
+ name = "base64"
206
+ version = "0.22.1"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
209
+
204
210
  [[package]]
205
211
  name = "bit-set"
206
212
  version = "0.5.3"
@@ -313,9 +319,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
313
319
 
314
320
  [[package]]
315
321
  name = "cc"
316
- version = "1.0.97"
322
+ version = "1.0.98"
317
323
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
- checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
324
+ checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
319
325
 
320
326
  [[package]]
321
327
  name = "cfg-if"
@@ -442,11 +448,20 @@ dependencies = [
442
448
  "libc",
443
449
  ]
444
450
 
451
+ [[package]]
452
+ name = "crc32fast"
453
+ version = "1.4.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
456
+ dependencies = [
457
+ "cfg-if 1.0.0",
458
+ ]
459
+
445
460
  [[package]]
446
461
  name = "crossbeam-channel"
447
- version = "0.5.12"
462
+ version = "0.5.13"
448
463
  source = "registry+https://github.com/rust-lang/crates.io-index"
449
- checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
464
+ checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
450
465
  dependencies = [
451
466
  "crossbeam-utils",
452
467
  ]
@@ -472,9 +487,9 @@ dependencies = [
472
487
 
473
488
  [[package]]
474
489
  name = "crossbeam-utils"
475
- version = "0.8.19"
490
+ version = "0.8.20"
476
491
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
- checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
492
+ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
478
493
 
479
494
  [[package]]
480
495
  name = "crypto-common"
@@ -540,6 +555,7 @@ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
540
555
  dependencies = [
541
556
  "block-buffer 0.10.4",
542
557
  "crypto-common",
558
+ "subtle",
543
559
  ]
544
560
 
545
561
  [[package]]
@@ -577,14 +593,14 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
577
593
  dependencies = [
578
594
  "proc-macro2",
579
595
  "quote",
580
- "syn 2.0.63",
596
+ "syn 2.0.66",
581
597
  ]
582
598
 
583
599
  [[package]]
584
600
  name = "either"
585
- version = "1.11.0"
601
+ version = "1.12.0"
586
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
587
- checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
603
+ checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
588
604
 
589
605
  [[package]]
590
606
  name = "ena"
@@ -635,11 +651,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
635
651
 
636
652
  [[package]]
637
653
  name = "erased-serde"
638
- version = "0.4.4"
654
+ version = "0.4.5"
639
655
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3"
656
+ checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
641
657
  dependencies = [
642
658
  "serde",
659
+ "typeid",
643
660
  ]
644
661
 
645
662
  [[package]]
@@ -686,6 +703,16 @@ version = "0.4.2"
686
703
  source = "registry+https://github.com/rust-lang/crates.io-index"
687
704
  checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
688
705
 
706
+ [[package]]
707
+ name = "flate2"
708
+ version = "1.0.30"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
711
+ dependencies = [
712
+ "crc32fast",
713
+ "miniz_oxide",
714
+ ]
715
+
689
716
  [[package]]
690
717
  name = "fluent"
691
718
  version = "0.16.1"
@@ -730,6 +757,12 @@ dependencies = [
730
757
  "thiserror",
731
758
  ]
732
759
 
760
+ [[package]]
761
+ name = "fnv"
762
+ version = "1.0.7"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
765
+
733
766
  [[package]]
734
767
  name = "form_urlencoded"
735
768
  version = "1.2.1"
@@ -820,7 +853,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
820
853
  dependencies = [
821
854
  "proc-macro2",
822
855
  "quote",
823
- "syn 2.0.63",
856
+ "syn 2.0.66",
824
857
  ]
825
858
 
826
859
  [[package]]
@@ -960,6 +993,15 @@ version = "0.3.9"
960
993
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
994
  checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
962
995
 
996
+ [[package]]
997
+ name = "hmac"
998
+ version = "0.12.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1001
+ dependencies = [
1002
+ "digest 0.10.7",
1003
+ ]
1004
+
963
1005
  [[package]]
964
1006
  name = "home"
965
1007
  version = "0.5.9"
@@ -969,12 +1011,117 @@ dependencies = [
969
1011
  "windows-sys 0.52.0",
970
1012
  ]
971
1013
 
1014
+ [[package]]
1015
+ name = "http"
1016
+ version = "1.1.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1019
+ dependencies = [
1020
+ "bytes",
1021
+ "fnv",
1022
+ "itoa",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "http-auth"
1027
+ version = "0.1.9"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "643c9bbf6a4ea8a656d6b4cd53d34f79e3f841ad5203c1a55fb7d761923bc255"
1030
+ dependencies = [
1031
+ "memchr",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "http-body"
1036
+ version = "1.0.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1039
+ dependencies = [
1040
+ "bytes",
1041
+ "http",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "http-body-util"
1046
+ version = "0.1.1"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1049
+ dependencies = [
1050
+ "bytes",
1051
+ "futures-core",
1052
+ "http",
1053
+ "http-body",
1054
+ "pin-project-lite",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "httparse"
1059
+ version = "1.8.0"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1062
+
972
1063
  [[package]]
973
1064
  name = "humantime"
974
1065
  version = "2.1.0"
975
1066
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
1067
  checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
977
1068
 
1069
+ [[package]]
1070
+ name = "hyper"
1071
+ version = "1.3.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1074
+ dependencies = [
1075
+ "bytes",
1076
+ "futures-channel",
1077
+ "futures-util",
1078
+ "http",
1079
+ "http-body",
1080
+ "httparse",
1081
+ "itoa",
1082
+ "pin-project-lite",
1083
+ "smallvec",
1084
+ "tokio",
1085
+ "want",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "hyper-rustls"
1090
+ version = "0.26.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
1093
+ dependencies = [
1094
+ "futures-util",
1095
+ "http",
1096
+ "hyper",
1097
+ "hyper-util",
1098
+ "rustls",
1099
+ "rustls-pki-types",
1100
+ "tokio",
1101
+ "tokio-rustls",
1102
+ "tower-service",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "hyper-util"
1107
+ version = "0.1.5"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56"
1110
+ dependencies = [
1111
+ "bytes",
1112
+ "futures-channel",
1113
+ "futures-util",
1114
+ "http",
1115
+ "http-body",
1116
+ "hyper",
1117
+ "pin-project-lite",
1118
+ "socket2",
1119
+ "tokio",
1120
+ "tower",
1121
+ "tower-service",
1122
+ "tracing",
1123
+ ]
1124
+
978
1125
  [[package]]
979
1126
  name = "iana-time-zone"
980
1127
  version = "0.1.60"
@@ -1071,9 +1218,9 @@ dependencies = [
1071
1218
 
1072
1219
  [[package]]
1073
1220
  name = "instant"
1074
- version = "0.1.12"
1221
+ version = "0.1.13"
1075
1222
  source = "registry+https://github.com/rust-lang/crates.io-index"
1076
- checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1223
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1077
1224
  dependencies = [
1078
1225
  "cfg-if 1.0.0",
1079
1226
  ]
@@ -1103,6 +1250,12 @@ version = "0.3.15"
1103
1250
  source = "registry+https://github.com/rust-lang/crates.io-index"
1104
1251
  checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
1105
1252
 
1253
+ [[package]]
1254
+ name = "ipnet"
1255
+ version = "2.9.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1258
+
1106
1259
  [[package]]
1107
1260
  name = "is_terminal_polyfill"
1108
1261
  version = "1.70.0"
@@ -1183,21 +1336,28 @@ dependencies = [
1183
1336
  "jsonrpc-core",
1184
1337
  "log",
1185
1338
  "tokio",
1186
- "tokio-util",
1339
+ "tokio-util 0.6.10",
1187
1340
  ]
1188
1341
 
1189
1342
  [[package]]
1190
- name = "kcl-lang"
1191
- version = "0.9.0-alpha.1"
1343
+ name = "jwt"
1344
+ version = "0.16.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f"
1192
1347
  dependencies = [
1193
- "anyhow",
1194
- "kclvm-api",
1348
+ "base64 0.13.1",
1349
+ "crypto-common",
1350
+ "digest 0.10.7",
1351
+ "hmac",
1352
+ "serde",
1353
+ "serde_json",
1354
+ "sha2 0.10.8",
1195
1355
  ]
1196
1356
 
1197
1357
  [[package]]
1198
1358
  name = "kcl-language-server"
1199
- version = "0.9.0-alpha.1"
1200
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1359
+ version = "0.9.0-beta.1"
1360
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1201
1361
  dependencies = [
1202
1362
  "anyhow",
1203
1363
  "chrono",
@@ -1223,7 +1383,7 @@ dependencies = [
1223
1383
  "lsp-server",
1224
1384
  "lsp-types",
1225
1385
  "maplit",
1226
- "parking_lot 0.12.2",
1386
+ "parking_lot 0.12.3",
1227
1387
  "proc_macro_crate",
1228
1388
  "ra_ap_vfs",
1229
1389
  "ra_ap_vfs-notify",
@@ -1240,16 +1400,16 @@ dependencies = [
1240
1400
 
1241
1401
  [[package]]
1242
1402
  name = "kcl-python-lib"
1243
- version = "0.9.0-alpha.1"
1403
+ version = "0.9.0-beta.1"
1244
1404
  dependencies = [
1245
- "kcl-lang",
1405
+ "kclvm-api",
1246
1406
  "pyo3",
1247
1407
  ]
1248
1408
 
1249
1409
  [[package]]
1250
1410
  name = "kclvm-api"
1251
- version = "0.9.0-alpha.1"
1252
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1411
+ version = "0.9.0-beta.1"
1412
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1253
1413
  dependencies = [
1254
1414
  "anyhow",
1255
1415
  "futures",
@@ -1287,8 +1447,8 @@ dependencies = [
1287
1447
 
1288
1448
  [[package]]
1289
1449
  name = "kclvm-ast"
1290
- version = "0.9.0-alpha.1"
1291
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1450
+ version = "0.9.0-beta.1"
1451
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1292
1452
  dependencies = [
1293
1453
  "compiler_base_span",
1294
1454
  "kclvm-error",
@@ -1302,8 +1462,8 @@ dependencies = [
1302
1462
 
1303
1463
  [[package]]
1304
1464
  name = "kclvm-ast-pretty"
1305
- version = "0.9.0-alpha.1"
1306
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1465
+ version = "0.9.0-beta.1"
1466
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1307
1467
  dependencies = [
1308
1468
  "compiler_base_macros",
1309
1469
  "compiler_base_session",
@@ -1316,8 +1476,8 @@ dependencies = [
1316
1476
 
1317
1477
  [[package]]
1318
1478
  name = "kclvm-compiler"
1319
- version = "0.9.0-alpha.1"
1320
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1479
+ version = "0.9.0-beta.1"
1480
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1321
1481
  dependencies = [
1322
1482
  "ahash",
1323
1483
  "bit-set",
@@ -1336,8 +1496,8 @@ dependencies = [
1336
1496
 
1337
1497
  [[package]]
1338
1498
  name = "kclvm-config"
1339
- version = "0.9.0-alpha.1"
1340
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1499
+ version = "0.9.0-beta.1"
1500
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1341
1501
  dependencies = [
1342
1502
  "ahash",
1343
1503
  "anyhow",
@@ -1360,26 +1520,33 @@ dependencies = [
1360
1520
 
1361
1521
  [[package]]
1362
1522
  name = "kclvm-driver"
1363
- version = "0.9.0-alpha.1"
1364
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1523
+ version = "0.9.0-beta.1"
1524
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1365
1525
  dependencies = [
1366
1526
  "anyhow",
1527
+ "flate2",
1367
1528
  "glob",
1529
+ "indexmap 2.2.6",
1368
1530
  "kclvm-ast",
1369
1531
  "kclvm-config",
1370
1532
  "kclvm-parser",
1371
1533
  "kclvm-runtime",
1372
1534
  "kclvm-utils",
1373
1535
  "notify 6.1.1",
1536
+ "oci-distribution",
1537
+ "once_cell",
1538
+ "parking_lot 0.12.3",
1374
1539
  "serde",
1375
1540
  "serde_json",
1541
+ "tar",
1542
+ "tokio",
1376
1543
  "walkdir",
1377
1544
  ]
1378
1545
 
1379
1546
  [[package]]
1380
1547
  name = "kclvm-error"
1381
- version = "0.9.0-alpha.1"
1382
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1548
+ version = "0.9.0-beta.1"
1549
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1383
1550
  dependencies = [
1384
1551
  "annotate-snippets",
1385
1552
  "anyhow",
@@ -1392,15 +1559,17 @@ dependencies = [
1392
1559
  "kclvm-runtime",
1393
1560
  "kclvm-span",
1394
1561
  "kclvm-utils",
1562
+ "serde",
1395
1563
  "serde_json",
1396
1564
  "termize",
1565
+ "thiserror",
1397
1566
  "tracing",
1398
1567
  ]
1399
1568
 
1400
1569
  [[package]]
1401
1570
  name = "kclvm-evaluator"
1402
- version = "0.9.0-alpha.1"
1403
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1571
+ version = "0.9.0-beta.1"
1572
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1404
1573
  dependencies = [
1405
1574
  "anyhow",
1406
1575
  "generational-arena",
@@ -1413,8 +1582,8 @@ dependencies = [
1413
1582
 
1414
1583
  [[package]]
1415
1584
  name = "kclvm-lexer"
1416
- version = "0.9.0-alpha.1"
1417
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1585
+ version = "0.9.0-beta.1"
1586
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1418
1587
  dependencies = [
1419
1588
  "kclvm-error",
1420
1589
  "rustc_lexer",
@@ -1423,8 +1592,8 @@ dependencies = [
1423
1592
 
1424
1593
  [[package]]
1425
1594
  name = "kclvm-loader"
1426
- version = "0.9.0-alpha.1"
1427
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1595
+ version = "0.9.0-beta.1"
1596
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1428
1597
  dependencies = [
1429
1598
  "anyhow",
1430
1599
  "indexmap 1.9.3",
@@ -1439,8 +1608,8 @@ dependencies = [
1439
1608
 
1440
1609
  [[package]]
1441
1610
  name = "kclvm-macros"
1442
- version = "0.9.0-alpha.1"
1443
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1611
+ version = "0.9.0-beta.1"
1612
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1444
1613
  dependencies = [
1445
1614
  "proc-macro2",
1446
1615
  "quote",
@@ -1450,8 +1619,8 @@ dependencies = [
1450
1619
 
1451
1620
  [[package]]
1452
1621
  name = "kclvm-parser"
1453
- version = "0.9.0-alpha.1"
1454
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1622
+ version = "0.9.0-beta.1"
1623
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1455
1624
  dependencies = [
1456
1625
  "anyhow",
1457
1626
  "bstr",
@@ -1481,12 +1650,13 @@ dependencies = [
1481
1650
 
1482
1651
  [[package]]
1483
1652
  name = "kclvm-query"
1484
- version = "0.9.0-alpha.1"
1485
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1653
+ version = "0.9.0-beta.1"
1654
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1486
1655
  dependencies = [
1487
1656
  "anyhow",
1488
1657
  "compiler_base_macros",
1489
1658
  "compiler_base_session",
1659
+ "fancy-regex",
1490
1660
  "indexmap 1.9.3",
1491
1661
  "kclvm-ast",
1492
1662
  "kclvm-ast-pretty",
@@ -1494,12 +1664,14 @@ dependencies = [
1494
1664
  "kclvm-parser",
1495
1665
  "kclvm-sema",
1496
1666
  "maplit",
1667
+ "serde",
1668
+ "serde_json",
1497
1669
  ]
1498
1670
 
1499
1671
  [[package]]
1500
1672
  name = "kclvm-runner"
1501
- version = "0.9.0-alpha.1"
1502
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1673
+ version = "0.9.0-beta.1"
1674
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1503
1675
  dependencies = [
1504
1676
  "anyhow",
1505
1677
  "cc",
@@ -1533,11 +1705,11 @@ dependencies = [
1533
1705
 
1534
1706
  [[package]]
1535
1707
  name = "kclvm-runtime"
1536
- version = "0.9.0-alpha.1"
1537
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1708
+ version = "0.9.0-beta.1"
1709
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1538
1710
  dependencies = [
1539
1711
  "ahash",
1540
- "base64",
1712
+ "base64 0.13.1",
1541
1713
  "bstr",
1542
1714
  "chrono",
1543
1715
  "fancy-regex",
@@ -1566,8 +1738,8 @@ dependencies = [
1566
1738
 
1567
1739
  [[package]]
1568
1740
  name = "kclvm-sema"
1569
- version = "0.9.0-alpha.1"
1570
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1741
+ version = "0.9.0-beta.1"
1742
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1571
1743
  dependencies = [
1572
1744
  "ahash",
1573
1745
  "anyhow",
@@ -1599,8 +1771,8 @@ dependencies = [
1599
1771
 
1600
1772
  [[package]]
1601
1773
  name = "kclvm-span"
1602
- version = "0.9.0-alpha.1"
1603
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1774
+ version = "0.9.0-beta.1"
1775
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1604
1776
  dependencies = [
1605
1777
  "compiler_base_span",
1606
1778
  "kclvm-macros",
@@ -1610,8 +1782,8 @@ dependencies = [
1610
1782
 
1611
1783
  [[package]]
1612
1784
  name = "kclvm-tools"
1613
- version = "0.9.0-alpha.1"
1614
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1785
+ version = "0.9.0-beta.1"
1786
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1615
1787
  dependencies = [
1616
1788
  "anyhow",
1617
1789
  "compiler_base_session",
@@ -1641,8 +1813,8 @@ dependencies = [
1641
1813
 
1642
1814
  [[package]]
1643
1815
  name = "kclvm-utils"
1644
- version = "0.9.0-alpha.1"
1645
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1816
+ version = "0.9.0-beta.1"
1817
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1646
1818
  dependencies = [
1647
1819
  "anyhow",
1648
1820
  "fslock",
@@ -1651,8 +1823,8 @@ dependencies = [
1651
1823
 
1652
1824
  [[package]]
1653
1825
  name = "kclvm-version"
1654
- version = "0.9.0-alpha.1"
1655
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1826
+ version = "0.9.0-beta.1"
1827
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1656
1828
  dependencies = [
1657
1829
  "vergen",
1658
1830
  ]
@@ -1660,7 +1832,7 @@ dependencies = [
1660
1832
  [[package]]
1661
1833
  name = "kclvm_runtime_internal_macros"
1662
1834
  version = "0.5.0"
1663
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
1835
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
1664
1836
  dependencies = [
1665
1837
  "proc-macro2",
1666
1838
  "quote",
@@ -1695,9 +1867,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1695
1867
 
1696
1868
  [[package]]
1697
1869
  name = "libc"
1698
- version = "0.2.154"
1870
+ version = "0.2.155"
1699
1871
  source = "registry+https://github.com/rust-lang/crates.io-index"
1700
- checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
1872
+ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
1701
1873
 
1702
1874
  [[package]]
1703
1875
  name = "libloading"
@@ -1730,9 +1902,9 @@ dependencies = [
1730
1902
 
1731
1903
  [[package]]
1732
1904
  name = "linux-raw-sys"
1733
- version = "0.4.13"
1905
+ version = "0.4.14"
1734
1906
  source = "registry+https://github.com/rust-lang/crates.io-index"
1735
- checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1907
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1736
1908
 
1737
1909
  [[package]]
1738
1910
  name = "located_yaml"
@@ -1849,11 +2021,17 @@ dependencies = [
1849
2021
  "autocfg",
1850
2022
  ]
1851
2023
 
2024
+ [[package]]
2025
+ name = "mime"
2026
+ version = "0.3.17"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2029
+
1852
2030
  [[package]]
1853
2031
  name = "miniz_oxide"
1854
- version = "0.7.2"
2032
+ version = "0.7.3"
1855
2033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1856
- checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2034
+ checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
1857
2035
  dependencies = [
1858
2036
  "adler",
1859
2037
  ]
@@ -1984,6 +2162,42 @@ dependencies = [
1984
2162
  "memchr",
1985
2163
  ]
1986
2164
 
2165
+ [[package]]
2166
+ name = "oci-distribution"
2167
+ version = "0.11.0"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "b95a2c51531af0cb93761f66094044ca6ea879320bccd35ab747ff3fcab3f422"
2170
+ dependencies = [
2171
+ "bytes",
2172
+ "chrono",
2173
+ "futures-util",
2174
+ "http",
2175
+ "http-auth",
2176
+ "jwt",
2177
+ "lazy_static",
2178
+ "olpc-cjson",
2179
+ "regex",
2180
+ "reqwest",
2181
+ "serde",
2182
+ "serde_json",
2183
+ "sha2 0.10.8",
2184
+ "thiserror",
2185
+ "tokio",
2186
+ "tracing",
2187
+ "unicase",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "olpc-cjson"
2192
+ version = "0.1.3"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "d637c9c15b639ccff597da8f4fa968300651ad2f1e968aefc3b4927a6fb2027a"
2195
+ dependencies = [
2196
+ "serde",
2197
+ "serde_json",
2198
+ "unicode-normalization",
2199
+ ]
2200
+
1987
2201
  [[package]]
1988
2202
  name = "once_cell"
1989
2203
  version = "1.19.0"
@@ -2027,9 +2241,9 @@ dependencies = [
2027
2241
 
2028
2242
  [[package]]
2029
2243
  name = "parking_lot"
2030
- version = "0.12.2"
2244
+ version = "0.12.3"
2031
2245
  source = "registry+https://github.com/rust-lang/crates.io-index"
2032
- checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
2246
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2033
2247
  dependencies = [
2034
2248
  "lock_api",
2035
2249
  "parking_lot_core 0.9.10",
@@ -2105,7 +2319,7 @@ dependencies = [
2105
2319
  "pest_meta",
2106
2320
  "proc-macro2",
2107
2321
  "quote",
2108
- "syn 2.0.63",
2322
+ "syn 2.0.66",
2109
2323
  ]
2110
2324
 
2111
2325
  [[package]]
@@ -2173,6 +2387,26 @@ dependencies = [
2173
2387
  "siphasher",
2174
2388
  ]
2175
2389
 
2390
+ [[package]]
2391
+ name = "pin-project"
2392
+ version = "1.1.5"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
2395
+ dependencies = [
2396
+ "pin-project-internal",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "pin-project-internal"
2401
+ version = "1.1.5"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2404
+ dependencies = [
2405
+ "proc-macro2",
2406
+ "quote",
2407
+ "syn 2.0.66",
2408
+ ]
2409
+
2176
2410
  [[package]]
2177
2411
  name = "pin-project-lite"
2178
2412
  version = "0.2.14"
@@ -2231,9 +2465,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2231
2465
 
2232
2466
  [[package]]
2233
2467
  name = "proc-macro2"
2234
- version = "1.0.82"
2468
+ version = "1.0.84"
2235
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
2236
- checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
2470
+ checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6"
2237
2471
  dependencies = [
2238
2472
  "unicode-ident",
2239
2473
  ]
@@ -2241,11 +2475,11 @@ dependencies = [
2241
2475
  [[package]]
2242
2476
  name = "proc_macro_crate"
2243
2477
  version = "0.1.0"
2244
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
2478
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
2245
2479
  dependencies = [
2246
2480
  "proc-macro2",
2247
2481
  "quote",
2248
- "syn 2.0.63",
2482
+ "syn 2.0.66",
2249
2483
  ]
2250
2484
 
2251
2485
  [[package]]
@@ -2305,7 +2539,7 @@ dependencies = [
2305
2539
  [[package]]
2306
2540
  name = "prost-wkt"
2307
2541
  version = "0.4.1"
2308
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
2542
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
2309
2543
  dependencies = [
2310
2544
  "chrono",
2311
2545
  "inventory",
@@ -2319,7 +2553,7 @@ dependencies = [
2319
2553
  [[package]]
2320
2554
  name = "prost-wkt-build"
2321
2555
  version = "0.4.1"
2322
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
2556
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
2323
2557
  dependencies = [
2324
2558
  "heck 0.4.1",
2325
2559
  "prost",
@@ -2331,7 +2565,7 @@ dependencies = [
2331
2565
  [[package]]
2332
2566
  name = "prost-wkt-types"
2333
2567
  version = "0.4.1"
2334
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
2568
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
2335
2569
  dependencies = [
2336
2570
  "chrono",
2337
2571
  "prost",
@@ -2406,7 +2640,7 @@ dependencies = [
2406
2640
  "indoc",
2407
2641
  "libc",
2408
2642
  "memoffset",
2409
- "parking_lot 0.12.2",
2643
+ "parking_lot 0.12.3",
2410
2644
  "portable-atomic",
2411
2645
  "pyo3-build-config",
2412
2646
  "pyo3-ffi",
@@ -2443,7 +2677,7 @@ dependencies = [
2443
2677
  "proc-macro2",
2444
2678
  "pyo3-macros-backend",
2445
2679
  "quote",
2446
- "syn 2.0.63",
2680
+ "syn 2.0.66",
2447
2681
  ]
2448
2682
 
2449
2683
  [[package]]
@@ -2456,7 +2690,7 @@ dependencies = [
2456
2690
  "proc-macro2",
2457
2691
  "pyo3-build-config",
2458
2692
  "quote",
2459
- "syn 2.0.63",
2693
+ "syn 2.0.66",
2460
2694
  ]
2461
2695
 
2462
2696
  [[package]]
@@ -2626,13 +2860,71 @@ version = "0.8.3"
2626
2860
  source = "registry+https://github.com/rust-lang/crates.io-index"
2627
2861
  checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2628
2862
 
2863
+ [[package]]
2864
+ name = "reqwest"
2865
+ version = "0.12.4"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2868
+ dependencies = [
2869
+ "base64 0.22.1",
2870
+ "bytes",
2871
+ "futures-core",
2872
+ "futures-util",
2873
+ "http",
2874
+ "http-body",
2875
+ "http-body-util",
2876
+ "hyper",
2877
+ "hyper-rustls",
2878
+ "hyper-util",
2879
+ "ipnet",
2880
+ "js-sys",
2881
+ "log",
2882
+ "mime",
2883
+ "once_cell",
2884
+ "percent-encoding",
2885
+ "pin-project-lite",
2886
+ "rustls",
2887
+ "rustls-pemfile",
2888
+ "rustls-pki-types",
2889
+ "serde",
2890
+ "serde_json",
2891
+ "serde_urlencoded",
2892
+ "sync_wrapper",
2893
+ "tokio",
2894
+ "tokio-rustls",
2895
+ "tokio-util 0.7.11",
2896
+ "tower-service",
2897
+ "url",
2898
+ "wasm-bindgen",
2899
+ "wasm-bindgen-futures",
2900
+ "wasm-streams",
2901
+ "web-sys",
2902
+ "webpki-roots",
2903
+ "winreg",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "ring"
2908
+ version = "0.17.8"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2911
+ dependencies = [
2912
+ "cc",
2913
+ "cfg-if 1.0.0",
2914
+ "getrandom",
2915
+ "libc",
2916
+ "spin",
2917
+ "untrusted",
2918
+ "windows-sys 0.52.0",
2919
+ ]
2920
+
2629
2921
  [[package]]
2630
2922
  name = "ron"
2631
2923
  version = "0.7.1"
2632
2924
  source = "registry+https://github.com/rust-lang/crates.io-index"
2633
2925
  checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
2634
2926
  dependencies = [
2635
- "base64",
2927
+ "base64 0.13.1",
2636
2928
  "bitflags 1.3.2",
2637
2929
  "serde",
2638
2930
  ]
@@ -2718,7 +3010,7 @@ dependencies = [
2718
3010
  "jobserver",
2719
3011
  "libc",
2720
3012
  "memmap2",
2721
- "parking_lot 0.12.2",
3013
+ "parking_lot 0.12.3",
2722
3014
  "rustc-hash",
2723
3015
  "rustc-rayon 0.3.2",
2724
3016
  "rustc-rayon-core 0.3.2",
@@ -2794,11 +3086,52 @@ dependencies = [
2794
3086
  "windows-sys 0.52.0",
2795
3087
  ]
2796
3088
 
3089
+ [[package]]
3090
+ name = "rustls"
3091
+ version = "0.22.4"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
3094
+ dependencies = [
3095
+ "log",
3096
+ "ring",
3097
+ "rustls-pki-types",
3098
+ "rustls-webpki",
3099
+ "subtle",
3100
+ "zeroize",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "rustls-pemfile"
3105
+ version = "2.1.2"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
3108
+ dependencies = [
3109
+ "base64 0.22.1",
3110
+ "rustls-pki-types",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "rustls-pki-types"
3115
+ version = "1.7.0"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
3118
+
3119
+ [[package]]
3120
+ name = "rustls-webpki"
3121
+ version = "0.102.4"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
3124
+ dependencies = [
3125
+ "ring",
3126
+ "rustls-pki-types",
3127
+ "untrusted",
3128
+ ]
3129
+
2797
3130
  [[package]]
2798
3131
  name = "rustversion"
2799
- version = "1.0.16"
3132
+ version = "1.0.17"
2800
3133
  source = "registry+https://github.com/rust-lang/crates.io-index"
2801
- checksum = "092474d1a01ea8278f69e6a358998405fae5b8b963ddaeb2b0b04a128bf1dfb0"
3134
+ checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
2802
3135
 
2803
3136
  [[package]]
2804
3137
  name = "ryu"
@@ -2894,22 +3227,22 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2894
3227
 
2895
3228
  [[package]]
2896
3229
  name = "serde"
2897
- version = "1.0.201"
3230
+ version = "1.0.203"
2898
3231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2899
- checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c"
3232
+ checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
2900
3233
  dependencies = [
2901
3234
  "serde_derive",
2902
3235
  ]
2903
3236
 
2904
3237
  [[package]]
2905
3238
  name = "serde_derive"
2906
- version = "1.0.201"
3239
+ version = "1.0.203"
2907
3240
  source = "registry+https://github.com/rust-lang/crates.io-index"
2908
- checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865"
3241
+ checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
2909
3242
  dependencies = [
2910
3243
  "proc-macro2",
2911
3244
  "quote",
2912
- "syn 2.0.63",
3245
+ "syn 2.0.66",
2913
3246
  ]
2914
3247
 
2915
3248
  [[package]]
@@ -2931,13 +3264,25 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2931
3264
  dependencies = [
2932
3265
  "proc-macro2",
2933
3266
  "quote",
2934
- "syn 2.0.63",
3267
+ "syn 2.0.66",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "serde_urlencoded"
3272
+ version = "0.7.1"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3275
+ dependencies = [
3276
+ "form_urlencoded",
3277
+ "itoa",
3278
+ "ryu",
3279
+ "serde",
2935
3280
  ]
2936
3281
 
2937
3282
  [[package]]
2938
3283
  name = "serde_yaml"
2939
3284
  version = "0.9.34+deprecated"
2940
- source = "git+https://github.com/kcl-lang/kcl#2345a816c88e5c75f9854ab2087805fe41494607"
3285
+ source = "git+https://github.com/kcl-lang/kcl#e824bd64ce1389eba7054f157f198d577013a9c1"
2941
3286
  dependencies = [
2942
3287
  "indexmap 2.2.6",
2943
3288
  "itoa",
@@ -3046,6 +3391,12 @@ dependencies = [
3046
3391
  "windows-sys 0.52.0",
3047
3392
  ]
3048
3393
 
3394
+ [[package]]
3395
+ name = "spin"
3396
+ version = "0.9.8"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3399
+
3049
3400
  [[package]]
3050
3401
  name = "stable_deref_trait"
3051
3402
  version = "1.2.0"
@@ -3128,6 +3479,12 @@ version = "0.11.1"
3128
3479
  source = "registry+https://github.com/rust-lang/crates.io-index"
3129
3480
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3130
3481
 
3482
+ [[package]]
3483
+ name = "subtle"
3484
+ version = "2.5.0"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
3487
+
3131
3488
  [[package]]
3132
3489
  name = "suggestions"
3133
3490
  version = "0.1.1"
@@ -3150,15 +3507,21 @@ dependencies = [
3150
3507
 
3151
3508
  [[package]]
3152
3509
  name = "syn"
3153
- version = "2.0.63"
3510
+ version = "2.0.66"
3154
3511
  source = "registry+https://github.com/rust-lang/crates.io-index"
3155
- checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
3512
+ checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
3156
3513
  dependencies = [
3157
3514
  "proc-macro2",
3158
3515
  "quote",
3159
3516
  "unicode-ident",
3160
3517
  ]
3161
3518
 
3519
+ [[package]]
3520
+ name = "sync_wrapper"
3521
+ version = "0.1.2"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3524
+
3162
3525
  [[package]]
3163
3526
  name = "synstructure"
3164
3527
  version = "0.12.6"
@@ -3171,6 +3534,17 @@ dependencies = [
3171
3534
  "unicode-xid",
3172
3535
  ]
3173
3536
 
3537
+ [[package]]
3538
+ name = "tar"
3539
+ version = "0.4.40"
3540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3541
+ checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
3542
+ dependencies = [
3543
+ "filetime",
3544
+ "libc",
3545
+ "xattr",
3546
+ ]
3547
+
3174
3548
  [[package]]
3175
3549
  name = "target-lexicon"
3176
3550
  version = "0.12.14"
@@ -3210,22 +3584,22 @@ dependencies = [
3210
3584
 
3211
3585
  [[package]]
3212
3586
  name = "thiserror"
3213
- version = "1.0.60"
3587
+ version = "1.0.61"
3214
3588
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
- checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
3589
+ checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
3216
3590
  dependencies = [
3217
3591
  "thiserror-impl",
3218
3592
  ]
3219
3593
 
3220
3594
  [[package]]
3221
3595
  name = "thiserror-impl"
3222
- version = "1.0.60"
3596
+ version = "1.0.61"
3223
3597
  source = "registry+https://github.com/rust-lang/crates.io-index"
3224
- checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
3598
+ checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
3225
3599
  dependencies = [
3226
3600
  "proc-macro2",
3227
3601
  "quote",
3228
- "syn 2.0.63",
3602
+ "syn 2.0.66",
3229
3603
  ]
3230
3604
 
3231
3605
  [[package]]
@@ -3353,7 +3727,7 @@ dependencies = [
3353
3727
  "libc",
3354
3728
  "mio",
3355
3729
  "num_cpus",
3356
- "parking_lot 0.12.2",
3730
+ "parking_lot 0.12.3",
3357
3731
  "pin-project-lite",
3358
3732
  "signal-hook-registry",
3359
3733
  "socket2",
@@ -3369,7 +3743,18 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
3369
3743
  dependencies = [
3370
3744
  "proc-macro2",
3371
3745
  "quote",
3372
- "syn 2.0.63",
3746
+ "syn 2.0.66",
3747
+ ]
3748
+
3749
+ [[package]]
3750
+ name = "tokio-rustls"
3751
+ version = "0.25.0"
3752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3753
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3754
+ dependencies = [
3755
+ "rustls",
3756
+ "rustls-pki-types",
3757
+ "tokio",
3373
3758
  ]
3374
3759
 
3375
3760
  [[package]]
@@ -3410,6 +3795,19 @@ dependencies = [
3410
3795
  "tokio",
3411
3796
  ]
3412
3797
 
3798
+ [[package]]
3799
+ name = "tokio-util"
3800
+ version = "0.7.11"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
3803
+ dependencies = [
3804
+ "bytes",
3805
+ "futures-core",
3806
+ "futures-sink",
3807
+ "pin-project-lite",
3808
+ "tokio",
3809
+ ]
3810
+
3413
3811
  [[package]]
3414
3812
  name = "toml"
3415
3813
  version = "0.5.11"
@@ -3419,12 +3817,40 @@ dependencies = [
3419
3817
  "serde",
3420
3818
  ]
3421
3819
 
3820
+ [[package]]
3821
+ name = "tower"
3822
+ version = "0.4.13"
3823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3824
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3825
+ dependencies = [
3826
+ "futures-core",
3827
+ "futures-util",
3828
+ "pin-project",
3829
+ "pin-project-lite",
3830
+ "tokio",
3831
+ "tower-layer",
3832
+ "tower-service",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "tower-layer"
3837
+ version = "0.3.2"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
3840
+
3841
+ [[package]]
3842
+ name = "tower-service"
3843
+ version = "0.3.2"
3844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3845
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3846
+
3422
3847
  [[package]]
3423
3848
  name = "tracing"
3424
3849
  version = "0.1.40"
3425
3850
  source = "registry+https://github.com/rust-lang/crates.io-index"
3426
3851
  checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
3427
3852
  dependencies = [
3853
+ "log",
3428
3854
  "pin-project-lite",
3429
3855
  "tracing-attributes",
3430
3856
  "tracing-core",
@@ -3438,7 +3864,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3438
3864
  dependencies = [
3439
3865
  "proc-macro2",
3440
3866
  "quote",
3441
- "syn 2.0.63",
3867
+ "syn 2.0.66",
3442
3868
  ]
3443
3869
 
3444
3870
  [[package]]
@@ -3450,6 +3876,12 @@ dependencies = [
3450
3876
  "once_cell",
3451
3877
  ]
3452
3878
 
3879
+ [[package]]
3880
+ name = "try-lock"
3881
+ version = "0.2.5"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3884
+
3453
3885
  [[package]]
3454
3886
  name = "type-map"
3455
3887
  version = "0.5.0"
@@ -3459,6 +3891,12 @@ dependencies = [
3459
3891
  "rustc-hash",
3460
3892
  ]
3461
3893
 
3894
+ [[package]]
3895
+ name = "typeid"
3896
+ version = "1.0.0"
3897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3898
+ checksum = "059d83cc991e7a42fc37bd50941885db0888e34209f8cfd9aab07ddec03bc9cf"
3899
+
3462
3900
  [[package]]
3463
3901
  name = "typenum"
3464
3902
  version = "1.17.0"
@@ -3486,7 +3924,7 @@ checksum = "ac73887f47b9312552aa90ef477927ff014d63d1920ca8037c6c1951eab64bb1"
3486
3924
  dependencies = [
3487
3925
  "proc-macro2",
3488
3926
  "quote",
3489
- "syn 2.0.63",
3927
+ "syn 2.0.66",
3490
3928
  ]
3491
3929
 
3492
3930
  [[package]]
@@ -3566,7 +4004,7 @@ checksum = "1ed7f4237ba393424195053097c1516bd4590dc82b84f2f97c5c69e12704555b"
3566
4004
  dependencies = [
3567
4005
  "proc-macro-hack",
3568
4006
  "quote",
3569
- "syn 2.0.63",
4007
+ "syn 2.0.66",
3570
4008
  "unic-langid-impl",
3571
4009
  ]
3572
4010
 
@@ -3602,6 +4040,15 @@ dependencies = [
3602
4040
  "unic-common",
3603
4041
  ]
3604
4042
 
4043
+ [[package]]
4044
+ name = "unicase"
4045
+ version = "2.7.0"
4046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4047
+ checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
4048
+ dependencies = [
4049
+ "version_check",
4050
+ ]
4051
+
3605
4052
  [[package]]
3606
4053
  name = "unicode-bidi"
3607
4054
  version = "0.3.15"
@@ -3665,6 +4112,12 @@ version = "0.2.11"
3665
4112
  source = "registry+https://github.com/rust-lang/crates.io-index"
3666
4113
  checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3667
4114
 
4115
+ [[package]]
4116
+ name = "untrusted"
4117
+ version = "0.9.0"
4118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4119
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4120
+
3668
4121
  [[package]]
3669
4122
  name = "url"
3670
4123
  version = "2.5.0"
@@ -3722,6 +4175,15 @@ dependencies = [
3722
4175
  "winapi-util",
3723
4176
  ]
3724
4177
 
4178
+ [[package]]
4179
+ name = "want"
4180
+ version = "0.3.1"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4183
+ dependencies = [
4184
+ "try-lock",
4185
+ ]
4186
+
3725
4187
  [[package]]
3726
4188
  name = "wasi"
3727
4189
  version = "0.11.0+wasi-snapshot-preview1"
@@ -3749,10 +4211,22 @@ dependencies = [
3749
4211
  "once_cell",
3750
4212
  "proc-macro2",
3751
4213
  "quote",
3752
- "syn 2.0.63",
4214
+ "syn 2.0.66",
3753
4215
  "wasm-bindgen-shared",
3754
4216
  ]
3755
4217
 
4218
+ [[package]]
4219
+ name = "wasm-bindgen-futures"
4220
+ version = "0.4.42"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
4223
+ dependencies = [
4224
+ "cfg-if 1.0.0",
4225
+ "js-sys",
4226
+ "wasm-bindgen",
4227
+ "web-sys",
4228
+ ]
4229
+
3756
4230
  [[package]]
3757
4231
  name = "wasm-bindgen-macro"
3758
4232
  version = "0.2.92"
@@ -3771,7 +4245,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3771
4245
  dependencies = [
3772
4246
  "proc-macro2",
3773
4247
  "quote",
3774
- "syn 2.0.63",
4248
+ "syn 2.0.66",
3775
4249
  "wasm-bindgen-backend",
3776
4250
  "wasm-bindgen-shared",
3777
4251
  ]
@@ -3782,6 +4256,38 @@ version = "0.2.92"
3782
4256
  source = "registry+https://github.com/rust-lang/crates.io-index"
3783
4257
  checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3784
4258
 
4259
+ [[package]]
4260
+ name = "wasm-streams"
4261
+ version = "0.4.0"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
4264
+ dependencies = [
4265
+ "futures-util",
4266
+ "js-sys",
4267
+ "wasm-bindgen",
4268
+ "wasm-bindgen-futures",
4269
+ "web-sys",
4270
+ ]
4271
+
4272
+ [[package]]
4273
+ name = "web-sys"
4274
+ version = "0.3.69"
4275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4276
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
4277
+ dependencies = [
4278
+ "js-sys",
4279
+ "wasm-bindgen",
4280
+ ]
4281
+
4282
+ [[package]]
4283
+ name = "webpki-roots"
4284
+ version = "0.26.1"
4285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4286
+ checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
4287
+ dependencies = [
4288
+ "rustls-pki-types",
4289
+ ]
4290
+
3785
4291
  [[package]]
3786
4292
  name = "which"
3787
4293
  version = "4.4.2"
@@ -4054,6 +4560,27 @@ version = "0.52.5"
4054
4560
  source = "registry+https://github.com/rust-lang/crates.io-index"
4055
4561
  checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
4056
4562
 
4563
+ [[package]]
4564
+ name = "winreg"
4565
+ version = "0.52.0"
4566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4567
+ checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
4568
+ dependencies = [
4569
+ "cfg-if 1.0.0",
4570
+ "windows-sys 0.48.0",
4571
+ ]
4572
+
4573
+ [[package]]
4574
+ name = "xattr"
4575
+ version = "1.3.1"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
4578
+ dependencies = [
4579
+ "libc",
4580
+ "linux-raw-sys",
4581
+ "rustix",
4582
+ ]
4583
+
4057
4584
  [[package]]
4058
4585
  name = "yaml-rust"
4059
4586
  version = "0.4.5"
@@ -4077,3 +4604,9 @@ checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1"
4077
4604
  dependencies = [
4078
4605
  "winapi",
4079
4606
  ]
4607
+
4608
+ [[package]]
4609
+ name = "zeroize"
4610
+ version = "1.8.1"
4611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4612
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"