[package]
edition = "2024"
rust-version = "1.91"
name = "cognee-cognify"
version = "0.1.3"
authors = ["Topoteretes <support@cognee.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Knowledge-graph extraction (cognify) — turn ingested data into a graph for cognee."
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]
audio-loader = ["cognee-ingestion/audio-loader"]
html-loader = ["cognee-ingestion/html-loader"]
image-loader = ["cognee-ingestion/image-loader"]
testing = [
"cognee-storage/testing",
"cognee-graph/testing",
"cognee-vector/testing",
]
[lib]
name = "cognee_cognify"
path = "src/lib.rs"
[[test]]
name = "e2e_delete_preview_accuracy"
path = "tests/e2e_delete_preview_accuracy.rs"
[[test]]
name = "e2e_full_pipeline_memify"
path = "tests/e2e_full_pipeline_memify.rs"
[[test]]
name = "e2e_lifecycle_loop"
path = "tests/e2e_lifecycle_loop.rs"
[[test]]
name = "e2e_memify"
path = "tests/e2e_memify.rs"
[[test]]
name = "e2e_ontology_pipeline"
path = "tests/e2e_ontology_pipeline.rs"
[[test]]
name = "e2e_recognify_after_update"
path = "tests/e2e_recognify_after_update.rs"
[[test]]
name = "e2e_shared_entity_graph_delete"
path = "tests/e2e_shared_entity_graph_delete.rs"
[[test]]
name = "e2e_triplet_vector_cleanup"
path = "tests/e2e_triplet_vector_cleanup.rs"
[[test]]
name = "integration_default_backend"
path = "tests/integration_default_backend.rs"
[[test]]
name = "integration_embeddings"
path = "tests/integration_embeddings.rs"
[[test]]
name = "integration_fact_extraction"
path = "tests/integration_fact_extraction.rs"
[[test]]
name = "integration_incremental_loading"
path = "tests/integration_incremental_loading.rs"
[[test]]
name = "integration_memify"
path = "tests/integration_memify.rs"
[[test]]
name = "integration_summarization"
path = "tests/integration_summarization.rs"
[[test]]
name = "integration_text_summary_payload"
path = "tests/integration_text_summary_payload.rs"
[[test]]
name = "memify_feedback"
path = "tests/memify_feedback.rs"
[[test]]
name = "memify_persist_sessions"
path = "tests/memify_persist_sessions.rs"
[[test]]
name = "memify_sync_graph_session"
path = "tests/memify_sync_graph_session.rs"
[[test]]
name = "ontology_round_trip"
path = "tests/ontology_round_trip.rs"
[[test]]
name = "provenance_e2e"
path = "tests/provenance_e2e.rs"
[[test]]
name = "temporal_cognify"
path = "tests/temporal_cognify.rs"
[[test]]
name = "test_data"
path = "tests/test_data.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[[test]]
name = "url_provenance"
path = "tests/url_provenance.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.41"
features = [
"serde",
"clock",
"std",
]
default-features = false
[dependencies.cognee-chunking]
version = "0.1.3"
[dependencies.cognee-core]
version = "0.1.3"
[dependencies.cognee-database]
version = "0.1.3"
[dependencies.cognee-embedding]
version = "0.1.3"
[dependencies.cognee-graph]
version = "0.1.3"
[dependencies.cognee-ingestion]
version = "0.1.3"
[dependencies.cognee-llm]
version = "0.1.3"
[dependencies.cognee-models]
version = "0.1.3"
[dependencies.cognee-ontology]
version = "0.1.3"
[dependencies.cognee-session]
version = "0.1.3"
[dependencies.cognee-storage]
version = "0.1.3"
[dependencies.cognee-utils]
version = "0.1.3"
[dependencies.cognee-vector]
version = "0.1.3"
[dependencies.futures]
version = "0.3"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
"rt-multi-thread",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"v5",
"serde",
"js",
"v4",
]
[dev-dependencies.dotenv]
version = "0.15"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
"rt-multi-thread",
"macros",
]
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"