[package]
edition = "2021"
rust-version = "1.86"
name = "bytesandbrains"
version = "0.3.5"
authors = ["Bytes & Brains"]
build = "build.rs"
exclude = [
"CHANGELOG.md",
"docs/internal/",
"tests/",
"examples/",
"**/*_tests.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable building blocks for decentralized + federated machine learning."
homepage = "https://bytesandbrains.ai"
readme = "README.md"
keywords = [
"machine-learning",
"federated",
"decentralized",
"p2p",
"onnx",
]
categories = [
"science",
"network-programming",
"concurrency",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/Bytes-Brains/bytesandbrains"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
cpu-backend = ["bb-ops/cpu-backend"]
default = ["cpu-backend"]
test-components = [
"bb-ops/test-components",
"bb-runtime/test-components",
]
tracing-otel = ["bb-runtime/tracing-otel"]
[lib]
name = "bytesandbrains"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[dependencies.bb-compiler]
version = "0.3.5"
[dependencies.bb-derive]
version = "0.3.5"
[dependencies.bb-dsl]
version = "0.3.5"
[dependencies.bb-ir]
version = "0.3.5"
[dependencies.bb-ops]
version = "0.3.5"
default-features = false
[dependencies.bb-runtime]
version = "0.3.5"
default-features = false
[dev-dependencies.bincode]
version = "1"
[dev-dependencies.instant-distance]
version = "0.6"
[dev-dependencies.inventory]
version = "0.3"
[dev-dependencies.peak_alloc]
version = "0.2"
[dev-dependencies.prost]
version = "0.13"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.trybuild]
version = "1"
[build-dependencies.prost-build]
version = "0.13"