[package]
edition = "2024"
rust-version = "1.91"
name = "cognee-core"
version = "0.1.3"
authors = ["Topoteretes <support@cognee.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core pipeline primitives and orchestration types for the cognee AI-memory engine."
homepage = "https://www.cognee.ai"
readme = "README.md"
keywords = [
"ai",
"knowledge-graph",
"memory",
"rag",
"embeddings",
]
categories = [
"science",
"database",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/topoteretes/cognee-rs"
[features]
pipeline-run-registry = []
telemetry = ["cognee-telemetry/telemetry"]
[lib]
name = "cognee_core"
path = "src/lib.rs"
[[test]]
name = "enrichment"
path = "tests/enrichment.rs"
[[test]]
name = "pipeline_chained_tasks"
path = "tests/pipeline_chained_tasks.rs"
[[test]]
name = "pipeline_payload_events"
path = "tests/pipeline_payload_events.rs"
[[test]]
name = "pipeline_run_lifecycle"
path = "tests/pipeline_run_lifecycle.rs"
[[test]]
name = "pipeline_run_registry"
path = "tests/pipeline_run_registry.rs"
[[test]]
name = "pipeline_telemetry_events"
path = "tests/pipeline_telemetry_events.rs"
[[test]]
name = "provenance"
path = "tests/provenance.rs"
[[test]]
name = "provenance_pipeline_integration"
path = "tests/provenance_pipeline_integration.rs"
[[test]]
name = "rate_limiting"
path = "tests/rate_limiting.rs"
[[test]]
name = "scoped_run_watcher"
path = "tests/scoped_run_watcher.rs"
[[test]]
name = "scoped_watcher_payload_persistence"
path = "tests/scoped_watcher_payload_persistence.rs"
[[test]]
name = "sentinels_drop"
path = "tests/sentinels_drop.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.41"
features = [
"serde",
"clock",
"std",
]
default-features = false
[dependencies.cognee-database]
version = "0.1.3"
[dependencies.cognee-graph]
version = "0.1.3"
[dependencies.cognee-models]
version = "0.1.3"
[dependencies.cognee-telemetry]
version = "0.1.3"
[dependencies.cognee-vector]
version = "0.1.3"
[dependencies.futures]
version = "0.3"
[dependencies.rayon]
version = "1.10"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"v5",
"serde",
"js",
]
[dev-dependencies.chrono]
version = "0.4.41"
features = [
"serde",
"clock",
"std",
]
default-features = false
[dev-dependencies.mockito]
version = "1"
[dev-dependencies.serial_test]
version = "3.2"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
"macros",
"rt-multi-thread",
]
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"