oxidite-storage

Crates.iooxidite-storage
lib.rsoxidite-storage
version2.0.1
created_at2025-12-07 14:22:33.560431+00
updated_at2026-01-25 01:43:54.229056+00
descriptionFile storage for Oxidite with local and S3 backends
homepage
repositoryhttps://github.com/meshackbahati/rust-oxidite
max_upload_size
id1971674
size81,674
Meshack Bahati Ouma (meshackbahati)

documentation

README

oxidite-storage

File storage for Oxidite with local and S3 backends.

Installation

[dependencies]
oxidite-storage = "0.1"

Usage

use oxidite_storage::*;

// Local storage
let storage = LocalStorage::new("uploads").unwrap();

// Store file
storage.put("file.txt", data).await?;

// Get file
let data = storage.get("file.txt").await?;

// Delete
storage.delete("file.txt").await?;

License

MIT

Commit count: 42

cargo fmt