[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 "] 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"