[package]
name = "bitcache"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish.workspace = true
[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 = []
base58 = ["bitcache-core/base58"]
interops = ["serde"]
serde = ["bitcache-core/serde"]
[dependencies]
bitcache-core = { workspace = true }
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"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[bin]]
name = "bitcache"
path = "src/main.rs"
required-features = ["cli"]
[package.metadata.binstall]
disabled-strategies = ["quick-install"]