在 Debian 上安装最小的 Rust 设置

在 Debian 上安装最小的 Rust 设置

我想跑步这个 Rust 脚本在我的 Matrix 服务器上,但它使用 1.8GB 空间来构建它:

$ du -shc .rustup/ .cargo/ /var/www/rust-synapse-compress-state/
1,2G    .rustup/
86M     .cargo/
561M    /var/www/rust-synapse-compress-state/
1,8G    total

我发现这个 CI 脚本在 AWS 上安装 Rust。我可以使用它在磁盘空间不足的 Debian VM 中安装最小的 Rust 版本吗?在 Debian 上安装此软件包需要哪些 bash 命令?或者有更好的解决方案吗?

答案1

由于您使用的是 Debian,因此您可以使用 Rust 软件包:

sudo apt install cargo

.rustup.

在 Debian 10 上,这将为您提供 Rust 1.34,足以构建rust-synapse-compress-state.

相关内容