[package]
edition = "2024"
rust-version = "1.88"
name = "behest-memory"
version = "0.5.3"
authors = [
"zhenyi <434836402@qq.com>",
"Jiaxiang Hu <1849625991@qq.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ConversationMemory, DemotionHook, Compactor, and ActiveWindow for the behest agent runtime"
homepage = "https://github.com/lazhenyi/behest"
documentation = "https://docs.rs/behest"
readme = false
keywords = [
"agent",
"llm",
"tool-calling",
"runtime",
"ai",
]
categories = [
"asynchronous",
"api-bindings",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lazhenyi/behest"
[lib]
name = "behest_memory"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.behest-core]
version = "0.5.3"
[dependencies.behest-event]
version = "0.5.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.52"
features = [
"rt",
"macros",
]
default-features = false
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.missing_docs]
level = "deny"
priority = 10
[lints.rust.unreachable_pub]
level = "deny"
priority = 10