[package]
edition = "2024"
name = "crabtalk-core"
version = "0.0.21"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and traits for the Crabtalk agent runtime"
documentation = "https://docs.rs/crabtalk-core"
readme = "README.md"
keywords = [
"llm",
"agent",
"ai",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crabtalk/crabtalk"
[features]
testing = []
[lib]
name = "crabtalk_core"
path = "src/lib.rs"
[[test]]
name = "agent"
path = "tests/agent.rs"
[[test]]
name = "conversation"
path = "tests/conversation.rs"
[[test]]
name = "history_pinning"
path = "tests/history_pinning.rs"
[[test]]
name = "limits"
path = "tests/limits.rs"
[[test]]
name = "tool_registry"
path = "tests/tool_registry.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.chrono]
version = "0.4"
[dependencies.crabllm-core]
version = "0.0.15"
[dependencies.dirs]
version = "6"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.heck]
version = "0.5"
[dependencies.parking_lot]
version = "0.12"
[dependencies.prost]
version = "0.13"
[dependencies.schemars]
version = "1.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-util",
"io-std",
"net",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.prost-build]
version = "0.13"