[package]
edition = "2021"
rust-version = "1.75"
name = "llm-tool-runtime"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-agnostic tool contracts, registry, dispatch, and receipt plumbing for llm-pipeline"
homepage = "https://github.com/RecursiveIntell/Libraries"
readme = "README.md"
keywords = [
"llm",
"tools",
"agent",
"runtime",
"registry",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/RecursiveIntell/Libraries"
[lib]
name = "llm_tool_runtime"
path = "src/lib.rs"
[[test]]
name = "authority_effects_hardening"
path = "tests/authority_effects_hardening.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[test]]
name = "dispatch_tests"
path = "tests/dispatch_tests.rs"
[[test]]
name = "effect_dispatch_receipt"
path = "tests/effect_dispatch_receipt.rs"
[[test]]
name = "loom_permit_test"
path = "tests/loom_permit_test.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.schemars]
version = "0.8.22"
[dependencies.semantic-memory-forge]
version = "0.1.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.stack-ids]
version = "0.1.2"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = [
"rt",
"macros",
"time",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.uuid]
version = "1.22.0"
features = ["v4"]
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.expect_used]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"