[package]
edition = "2024"
name = "crabtalk-runtime"
version = "0.0.16"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crabtalk agent runtime — tool dispatch, MCP, skills, and memory"
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 = "skill_handler"
path = "tests/skill_handler.rs"
[[test]]
name = "skill_registry"
path = "tests/skill_registry.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.model]
version = "0.0.16"
package = "crabtalk-model"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
"stream",
"rustls-no-provider",
]
default-features = false
[dependencies.schemars]
version = "1.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"io-util",
"io-std",
"net",
"sync",
"time",
"process",
]
[dependencies.tracing]
version = "0.1"
[dependencies.wcore]
version = "0.0.16"
package = "crabtalk-core"
[dev-dependencies.tempfile]
version = "3"