[package]
edition = "2024"
rust-version = "1.97"
name = "kmp-application"
version = "0.1.7"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Application services of the KMP kernel: the use cases behind ingest, wake, ask, near, rewind and trace"
readme = "README.md"
keywords = [
"kmp",
"memory",
"context",
"agents",
"kernel",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/underpass-ai/kmp"
[lib]
name = "kmp_application"
path = "src/lib.rs"
[[test]]
name = "unit_services"
path = "tests/unit_services.rs"
[dependencies.kmp-domain]
version = "0.1.7"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sha2]
version = "0.10"
[dependencies.tiktoken-rs]
version = "0.9.1"
[dev-dependencies.tokio]
version = "1.50.0"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
]
[lints.clippy]
dbg_macro = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"