Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
32 lines
1 KiB
TOML
32 lines
1 KiB
TOML
[package]
|
|
name = "kei-memory-postgres"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "MemoryBackend impl over PostgreSQL (tokio-postgres) for kei-runtime-core"
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "kei_memory_postgres"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
# `live` enables tests that connect to a real PostgreSQL instance.
|
|
# Use: KEI_PG_URL=postgres://... cargo test -p kei-memory-postgres --features live
|
|
live = []
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
|
|
kei-runtime-core = { path = "../kei-runtime-core" }
|
|
|
|
[package.metadata.keisei]
|
|
backend = "postgres"
|
|
description = "PostgreSQL-backed MemoryBackend; production multi-process, JSONB payloads, GIN-friendly tag arrays"
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|