wasmcloud-fs

Crates.iowasmcloud-fs
lib.rswasmcloud-fs
version0.4.1
sourcesrc
created_at2021-02-11 16:39:18.928304
updated_at2021-05-18 13:37:16.28
descriptionBlob store capability provider (local file system) for the wasmCloud runtime
homepagehttps://wasmcloud.dev
repositoryhttps://github.com/wasmcloud/capability-providers
max_upload_size
id353845
size36,043
wasmCloud Automation Bot (wasmcloud-automation)

documentation

https://docs.rs/wasmcloud-fs

README

crates.io  Rust license  documentation

wasmCloud File System Provider

The wasmCloud File System provider is a capability provider for the wasmcloud:blobstore protocol. This generic protocol can be used to support capability providers like Amazon S3, Azure blob storage, Google blob storage, and more. This crate is an implementation of the protocol that operates on top of a designated root directory and can be used interchangeably with the larger cloud blob providers.

For this provider, the concept of a container is a directory beneath the root (specified via the ROOT configuration variable), while a blob corresponds to a file stored within one of the containers.

Because of the way WebAssembly and the wasmCloud host work, all wasmcloud:blobstore capability providers must stream files to and from the actor. This allows actors to unblock long enough to allow other messages from other providers to be processed and keeps the WebAssembly module from allocating too much memory.

Commit count: 573

cargo fmt