aquila_fs 0.3.0

Aquila asset server file system file backend implementation
Documentation

Aquila FileSystem Storage

Crates.io Downloads Docs

A local filesystem backend for Aquila.

This crate implements the [StorageBackend] trait, storing blobs and manifests directly in the file system.

Features

  • Atomic Writes: Uses temporary files and rename operations to ensure assets are not read partially or lost during upload.

Usage

use aquila_fs::FileSystemStorage;

let storage = FileSystemStorage::new("./aquila_data");

License: MIT OR Apache-2.0