bytesandbrains 0.2.0

A Rust library for decentralized networking and edge AI
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 = "2021"
name = "bytesandbrains"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for decentralized networking and edge AI"
readme = "README.md"
keywords = [
    "p2p",
    "decentralized",
    "ann",
    "overlay",
    "gossip",
]
categories = [
    "network-programming",
    "algorithms",
]
license = "GPL-2.0"
repository = "https://github.com/Bytes-Brains/bytesandbrains"

[package.metadata.docs.rs]
features = [
    "overlay",
    "gossip",
    "codec",
    "index",
    "ml",
    "simd",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
codec = ["dep:bb_codec"]
default = []
full = [
    "overlay",
    "gossip",
    "codec",
    "index",
    "ml",
    "proto",
]
gossip = [
    "overlay",
    "bb_overlay/gossip",
]
index = ["dep:bb_index"]
ml = ["dep:bb_ml"]
overlay = ["dep:bb_overlay"]
proto = [
    "bb_core/proto",
    "bb_overlay?/proto",
    "bb_codec?/proto",
]
simd = ["bb_core/simd"]

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

[dependencies.bb_codec]
version = "0.2.0"
optional = true
package = "bytesandbrains-codec"

[dependencies.bb_core]
version = "0.2.0"
package = "bytesandbrains-core"

[dependencies.bb_index]
version = "0.2.0"
optional = true
package = "bytesandbrains-index"

[dependencies.bb_ml]
version = "0.2.0"
optional = true
package = "bytesandbrains-ml"

[dependencies.bb_overlay]
version = "0.2.0"
optional = true
package = "bytesandbrains-overlay"