bindle

Crates.iobindle
lib.rsbindle
version0.9.1
sourcesrc
created_at2020-12-14 17:56:38.488748
updated_at2023-03-15 16:27:32.001343
descriptionAn aggregate object storage system for applications
homepage
repositoryhttps://github.com/deislabs/bindle
max_upload_size
id322830
size583,220
Brian (fibonacci1729)

documentation

README

Bindle - Aggregate Object Storage System

Bindle is an aggregate object storage system used for storing aggregate applications. For more information and examples, see the README in the Bindle repo. This README is primarily for those consuming Bindle as an SDK. The main repo README contains information on the specification and server/client binaries.

Using the crate

Add the following to your Cargo.toml dependencies:

bindle = "0.5"

Features

By default, all of the following features are enabled. To use specific features (for example, just using the client component):

bindle = { version = "0.5", default-features = false, features = ["client"]}
  • client: The client component of Bindle. This includes a fully featured client SDK.
  • caching (also enables client): An optional caching component for Bindle. Currently, these are just used to keep a local cache of bindles
  • server: The server side components necessary to run a bindle server
  • test-tools: A helpful set of testing tools for loading and managing bindles

Compatibility

While this crate is pre-1.0, we make no guarantees about API stability. However, any breaking API changes will be clearly communicated in release notes in the repo.

Commit count: 604

cargo fmt