[package]
edition = "2024"
name = "crabtalk-runtime"
version = "0.0.21"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crabtalk agent runtime — execution loop, tool dispatch, and lifecycle hooks"
documentation = "https://docs.rs/crabtalk-runtime"
readme = "README.md"
keywords = [
"llm",
"agent",
"ai",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crabtalk/crabtalk"
[lib]
name = "crabtalk_runtime"
path = "src/lib.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "skill"
path = "tests/skill.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.chrono]
version = "0.4"
[dependencies.crabllm-core]
version = "0.0.15"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.memory]
version = "0.0.21"
package = "crabtalk-memory"
[dependencies.parking_lot]
version = "0.12"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-util",
"io-std",
"net",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.wcore]
version = "0.0.21"
package = "crabtalk-core"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-util",
"io-std",
"net",
"sync",
"time",
"macros",
"rt-multi-thread",
]
[dev-dependencies.wcore]
version = "0.0.21"
features = ["testing"]
package = "crabtalk-core"