A CernVM-FS client implementation written in Rust. This project aims to provide a modern, secure, and performant alternative to the original C++ implementation.
- Native Rust implementation of the CernVM-FS client.
- Improved performance and memory safety.
- FUSE integration for filesystem mounting.
- Support for compression and decompression.
- Cryptographic verification of repository content.
- SQLite-based catalog handling.
- Rust 1.87.0 or higher.
- FUSE libraries for your operating system.
# Clone the repository
git clone https://github.com/Moliholy/cvmfs-rust.git
cd cvmfs-rust
# Build the project
cargo build --release
# Install the binary (optional)
cargo install --path .
# Mount a CernVM-FS repository
cvmfs-cli mount repo.example.org /cvmfs/repo.example.org
# Unmount the repository
fusermount -u /cvmfs/repo.example.org
Configuration can be provided via a TOML file:
cvmfs-rust --config /etc/cvmfs-rust/config.toml mount repo.example.org /cvmfs/repo.example.org
This project uses the following key dependencies:
- sha1 (0.10.5) - SHA-1 hashing.
- log (0.4.22) - Logging infrastructure.
- fuse_mt (0.6.0) - FUSE filesystem integration.
- rusqlite (0.32.1) - SQLite bindings.
- x509-certificate (0.24.0) - Certificate handling.
- reqwest (0.12.9) - HTTP client.
cargo test
This project is licensed under the MIT License - see the LICENSE file for details.
- The original CernVM-FS project.
- All contributors and maintainers.