Skip to content

Commit

Permalink
Raise Web implementation limits for imports and exports
Browse files Browse the repository at this point in the history
At the CG meeting today (July 16, 2024), we had unanimous consensus to raise the limits on the number of imports and exports on the Web to 1,000,000. See WebAssembly/design#1520 for context.
  • Loading branch information
tlively authored Jul 16, 2024
1 parent d73ac32 commit c01e601
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions document/js-api/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,8 @@ In practice, an implementation may run out of resources for valid modules below
<li>The maximum size of a module is 1,073,741,824 bytes (1 GiB).</li>
<li>The maximum number of types defined in the types section is 1,000,000.</li>
<li>The maximum number of functions defined in a module is 1,000,000.</li>
<li>The maximum number of imports declared in a module is 100,000.</li>
<li>The maximum number of exports declared in a module is 100,000.</li>
<li>The maximum number of imports declared in a module is 1,000,000.</li>
<li>The maximum number of exports declared in a module is 1,000,000.</li>
<li>The maximum number of globals defined in a module is 1,000,000.</li>
<li>The maximum number of data segments defined in a module is 100,000.</li>

Expand Down

0 comments on commit c01e601

Please sign in to comment.