pulsehive-db 0.4.0

Embedded database for agentic AI systems — collective memory for multi-agent coordination
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"
rust-version = "1.89"
name = "pulsehive-db"
version = "0.4.0"
authors = ["PulseDB Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded database for agentic AI systems — collective memory for multi-agent coordination"
documentation = "https://docs.rs/pulsehive-db"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "ai",
    "agents",
    "vector",
]
categories = [
    "database",
    "embedded",
]
license = "AGPL-3.0-only"
repository = "https://github.com/pulsehive/pulsedb"

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

[features]
builtin-embeddings = [
    "ort",
    "tokenizers",
    "ndarray",
    "dirs",
    "ureq",
]
default = []
sync = [
    "tokio/time",
    "tokio/sync",
    "tokio/macros",
]
sync-http = [
    "sync",
    "reqwest",
]
sync-websocket = [
    "sync",
    "tokio-tungstenite",
]

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

[[test]]
name = "activity"
path = "tests/activity.rs"

[[test]]
name = "collective"
path = "tests/collective.rs"

[[test]]
name = "context_candidates"
path = "tests/context_candidates.rs"

[[test]]
name = "cross_process_watch"
path = "tests/cross_process_watch.rs"

[[test]]
name = "embedding_onnx"
path = "tests/embedding_onnx.rs"

[[test]]
name = "experience"
path = "tests/experience.rs"

[[test]]
name = "insight"
path = "tests/insight.rs"

[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "pulsevision_apis"
path = "tests/pulsevision_apis.rs"

[[test]]
name = "recent_experiences"
path = "tests/recent_experiences.rs"

[[test]]
name = "relation"
path = "tests/relation.rs"

[[test]]
name = "search_similar"
path = "tests/search_similar.rs"

[[test]]
name = "storage_acid"
path = "tests/storage_acid.rs"

[[test]]
name = "substrate_integration"
path = "tests/substrate_integration.rs"

[[test]]
name = "sync_engine"
path = "tests/sync_engine.rs"

[[test]]
name = "sync_foundation"
path = "tests/sync_foundation.rs"

[[test]]
name = "sync_http"
path = "tests/sync_http.rs"

[[test]]
name = "vector_index"
path = "tests/vector_index.rs"

[[test]]
name = "watch"
path = "tests/watch.rs"

[[bench]]
name = "core_operations"
path = "benches/core_operations.rs"
harness = false

[[bench]]
name = "lifecycle"
path = "benches/lifecycle.rs"
harness = false

[[bench]]
name = "scaling"
path = "benches/scaling.rs"
harness = false

[[bench]]
name = "sync"
path = "benches/sync.rs"
harness = false
required-features = ["sync"]

[[bench]]
name = "workloads"
path = "benches/workloads.rs"
harness = false

[dependencies.anndists]
version = "0.1"

[dependencies.async-trait]
version = "0.1"

[dependencies.atomic-waker]
version = "1"

[dependencies.bincode]
version = "1.3"

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.dirs]
version = "5.0"
optional = true

[dependencies.fs2]
version = "0.4"

[dependencies.futures-core]
version = "0.3"

[dependencies.hnsw_rs]
version = "0.3"

[dependencies.ndarray]
version = "0.17"
optional = true

[dependencies.ort]
version = "2.0.0-rc.9"
features = ["ndarray"]
optional = true

[dependencies.redb]
version = "2.1"

[dependencies.reqwest]
version = "0.12"
features = [
    "rustls-tls",
    "gzip",
]
optional = true
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokenizers]
version = "0.20"
features = ["onig"]
optional = true
default-features = false

[dependencies.tokio]
version = "1"
features = ["rt"]

[dependencies.tokio-tungstenite]
version = "0.24"
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.ureq]
version = "3.0"
optional = true

[dependencies.uuid]
version = "1.0"
features = [
    "v7",
    "serde",
]

[dev-dependencies.axum]
version = "0.8"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.0"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
]

[profile.dev]
opt-level = 0
debug = 2

[profile.release]
lto = true
codegen-units = 1

[profile.test]
opt-level = 0
debug = 2