[package]
edition = "2021"
name = "tensor_blob"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Content-addressable blob storage with streaming and garbage collection"
readme = "README.md"
keywords = [
"database",
"tensor",
"graph",
"vector",
"unified",
]
categories = [
"database",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Shadylukin/Neumann"
[features]
default = []
full = [
"graph",
"vector",
]
graph = ["graph_engine"]
vector = ["vector_engine"]
[lib]
name = "tensor_blob"
path = "src/lib.rs"
[[bench]]
name = "blob_bench"
path = "benches/blob_bench.rs"
harness = false
[dependencies.graph_engine]
version = "=0.4.0"
optional = true
[dependencies.sha2]
version = "0.10"
[dependencies.tensor_store]
version = "=0.4.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.vector_engine]
version = "=0.4.0"
optional = true
[dev-dependencies.criterion]
version = "0.8"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"