From 6e63d93f8f2590c77fc4fc626b8cea398ed66226 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Fri, 1 May 2026 19:53:22 -0400 Subject: [PATCH] registry: add rustfs RustFS is an Apache-2.0, high-performance, S3-compatible object storage system written in Rust. It positions itself as a drop-in alternative to MinIO and ships pre-compiled binaries on GitHub Releases for linux (x86_64/aarch64, gnu/musl) and macOS (x86_64/aarch64) with SLSA provenance attestations, so the github backend works zero-config. --- registry/rustfs.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 registry/rustfs.toml diff --git a/registry/rustfs.toml b/registry/rustfs.toml new file mode 100644 index 0000000000..8ea5ce8793 --- /dev/null +++ b/registry/rustfs.toml @@ -0,0 +1,3 @@ +backends = ["github:rustfs/rustfs"] +description = "High-performance, distributed, S3-compatible object storage system written in Rust" +test = { cmd = "rustfs -V", expected = "rustfs {{version}}" }