bitcache 0.0.1

Bitcache is a distributed content-addressable storage (CAS) system.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "bitcache"
version = "0.0.1"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitcache is a distributed content-addressable storage (CAS) system."
homepage = "https://bitcache.dev"
readme = "README.md"
keywords = [
    "bitcache",
    "content-addressed",
    "content-addressable",
    "content-addressing",
]
categories = [
    "command-line-utilities",
    "caching",
    "filesystem",
]
license = "Unlicense"
repository = "https://github.com/artob/bitcache"
resolver = "2"

[package.metadata.readmer.project]
title = "Bitcache"
summary = "Bitcache is a distributed content-addressable storage (CAS) system."

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[package.metadata.binstall]
disabled-strategies = ["quick-install"]

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

[lib]
name = "bitcache"
path = "src/lib.rs"

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

[dependencies.bitcache-core]
version = "=0.0.1"
default-features = false

[dependencies.clap]
version = "4.5"
optional = true
default-features = false

[dependencies.clientele]
version = "0.3.8"
features = []
optional = true

[dev-dependencies.distrib]
version = "0"
features = ["alloc"]
default-features = false