[package]
edition = "2024"
rust-version = "1.88"
name = "runifold-store-postgres"
version = "0.5.2"
authors = ["ZYX121212 <2636915543@qq.com>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL conversation, semantic-memory, and distributed workflow store for Runifold"
homepage = "https://github.com/ZYX121212/runifold"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZYX121212/runifold"
resolver = "2"
[lib]
name = "runifold_store_postgres"
path = "src/lib.rs"
[[test]]
name = "live_conversation"
path = "tests/live_conversation.rs"
[[test]]
name = "live_durable_store"
path = "tests/live_durable_store.rs"
[[test]]
name = "live_mcp_tasks"
path = "tests/live_mcp_tasks.rs"
[[test]]
name = "live_postgres"
path = "tests/live_postgres.rs"
[[test]]
name = "live_recovery"
path = "tests/live_recovery.rs"
[[test]]
name = "live_vector_memory"
path = "tests/live_vector_memory.rs"
[dependencies.pgvector]
version = "0.4.2"
features = ["postgres"]
[dependencies.postgres]
version = "0.19.12"
features = [
"with-serde_json-1",
"with-uuid-1",
]
[dependencies.runifold-agent]
version = "0.5.2"
[dependencies.runifold-core]
version = "0.5.2"
[dependencies.runifold-effect]
version = "0.5.2"
[dependencies.runifold-model]
version = "0.5.2"
[dependencies.runifold-retrieval]
version = "0.5.2"
[dependencies.runifold-workflow]
version = "0.5.2"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.53.1"
features = [
"rt",
"sync",
]
[dependencies.tokio-postgres]
version = "0.7.18"
features = [
"with-serde_json-1",
"with-uuid-1",
]
[dependencies.uuid]
version = "1"
features = [
"js",
"serde",
"v5",
"v7",
]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.testcontainers]
version = "0.27.3"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[lints.clippy]
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"