bitcache 0.0.1

Bitcache is a distributed content-addressable storage (CAS) system.
Documentation
# See: https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "bitcache"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
#documentation.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish.workspace = true

# See: https://readmer.dev
[package.metadata.readmer.project]
title = "Bitcache"
summary = "Bitcache is a distributed content-addressable storage (CAS) system."

[features]
default = ["all", "std"]
all = ["base58"]
alloc = ["bitcache-core/alloc"]
cli = ["std", "bitcache-core/clap", "dep:clientele", "dep:clap"]
std = ["alloc", "bitcache-core/std"]
unstable = []

# Features:
base58 = ["bitcache-core/base58"]

# Interoperability:
interops = ["serde"]
serde = ["bitcache-core/serde"]

[dependencies]
bitcache-core = { workspace = true }

# CLI:
clap = { version = "4.5", default-features = false, optional = true }
clientele = { version = "0.3.8", features = [], optional = true }

[dev-dependencies]
distrib = { version = "0", default-features = false, features = ["alloc"] }

# Preview locally with: RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[bin]]
name = "bitcache"
path = "src/main.rs"
required-features = ["cli"]

# See: https://github.com/cargo-bins/cargo-binstall/blob/main/SUPPORT.md
[package.metadata.binstall]
disabled-strategies = ["quick-install"]