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.
34 lines
950 B
TOML
34 lines
950 B
TOML
[package]
|
|
name = "kei-pet"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Pet persona manifest: pet.toml parse, validate, system-prompt overlay. Standard Ed25519 identity. CQRS-compatible; no proprietary math."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
license = "Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "kei-pet"
|
|
path = "src/bin/kei-pet.rs"
|
|
|
|
[lib]
|
|
name = "kei_pet"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
thiserror = "1"
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
|
ed25519-dalek = { version = "2", features = ["rand_core", "std"] }
|
|
rand_core = { version = "0.6", features = ["std"] }
|
|
blake3 = "1"
|
|
hex = "0.4"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
sha2 = "0.10"
|
|
kei-dna-index = { path = "../kei-dna-index" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|