Two related changes:
1. Author email update across the kit
- All `info@greendragon.info` references replaced with `parfionovich@keilab.io`
- Touched: NOTICE, README.md, _ts_packages/package.json (and 5 adapter packages),
plus 90+ Cargo.toml files
- Apache-2.0 attribution unchanged (Denis Parfionovich, 2026)
2. Cargo workspace.package SSoT for author/license/repository/homepage
- Added to [workspace.package]:
authors = ["Denis Parfionovich <parfionovich@keilab.io>"]
license = "Apache-2.0"
repository = "https://github.com/KeiSei84/KeiSeiKit-1.0"
homepage = "https://github.com/KeiSei84/KeiSeiKit-1.0"
- All ~89 member crates migrated from inline declarations to:
authors.workspace = true
license.workspace = true
(repository/homepage where applicable)
- Closes audit gap: kei-graph-stream, kei-cortex, kei-shared previously had no
license field at the crate level, blocking `cargo publish` on those.
Now they inherit Apache-2.0 from workspace.
- kei-scheduler/Cargo.toml: removed stray duplicate `authors` line introduced
by an earlier migration sweep.
cargo check --workspace: clean. No code changes; metadata-only migration.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32 lines
1,012 B
TOML
32 lines
1,012 B
TOML
[package]
|
|
name = "kei-memory-postgres"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
description = "MemoryBackend impl over PostgreSQL (tokio-postgres) for kei-runtime-core"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[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 <parfionovich@keilab.io>"]
|