docs(website): drop zstd from the install requirements

ZstdNet bundles libzstd for every RID, so nothing needs a system zstd.
Verified: the 15 ManagedArchive round-trip tests pass in a container
with no zstd package installed, and the build deploys
runtimes/<rid>/native/libzstd.* for linux-x64, linux-arm64, osx-x64,
osx-arm64 and win. The apt/dnf "zstd" package is the CLI tool, which
nothing shells out to.

Also aligns the Fedora line to libicu rather than libicu-devel, matching
the README and NativeLibraryChecker.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kamron Batman 2026-08-06 21:36:03 -07:00
parent 4dacd498e3
commit a4104d0768
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A

View file

@ -40,7 +40,7 @@ cd modernuo`}</CodeBlock>
<li>Using <em>terminal</em>, install <a href="https://brew.sh">Homebrew</a> and dependencies:</li>
</ol>
<CodeBlock language="bash">{`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install git icu4c libdeflate zstd argon2`}</CodeBlock>
brew install git icu4c libdeflate argon2`}</CodeBlock>
<p><strong>Recommended IDEs:</strong> <a href="https://www.jetbrains.com/rider/">JetBrains Rider 2025.3+</a> or <a href="https://code.visualstudio.com/">VS Code</a></p>
<h3>Install ModernUO</h3>
<ol>
@ -58,9 +58,9 @@ cd modernuo`}</CodeBlock>
<li>Using <em>bash</em>, install git and dependencies:</li>
</ol>
<p><strong>Debian / Ubuntu:</strong></p>
<CodeBlock language="bash">{'sudo apt update && sudo apt install git libicu-dev libdeflate-dev zstd libargon2-dev'}</CodeBlock>
<CodeBlock language="bash">{'sudo apt update && sudo apt install git libicu-dev libdeflate-dev libargon2-dev'}</CodeBlock>
<p><strong>Fedora:</strong></p>
<CodeBlock language="bash">{'sudo dnf install git libicu-devel libdeflate-devel zstd libargon2-devel'}</CodeBlock>
<CodeBlock language="bash">{'sudo dnf install git libicu libdeflate-devel libargon2-devel'}</CodeBlock>
<Admonition type="note">
<p>The exact package names may vary by distribution. Consult your distribution's package manager documentation.</p>
</Admonition>