[package]
edition = "2024"
rust-version = "1.91"
name = "cognee-storage"
version = "0.1.3"
authors = ["Topoteretes <support@cognee.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pluggable file/blob storage abstraction (local filesystem + mock) for the cognee pipeline."
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]
testing = ["dep:tempfile"]
[lib]
name = "cognee_storage"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.tempfile]
version = "3"
optional = true
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"v5",
"serde",
"js",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
"io-util",
]
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"