| Crates.io | s5_store_local |
| lib.rs | s5_store_local |
| version | 1.0.0-beta.1 |
| created_at | 2025-11-26 04:17:02.277019+00 |
| updated_at | 2025-11-26 04:17:02.277019+00 |
| description | Local filesystem blob storage backend for S5 |
| homepage | |
| repository | https://github.com/s5-dev/s5-rs |
| max_upload_size | |
| id | 1950924 |
| size | 43,097 |
Local filesystem implementation of the s5_core::Store trait.
tokio::fsLocalStoreConfig (base path).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?;