[package]
edition = "2024"
rust-version = "1.96"
name = "starweaver-runtime"
version = "0.10.0"
authors = ["wh1isper"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-loop graph and runtime executor primitives for Starweaver"
homepage = "https://github.com/Wh1isper/starweaver"
readme = "README.md"
keywords = [
"agent",
"sdk",
"ai",
"runtime",
]
categories = ["development-tools"]
license = "BSD-3-Clause"
repository = "https://github.com/Wh1isper/starweaver"
resolver = "2"
[lib]
name = "starweaver_runtime"
path = "src/lib.rs"
[[test]]
name = "agent"
path = "tests/agent.rs"
[[test]]
name = "agent_readiness"
path = "tests/agent_readiness.rs"
[[test]]
name = "capability_bundle"
path = "tests/capability_bundle.rs"
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "dependencies"
path = "tests/dependencies.rs"
[[test]]
name = "dependency_aware_capability"
path = "tests/dependency_aware_capability.rs"
[[test]]
name = "direct"
path = "tests/direct.rs"
[[test]]
name = "dynamic_instructions"
path = "tests/dynamic_instructions.rs"
[[test]]
name = "executor"
path = "tests/executor.rs"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[test]]
name = "iteration"
path = "tests/iteration.rs"
[[test]]
name = "layering"
path = "tests/layering.rs"
[[test]]
name = "output_functions"
path = "tests/output_functions.rs"
[[test]]
name = "output_policy"
path = "tests/output_policy.rs"
[[test]]
name = "override"
path = "tests/override.rs"
[[test]]
name = "prepare_tools"
path = "tests/prepare_tools.rs"
[[test]]
name = "request_pipeline"
path = "tests/request_pipeline.rs"
[[test]]
name = "session_affinity"
path = "tests/session_affinity.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[[test]]
name = "stream_deltas"
path = "tests/stream_deltas.rs"
[[test]]
name = "structured_output"
path = "tests/structured_output.rs"
[[test]]
name = "tool_control_flow"
path = "tests/tool_control_flow.rs"
[[test]]
name = "tool_loop"
path = "tests/tool_loop.rs"
[[test]]
name = "tool_metadata"
path = "tests/tool_metadata.rs"
[[test]]
name = "tool_retries"
path = "tests/tool_retries.rs"
[[test]]
name = "toolset"
path = "tests/toolset.rs"
[[test]]
name = "trace"
path = "tests/trace.rs"
[[test]]
name = "trace_model"
path = "tests/trace_model.rs"
[[test]]
name = "typed_output"
path = "tests/typed_output.rs"
[[test]]
name = "usage_history"
path = "tests/usage_history.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.42"
features = [
"clock",
"serde",
"std",
]
default-features = false
[dependencies.jsonschema]
version = "0.33.0"
default-features = false
[dependencies.schemars]
version = "1.2.1"
features = ["derive"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.starweaver-context]
version = "0.10.0"
[dependencies.starweaver-core]
version = "0.10.0"
[dependencies.starweaver-model]
version = "0.10.0"
[dependencies.starweaver-stream]
version = "0.10.0"
[dependencies.starweaver-tools]
version = "0.10.0"
[dependencies.starweaver-usage]
version = "0.10.0"
features = ["pricing"]
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"macros",
"rt-multi-thread",
"net",
"signal",
"sync",
"time",
]
[dependencies.uuid]
version = "1.18.1"
features = [
"serde",
"v4",
]
[lints.clippy]
all = "warn"
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"