KeiSeiKit-1.0/_primitives/_rust/kei-runtime-core/Cargo.toml
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
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.
2026-05-01 12:09:03 +08:00

30 lines
915 B
TOML

[package]
name = "kei-runtime-core"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
description = "Hosted Sleep runtime substrate — 12 traits + DNA + plugin registry. No impls; impls live in sibling kei-{compute,llm,git,...}-* crates."
authors = ["Denis Parfionovich <info@greendragon.info>"]
license = "Apache-2.0"
[lib]
name = "kei_runtime_core"
path = "src/lib.rs"
[dependencies]
async-trait = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt", "sync"] }
sha2 = { workspace = true }
rand = "0.8"
kei-shared = { path = "../kei-shared" }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[package.metadata.keisei]
backend = "none"
description = "Hosted Sleep runtime traits + DNA registry; impls in sibling crates"
authors = ["Denis Parfionovich <info@greendragon.info>"]