ic-mops 1.12.0 → 2.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 (322) hide show
  1. package/.DS_Store +0 -0
  2. package/.eslintrc.json +7 -7
  3. package/CHANGELOG.md +6 -0
  4. package/api/actors.ts +41 -37
  5. package/api/downloadPackageFiles.ts +75 -61
  6. package/api/getHighestVersion.ts +5 -5
  7. package/api/index.ts +4 -4
  8. package/api/network.ts +19 -21
  9. package/api/resolveVersion.ts +14 -11
  10. package/bin/mops.js +1 -1
  11. package/bundle/bench/bench-canister.mo +109 -101
  12. package/bundle/bench/user-bench.mo +6 -6
  13. package/bundle/bin/mops.js +1 -1
  14. package/bundle/cli.js +797 -792
  15. package/bundle/cli.tgz +0 -0
  16. package/bundle/package.json +6 -5
  17. package/bundle/templates/mops-publish.yml +3 -3
  18. package/bundle/templates/mops-test.yml +3 -3
  19. package/bundle/templates/src/lib.mo +13 -13
  20. package/bundle/templates/test/lib.test.mo +2 -2
  21. package/bundle-package-json.ts +8 -8
  22. package/cache.ts +80 -65
  23. package/check-requirements.ts +49 -45
  24. package/cli.ts +577 -376
  25. package/commands/add.ts +142 -129
  26. package/commands/available-updates.ts +55 -41
  27. package/commands/bench/bench-canister.mo +114 -108
  28. package/commands/bench/user-bench.mo +6 -6
  29. package/commands/bench-replica.ts +146 -118
  30. package/commands/bench.ts +563 -497
  31. package/commands/build.ts +177 -0
  32. package/commands/bump.ts +68 -57
  33. package/commands/check-candid.ts +24 -0
  34. package/commands/docs-coverage.ts +124 -102
  35. package/commands/docs.ts +118 -108
  36. package/commands/format.ts +171 -155
  37. package/commands/init.ts +301 -275
  38. package/commands/install/install-all.ts +75 -62
  39. package/commands/install/install-dep.ts +43 -28
  40. package/commands/install/install-deps.ts +23 -15
  41. package/commands/install/install-local-dep.ts +42 -34
  42. package/commands/install/install-mops-dep.ts +154 -123
  43. package/commands/install/sync-local-cache.ts +39 -35
  44. package/commands/maintainer.ts +109 -99
  45. package/commands/outdated.ts +30 -24
  46. package/commands/owner.ts +107 -99
  47. package/commands/publish.ts +534 -443
  48. package/commands/remove.ts +119 -89
  49. package/commands/replica.ts +391 -316
  50. package/commands/search.ts +42 -36
  51. package/commands/self.ts +63 -56
  52. package/commands/sources.ts +66 -49
  53. package/commands/sync.ts +92 -75
  54. package/commands/template.ts +145 -102
  55. package/commands/test/mmf1.ts +146 -119
  56. package/commands/test/reporters/compact-reporter.ts +87 -84
  57. package/commands/test/reporters/files-reporter.ts +56 -51
  58. package/commands/test/reporters/reporter.ts +12 -6
  59. package/commands/test/reporters/silent-reporter.ts +58 -59
  60. package/commands/test/reporters/verbose-reporter.ts +66 -54
  61. package/commands/test/test.ts +498 -401
  62. package/commands/test/utils.ts +72 -67
  63. package/commands/toolchain/index.ts +363 -322
  64. package/commands/toolchain/moc.ts +78 -50
  65. package/commands/toolchain/pocket-ic.ts +41 -34
  66. package/commands/toolchain/toolchain-utils.ts +92 -72
  67. package/commands/toolchain/wasmtime.ts +37 -34
  68. package/commands/update.ts +82 -64
  69. package/commands/user.ts +90 -81
  70. package/commands/watch/deployer.ts +188 -152
  71. package/commands/watch/error-checker.ts +90 -80
  72. package/commands/watch/formatter.ts +72 -60
  73. package/commands/watch/generator.ts +116 -96
  74. package/commands/watch/globMoFiles.ts +13 -13
  75. package/commands/watch/parseDfxJson.ts +63 -57
  76. package/commands/watch/tester.ts +83 -65
  77. package/commands/watch/warning-checker.ts +149 -136
  78. package/commands/watch/watch.ts +123 -95
  79. package/dist/api/actors.d.ts +4 -4
  80. package/dist/api/actors.js +8 -8
  81. package/dist/api/downloadPackageFiles.d.ts +2 -2
  82. package/dist/api/downloadPackageFiles.js +10 -10
  83. package/dist/api/getHighestVersion.js +1 -1
  84. package/dist/api/index.d.ts +4 -4
  85. package/dist/api/index.js +4 -4
  86. package/dist/api/network.js +9 -9
  87. package/dist/api/resolveVersion.js +3 -3
  88. package/dist/bin/mops.js +1 -1
  89. package/dist/bundle-package-json.js +8 -8
  90. package/dist/cache.js +22 -17
  91. package/dist/check-requirements.js +11 -11
  92. package/dist/cli.js +283 -186
  93. package/dist/commands/add.d.ts +1 -1
  94. package/dist/commands/add.js +40 -37
  95. package/dist/commands/available-updates.d.ts +1 -1
  96. package/dist/commands/available-updates.js +18 -12
  97. package/dist/commands/bench/bench-canister.mo +114 -108
  98. package/dist/commands/bench/user-bench.mo +6 -6
  99. package/dist/commands/bench-replica.d.ts +4 -4
  100. package/dist/commands/bench-replica.js +45 -34
  101. package/dist/commands/bench.d.ts +5 -5
  102. package/dist/commands/bench.js +134 -118
  103. package/dist/commands/build.d.ts +7 -0
  104. package/dist/commands/build.js +121 -0
  105. package/dist/commands/bump.js +27 -18
  106. package/dist/commands/check-candid.d.ts +4 -0
  107. package/dist/commands/check-candid.js +15 -0
  108. package/dist/commands/docs-coverage.d.ts +1 -1
  109. package/dist/commands/docs-coverage.js +45 -31
  110. package/dist/commands/docs.d.ts +1 -1
  111. package/dist/commands/docs.js +39 -38
  112. package/dist/commands/format.js +31 -27
  113. package/dist/commands/init.js +102 -92
  114. package/dist/commands/install/install-all.d.ts +2 -2
  115. package/dist/commands/install/install-all.js +23 -21
  116. package/dist/commands/install/install-dep.d.ts +1 -1
  117. package/dist/commands/install/install-dep.js +21 -8
  118. package/dist/commands/install/install-deps.d.ts +1 -1
  119. package/dist/commands/install/install-deps.js +1 -1
  120. package/dist/commands/install/install-local-dep.js +11 -9
  121. package/dist/commands/install/install-mops-dep.d.ts +1 -1
  122. package/dist/commands/install/install-mops-dep.js +32 -27
  123. package/dist/commands/install/sync-local-cache.js +10 -10
  124. package/dist/commands/maintainer.js +21 -21
  125. package/dist/commands/outdated.js +12 -8
  126. package/dist/commands/owner.js +21 -21
  127. package/dist/commands/publish.js +148 -128
  128. package/dist/commands/remove.d.ts +1 -1
  129. package/dist/commands/remove.js +42 -30
  130. package/dist/commands/replica.d.ts +7 -7
  131. package/dist/commands/replica.js +85 -57
  132. package/dist/commands/search.js +15 -13
  133. package/dist/commands/self.js +31 -28
  134. package/dist/commands/sources.d.ts +5 -1
  135. package/dist/commands/sources.js +23 -17
  136. package/dist/commands/sync.d.ts +1 -1
  137. package/dist/commands/sync.js +38 -25
  138. package/dist/commands/template.js +66 -56
  139. package/dist/commands/test/mmf1.d.ts +3 -3
  140. package/dist/commands/test/mmf1.js +33 -31
  141. package/dist/commands/test/reporters/compact-reporter.d.ts +3 -3
  142. package/dist/commands/test/reporters/compact-reporter.js +19 -15
  143. package/dist/commands/test/reporters/files-reporter.d.ts +3 -3
  144. package/dist/commands/test/reporters/files-reporter.js +18 -14
  145. package/dist/commands/test/reporters/reporter.d.ts +2 -2
  146. package/dist/commands/test/reporters/silent-reporter.d.ts +3 -3
  147. package/dist/commands/test/reporters/silent-reporter.js +4 -4
  148. package/dist/commands/test/reporters/verbose-reporter.d.ts +3 -3
  149. package/dist/commands/test/reporters/verbose-reporter.js +17 -13
  150. package/dist/commands/test/test.d.ts +4 -4
  151. package/dist/commands/test/test.js +134 -112
  152. package/dist/commands/test/utils.d.ts +3 -3
  153. package/dist/commands/test/utils.js +17 -17
  154. package/dist/commands/toolchain/index.d.ts +1 -1
  155. package/dist/commands/toolchain/index.js +81 -69
  156. package/dist/commands/toolchain/moc.d.ts +1 -1
  157. package/dist/commands/toolchain/moc.js +48 -24
  158. package/dist/commands/toolchain/pocket-ic.js +12 -12
  159. package/dist/commands/toolchain/toolchain-utils.d.ts +2 -0
  160. package/dist/commands/toolchain/toolchain-utils.js +32 -23
  161. package/dist/commands/toolchain/wasmtime.js +11 -11
  162. package/dist/commands/update.d.ts +1 -1
  163. package/dist/commands/update.js +18 -14
  164. package/dist/commands/user.js +31 -28
  165. package/dist/commands/watch/deployer.d.ts +4 -4
  166. package/dist/commands/watch/deployer.js +45 -36
  167. package/dist/commands/watch/error-checker.d.ts +2 -2
  168. package/dist/commands/watch/error-checker.js +27 -27
  169. package/dist/commands/watch/formatter.d.ts +4 -4
  170. package/dist/commands/watch/formatter.js +17 -17
  171. package/dist/commands/watch/generator.d.ts +3 -3
  172. package/dist/commands/watch/generator.js +28 -23
  173. package/dist/commands/watch/globMoFiles.js +8 -8
  174. package/dist/commands/watch/parseDfxJson.d.ts +2 -2
  175. package/dist/commands/watch/parseDfxJson.js +9 -9
  176. package/dist/commands/watch/tester.d.ts +4 -4
  177. package/dist/commands/watch/tester.js +23 -21
  178. package/dist/commands/watch/warning-checker.d.ts +3 -3
  179. package/dist/commands/watch/warning-checker.js +36 -36
  180. package/dist/commands/watch/watch.js +45 -32
  181. package/dist/environments/nodejs/cli.d.ts +1 -0
  182. package/dist/environments/nodejs/cli.js +4 -0
  183. package/dist/environments/web/cli.d.ts +1 -0
  184. package/dist/environments/web/cli.js +4 -0
  185. package/dist/error.d.ts +1 -0
  186. package/dist/error.js +5 -0
  187. package/dist/fix-dist.js +5 -5
  188. package/dist/helpers/find-changelog-entry.js +8 -5
  189. package/dist/helpers/get-dep-name.js +2 -2
  190. package/dist/helpers/get-dfx-version.js +4 -4
  191. package/dist/helpers/get-moc-path.js +8 -7
  192. package/dist/helpers/get-moc-version.js +10 -7
  193. package/dist/helpers/get-package-id.js +2 -2
  194. package/dist/helpers/is-candid-compatible.d.ts +1 -0
  195. package/dist/helpers/is-candid-compatible.js +20 -0
  196. package/dist/integrity.d.ts +1 -1
  197. package/dist/integrity.js +47 -38
  198. package/dist/jest.config.d.ts +11 -0
  199. package/dist/jest.config.js +14 -0
  200. package/dist/mops.d.ts +6 -6
  201. package/dist/mops.js +87 -80
  202. package/dist/notify-installs.js +4 -4
  203. package/dist/package.json +9 -5
  204. package/dist/pem.d.ts +3 -3
  205. package/dist/pem.js +20 -12
  206. package/dist/release-cli.js +20 -20
  207. package/dist/resolve-packages.d.ts +1 -1
  208. package/dist/resolve-packages.js +52 -36
  209. package/dist/templates/mops-publish.yml +3 -3
  210. package/dist/templates/mops-test.yml +3 -3
  211. package/dist/templates/src/lib.mo +13 -13
  212. package/dist/templates/test/lib.test.mo +2 -2
  213. package/dist/templates.js +1 -1
  214. package/dist/tests/cli.test.d.ts +1 -0
  215. package/dist/tests/cli.test.js +63 -0
  216. package/dist/types.d.ts +14 -4
  217. package/dist/vessel.d.ts +2 -2
  218. package/dist/vessel.js +41 -34
  219. package/dist/wasm/pkg/bundler/package.json +20 -0
  220. package/dist/wasm/pkg/bundler/wasm.d.ts +3 -0
  221. package/dist/wasm/pkg/bundler/wasm.js +5 -0
  222. package/dist/wasm/pkg/bundler/wasm_bg.js +93 -0
  223. package/dist/wasm/pkg/bundler/wasm_bg.wasm +0 -0
  224. package/dist/wasm/pkg/bundler/wasm_bg.wasm.d.ts +8 -0
  225. package/dist/wasm/pkg/nodejs/package.json +14 -0
  226. package/dist/wasm/pkg/nodejs/wasm.d.ts +3 -0
  227. package/dist/wasm/pkg/nodejs/wasm.js +98 -0
  228. package/dist/wasm/pkg/nodejs/wasm_bg.wasm +0 -0
  229. package/dist/wasm/pkg/nodejs/wasm_bg.wasm.d.ts +8 -0
  230. package/dist/wasm/pkg/web/package.json +18 -0
  231. package/dist/wasm/pkg/web/wasm.d.ts +35 -0
  232. package/dist/wasm/pkg/web/wasm.js +191 -0
  233. package/dist/wasm/pkg/web/wasm_bg.wasm +0 -0
  234. package/dist/wasm/pkg/web/wasm_bg.wasm.d.ts +8 -0
  235. package/dist/wasm.d.ts +5 -0
  236. package/dist/wasm.js +10 -0
  237. package/environments/nodejs/cli.ts +6 -0
  238. package/environments/web/cli.ts +6 -0
  239. package/error.ts +6 -0
  240. package/fix-dist.ts +5 -5
  241. package/global.d.ts +3 -3
  242. package/helpers/find-changelog-entry.ts +26 -23
  243. package/helpers/get-dep-name.ts +5 -5
  244. package/helpers/get-dfx-version.ts +8 -9
  245. package/helpers/get-moc-path.ts +25 -26
  246. package/helpers/get-moc-version.ts +21 -19
  247. package/helpers/get-package-id.ts +4 -4
  248. package/helpers/is-candid-compatible.ts +22 -0
  249. package/integrity.ts +270 -236
  250. package/jest.config.js +14 -0
  251. package/mops.ts +238 -215
  252. package/notify-installs.ts +16 -17
  253. package/package.json +19 -10
  254. package/parallel.ts +28 -24
  255. package/pem.ts +55 -47
  256. package/release-cli.ts +73 -39
  257. package/resolve-packages.ts +231 -189
  258. package/templates/mops-publish.yml +3 -3
  259. package/templates/mops-test.yml +3 -3
  260. package/templates/src/lib.mo +13 -13
  261. package/templates/test/lib.test.mo +2 -2
  262. package/templates.ts +4 -4
  263. package/tests/__snapshots__/cli.test.ts.snap +202 -0
  264. package/tests/build/error/candid/bar.did +3 -0
  265. package/tests/build/error/dfx.json +12 -0
  266. package/tests/build/error/mops.toml +9 -0
  267. package/tests/build/error/src/Bar.mo +5 -0
  268. package/tests/build/error/src/Foo.mo +5 -0
  269. package/tests/build/success/.dfx/local/canister_ids.json +17 -0
  270. package/tests/build/success/.dfx/local/canisters/bar/bar.did +3 -0
  271. package/tests/build/success/.dfx/local/canisters/bar/bar.most +4 -0
  272. package/tests/build/success/.dfx/local/canisters/bar/bar.wasm +0 -0
  273. package/tests/build/success/.dfx/local/canisters/bar/constructor.did +3 -0
  274. package/tests/build/success/.dfx/local/canisters/bar/index.js +42 -0
  275. package/tests/build/success/.dfx/local/canisters/bar/init_args.txt +1 -0
  276. package/tests/build/success/.dfx/local/canisters/bar/service.did +3 -0
  277. package/tests/build/success/.dfx/local/canisters/bar/service.did.d.ts +7 -0
  278. package/tests/build/success/.dfx/local/canisters/bar/service.did.js +4 -0
  279. package/tests/build/success/.dfx/local/canisters/foo/constructor.did +3 -0
  280. package/tests/build/success/.dfx/local/canisters/foo/foo.did +3 -0
  281. package/tests/build/success/.dfx/local/canisters/foo/foo.most +4 -0
  282. package/tests/build/success/.dfx/local/canisters/foo/foo.wasm +0 -0
  283. package/tests/build/success/.dfx/local/canisters/foo/index.js +42 -0
  284. package/tests/build/success/.dfx/local/canisters/foo/init_args.txt +1 -0
  285. package/tests/build/success/.dfx/local/canisters/foo/service.did +3 -0
  286. package/tests/build/success/.dfx/local/canisters/foo/service.did.d.ts +7 -0
  287. package/tests/build/success/.dfx/local/canisters/foo/service.did.js +4 -0
  288. package/tests/build/success/.dfx/local/lsp/ucwa4-rx777-77774-qaada-cai.did +3 -0
  289. package/tests/build/success/.dfx/local/lsp/ulvla-h7777-77774-qaacq-cai.did +3 -0
  290. package/tests/build/success/.dfx/local/network-id +4 -0
  291. package/tests/build/success/candid/bar.did +3 -0
  292. package/tests/build/success/dfx.json +12 -0
  293. package/tests/build/success/mops.toml +9 -0
  294. package/tests/build/success/src/Bar.mo +5 -0
  295. package/tests/build/success/src/Foo.mo +5 -0
  296. package/tests/check-candid/a.did +3 -0
  297. package/tests/check-candid/b.did +5 -0
  298. package/tests/check-candid/c.did +3 -0
  299. package/tests/cli.test.ts +82 -0
  300. package/tsconfig.json +26 -19
  301. package/types.ts +41 -31
  302. package/vessel.ts +219 -187
  303. package/wasm/Cargo.lock +1475 -0
  304. package/wasm/Cargo.toml +28 -0
  305. package/wasm/pkg/bundler/package.json +20 -0
  306. package/wasm/pkg/bundler/wasm.d.ts +3 -0
  307. package/wasm/pkg/bundler/wasm.js +5 -0
  308. package/wasm/pkg/bundler/wasm_bg.js +93 -0
  309. package/wasm/pkg/bundler/wasm_bg.wasm +0 -0
  310. package/wasm/pkg/bundler/wasm_bg.wasm.d.ts +8 -0
  311. package/wasm/pkg/nodejs/package.json +14 -0
  312. package/wasm/pkg/nodejs/wasm.d.ts +3 -0
  313. package/wasm/pkg/nodejs/wasm.js +98 -0
  314. package/wasm/pkg/nodejs/wasm_bg.wasm +0 -0
  315. package/wasm/pkg/nodejs/wasm_bg.wasm.d.ts +8 -0
  316. package/wasm/pkg/web/package.json +18 -0
  317. package/wasm/pkg/web/wasm.d.ts +35 -0
  318. package/wasm/pkg/web/wasm.js +191 -0
  319. package/wasm/pkg/web/wasm_bg.wasm +0 -0
  320. package/wasm/pkg/web/wasm_bg.wasm.d.ts +8 -0
  321. package/wasm/src/lib.rs +17 -0
  322. package/wasm.ts +16 -0
@@ -0,0 +1,1475 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anyhow"
16
+ version = "1.0.100"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
19
+
20
+ [[package]]
21
+ name = "ar_archive_writer"
22
+ version = "0.2.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
25
+ dependencies = [
26
+ "object",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "arbitrary"
31
+ version = "1.4.2"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
34
+
35
+ [[package]]
36
+ name = "arrayvec"
37
+ version = "0.5.2"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
40
+
41
+ [[package]]
42
+ name = "ascii-canvas"
43
+ version = "3.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
46
+ dependencies = [
47
+ "term",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "autocfg"
52
+ version = "1.5.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
55
+
56
+ [[package]]
57
+ name = "beef"
58
+ version = "0.5.2"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
61
+
62
+ [[package]]
63
+ name = "binread"
64
+ version = "2.2.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "16598dfc8e6578e9b597d9910ba2e73618385dc9f4b1d43dd92c349d6be6418f"
67
+ dependencies = [
68
+ "binread_derive",
69
+ "lazy_static",
70
+ "rustversion",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "binread_derive"
75
+ version = "2.1.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "1d9672209df1714ee804b1f4d4f68c8eb2a90b1f7a07acf472f88ce198ef1fed"
78
+ dependencies = [
79
+ "either",
80
+ "proc-macro2",
81
+ "quote",
82
+ "syn 1.0.109",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "bit-set"
87
+ version = "0.5.3"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
90
+ dependencies = [
91
+ "bit-vec",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bit-vec"
96
+ version = "0.6.3"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
99
+
100
+ [[package]]
101
+ name = "bitflags"
102
+ version = "2.10.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
105
+
106
+ [[package]]
107
+ name = "block-buffer"
108
+ version = "0.10.4"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
111
+ dependencies = [
112
+ "generic-array",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "bumpalo"
117
+ version = "3.19.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
120
+
121
+ [[package]]
122
+ name = "byteorder"
123
+ version = "1.5.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
126
+
127
+ [[package]]
128
+ name = "candid"
129
+ version = "0.10.20"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "8037a01ec09d6c06883a38bad4f47b8d06158ad360b841e0ae5707c9884dfaf6"
132
+ dependencies = [
133
+ "anyhow",
134
+ "binread",
135
+ "byteorder",
136
+ "candid_derive",
137
+ "hex",
138
+ "ic_principal",
139
+ "leb128",
140
+ "num-bigint",
141
+ "num-traits",
142
+ "paste",
143
+ "pretty",
144
+ "serde",
145
+ "serde_bytes",
146
+ "stacker",
147
+ "thiserror 1.0.69",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "candid_derive"
152
+ version = "0.10.20"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "fb45f4d5eff3805598ee633dd80f8afb306c023249d34b5b7dfdc2080ea1df2e"
155
+ dependencies = [
156
+ "lazy_static",
157
+ "proc-macro2",
158
+ "quote",
159
+ "syn 2.0.110",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "candid_parser"
164
+ version = "0.2.3"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "8ee88dd48c1322ae112442b804ba53097c383664921d6d3757bebfdd7821ee64"
167
+ dependencies = [
168
+ "anyhow",
169
+ "candid",
170
+ "codespan-reporting",
171
+ "convert_case",
172
+ "handlebars",
173
+ "hex",
174
+ "lalrpop",
175
+ "lalrpop-util",
176
+ "logos",
177
+ "num-bigint",
178
+ "pretty",
179
+ "serde",
180
+ "thiserror 1.0.69",
181
+ "toml",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "cc"
186
+ version = "1.2.46"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36"
189
+ dependencies = [
190
+ "find-msvc-tools",
191
+ "shlex",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "cfg-if"
196
+ version = "1.0.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
199
+
200
+ [[package]]
201
+ name = "codespan-reporting"
202
+ version = "0.11.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
205
+ dependencies = [
206
+ "termcolor",
207
+ "unicode-width 0.1.14",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "console_error_panic_hook"
212
+ version = "0.1.7"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
215
+ dependencies = [
216
+ "cfg-if",
217
+ "wasm-bindgen",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "convert_case"
222
+ version = "0.6.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
225
+ dependencies = [
226
+ "unicode-segmentation",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "cpufeatures"
231
+ version = "0.2.17"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
234
+ dependencies = [
235
+ "libc",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "crc32fast"
240
+ version = "1.5.0"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
243
+ dependencies = [
244
+ "cfg-if",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "crunchy"
249
+ version = "0.2.4"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
252
+
253
+ [[package]]
254
+ name = "crypto-common"
255
+ version = "0.1.7"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
258
+ dependencies = [
259
+ "generic-array",
260
+ "typenum",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "darling"
265
+ version = "0.20.11"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
268
+ dependencies = [
269
+ "darling_core",
270
+ "darling_macro",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "darling_core"
275
+ version = "0.20.11"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
278
+ dependencies = [
279
+ "fnv",
280
+ "ident_case",
281
+ "proc-macro2",
282
+ "quote",
283
+ "strsim",
284
+ "syn 2.0.110",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "darling_macro"
289
+ version = "0.20.11"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
292
+ dependencies = [
293
+ "darling_core",
294
+ "quote",
295
+ "syn 2.0.110",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "data-encoding"
300
+ version = "2.9.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
303
+
304
+ [[package]]
305
+ name = "derive_builder"
306
+ version = "0.20.2"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
309
+ dependencies = [
310
+ "derive_builder_macro",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "derive_builder_core"
315
+ version = "0.20.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
318
+ dependencies = [
319
+ "darling",
320
+ "proc-macro2",
321
+ "quote",
322
+ "syn 2.0.110",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "derive_builder_macro"
327
+ version = "0.20.2"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
330
+ dependencies = [
331
+ "derive_builder_core",
332
+ "syn 2.0.110",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "digest"
337
+ version = "0.10.7"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
340
+ dependencies = [
341
+ "block-buffer",
342
+ "crypto-common",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "dirs-next"
347
+ version = "2.0.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
350
+ dependencies = [
351
+ "cfg-if",
352
+ "dirs-sys-next",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "dirs-sys-next"
357
+ version = "0.1.2"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
360
+ dependencies = [
361
+ "libc",
362
+ "redox_users",
363
+ "winapi",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "either"
368
+ version = "1.15.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
371
+
372
+ [[package]]
373
+ name = "ena"
374
+ version = "0.14.3"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5"
377
+ dependencies = [
378
+ "log",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "equivalent"
383
+ version = "1.0.2"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
386
+
387
+ [[package]]
388
+ name = "find-msvc-tools"
389
+ version = "0.1.5"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
392
+
393
+ [[package]]
394
+ name = "fixedbitset"
395
+ version = "0.4.2"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
398
+
399
+ [[package]]
400
+ name = "fnv"
401
+ version = "1.0.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
404
+
405
+ [[package]]
406
+ name = "generic-array"
407
+ version = "0.14.7"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
410
+ dependencies = [
411
+ "typenum",
412
+ "version_check",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "getrandom"
417
+ version = "0.2.16"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
420
+ dependencies = [
421
+ "cfg-if",
422
+ "libc",
423
+ "wasi",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "handlebars"
428
+ version = "6.3.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "759e2d5aea3287cb1190c8ec394f42866cb5bf74fcbf213f354e3c856ea26098"
431
+ dependencies = [
432
+ "derive_builder",
433
+ "log",
434
+ "num-order",
435
+ "pest",
436
+ "pest_derive",
437
+ "serde",
438
+ "serde_json",
439
+ "thiserror 2.0.17",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "hashbrown"
444
+ version = "0.16.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
447
+
448
+ [[package]]
449
+ name = "hex"
450
+ version = "0.4.3"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
453
+
454
+ [[package]]
455
+ name = "ic_principal"
456
+ version = "0.1.1"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "1762deb6f7c8d8c2bdee4b6c5a47b60195b74e9b5280faa5ba29692f8e17429c"
459
+ dependencies = [
460
+ "arbitrary",
461
+ "crc32fast",
462
+ "data-encoding",
463
+ "serde",
464
+ "sha2",
465
+ "thiserror 1.0.69",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "ident_case"
470
+ version = "1.0.1"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
473
+
474
+ [[package]]
475
+ name = "indexmap"
476
+ version = "2.12.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
479
+ dependencies = [
480
+ "equivalent",
481
+ "hashbrown",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "itertools"
486
+ version = "0.11.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
489
+ dependencies = [
490
+ "either",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "itoa"
495
+ version = "1.0.15"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
498
+
499
+ [[package]]
500
+ name = "js-sys"
501
+ version = "0.3.82"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
504
+ dependencies = [
505
+ "once_cell",
506
+ "wasm-bindgen",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "lalrpop"
511
+ version = "0.20.2"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca"
514
+ dependencies = [
515
+ "ascii-canvas",
516
+ "bit-set",
517
+ "ena",
518
+ "itertools",
519
+ "lalrpop-util",
520
+ "petgraph",
521
+ "pico-args",
522
+ "regex",
523
+ "regex-syntax",
524
+ "string_cache",
525
+ "term",
526
+ "tiny-keccak",
527
+ "unicode-xid",
528
+ "walkdir",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "lalrpop-util"
533
+ version = "0.20.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
536
+ dependencies = [
537
+ "regex-automata",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "lazy_static"
542
+ version = "1.5.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
545
+
546
+ [[package]]
547
+ name = "leb128"
548
+ version = "0.2.5"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
551
+
552
+ [[package]]
553
+ name = "libc"
554
+ version = "0.2.177"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
557
+
558
+ [[package]]
559
+ name = "libredox"
560
+ version = "0.1.10"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
563
+ dependencies = [
564
+ "bitflags",
565
+ "libc",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "lock_api"
570
+ version = "0.4.14"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
573
+ dependencies = [
574
+ "scopeguard",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "log"
579
+ version = "0.4.28"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
582
+
583
+ [[package]]
584
+ name = "logos"
585
+ version = "0.14.4"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "7251356ef8cb7aec833ddf598c6cb24d17b689d20b993f9d11a3d764e34e6458"
588
+ dependencies = [
589
+ "logos-derive",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "logos-codegen"
594
+ version = "0.14.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "59f80069600c0d66734f5ff52cc42f2dabd6b29d205f333d61fd7832e9e9963f"
597
+ dependencies = [
598
+ "beef",
599
+ "fnv",
600
+ "lazy_static",
601
+ "proc-macro2",
602
+ "quote",
603
+ "regex-syntax",
604
+ "syn 2.0.110",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "logos-derive"
609
+ version = "0.14.4"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "24fb722b06a9dc12adb0963ed585f19fc61dc5413e6a9be9422ef92c091e731d"
612
+ dependencies = [
613
+ "logos-codegen",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "memchr"
618
+ version = "2.7.6"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
621
+
622
+ [[package]]
623
+ name = "minicov"
624
+ version = "0.3.7"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
627
+ dependencies = [
628
+ "cc",
629
+ "walkdir",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "new_debug_unreachable"
634
+ version = "1.0.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
637
+
638
+ [[package]]
639
+ name = "num-bigint"
640
+ version = "0.4.6"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
643
+ dependencies = [
644
+ "num-integer",
645
+ "num-traits",
646
+ "serde",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "num-integer"
651
+ version = "0.1.46"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
654
+ dependencies = [
655
+ "num-traits",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "num-modular"
660
+ version = "0.6.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
663
+
664
+ [[package]]
665
+ name = "num-order"
666
+ version = "1.2.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
669
+ dependencies = [
670
+ "num-modular",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "num-traits"
675
+ version = "0.2.19"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
678
+ dependencies = [
679
+ "autocfg",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "object"
684
+ version = "0.32.2"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
687
+ dependencies = [
688
+ "memchr",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "once_cell"
693
+ version = "1.21.3"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
696
+
697
+ [[package]]
698
+ name = "parking_lot"
699
+ version = "0.12.5"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
702
+ dependencies = [
703
+ "lock_api",
704
+ "parking_lot_core",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "parking_lot_core"
709
+ version = "0.9.12"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
712
+ dependencies = [
713
+ "cfg-if",
714
+ "libc",
715
+ "redox_syscall",
716
+ "smallvec",
717
+ "windows-link",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "paste"
722
+ version = "1.0.15"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
725
+
726
+ [[package]]
727
+ name = "pest"
728
+ version = "2.8.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4"
731
+ dependencies = [
732
+ "memchr",
733
+ "ucd-trie",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "pest_derive"
738
+ version = "2.8.3"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de"
741
+ dependencies = [
742
+ "pest",
743
+ "pest_generator",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "pest_generator"
748
+ version = "2.8.3"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843"
751
+ dependencies = [
752
+ "pest",
753
+ "pest_meta",
754
+ "proc-macro2",
755
+ "quote",
756
+ "syn 2.0.110",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "pest_meta"
761
+ version = "2.8.3"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a"
764
+ dependencies = [
765
+ "pest",
766
+ "sha2",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "petgraph"
771
+ version = "0.6.5"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
774
+ dependencies = [
775
+ "fixedbitset",
776
+ "indexmap",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "phf_shared"
781
+ version = "0.11.3"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
784
+ dependencies = [
785
+ "siphasher",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "pico-args"
790
+ version = "0.5.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
793
+
794
+ [[package]]
795
+ name = "precomputed-hash"
796
+ version = "0.1.1"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
799
+
800
+ [[package]]
801
+ name = "pretty"
802
+ version = "0.12.5"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "0d22152487193190344590e4f30e219cf3fe140d9e7a3fdb683d82aa2c5f4156"
805
+ dependencies = [
806
+ "arrayvec",
807
+ "typed-arena",
808
+ "unicode-width 0.2.2",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "proc-macro2"
813
+ version = "1.0.103"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
816
+ dependencies = [
817
+ "unicode-ident",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "psm"
822
+ version = "0.1.28"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
825
+ dependencies = [
826
+ "ar_archive_writer",
827
+ "cc",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "quote"
832
+ version = "1.0.42"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
835
+ dependencies = [
836
+ "proc-macro2",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "redox_syscall"
841
+ version = "0.5.18"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
844
+ dependencies = [
845
+ "bitflags",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "redox_users"
850
+ version = "0.4.6"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
853
+ dependencies = [
854
+ "getrandom",
855
+ "libredox",
856
+ "thiserror 1.0.69",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "regex"
861
+ version = "1.12.2"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
864
+ dependencies = [
865
+ "aho-corasick",
866
+ "memchr",
867
+ "regex-automata",
868
+ "regex-syntax",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "regex-automata"
873
+ version = "0.4.13"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
876
+ dependencies = [
877
+ "aho-corasick",
878
+ "memchr",
879
+ "regex-syntax",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "regex-syntax"
884
+ version = "0.8.8"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
887
+
888
+ [[package]]
889
+ name = "rustversion"
890
+ version = "1.0.22"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
893
+
894
+ [[package]]
895
+ name = "ryu"
896
+ version = "1.0.20"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
899
+
900
+ [[package]]
901
+ name = "same-file"
902
+ version = "1.0.6"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
905
+ dependencies = [
906
+ "winapi-util",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "scopeguard"
911
+ version = "1.2.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
914
+
915
+ [[package]]
916
+ name = "serde"
917
+ version = "1.0.228"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
920
+ dependencies = [
921
+ "serde_core",
922
+ "serde_derive",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "serde-wasm-bindgen"
927
+ version = "0.6.5"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
930
+ dependencies = [
931
+ "js-sys",
932
+ "serde",
933
+ "wasm-bindgen",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "serde_bytes"
938
+ version = "0.11.19"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
941
+ dependencies = [
942
+ "serde",
943
+ "serde_core",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "serde_core"
948
+ version = "1.0.228"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
951
+ dependencies = [
952
+ "serde_derive",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "serde_derive"
957
+ version = "1.0.228"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
960
+ dependencies = [
961
+ "proc-macro2",
962
+ "quote",
963
+ "syn 2.0.110",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "serde_json"
968
+ version = "1.0.145"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
971
+ dependencies = [
972
+ "itoa",
973
+ "memchr",
974
+ "ryu",
975
+ "serde",
976
+ "serde_core",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "serde_spanned"
981
+ version = "0.6.9"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
984
+ dependencies = [
985
+ "serde",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "sha2"
990
+ version = "0.10.9"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
993
+ dependencies = [
994
+ "cfg-if",
995
+ "cpufeatures",
996
+ "digest",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "shlex"
1001
+ version = "1.3.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1004
+
1005
+ [[package]]
1006
+ name = "siphasher"
1007
+ version = "1.0.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1010
+
1011
+ [[package]]
1012
+ name = "smallvec"
1013
+ version = "1.15.1"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1016
+
1017
+ [[package]]
1018
+ name = "stacker"
1019
+ version = "0.1.22"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
1022
+ dependencies = [
1023
+ "cc",
1024
+ "cfg-if",
1025
+ "libc",
1026
+ "psm",
1027
+ "windows-sys 0.59.0",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "string_cache"
1032
+ version = "0.8.9"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1035
+ dependencies = [
1036
+ "new_debug_unreachable",
1037
+ "parking_lot",
1038
+ "phf_shared",
1039
+ "precomputed-hash",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "strsim"
1044
+ version = "0.11.1"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1047
+
1048
+ [[package]]
1049
+ name = "syn"
1050
+ version = "1.0.109"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1053
+ dependencies = [
1054
+ "proc-macro2",
1055
+ "quote",
1056
+ "unicode-ident",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "syn"
1061
+ version = "2.0.110"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1064
+ dependencies = [
1065
+ "proc-macro2",
1066
+ "quote",
1067
+ "unicode-ident",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "term"
1072
+ version = "0.7.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
1075
+ dependencies = [
1076
+ "dirs-next",
1077
+ "rustversion",
1078
+ "winapi",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "termcolor"
1083
+ version = "1.4.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1086
+ dependencies = [
1087
+ "winapi-util",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "thiserror"
1092
+ version = "1.0.69"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1095
+ dependencies = [
1096
+ "thiserror-impl 1.0.69",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "thiserror"
1101
+ version = "2.0.17"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1104
+ dependencies = [
1105
+ "thiserror-impl 2.0.17",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "thiserror-impl"
1110
+ version = "1.0.69"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1113
+ dependencies = [
1114
+ "proc-macro2",
1115
+ "quote",
1116
+ "syn 2.0.110",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "thiserror-impl"
1121
+ version = "2.0.17"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1124
+ dependencies = [
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "syn 2.0.110",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "tiny-keccak"
1132
+ version = "2.0.2"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1135
+ dependencies = [
1136
+ "crunchy",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "toml"
1141
+ version = "0.8.23"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1144
+ dependencies = [
1145
+ "serde",
1146
+ "serde_spanned",
1147
+ "toml_datetime",
1148
+ "toml_edit",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "toml_datetime"
1153
+ version = "0.6.11"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1156
+ dependencies = [
1157
+ "serde",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "toml_edit"
1162
+ version = "0.22.27"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1165
+ dependencies = [
1166
+ "indexmap",
1167
+ "serde",
1168
+ "serde_spanned",
1169
+ "toml_datetime",
1170
+ "winnow",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "typed-arena"
1175
+ version = "2.0.2"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1178
+
1179
+ [[package]]
1180
+ name = "typenum"
1181
+ version = "1.19.0"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1184
+
1185
+ [[package]]
1186
+ name = "ucd-trie"
1187
+ version = "0.1.7"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1190
+
1191
+ [[package]]
1192
+ name = "unicode-ident"
1193
+ version = "1.0.22"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1196
+
1197
+ [[package]]
1198
+ name = "unicode-segmentation"
1199
+ version = "1.12.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1202
+
1203
+ [[package]]
1204
+ name = "unicode-width"
1205
+ version = "0.1.14"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1208
+
1209
+ [[package]]
1210
+ name = "unicode-width"
1211
+ version = "0.2.2"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1214
+
1215
+ [[package]]
1216
+ name = "unicode-xid"
1217
+ version = "0.2.6"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1220
+
1221
+ [[package]]
1222
+ name = "version_check"
1223
+ version = "0.9.5"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1226
+
1227
+ [[package]]
1228
+ name = "walkdir"
1229
+ version = "2.5.0"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1232
+ dependencies = [
1233
+ "same-file",
1234
+ "winapi-util",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "wasi"
1239
+ version = "0.11.1+wasi-snapshot-preview1"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1242
+
1243
+ [[package]]
1244
+ name = "wasm"
1245
+ version = "0.1.0"
1246
+ dependencies = [
1247
+ "candid",
1248
+ "candid_parser",
1249
+ "console_error_panic_hook",
1250
+ "serde",
1251
+ "serde-wasm-bindgen",
1252
+ "serde_json",
1253
+ "wasm-bindgen",
1254
+ "wasm-bindgen-test",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "wasm-bindgen"
1259
+ version = "0.2.105"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
1262
+ dependencies = [
1263
+ "cfg-if",
1264
+ "once_cell",
1265
+ "rustversion",
1266
+ "wasm-bindgen-macro",
1267
+ "wasm-bindgen-shared",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "wasm-bindgen-futures"
1272
+ version = "0.4.55"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
1275
+ dependencies = [
1276
+ "cfg-if",
1277
+ "js-sys",
1278
+ "once_cell",
1279
+ "wasm-bindgen",
1280
+ "web-sys",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "wasm-bindgen-macro"
1285
+ version = "0.2.105"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
1288
+ dependencies = [
1289
+ "quote",
1290
+ "wasm-bindgen-macro-support",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "wasm-bindgen-macro-support"
1295
+ version = "0.2.105"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
1298
+ dependencies = [
1299
+ "bumpalo",
1300
+ "proc-macro2",
1301
+ "quote",
1302
+ "syn 2.0.110",
1303
+ "wasm-bindgen-shared",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "wasm-bindgen-shared"
1308
+ version = "0.2.105"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
1311
+ dependencies = [
1312
+ "unicode-ident",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "wasm-bindgen-test"
1317
+ version = "0.3.55"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
1320
+ dependencies = [
1321
+ "js-sys",
1322
+ "minicov",
1323
+ "wasm-bindgen",
1324
+ "wasm-bindgen-futures",
1325
+ "wasm-bindgen-test-macro",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "wasm-bindgen-test-macro"
1330
+ version = "0.3.55"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
1333
+ dependencies = [
1334
+ "proc-macro2",
1335
+ "quote",
1336
+ "syn 2.0.110",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "web-sys"
1341
+ version = "0.3.82"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
1344
+ dependencies = [
1345
+ "js-sys",
1346
+ "wasm-bindgen",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "winapi"
1351
+ version = "0.3.9"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1354
+ dependencies = [
1355
+ "winapi-i686-pc-windows-gnu",
1356
+ "winapi-x86_64-pc-windows-gnu",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "winapi-i686-pc-windows-gnu"
1361
+ version = "0.4.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1364
+
1365
+ [[package]]
1366
+ name = "winapi-util"
1367
+ version = "0.1.11"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1370
+ dependencies = [
1371
+ "windows-sys 0.61.2",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "winapi-x86_64-pc-windows-gnu"
1376
+ version = "0.4.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1379
+
1380
+ [[package]]
1381
+ name = "windows-link"
1382
+ version = "0.2.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1385
+
1386
+ [[package]]
1387
+ name = "windows-sys"
1388
+ version = "0.59.0"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1391
+ dependencies = [
1392
+ "windows-targets",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "windows-sys"
1397
+ version = "0.61.2"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1400
+ dependencies = [
1401
+ "windows-link",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "windows-targets"
1406
+ version = "0.52.6"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1409
+ dependencies = [
1410
+ "windows_aarch64_gnullvm",
1411
+ "windows_aarch64_msvc",
1412
+ "windows_i686_gnu",
1413
+ "windows_i686_gnullvm",
1414
+ "windows_i686_msvc",
1415
+ "windows_x86_64_gnu",
1416
+ "windows_x86_64_gnullvm",
1417
+ "windows_x86_64_msvc",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "windows_aarch64_gnullvm"
1422
+ version = "0.52.6"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1425
+
1426
+ [[package]]
1427
+ name = "windows_aarch64_msvc"
1428
+ version = "0.52.6"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1431
+
1432
+ [[package]]
1433
+ name = "windows_i686_gnu"
1434
+ version = "0.52.6"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1437
+
1438
+ [[package]]
1439
+ name = "windows_i686_gnullvm"
1440
+ version = "0.52.6"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1443
+
1444
+ [[package]]
1445
+ name = "windows_i686_msvc"
1446
+ version = "0.52.6"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1449
+
1450
+ [[package]]
1451
+ name = "windows_x86_64_gnu"
1452
+ version = "0.52.6"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1455
+
1456
+ [[package]]
1457
+ name = "windows_x86_64_gnullvm"
1458
+ version = "0.52.6"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1461
+
1462
+ [[package]]
1463
+ name = "windows_x86_64_msvc"
1464
+ version = "0.52.6"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1467
+
1468
+ [[package]]
1469
+ name = "winnow"
1470
+ version = "0.7.13"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
1473
+ dependencies = [
1474
+ "memchr",
1475
+ ]