[package]
edition = "2024"
rust-version = "1.88"
name = "behest-core"
version = "0.5.9"
authors = [
"zhenyi <434836402@qq.com>",
"Jiaxiang Hu <1849625991@qq.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types for the behest agent runtime: messages, errors, tool definitions, and sans-IO run state machine"
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_core"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
"serde",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.uuid]
version = "1.18"
features = [
"v4",
"v7",
"serde",
]
[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