titanpl 6.0.0 → 7.0.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.
Files changed (227) hide show
  1. package/package.json +2 -6
  2. package/packages/cli/index.js +25 -11
  3. package/packages/cli/package.json +4 -4
  4. package/packages/cli/src/commands/build-ext.js +157 -0
  5. package/packages/cli/src/commands/build.js +12 -0
  6. package/packages/cli/src/commands/create.js +160 -0
  7. package/packages/cli/src/commands/init.js +5 -11
  8. package/packages/cli/src/commands/run-ext.js +104 -0
  9. package/{titanpl-sdk → packages/core-source}/LICENSE +1 -1
  10. package/packages/core-source/README.md +128 -0
  11. package/packages/core-source/V8_SERIALIZATION.md +125 -0
  12. package/packages/core-source/configure.js +50 -0
  13. package/packages/core-source/globals.d.ts +2238 -0
  14. package/packages/core-source/index.d.ts +515 -0
  15. package/packages/core-source/index.js +639 -0
  16. package/packages/core-source/jsconfig.json +12 -0
  17. package/packages/core-source/mkctx.config.json +7 -0
  18. package/packages/core-source/native/Cargo.lock +1559 -0
  19. package/packages/core-source/native/Cargo.toml +30 -0
  20. package/packages/core-source/native/src/crypto_impl.rs +139 -0
  21. package/packages/core-source/native/src/lib.rs +702 -0
  22. package/packages/core-source/native/src/storage_impl.rs +73 -0
  23. package/packages/core-source/native/src/v8_impl.rs +93 -0
  24. package/packages/core-source/package-lock.json +1464 -0
  25. package/packages/core-source/package.json +53 -0
  26. package/packages/core-source/tests/buffer.test.js +78 -0
  27. package/packages/core-source/tests/cookies.test.js +117 -0
  28. package/packages/core-source/tests/crypto.test.js +142 -0
  29. package/packages/core-source/tests/fs.test.js +176 -0
  30. package/packages/core-source/tests/ls.test.js +149 -0
  31. package/packages/core-source/tests/net.test.js +84 -0
  32. package/packages/core-source/tests/os.test.js +81 -0
  33. package/packages/core-source/tests/path.test.js +102 -0
  34. package/packages/core-source/tests/response.test.js +146 -0
  35. package/packages/core-source/tests/session.test.js +110 -0
  36. package/packages/core-source/tests/setup.js +325 -0
  37. package/packages/core-source/tests/time.test.js +57 -0
  38. package/packages/core-source/tests/url.test.js +82 -0
  39. package/packages/core-source/titan-ext.d.ts +2 -0
  40. package/packages/core-source/titan.json +9 -0
  41. package/packages/core-source/vitest.config.js +8 -0
  42. package/packages/engine-darwin-arm64/README.md +0 -2
  43. package/packages/engine-darwin-arm64/package.json +1 -1
  44. package/packages/engine-linux-x64/README.md +0 -2
  45. package/packages/engine-linux-x64/package.json +1 -1
  46. package/packages/engine-win32-x64/README.md +0 -1
  47. package/packages/engine-win32-x64/bin/titan-server.exe +0 -0
  48. package/packages/engine-win32-x64/package.json +1 -1
  49. package/packages/native/README.md +0 -1
  50. package/packages/native/index.d.ts +25 -4
  51. package/packages/native/index.js +7 -0
  52. package/packages/native/package.json +2 -2
  53. package/packages/native/t.native.d.ts +167 -2
  54. package/packages/packet/index.js +103 -94
  55. package/packages/packet/package.json +1 -1
  56. package/packages/route/package.json +1 -1
  57. package/packages/sdk/index.js +2 -0
  58. package/packages/sdk/package.json +18 -0
  59. package/packages/sdk/test/index.js +120 -0
  60. package/templates/common/_tanfig.json +19 -13
  61. package/templates/extension/index.d.ts +26 -22
  62. package/templates/extension/index.js +15 -15
  63. package/templates/extension/native/Cargo.toml +5 -3
  64. package/templates/extension/native/src/lib.rs +2 -3
  65. package/templates/extension/package.json +10 -20
  66. package/templates/extension/titan.json +5 -16
  67. package/templates/extension/utils/registerExtension.js +44 -0
  68. package/templates/js/package.json +8 -8
  69. package/templates/rust-js/package.json +5 -5
  70. package/templates/rust-ts/package.json +5 -5
  71. package/templates/ts/package.json +8 -8
  72. package/packages/packet/node_modules/typescript/LICENSE.txt +0 -55
  73. package/packages/packet/node_modules/typescript/README.md +0 -50
  74. package/packages/packet/node_modules/typescript/SECURITY.md +0 -41
  75. package/packages/packet/node_modules/typescript/ThirdPartyNoticeText.txt +0 -193
  76. package/packages/packet/node_modules/typescript/bin/tsc +0 -2
  77. package/packages/packet/node_modules/typescript/bin/tsserver +0 -2
  78. package/packages/packet/node_modules/typescript/lib/_tsc.js +0 -133818
  79. package/packages/packet/node_modules/typescript/lib/_tsserver.js +0 -659
  80. package/packages/packet/node_modules/typescript/lib/_typingsInstaller.js +0 -222
  81. package/packages/packet/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +0 -2122
  82. package/packages/packet/node_modules/typescript/lib/de/diagnosticMessages.generated.json +0 -2122
  83. package/packages/packet/node_modules/typescript/lib/es/diagnosticMessages.generated.json +0 -2122
  84. package/packages/packet/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +0 -2122
  85. package/packages/packet/node_modules/typescript/lib/it/diagnosticMessages.generated.json +0 -2122
  86. package/packages/packet/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +0 -2122
  87. package/packages/packet/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +0 -2122
  88. package/packages/packet/node_modules/typescript/lib/lib.d.ts +0 -22
  89. package/packages/packet/node_modules/typescript/lib/lib.decorators.d.ts +0 -384
  90. package/packages/packet/node_modules/typescript/lib/lib.decorators.legacy.d.ts +0 -22
  91. package/packages/packet/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +0 -41
  92. package/packages/packet/node_modules/typescript/lib/lib.dom.d.ts +0 -39429
  93. package/packages/packet/node_modules/typescript/lib/lib.dom.iterable.d.ts +0 -571
  94. package/packages/packet/node_modules/typescript/lib/lib.es2015.collection.d.ts +0 -147
  95. package/packages/packet/node_modules/typescript/lib/lib.es2015.core.d.ts +0 -597
  96. package/packages/packet/node_modules/typescript/lib/lib.es2015.d.ts +0 -28
  97. package/packages/packet/node_modules/typescript/lib/lib.es2015.generator.d.ts +0 -77
  98. package/packages/packet/node_modules/typescript/lib/lib.es2015.iterable.d.ts +0 -605
  99. package/packages/packet/node_modules/typescript/lib/lib.es2015.promise.d.ts +0 -81
  100. package/packages/packet/node_modules/typescript/lib/lib.es2015.proxy.d.ts +0 -128
  101. package/packages/packet/node_modules/typescript/lib/lib.es2015.reflect.d.ts +0 -144
  102. package/packages/packet/node_modules/typescript/lib/lib.es2015.symbol.d.ts +0 -46
  103. package/packages/packet/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +0 -326
  104. package/packages/packet/node_modules/typescript/lib/lib.es2016.array.include.d.ts +0 -116
  105. package/packages/packet/node_modules/typescript/lib/lib.es2016.d.ts +0 -21
  106. package/packages/packet/node_modules/typescript/lib/lib.es2016.full.d.ts +0 -23
  107. package/packages/packet/node_modules/typescript/lib/lib.es2016.intl.d.ts +0 -31
  108. package/packages/packet/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +0 -21
  109. package/packages/packet/node_modules/typescript/lib/lib.es2017.d.ts +0 -26
  110. package/packages/packet/node_modules/typescript/lib/lib.es2017.date.d.ts +0 -31
  111. package/packages/packet/node_modules/typescript/lib/lib.es2017.full.d.ts +0 -23
  112. package/packages/packet/node_modules/typescript/lib/lib.es2017.intl.d.ts +0 -44
  113. package/packages/packet/node_modules/typescript/lib/lib.es2017.object.d.ts +0 -49
  114. package/packages/packet/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +0 -135
  115. package/packages/packet/node_modules/typescript/lib/lib.es2017.string.d.ts +0 -45
  116. package/packages/packet/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +0 -53
  117. package/packages/packet/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +0 -77
  118. package/packages/packet/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +0 -53
  119. package/packages/packet/node_modules/typescript/lib/lib.es2018.d.ts +0 -24
  120. package/packages/packet/node_modules/typescript/lib/lib.es2018.full.d.ts +0 -24
  121. package/packages/packet/node_modules/typescript/lib/lib.es2018.intl.d.ts +0 -83
  122. package/packages/packet/node_modules/typescript/lib/lib.es2018.promise.d.ts +0 -30
  123. package/packages/packet/node_modules/typescript/lib/lib.es2018.regexp.d.ts +0 -37
  124. package/packages/packet/node_modules/typescript/lib/lib.es2019.array.d.ts +0 -79
  125. package/packages/packet/node_modules/typescript/lib/lib.es2019.d.ts +0 -24
  126. package/packages/packet/node_modules/typescript/lib/lib.es2019.full.d.ts +0 -24
  127. package/packages/packet/node_modules/typescript/lib/lib.es2019.intl.d.ts +0 -23
  128. package/packages/packet/node_modules/typescript/lib/lib.es2019.object.d.ts +0 -33
  129. package/packages/packet/node_modules/typescript/lib/lib.es2019.string.d.ts +0 -37
  130. package/packages/packet/node_modules/typescript/lib/lib.es2019.symbol.d.ts +0 -24
  131. package/packages/packet/node_modules/typescript/lib/lib.es2020.bigint.d.ts +0 -765
  132. package/packages/packet/node_modules/typescript/lib/lib.es2020.d.ts +0 -27
  133. package/packages/packet/node_modules/typescript/lib/lib.es2020.date.d.ts +0 -42
  134. package/packages/packet/node_modules/typescript/lib/lib.es2020.full.d.ts +0 -24
  135. package/packages/packet/node_modules/typescript/lib/lib.es2020.intl.d.ts +0 -474
  136. package/packages/packet/node_modules/typescript/lib/lib.es2020.number.d.ts +0 -28
  137. package/packages/packet/node_modules/typescript/lib/lib.es2020.promise.d.ts +0 -47
  138. package/packages/packet/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +0 -99
  139. package/packages/packet/node_modules/typescript/lib/lib.es2020.string.d.ts +0 -44
  140. package/packages/packet/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +0 -41
  141. package/packages/packet/node_modules/typescript/lib/lib.es2021.d.ts +0 -23
  142. package/packages/packet/node_modules/typescript/lib/lib.es2021.full.d.ts +0 -24
  143. package/packages/packet/node_modules/typescript/lib/lib.es2021.intl.d.ts +0 -166
  144. package/packages/packet/node_modules/typescript/lib/lib.es2021.promise.d.ts +0 -48
  145. package/packages/packet/node_modules/typescript/lib/lib.es2021.string.d.ts +0 -33
  146. package/packages/packet/node_modules/typescript/lib/lib.es2021.weakref.d.ts +0 -78
  147. package/packages/packet/node_modules/typescript/lib/lib.es2022.array.d.ts +0 -121
  148. package/packages/packet/node_modules/typescript/lib/lib.es2022.d.ts +0 -25
  149. package/packages/packet/node_modules/typescript/lib/lib.es2022.error.d.ts +0 -75
  150. package/packages/packet/node_modules/typescript/lib/lib.es2022.full.d.ts +0 -24
  151. package/packages/packet/node_modules/typescript/lib/lib.es2022.intl.d.ts +0 -145
  152. package/packages/packet/node_modules/typescript/lib/lib.es2022.object.d.ts +0 -26
  153. package/packages/packet/node_modules/typescript/lib/lib.es2022.regexp.d.ts +0 -39
  154. package/packages/packet/node_modules/typescript/lib/lib.es2022.string.d.ts +0 -25
  155. package/packages/packet/node_modules/typescript/lib/lib.es2023.array.d.ts +0 -924
  156. package/packages/packet/node_modules/typescript/lib/lib.es2023.collection.d.ts +0 -21
  157. package/packages/packet/node_modules/typescript/lib/lib.es2023.d.ts +0 -22
  158. package/packages/packet/node_modules/typescript/lib/lib.es2023.full.d.ts +0 -24
  159. package/packages/packet/node_modules/typescript/lib/lib.es2023.intl.d.ts +0 -56
  160. package/packages/packet/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +0 -65
  161. package/packages/packet/node_modules/typescript/lib/lib.es2024.collection.d.ts +0 -29
  162. package/packages/packet/node_modules/typescript/lib/lib.es2024.d.ts +0 -26
  163. package/packages/packet/node_modules/typescript/lib/lib.es2024.full.d.ts +0 -24
  164. package/packages/packet/node_modules/typescript/lib/lib.es2024.object.d.ts +0 -29
  165. package/packages/packet/node_modules/typescript/lib/lib.es2024.promise.d.ts +0 -35
  166. package/packages/packet/node_modules/typescript/lib/lib.es2024.regexp.d.ts +0 -25
  167. package/packages/packet/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +0 -68
  168. package/packages/packet/node_modules/typescript/lib/lib.es2024.string.d.ts +0 -29
  169. package/packages/packet/node_modules/typescript/lib/lib.es5.d.ts +0 -4601
  170. package/packages/packet/node_modules/typescript/lib/lib.es6.d.ts +0 -23
  171. package/packages/packet/node_modules/typescript/lib/lib.esnext.array.d.ts +0 -35
  172. package/packages/packet/node_modules/typescript/lib/lib.esnext.collection.d.ts +0 -96
  173. package/packages/packet/node_modules/typescript/lib/lib.esnext.d.ts +0 -29
  174. package/packages/packet/node_modules/typescript/lib/lib.esnext.decorators.d.ts +0 -28
  175. package/packages/packet/node_modules/typescript/lib/lib.esnext.disposable.d.ts +0 -193
  176. package/packages/packet/node_modules/typescript/lib/lib.esnext.error.d.ts +0 -24
  177. package/packages/packet/node_modules/typescript/lib/lib.esnext.float16.d.ts +0 -445
  178. package/packages/packet/node_modules/typescript/lib/lib.esnext.full.d.ts +0 -24
  179. package/packages/packet/node_modules/typescript/lib/lib.esnext.intl.d.ts +0 -21
  180. package/packages/packet/node_modules/typescript/lib/lib.esnext.iterator.d.ts +0 -148
  181. package/packages/packet/node_modules/typescript/lib/lib.esnext.promise.d.ts +0 -34
  182. package/packages/packet/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +0 -25
  183. package/packages/packet/node_modules/typescript/lib/lib.scripthost.d.ts +0 -322
  184. package/packages/packet/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +0 -41
  185. package/packages/packet/node_modules/typescript/lib/lib.webworker.d.ts +0 -13150
  186. package/packages/packet/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +0 -23
  187. package/packages/packet/node_modules/typescript/lib/lib.webworker.iterable.d.ts +0 -340
  188. package/packages/packet/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +0 -2122
  189. package/packages/packet/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +0 -2122
  190. package/packages/packet/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +0 -2122
  191. package/packages/packet/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +0 -2122
  192. package/packages/packet/node_modules/typescript/lib/tsc.js +0 -8
  193. package/packages/packet/node_modules/typescript/lib/tsserver.js +0 -8
  194. package/packages/packet/node_modules/typescript/lib/tsserverlibrary.d.ts +0 -17
  195. package/packages/packet/node_modules/typescript/lib/tsserverlibrary.js +0 -21
  196. package/packages/packet/node_modules/typescript/lib/typesMap.json +0 -497
  197. package/packages/packet/node_modules/typescript/lib/typescript.d.ts +0 -11437
  198. package/packages/packet/node_modules/typescript/lib/typescript.js +0 -200276
  199. package/packages/packet/node_modules/typescript/lib/typingsInstaller.js +0 -8
  200. package/packages/packet/node_modules/typescript/lib/watchGuard.js +0 -53
  201. package/packages/packet/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +0 -2122
  202. package/packages/packet/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +0 -2122
  203. package/packages/packet/node_modules/typescript/package.json +0 -120
  204. package/titanpl-sdk/README.md +0 -111
  205. package/titanpl-sdk/assets/titanpl-sdk.png +0 -0
  206. package/titanpl-sdk/bin/run.js +0 -274
  207. package/titanpl-sdk/index.js +0 -5
  208. package/titanpl-sdk/package-lock.json +0 -28
  209. package/titanpl-sdk/package.json +0 -40
  210. package/titanpl-sdk/templates/app/actions/hello.js +0 -5
  211. package/titanpl-sdk/templates/app/app.js +0 -7
  212. package/titanpl-sdk/templates/jsconfig.json +0 -19
  213. package/titanpl-sdk/templates/server/Cargo.toml +0 -52
  214. package/titanpl-sdk/templates/server/src/action_management.rs +0 -175
  215. package/titanpl-sdk/templates/server/src/errors.rs +0 -12
  216. package/titanpl-sdk/templates/server/src/extensions/builtin.rs +0 -1060
  217. package/titanpl-sdk/templates/server/src/extensions/external.rs +0 -338
  218. package/titanpl-sdk/templates/server/src/extensions/mod.rs +0 -580
  219. package/titanpl-sdk/templates/server/src/extensions/titan_core.js +0 -249
  220. package/titanpl-sdk/templates/server/src/fast_path.rs +0 -719
  221. package/titanpl-sdk/templates/server/src/main.rs +0 -607
  222. package/titanpl-sdk/templates/server/src/runtime.rs +0 -284
  223. package/titanpl-sdk/templates/server/src/utils.rs +0 -33
  224. package/titanpl-sdk/templates/titan/bundle.js +0 -259
  225. package/titanpl-sdk/templates/titan/dev.js +0 -390
  226. package/titanpl-sdk/templates/titan/error-box.js +0 -277
  227. package/titanpl-sdk/templates/titan/titan.js +0 -129
@@ -0,0 +1,1559 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "aho-corasick"
48
+ version = "1.1.4"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
51
+ dependencies = [
52
+ "memchr",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "autocfg"
66
+ version = "1.5.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
69
+
70
+ [[package]]
71
+ name = "base64"
72
+ version = "0.21.7"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
75
+
76
+ [[package]]
77
+ name = "bindgen"
78
+ version = "0.69.5"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
81
+ dependencies = [
82
+ "bitflags",
83
+ "cexpr",
84
+ "clang-sys",
85
+ "itertools",
86
+ "lazy_static",
87
+ "lazycell",
88
+ "log",
89
+ "prettyplease",
90
+ "proc-macro2",
91
+ "quote",
92
+ "regex",
93
+ "rustc-hash",
94
+ "shlex",
95
+ "syn 2.0.114",
96
+ "which 4.4.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "bitflags"
101
+ version = "2.10.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
104
+
105
+ [[package]]
106
+ name = "block-buffer"
107
+ version = "0.10.4"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
110
+ dependencies = [
111
+ "generic-array",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bumpalo"
116
+ version = "3.19.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
119
+
120
+ [[package]]
121
+ name = "byteorder"
122
+ version = "1.5.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
125
+
126
+ [[package]]
127
+ name = "cc"
128
+ version = "1.2.53"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
131
+ dependencies = [
132
+ "find-msvc-tools",
133
+ "shlex",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "cexpr"
138
+ version = "0.6.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
141
+ dependencies = [
142
+ "nom",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "cfg-if"
147
+ version = "1.0.4"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
150
+
151
+ [[package]]
152
+ name = "chrono"
153
+ version = "0.4.43"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
156
+ dependencies = [
157
+ "iana-time-zone",
158
+ "js-sys",
159
+ "num-traits",
160
+ "wasm-bindgen",
161
+ "windows-link",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "cipher"
166
+ version = "0.4.4"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
169
+ dependencies = [
170
+ "crypto-common",
171
+ "inout",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "clang-sys"
176
+ version = "1.8.1"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
179
+ dependencies = [
180
+ "glob",
181
+ "libc",
182
+ "libloading",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "core-foundation-sys"
187
+ version = "0.8.7"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
190
+
191
+ [[package]]
192
+ name = "cpufeatures"
193
+ version = "0.2.17"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
196
+ dependencies = [
197
+ "libc",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "crc32fast"
202
+ version = "1.5.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
205
+ dependencies = [
206
+ "cfg-if",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "crossbeam-deque"
211
+ version = "0.8.6"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
214
+ dependencies = [
215
+ "crossbeam-epoch",
216
+ "crossbeam-utils",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "crossbeam-epoch"
221
+ version = "0.9.18"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
224
+ dependencies = [
225
+ "crossbeam-utils",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "crossbeam-utils"
230
+ version = "0.8.21"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
233
+
234
+ [[package]]
235
+ name = "crypto-common"
236
+ version = "0.1.7"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
239
+ dependencies = [
240
+ "generic-array",
241
+ "rand_core 0.6.4",
242
+ "typenum",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "ctr"
247
+ version = "0.9.2"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
250
+ dependencies = [
251
+ "cipher",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "digest"
256
+ version = "0.10.7"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
259
+ dependencies = [
260
+ "block-buffer",
261
+ "crypto-common",
262
+ "subtle",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "dns-lookup"
267
+ version = "2.1.1"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "cf5597a4b7fe5275fc9dcf88ce26326bc8e4cb87d0130f33752d4c5f717793cf"
270
+ dependencies = [
271
+ "cfg-if",
272
+ "libc",
273
+ "socket2",
274
+ "windows-sys 0.60.2",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "either"
279
+ version = "1.15.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
282
+
283
+ [[package]]
284
+ name = "errno"
285
+ version = "0.3.14"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
288
+ dependencies = [
289
+ "libc",
290
+ "windows-sys 0.61.2",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "find-msvc-tools"
295
+ version = "0.1.8"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
298
+
299
+ [[package]]
300
+ name = "fslock"
301
+ version = "0.2.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
304
+ dependencies = [
305
+ "libc",
306
+ "winapi",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "generic-array"
311
+ version = "0.14.7"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
314
+ dependencies = [
315
+ "typenum",
316
+ "version_check",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "getrandom"
321
+ version = "0.2.17"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
324
+ dependencies = [
325
+ "cfg-if",
326
+ "libc",
327
+ "wasi",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "getrandom"
332
+ version = "0.3.4"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
335
+ dependencies = [
336
+ "cfg-if",
337
+ "libc",
338
+ "r-efi",
339
+ "wasip2",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "ghash"
344
+ version = "0.5.1"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
347
+ dependencies = [
348
+ "opaque-debug",
349
+ "polyval",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "glob"
354
+ version = "0.3.3"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
357
+
358
+ [[package]]
359
+ name = "gzip-header"
360
+ version = "1.0.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2"
363
+ dependencies = [
364
+ "crc32fast",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "hex"
369
+ version = "0.4.3"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
372
+
373
+ [[package]]
374
+ name = "hmac"
375
+ version = "0.12.1"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
378
+ dependencies = [
379
+ "digest",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "home"
384
+ version = "0.5.12"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
387
+ dependencies = [
388
+ "windows-sys 0.61.2",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "iana-time-zone"
393
+ version = "0.1.64"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
396
+ dependencies = [
397
+ "android_system_properties",
398
+ "core-foundation-sys",
399
+ "iana-time-zone-haiku",
400
+ "js-sys",
401
+ "log",
402
+ "wasm-bindgen",
403
+ "windows-core 0.62.2",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "iana-time-zone-haiku"
408
+ version = "0.1.2"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
411
+ dependencies = [
412
+ "cc",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "inout"
417
+ version = "0.1.4"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
420
+ dependencies = [
421
+ "generic-array",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "itertools"
426
+ version = "0.12.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
429
+ dependencies = [
430
+ "either",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "itoa"
435
+ version = "1.0.17"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
438
+
439
+ [[package]]
440
+ name = "js-sys"
441
+ version = "0.3.85"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
444
+ dependencies = [
445
+ "once_cell",
446
+ "wasm-bindgen",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "lazy_static"
451
+ version = "1.5.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
454
+
455
+ [[package]]
456
+ name = "lazycell"
457
+ version = "1.3.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
460
+
461
+ [[package]]
462
+ name = "libc"
463
+ version = "0.2.180"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
466
+
467
+ [[package]]
468
+ name = "libloading"
469
+ version = "0.8.9"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
472
+ dependencies = [
473
+ "cfg-if",
474
+ "windows-link",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "libredox"
479
+ version = "0.1.12"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
482
+ dependencies = [
483
+ "bitflags",
484
+ "libc",
485
+ "redox_syscall 0.7.0",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "linux-raw-sys"
490
+ version = "0.4.15"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
493
+
494
+ [[package]]
495
+ name = "local-ip-address"
496
+ version = "0.5.7"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "612ed4ea9ce5acfb5d26339302528a5e1e59dfed95e9e11af3c083236ff1d15d"
499
+ dependencies = [
500
+ "libc",
501
+ "neli",
502
+ "thiserror",
503
+ "windows-sys 0.48.0",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "lock_api"
508
+ version = "0.4.14"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
511
+ dependencies = [
512
+ "scopeguard",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "log"
517
+ version = "0.4.29"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
520
+
521
+ [[package]]
522
+ name = "md-5"
523
+ version = "0.10.6"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
526
+ dependencies = [
527
+ "cfg-if",
528
+ "digest",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "memchr"
533
+ version = "2.7.6"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
536
+
537
+ [[package]]
538
+ name = "minimal-lexical"
539
+ version = "0.2.1"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
542
+
543
+ [[package]]
544
+ name = "miniz_oxide"
545
+ version = "0.7.4"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
548
+ dependencies = [
549
+ "adler",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "neli"
554
+ version = "0.6.5"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "93062a0dce6da2517ea35f301dfc88184ce18d3601ec786a727a87bf535deca9"
557
+ dependencies = [
558
+ "byteorder",
559
+ "libc",
560
+ "log",
561
+ "neli-proc-macros",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "neli-proc-macros"
566
+ version = "0.1.4"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "0c8034b7fbb6f9455b2a96c19e6edf8dc9fc34c70449938d8ee3b4df363f61fe"
569
+ dependencies = [
570
+ "either",
571
+ "proc-macro2",
572
+ "quote",
573
+ "serde",
574
+ "syn 1.0.109",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "nom"
579
+ version = "7.1.3"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
582
+ dependencies = [
583
+ "memchr",
584
+ "minimal-lexical",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "ntapi"
589
+ version = "0.4.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081"
592
+ dependencies = [
593
+ "winapi",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "num-traits"
598
+ version = "0.2.19"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
601
+ dependencies = [
602
+ "autocfg",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "once_cell"
607
+ version = "1.21.3"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
610
+
611
+ [[package]]
612
+ name = "opaque-debug"
613
+ version = "0.3.1"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
616
+
617
+ [[package]]
618
+ name = "parking_lot"
619
+ version = "0.12.5"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
622
+ dependencies = [
623
+ "lock_api",
624
+ "parking_lot_core",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "parking_lot_core"
629
+ version = "0.9.12"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
632
+ dependencies = [
633
+ "cfg-if",
634
+ "libc",
635
+ "redox_syscall 0.5.18",
636
+ "smallvec",
637
+ "windows-link",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "paste"
642
+ version = "1.0.15"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
645
+
646
+ [[package]]
647
+ name = "polyval"
648
+ version = "0.6.2"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
651
+ dependencies = [
652
+ "cfg-if",
653
+ "cpufeatures",
654
+ "opaque-debug",
655
+ "universal-hash",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "ppv-lite86"
660
+ version = "0.2.21"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
663
+ dependencies = [
664
+ "zerocopy",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "prettyplease"
669
+ version = "0.2.37"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
672
+ dependencies = [
673
+ "proc-macro2",
674
+ "syn 2.0.114",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "proc-macro2"
679
+ version = "1.0.105"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
682
+ dependencies = [
683
+ "unicode-ident",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "quote"
688
+ version = "1.0.43"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "r-efi"
697
+ version = "5.3.0"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
700
+
701
+ [[package]]
702
+ name = "rand"
703
+ version = "0.8.5"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
706
+ dependencies = [
707
+ "libc",
708
+ "rand_chacha 0.3.1",
709
+ "rand_core 0.6.4",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "rand"
714
+ version = "0.9.2"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
717
+ dependencies = [
718
+ "rand_chacha 0.9.0",
719
+ "rand_core 0.9.5",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "rand_chacha"
724
+ version = "0.3.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
727
+ dependencies = [
728
+ "ppv-lite86",
729
+ "rand_core 0.6.4",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "rand_chacha"
734
+ version = "0.9.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
737
+ dependencies = [
738
+ "ppv-lite86",
739
+ "rand_core 0.9.5",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "rand_core"
744
+ version = "0.6.4"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
747
+ dependencies = [
748
+ "getrandom 0.2.17",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "rand_core"
753
+ version = "0.9.5"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
756
+ dependencies = [
757
+ "getrandom 0.3.4",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "rayon"
762
+ version = "1.11.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
765
+ dependencies = [
766
+ "either",
767
+ "rayon-core",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "rayon-core"
772
+ version = "1.13.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
775
+ dependencies = [
776
+ "crossbeam-deque",
777
+ "crossbeam-utils",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "redox_syscall"
782
+ version = "0.5.18"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
785
+ dependencies = [
786
+ "bitflags",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "redox_syscall"
791
+ version = "0.7.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
794
+ dependencies = [
795
+ "bitflags",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "regex"
800
+ version = "1.12.2"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
803
+ dependencies = [
804
+ "aho-corasick",
805
+ "memchr",
806
+ "regex-automata",
807
+ "regex-syntax",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "regex-automata"
812
+ version = "0.4.13"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
815
+ dependencies = [
816
+ "aho-corasick",
817
+ "memchr",
818
+ "regex-syntax",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "regex-syntax"
823
+ version = "0.8.8"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
826
+
827
+ [[package]]
828
+ name = "rustc-hash"
829
+ version = "1.1.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
832
+
833
+ [[package]]
834
+ name = "rustix"
835
+ version = "0.38.44"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
838
+ dependencies = [
839
+ "bitflags",
840
+ "errno",
841
+ "libc",
842
+ "linux-raw-sys",
843
+ "windows-sys 0.59.0",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "rustversion"
848
+ version = "1.0.22"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
851
+
852
+ [[package]]
853
+ name = "scopeguard"
854
+ version = "1.2.0"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
857
+
858
+ [[package]]
859
+ name = "serde"
860
+ version = "1.0.228"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
863
+ dependencies = [
864
+ "serde_core",
865
+ "serde_derive",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "serde_core"
870
+ version = "1.0.228"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
873
+ dependencies = [
874
+ "serde_derive",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "serde_derive"
879
+ version = "1.0.228"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
882
+ dependencies = [
883
+ "proc-macro2",
884
+ "quote",
885
+ "syn 2.0.114",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "serde_json"
890
+ version = "1.0.149"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
893
+ dependencies = [
894
+ "itoa",
895
+ "memchr",
896
+ "serde",
897
+ "serde_core",
898
+ "zmij",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "sha2"
903
+ version = "0.10.9"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
906
+ dependencies = [
907
+ "cfg-if",
908
+ "cpufeatures",
909
+ "digest",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "shlex"
914
+ version = "1.3.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
917
+
918
+ [[package]]
919
+ name = "smallvec"
920
+ version = "1.15.1"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
923
+
924
+ [[package]]
925
+ name = "socket2"
926
+ version = "0.6.1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
929
+ dependencies = [
930
+ "libc",
931
+ "windows-sys 0.60.2",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "subtle"
936
+ version = "2.6.1"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
939
+
940
+ [[package]]
941
+ name = "syn"
942
+ version = "1.0.109"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
945
+ dependencies = [
946
+ "proc-macro2",
947
+ "quote",
948
+ "unicode-ident",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "syn"
953
+ version = "2.0.114"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
956
+ dependencies = [
957
+ "proc-macro2",
958
+ "quote",
959
+ "unicode-ident",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "sys-info"
964
+ version = "0.9.1"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
967
+ dependencies = [
968
+ "cc",
969
+ "libc",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "sysinfo"
974
+ version = "0.30.13"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
977
+ dependencies = [
978
+ "cfg-if",
979
+ "core-foundation-sys",
980
+ "libc",
981
+ "ntapi",
982
+ "once_cell",
983
+ "rayon",
984
+ "windows",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "thiserror"
989
+ version = "1.0.69"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
992
+ dependencies = [
993
+ "thiserror-impl",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "thiserror-impl"
998
+ version = "1.0.69"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1001
+ dependencies = [
1002
+ "proc-macro2",
1003
+ "quote",
1004
+ "syn 2.0.114",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "titan-core"
1009
+ version = "0.1.0"
1010
+ dependencies = [
1011
+ "aes-gcm",
1012
+ "base64",
1013
+ "chrono",
1014
+ "dns-lookup",
1015
+ "hex",
1016
+ "hmac",
1017
+ "local-ip-address",
1018
+ "md-5",
1019
+ "parking_lot",
1020
+ "rand 0.8.5",
1021
+ "regex",
1022
+ "serde",
1023
+ "serde_json",
1024
+ "sha2",
1025
+ "subtle",
1026
+ "sys-info",
1027
+ "sysinfo",
1028
+ "uuid",
1029
+ "v8",
1030
+ "whoami",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "typenum"
1035
+ version = "1.19.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1038
+
1039
+ [[package]]
1040
+ name = "unicode-ident"
1041
+ version = "1.0.22"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1044
+
1045
+ [[package]]
1046
+ name = "universal-hash"
1047
+ version = "0.5.1"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
1050
+ dependencies = [
1051
+ "crypto-common",
1052
+ "subtle",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "uuid"
1057
+ version = "1.19.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
1060
+ dependencies = [
1061
+ "getrandom 0.3.4",
1062
+ "js-sys",
1063
+ "rand 0.9.2",
1064
+ "wasm-bindgen",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "v8"
1069
+ version = "0.106.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "a381badc47c6f15acb5fe0b5b40234162349ed9d4e4fd7c83a7f5547c0fc69c5"
1072
+ dependencies = [
1073
+ "bindgen",
1074
+ "bitflags",
1075
+ "fslock",
1076
+ "gzip-header",
1077
+ "home",
1078
+ "miniz_oxide",
1079
+ "once_cell",
1080
+ "paste",
1081
+ "which 6.0.3",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "version_check"
1086
+ version = "0.9.5"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1089
+
1090
+ [[package]]
1091
+ name = "wasi"
1092
+ version = "0.11.1+wasi-snapshot-preview1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1095
+
1096
+ [[package]]
1097
+ name = "wasip2"
1098
+ version = "1.0.2+wasi-0.2.9"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1101
+ dependencies = [
1102
+ "wit-bindgen",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "wasite"
1107
+ version = "0.1.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
1110
+
1111
+ [[package]]
1112
+ name = "wasm-bindgen"
1113
+ version = "0.2.108"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1116
+ dependencies = [
1117
+ "cfg-if",
1118
+ "once_cell",
1119
+ "rustversion",
1120
+ "wasm-bindgen-macro",
1121
+ "wasm-bindgen-shared",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "wasm-bindgen-macro"
1126
+ version = "0.2.108"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1129
+ dependencies = [
1130
+ "quote",
1131
+ "wasm-bindgen-macro-support",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "wasm-bindgen-macro-support"
1136
+ version = "0.2.108"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1139
+ dependencies = [
1140
+ "bumpalo",
1141
+ "proc-macro2",
1142
+ "quote",
1143
+ "syn 2.0.114",
1144
+ "wasm-bindgen-shared",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "wasm-bindgen-shared"
1149
+ version = "0.2.108"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1152
+ dependencies = [
1153
+ "unicode-ident",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "web-sys"
1158
+ version = "0.3.85"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
1161
+ dependencies = [
1162
+ "js-sys",
1163
+ "wasm-bindgen",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "which"
1168
+ version = "4.4.2"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
1171
+ dependencies = [
1172
+ "either",
1173
+ "home",
1174
+ "once_cell",
1175
+ "rustix",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "which"
1180
+ version = "6.0.3"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
1183
+ dependencies = [
1184
+ "either",
1185
+ "home",
1186
+ "rustix",
1187
+ "winsafe",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "whoami"
1192
+ version = "1.6.1"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
1195
+ dependencies = [
1196
+ "libredox",
1197
+ "wasite",
1198
+ "web-sys",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "winapi"
1203
+ version = "0.3.9"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1206
+ dependencies = [
1207
+ "winapi-i686-pc-windows-gnu",
1208
+ "winapi-x86_64-pc-windows-gnu",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "winapi-i686-pc-windows-gnu"
1213
+ version = "0.4.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1216
+
1217
+ [[package]]
1218
+ name = "winapi-x86_64-pc-windows-gnu"
1219
+ version = "0.4.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1222
+
1223
+ [[package]]
1224
+ name = "windows"
1225
+ version = "0.52.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
1228
+ dependencies = [
1229
+ "windows-core 0.52.0",
1230
+ "windows-targets 0.52.6",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "windows-core"
1235
+ version = "0.52.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1238
+ dependencies = [
1239
+ "windows-targets 0.52.6",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "windows-core"
1244
+ version = "0.62.2"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1247
+ dependencies = [
1248
+ "windows-implement",
1249
+ "windows-interface",
1250
+ "windows-link",
1251
+ "windows-result",
1252
+ "windows-strings",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "windows-implement"
1257
+ version = "0.60.2"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1260
+ dependencies = [
1261
+ "proc-macro2",
1262
+ "quote",
1263
+ "syn 2.0.114",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "windows-interface"
1268
+ version = "0.59.3"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn 2.0.114",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "windows-link"
1279
+ version = "0.2.1"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1282
+
1283
+ [[package]]
1284
+ name = "windows-result"
1285
+ version = "0.4.1"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1288
+ dependencies = [
1289
+ "windows-link",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "windows-strings"
1294
+ version = "0.5.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1297
+ dependencies = [
1298
+ "windows-link",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "windows-sys"
1303
+ version = "0.48.0"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1306
+ dependencies = [
1307
+ "windows-targets 0.48.5",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "windows-sys"
1312
+ version = "0.59.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1315
+ dependencies = [
1316
+ "windows-targets 0.52.6",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "windows-sys"
1321
+ version = "0.60.2"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1324
+ dependencies = [
1325
+ "windows-targets 0.53.5",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "windows-sys"
1330
+ version = "0.61.2"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1333
+ dependencies = [
1334
+ "windows-link",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "windows-targets"
1339
+ version = "0.48.5"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1342
+ dependencies = [
1343
+ "windows_aarch64_gnullvm 0.48.5",
1344
+ "windows_aarch64_msvc 0.48.5",
1345
+ "windows_i686_gnu 0.48.5",
1346
+ "windows_i686_msvc 0.48.5",
1347
+ "windows_x86_64_gnu 0.48.5",
1348
+ "windows_x86_64_gnullvm 0.48.5",
1349
+ "windows_x86_64_msvc 0.48.5",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "windows-targets"
1354
+ version = "0.52.6"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1357
+ dependencies = [
1358
+ "windows_aarch64_gnullvm 0.52.6",
1359
+ "windows_aarch64_msvc 0.52.6",
1360
+ "windows_i686_gnu 0.52.6",
1361
+ "windows_i686_gnullvm 0.52.6",
1362
+ "windows_i686_msvc 0.52.6",
1363
+ "windows_x86_64_gnu 0.52.6",
1364
+ "windows_x86_64_gnullvm 0.52.6",
1365
+ "windows_x86_64_msvc 0.52.6",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "windows-targets"
1370
+ version = "0.53.5"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1373
+ dependencies = [
1374
+ "windows-link",
1375
+ "windows_aarch64_gnullvm 0.53.1",
1376
+ "windows_aarch64_msvc 0.53.1",
1377
+ "windows_i686_gnu 0.53.1",
1378
+ "windows_i686_gnullvm 0.53.1",
1379
+ "windows_i686_msvc 0.53.1",
1380
+ "windows_x86_64_gnu 0.53.1",
1381
+ "windows_x86_64_gnullvm 0.53.1",
1382
+ "windows_x86_64_msvc 0.53.1",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "windows_aarch64_gnullvm"
1387
+ version = "0.48.5"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1390
+
1391
+ [[package]]
1392
+ name = "windows_aarch64_gnullvm"
1393
+ version = "0.52.6"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1396
+
1397
+ [[package]]
1398
+ name = "windows_aarch64_gnullvm"
1399
+ version = "0.53.1"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1402
+
1403
+ [[package]]
1404
+ name = "windows_aarch64_msvc"
1405
+ version = "0.48.5"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1408
+
1409
+ [[package]]
1410
+ name = "windows_aarch64_msvc"
1411
+ version = "0.52.6"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1414
+
1415
+ [[package]]
1416
+ name = "windows_aarch64_msvc"
1417
+ version = "0.53.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1420
+
1421
+ [[package]]
1422
+ name = "windows_i686_gnu"
1423
+ version = "0.48.5"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1426
+
1427
+ [[package]]
1428
+ name = "windows_i686_gnu"
1429
+ version = "0.52.6"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1432
+
1433
+ [[package]]
1434
+ name = "windows_i686_gnu"
1435
+ version = "0.53.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1438
+
1439
+ [[package]]
1440
+ name = "windows_i686_gnullvm"
1441
+ version = "0.52.6"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1444
+
1445
+ [[package]]
1446
+ name = "windows_i686_gnullvm"
1447
+ version = "0.53.1"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1450
+
1451
+ [[package]]
1452
+ name = "windows_i686_msvc"
1453
+ version = "0.48.5"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1456
+
1457
+ [[package]]
1458
+ name = "windows_i686_msvc"
1459
+ version = "0.52.6"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1462
+
1463
+ [[package]]
1464
+ name = "windows_i686_msvc"
1465
+ version = "0.53.1"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1468
+
1469
+ [[package]]
1470
+ name = "windows_x86_64_gnu"
1471
+ version = "0.48.5"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1474
+
1475
+ [[package]]
1476
+ name = "windows_x86_64_gnu"
1477
+ version = "0.52.6"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1480
+
1481
+ [[package]]
1482
+ name = "windows_x86_64_gnu"
1483
+ version = "0.53.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1486
+
1487
+ [[package]]
1488
+ name = "windows_x86_64_gnullvm"
1489
+ version = "0.48.5"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1492
+
1493
+ [[package]]
1494
+ name = "windows_x86_64_gnullvm"
1495
+ version = "0.52.6"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1498
+
1499
+ [[package]]
1500
+ name = "windows_x86_64_gnullvm"
1501
+ version = "0.53.1"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1504
+
1505
+ [[package]]
1506
+ name = "windows_x86_64_msvc"
1507
+ version = "0.48.5"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1510
+
1511
+ [[package]]
1512
+ name = "windows_x86_64_msvc"
1513
+ version = "0.52.6"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1516
+
1517
+ [[package]]
1518
+ name = "windows_x86_64_msvc"
1519
+ version = "0.53.1"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1522
+
1523
+ [[package]]
1524
+ name = "winsafe"
1525
+ version = "0.0.19"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
1528
+
1529
+ [[package]]
1530
+ name = "wit-bindgen"
1531
+ version = "0.51.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1534
+
1535
+ [[package]]
1536
+ name = "zerocopy"
1537
+ version = "0.8.33"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
1540
+ dependencies = [
1541
+ "zerocopy-derive",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "zerocopy-derive"
1546
+ version = "0.8.33"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
1549
+ dependencies = [
1550
+ "proc-macro2",
1551
+ "quote",
1552
+ "syn 2.0.114",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "zmij"
1557
+ version = "1.0.15"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "94f63c051f4fe3c1509da62131a678643c5b6fbdc9273b2b79d4378ebda003d2"