Why does Typst crash with large amounts of content?

This is the generated typst file for 10 records. With the .tp extension.

#set page(
  paper: "a4",
  margin: (x: 0.5cm, y: 0.5cm),
)

#set text(
  font: "Libertinus Serif",
  size: 8pt,
  weight: "regular"
)

#table(
  columns: (auto, ) * 8,
  inset: (x: 4pt, y: 3pt),
  align: left,
  stroke: (thickness: 0.4pt, paint: rgb(80, 80, 80)),
  fill: (col, row) => {
    if row == 0 { rgb(245, 245, 245) }
    else { white }
  },

  [*ID*], [*Product Name*], [*Description*], [*Price*], [*Category Name*], [*Category Description*], [*Image*], [*Amount*],
[1], [Premium Coffee Beans], [100% natural ingredients. No artificial preservatives.], [5.60], [Food], [Quality Food from trusted brands], [https://picsum.photos/seed/1/400/300], [4043.20],
[2], [Think and Grow Rich], [Bestseller with excellent reader reviews. Available in paperback and hardcover.], [4.19], [Books], [Quality Books from trusted brands], [https://picsum.photos/seed/2/400/300], [3569.88],
[3], [Basic Product], [Standard quality product with good value for money.], [6.35], [Health & Wellness], [Quality Health & Wellness from trusted brands], [https://picsum.photos/seed/3/400/300], [425.45],
[4], [Generic Item], [Standard quality product with good value for money.], [4.41], [Home & Kitchen], [Quality Home & Kitchen from trusted brands], [https://picsum.photos/seed/4/400/300], [3139.92],
[5], [Generic Item], [Standard quality product with good value for money.], [7.14], [Health & Wellness], [Quality Health & Wellness from trusted brands], [https://picsum.photos/seed/5/400/300], [3805.62],
[6], [Basic Product], [Standard quality product with good value for money.], [4.31], [Automotive], [Quality Automotive from trusted brands], [https://picsum.photos/seed/6/400/300], [4189.32],
[7], [Basic Product], [Standard quality product with good value for money.], [2.20], [Beauty & Personal Care], [Quality Beauty & Personal Care from trusted brands], [https://picsum.photos/seed/7/400/300], [1216.60],
[8], [Generic Item], [Standard quality product with good value for money.], [6.70], [Sports & Fitness], [Quality Sports & Fitness from trusted brands], [https://picsum.photos/seed/8/400/300], [6586.10],
[9], [Generic Item], [Standard quality product with good value for money.], [5.94], [Health & Wellness], [Quality Health & Wellness from trusted brands], [https://picsum.photos/seed/9/400/300], [4098.60],
[10], [Basic Product], [Standard quality product with good value for money.], [3.19], [Automotive], [Quality Automotive from trusted brands], [https://picsum.photos/seed/10/400/300], [3056.02],
[11], [Organic Honey], [100% natural ingredients. No artificial preservatives.], [8.31], [Food], [Quality Food from trusted brands], [https://picsum.photos/seed/11/400/300], [4196.55],

)