s5_store_local

Crates.ios5_store_local
lib.rss5_store_local
version1.0.0-beta.1
created_at2025-11-26 04:17:02.277019+00
updated_at2025-11-26 04:17:02.277019+00
descriptionLocal filesystem blob storage backend for S5
homepage
repositoryhttps://github.com/s5-dev/s5-rs
max_upload_size
id1950924
size43,097
(redsolver)

documentation

README

s5_store_local

Local filesystem implementation of the s5_core::Store trait.

Overview

  • Backend: tokio::fs
  • Features: Supports rename, case-insensitive (on some OSs), standard file IO.
  • Configuration: LocalStoreConfig (base path).

Usage

use bytes::Bytes;
use s5_store_local::LocalStore;
use s5_core::Store;

let store = LocalStore::new("/tmp/s5-blobs");
store.put_bytes("foo.txt", Bytes::from("content")).await?;
Commit count: 0

cargo fmt